* lisp/minibuffer.el (minibuffer-complete): Don't just scroll
[emacs.git] / lisp / ChangeLog
blobf11d332ab0c67f6f3f2c63fb871b096b2cc15539
1 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * minibuffer.el (minibuffer-complete): Don't just scroll
4         a *Completions* that's been iconified.
5         (minibuffer-force-complete): Make sure repetitions do cycle when going
6         through completion-in-region -> minibuffer-complete.
8 2013-04-15  Alan Mackenzie  <acm@muc.de>
10         Correct the placement of c-cpp-delimiters when there're #s not at
11         col 0.
13         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
14         place a submatch around the #.
15         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
16         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
17         on the #, not BOL.
19 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21         * emacs-lisp/nadvice.el: Properly test names when adding advice.
22         (advice--member-p): New arg `name'.
23         (advice--add-function, advice-member-p): Use it (bug#14202).
25 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
27         Reformulate java imenu-generic-expression.
28         The old expression contained ill formed regexps.
30         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
31         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
32         (cc-imenu-java-method-arg-regexp): New defconsts.
33         (cc-imenu-java-build-type-args-regex): New defun.
34         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
35         handling of spaces in the regexp.
37 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
39         * textmodes/ispell.el (ispell-command-loop): Remove
40         flyspell highlight of a word when ispell accepts it (bug #14178).
42 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
44         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
45         uses code from the previous `ange-ftp-run-real-handler'.
46         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
47         only in case that function exist.  This is needed for proper
48         unloading of Tramp.
50 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
52         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
54         * textmodes/reftex.el (reftex-compile-variables): Use it.
56 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
58         * files.el (normal-mode): Only use default major-mode if no other mode
59         was specified.
61         * emacs-lisp/trace.el (trace-values): New function.
63         * files.el: Allow : in local variables (bug#14089).
64         (hack-local-variable-regexp): New var.
65         (hack-local-variables-prop-line, hack-local-variables): Use it.
67 2013-04-13  Roland Winkler  <winkler@gnu.org>
69         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
70         data before it gets modified by bibtex-beginning-of-entry.
72 2013-04-13  Roland Winkler  <winkler@gnu.org>
74         * textmodes/bibtex.el (bibtex-url): Doc fix.
76 2013-04-13  Roland Winkler  <winkler@gnu.org>
78         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
79         does not visit a BibTeX file, exclude it from the list of buffers
80         returned by bibtex-initialize.
82 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
84         * window.el (split-window): Remove interactive form, since as a
85         command this function is a special case of split-window-below.
86         Correct doc string.
88 2013-04-12  Roland Winkler  <winkler@gnu.org>
90         * faces.el (read-face-name): Do not override value of arg default.
91         Allow single faces and strings as default values.  Remove those
92         elements from return value that are not faces.
93         (describe-face): Simplify.
94         (face-at-point): New optional args thing and multiple so that this
95         function can provide the same functionality previously provided by
96         read-face-name.
97         (make-face-bold, make-face-unbold, make-face-italic)
98         (make-face-unitalic, make-face-bold-italic, invert-face)
99         (modify-face, read-face-and-attribute): Use face-at-point.
101         * cus-edit.el (customize-face, customize-face-other-window)
102         * cus-theme.el (custom-theme-add-face)
103         * face-remap.el (buffer-face-set)
104         * facemenu.el (facemenu-set-face): Use face-at-point.
106 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
108         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
110 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
112         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
113         off leading { and trailing } from field values.
115 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
117         * emacs-lisp/timer.el (timer--check): New function.
118         (timer--time, timer-set-function, timer-event-handler): Use it.
119         (timer-set-idle-time): Simplify.
120         (timer--activate): CSE.
121         (timer-event-handler): Give more info in error message.
122         (internal-timer-start-idle): New function, moved from C.
124         * mpc.el (mpc-proc): Add `restart' argument.
125         (mpc-proc-cmd): Use it.
126         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
127         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
128         less often.
130 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
132         * progmodes/sh-script.el: Implement `sh-mode' own
133         `add-log-current-defun-function' (bug#14112).
134         (sh-current-defun-name): New function.
135         (sh-mode): Use the function.
137 2013-04-09  Bastien Guerry  <bzg@gnu.org>
139         * simple.el (choose-completion-string): Fix docstring (bug#14163).
141 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
143         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
145         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
146         timer (bug#14156).
148 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
150         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
151         declaration.
153 2013-04-07  Leo Liu  <sdl.web@gmail.com>
155         * pcmpl-x.el: New file.
157 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
159         Do not set x-display-name until X connection is established.
160         This is needed to prevent from weird situation described at
161         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
162         * frame.el (make-frame): Set x-display-name after call to
163         window system initialization function, not before.
164         * term/x-win.el (x-initialize-window-system): Add optional
165         display argument and use it.
166         * term/w32-win.el (w32-initialize-window-system):
167         * term/ns-win.el (ns-initialize-window-system):
168         * term/pc-win.el (msdos-initialize-window-system):
169         Add compatible optional display argument.
171 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
173         * files.el (normal-backup-enable-predicate): On MS-Windows and
174         MS-DOS compare truenames of temporary-file-directory and of the
175         file, so that 8+3 aliases (usually found in $TEMP on Windows)
176         don't fail comparison by compare-strings.  Also, compare file
177         names case-insensitively on MS-Windows and MS-DOS.
179 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
181         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
182         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
184 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
186         * whitespace.el (whitespace-color-on, whitespace-color-off):
187         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
189 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl> (tiny change)
191         * ispell.el (ispell-set-spellchecker-params):
192         Really set `ispell-args' for all equivs.
194 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
196         * ido.el (ido-completions): Use extra elements of ido-decorations
197         (bug#14143).
198         (ido-decorations): Update docstring.
200 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
202         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
203         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
204         nil during initialization, in order not to miss changes since the
205         file was opened.  (Bug#14140)
207 2013-04-05  Leo Liu  <sdl.web@gmail.com>
209         * kmacro.el (kmacro-call-macro): Fix bug#14135.
211 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
213         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
215 2013-04-04  Glenn Morris  <rgm@gnu.org>
217         * electric.el (electric-pair-inhibit-predicate): Add :version.
219 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
221         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
222         when a package is required several times (bug#14082).
224 2013-04-04  Roland Winkler  <winkler@gnu.org>
226         * faces.el (read-face-name): Behave as promised by the docstring.
227         Assume that arg default is a list of faces.
228         (describe-face): Call read-face-name with list of default faces.
230 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
232         * bookmark.el: Fix deletion of bookmarks (bug#13972).
233         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
234         (bookmark-bmenu-execute-deletions): Only skip first line if it's
235         the header.
236         (bookmark-exit-hook-internal): Save even if list is empty.
238 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
240         * emacs-lisp/package.el (package-pinned-packages): New var.
241         (package--add-to-archive-contents): Obey it (bug#14118).
243 2013-04-03  Alan Mackenzie  <acm@muc.de>
245         Handle `parse-partial-sexp' landing inside a comment opener
246         (Bug#13244). Also adapt to the new values of element 7 of a parse
247         state.
249         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
250         parameter `not-in-delimiter'.  Handle being inside comment opener.
251         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
252         character in case we're typing a '*' after a '/'.
253         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
254         instead by passing the parameter to c-state-pp-to-literal.
256         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
257         for elt. 7 of a parse state.
259 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
261         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
262         * international/latin1-disp.el, international/mule-util.el:
263         * language/cyril-util.el, language/european.el, language/ind-util.el:
264         * language/lao-util.el, language/thai.el, language/tibet-util.el:
265         * language/tibetan.el, language/viet-util.el:
266         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
268 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
270         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
271         (electric-pair-post-self-insert-function): Use it.
272         (electric-pair-default-inhibit): New function, extracted from
273         electric-pair-post-self-insert-function.
275 2013-03-31  Roland Winkler  <winkler@gnu.org>
277         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
279 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
281         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
283 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
285         Un-indent after "pass" and "return" statements (Bug#13888)
286         * progmodes/python.el (python-indent-block-enders): New var.
287         (python-indent-calculate-indentation): Use it.
289 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
291         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
292         defun.  Defining it as defalias could introduce too eager
293         byte-compiler optimization.  (Bug#14030)
295 2013-03-30  Chong Yidong  <cyd@gnu.org>
297         * iswitchb.el (iswitchb-read-buffer): Fix typo.
299 2013-03-30  Leo Liu  <sdl.web@gmail.com>
301         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
302         (kmacro-execute-from-register): Pass the keyboard macro to
303         kmacro-call-macro or repeating won't work correctly.
305 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
307         * progmodes/subword.el: Back to using `forward-symbol'.
309         * subr.el (forward-whitespace, forward-symbol)
310         (forward-same-syntax): Move from thingatpt.el.
312 2013-03-29  Leo Liu  <sdl.web@gmail.com>
314         * kmacro.el (kmacro-to-register): New command.
315         (kmacro-execute-from-register): New function.
316         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
318 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
320         * mpc.el: Use defvar-local and setq-local.
321         (mpc--proc-connect): Connection failures are not bugs.
322         (mpc-mode-map): `follow-link' only applies to the buffer's content.
323         (mpc-volume-map): Bind to the up-events.
325 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
327         * progmodes/subword.el (superword-mode): Use `forward-sexp'
328         instead of `forward-symbol'.
330 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
332         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
333         (edebug--recursive-edit): Use it.
334         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
335         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
337 2013-03-28  Leo Liu  <sdl.web@gmail.com>
339         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
341 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
343         * facemenu.el (list-colors-callback): New defvar.
344         (list-colors-redisplay): New function.
345         (list-colors-display): Install list-colors-redisplay as the
346         revert-buffer-function.  (Bug#14063)
348 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
350         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
351         and suffixes don't overlap (bug#14061).
353         * case-table.el: Use lexical-binding.
354         (case-table-get-table): New function.
355         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
357 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
359         * progmodes/subword.el: Add `superword-mode' to do word motion
360         over symbol_words (parallels and leverages `subword-mode' which
361         does word motion inside MixedCaseWords).
363 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
365         * eshell/em-unix.el: Move su and sudo to...
366         * eshell/em-tramp.el: ...Eshell tramp module
368 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
370         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
371         Change return value to be a sexp.  Delay `get-buffer' to after
372         restoring the desktop (bug#13951).
374 2013-03-26  Leo Liu  <sdl.web@gmail.com>
376         * register.el: Move semantic tag handling back to
377         cedet/semantic/senator.el.  (Bug#14052)
379 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
381         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
382         into the prompt either (bug#13963).
384 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
386         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
387         part of "(error-foo)".
389 2013-03-24  Juri Linkov  <juri@jurta.org>
391         * replace.el (list-matching-lines-prefix-face): New defcustom.
392         (occur-1): Pass `list-matching-lines-prefix-face' to the function
393         `occur-engine' if `face-differs-from-default-p' returns t.
394         (occur-engine): Add `,' inside backquote construct to evaluate
395         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
396         Pass `prefix-face' to the functions `occur-context-lines' and
397         `occur-engine-add-prefix'.
398         (occur-engine-add-prefix, occur-context-lines): Add optional arg
399         `prefix-face' and propertize the prefix with `prefix-face'.
400         (Bug#14017)
402 2013-03-24  Leo Liu  <sdl.web@gmail.com>
404         * nxml/rng-valid.el (rng-validate-while-idle)
405         (rng-validate-quick-while-idle): Guard against deleted buffer.
406         (Bug#13999)
408         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
409         is the last entry in kill-buffer-hook.
411         * files.el (kill-buffer-hook): Doc fix.
413 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
415         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
416         Make it safe-local.
418         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
420 2013-03-23  Leo Liu  <sdl.web@gmail.com>
422         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
423         Remove.
425         * nxml/rng-valid.el (rng-validate-mode)
426         (rng-after-change-function, rng-do-some-validation):
427         * nxml/rng-maint.el (rng-validate-buffer):
428         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
429         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
430         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
431         (nxml-extend-after-change-region): Use with-silent-modifications.
433         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
434         timer-idle-list.
436         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
437         (rng-next-error-1, rng-previous-error-1): Do not let-bind
438         timer-idle-list.  (Bug#13999)
440 2013-03-23  Juri Linkov  <juri@jurta.org>
442         * info.el (info-index-match): New face.
443         (Info-index, Info-apropos-matches): Add a nested subgroup to the
444         main pattern and add text properties with the new face to matches
445         in index entries relative to the beginning of the index entry.
446         (Bug#14015)
448 2013-03-21  Eric Ludlam  <zappo@gnu.org>
450         * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
451         Inhibit read only while inserting objects.
453 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
455         * progmodes/cfengine.el: Update docs to mention
456         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
457         symbol motion.  Remove "_" from the word syntax.
459 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
461         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
462         syntax for both `cfengine2-mode' and `cfengine3-mode'.
464 2013-03-20  Juri Linkov  <juri@jurta.org>
466         * info.el (Info-next-reference-or-link)
467         (Info-prev-reference-or-link): New functions.
468         (Info-next-reference, Info-prev-reference): Use them.
469         (Info-try-follow-nearest-node): Handle footnote navigation.
470         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
472 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
474         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
475         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
477 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
479         Suppress unnecessary non-ASCII chatter during build process.
480         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
481         (batch-skkdic-convert): Suppress most of the chatter.
482         It's not needed so much now that machines are faster,
483         and its non-ASCII component was confusing; see Dmitry Gutov in
484         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
486 2013-03-20  Leo Liu  <sdl.web@gmail.com>
488         * ido.el (ido-chop): Fix bug#10994.
490 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
492         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
493         Remove vars.
494         (whitespace-color-on, whitespace-color-off):
495         Use `font-lock-fontify-buffer' (Bug#13817).
497 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
499         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
500         remapping in mode-line.
501         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
503 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
505         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
506         value for `whitespace-line' face (Bug#13875).
507         (whitespace-font-lock-keywords): Change description.
508         (whitespace-color-on): Don't save `font-lock-keywords' value, save
509         the constructed keywords instead.
510         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
512 2013-03-19  Leo Liu  <sdl.web@gmail.com>
514         * progmodes/compile.el (compilation-display-error): New command.
515         (compilation-mode-map, compilation-minor-mode-map): Bind it to
516         C-o.  (Bug#13992)
518 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
520         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
522 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
524         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
526 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
528         * net/tramp-compat.el (tramp-compat-user-error): New defun.
530         * net/tramp-adb.el (tramp-adb-handle-shell-command):
531         * net/tramp-gvfs.el (top):
532         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
533         (tramp-handle-shell-command): Use it.
534         (tramp-dissect-file-name): Raise an error when hostname is a
535         method name, and neither method nor user is specified.
537         * net/trampver.el: Update release number.
539 2013-03-18  Leo Liu  <sdl.web@gmail.com>
541         Make sure eldoc can be turned off properly.
542         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
543         eldoc-mode.
544         (eldoc-display-message-p): Revert last change.
545         (eldoc-display-message-no-interference-p)
546         (eldoc-print-current-symbol-info): Tweak.
548 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
550         * doc-view.el (doc-view-new-window-function): Check the new window
551         overlay's display property instead the char property of the
552         buffer's first char.  Use `with-selected-window' instead of
553         `save-window-excursion' with `select-window'.
554         (doc-view-document->bitmap): Check the current doc-view overlay's
555         display property instead the char property of the buffer's first char.
557 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
559         Automate the build of ja-dic.el (Bug#13984).
560         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
561         from the input, rather than assume that it's been done for us by the
562         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
563         the current date into a ja-dic.el comment, as that complicates
564         regression testing.
566 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
568         * whitespace.el: Fix double evaluation.
569         (whitespace-space, whitespace-hspace, whitespace-tab)
570         (whitespace-newline, whitespace-trailing, whitespace-line)
571         (whitespace-space-before-tab, whitespace-indentation)
572         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
573         obsolete defvars.
574         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
575         (whitespace-color-on): Use a single font-lock-add-keywords call.
576         Fix double-evaluation of face variables.
578 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
580         * net/tramp-adb.el (tramp-adb-parse-device-names):
581         Use `start-process' instead of `call-process'.  Otherwise, the
582         function might be blocked under MS Windows.  (Bug#13299)
584 2013-03-17  Leo Liu  <sdl.web@gmail.com>
586         Extend eldoc to display info in the mode-line.  (Bug#13978)
587         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
588         (eldoc-mode-line-string): New variable.
589         (eldoc-minibuffer-message): New function.
590         (eldoc-message-function): New variable.
591         (eldoc-message): Use it.
592         (eldoc-display-message-p)
593         (eldoc-display-message-no-interference-p):
594         Support eldoc-post-insert-mode.
596         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
597         (eval-expression): Run it.
599 2013-03-17  Roland Winkler  <winkler@gnu.org>
601         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
602         strings in the list of return values.
604 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
606         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
607         radix before checking for HMS forms.
609 2013-03-16  Leo Liu  <sdl.web@gmail.com>
611         * progmodes/scheme.el: Add indentation and font-locking for λ.
612         (Bug#13975)
614 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
616         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
617         token before point (bug#13942).
619 2013-03-16  Leo Liu  <sdl.web@gmail.com>
621         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
623 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
625         * startup.el (command-line-normalize-file-name): Fix handling of
626         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
627         <xfq.free@gmail.com> in
628         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
630 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
632         Sync with Tramp 2.2.7.
634         * net/trampver.el: Update release number.
636 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
638         * doc-view.el Fix bug#13887.
639         (doc-view-insert-image): Don't modify overlay associated to
640         non-live windows, and implement horizontal centering of image in
641         case it's smaller than the window.
642         (doc-view-new-window-function): Force redisplay of new windows on
643         doc-view buffers.
645 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
647         * saveplace.el (save-place-alist-to-file): Don't sort
648         `save-place-alist', just pretty-print it (bug#13882).
650 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
652         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
653         whether `default-file-name-coding-system' is bound.  It isn't in
654         XEmacs.
656 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
658         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
659         backquotes for `obsolete' (bug#13929).
661         * international/mule.el (find-auto-coding): Include file name in
662         obsolescence warning (bug#13922).
664 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
666         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
667         for CFEngine 3-specific indentation.
668         (cfengine3-indent-line): Use it.  Fix up category regex.
669         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
671 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
673         * type-break.el (type-break-file-name):
674         * textmodes/remember.el (remember-data-file):
675         * strokes.el (strokes-file):
676         * shadowfile.el (shadow-initialize):
677         * saveplace.el (save-place-file):
678         * ps-bdf.el (bdf-cache-file):
679         * progmodes/idlwave.el (idlwave-config-directory):
680         * net/quickurl.el (quickurl-url-file):
681         * international/kkc.el (kkc-init-file-name):
682         * ido.el (ido-save-directory-list-file):
683         * emulation/viper.el (viper-custom-file-name):
684         * emulation/vip.el (vip-startup-file):
685         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
686         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
688 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
690         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
691         * language/thai-word.el: Switch to UTF-8.
693 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
695         * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
697 2013-03-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
699         * net/net-utils.el (net-utils-remove-ctrl-m-filter):
700         Use with-current-buffer and don't move point.
701         (net-utils-run-simple): Remove useless code.
702         (net-utils-remove-ctl-m): Remove unused custom.
704 2013-03-11  Per Starbäck  <starback@stp.lingfil.uu.se>
706         * international/characters.el (glyphless-set-char-table-range): New fun.
707         (update-glyphless-char-display): Use it (bug#13744).
709 2013-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
711         * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
712         namespaces in the syntax, indent closer for hanging brace
713         correctly, allow single-quote delimited 'strings', and make
714         `cfengine3-mode' the default.
716 2013-03-11  Jean-Philippe Gravel  <jpgravel@gmail.com>
718         * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
719         Use lexical-binding.  Fix up docstring according to conventions.
720         (gdbmi-debug-mode): New var.
721         (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
722         (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
723         (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
724         (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
725         (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
726         (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
727         (gdbmi-bnf-incomplete-record-result): New functions.
728         (gdb-car<): Remove function.
729         (gdbmi-record-list): Remove variable.
730         (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
731         (gdbmi-bnf-result-state-configs): New const.
732         (gud-gdbmi-marker-filter): Rewrite.
733         (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
734         (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
735         Add `token' argument.
736         (gdb-done, gdb-error): New functions.
737         (gdb-done-or-error): Add `is-complete' argument.  Change arg order.
739 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
741         * term/xterm.el (xterm--report-background-handler): Don't burp
742         upon timeout.
743         (xterm--version-handler): Extract from terminal-init-xterm.
744         (xterm--query): Don't mishandle timeout.  Remove debugging messages.
745         Allow multiple handlers.
746         (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
748         * term/xterm.el: Don't discard input (bug#6758).  Use lexical-binding.
749         (xterm--report-background-handler, xterm--query): New functions.
750         (terminal-init-xterm): Use them.
752 2013-03-11  Michael R. Mauger  <michael@mauger.com>
754         * progmodes/sql.el Version 3.2
755         Please note that my address changed to <michael@mauger.com>;
756         the <mmaug@yahoo.com> address remains active.
757         (sql-connection-alist): Updates documentation to fix bug#13715.
758         (sql-connect): Handle missing `sql-connection-alist' correctly.
759         (sql-mode-oracle-font-lock-keywords): Add missing keywords.
760         (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
761         property.
762         (sql-default-value): New function.
763         (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
764         values were not used.
765         (sql-rename-buffer): Make sure alternate buffer name has no text
766         properties.
767         (sql-input-sender, sql-execute-feature): Fetch variable with
768         `buffer-local-value' rather than `with-current-buffer'.
769         (sql-*): Use #' function syntax consistently.
770         (sql-*): Use message/error/user-error consistently.
772 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
774         * xt-mouse.el (xterm-mouse-event-read): Remove.
775         (xterm-mouse--read-event-sequence-1000)
776         (xterm-mouse--read-event-sequence-1006): Use read-event instead.
778 2013-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
780         * term/xterm.el (xterm-function-map): Support format used with
781         formatOtherKeys=1 (bug#13839).
783         * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
784         (with-no-warnings): Use `declare'.
786         * whitespace.el (whitespace-enable-predicate): New variable.
787         (whitespace-enable-predicate): Use it.
789         * comint.el (comint-send-input, comint-snapshot-last-prompt)
790         (comint-output-filter, comint-update-fence):
791         Use with-silent-modifications.
793 2013-03-10  Jambunathan K  <kjambunathan@gmail.com>
795         * replace.el (occur-read-regexp-defaults-function): New var.
796         (occur-read-regexp-defaults): New defun.
797         (occur-read-primary-args): Propagate above change (bug#13892).
799 2013-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
801         * mouse.el (mouse-drag-track): Remove left-over debugging code.
803 2013-03-09  Michael Albinus  <michael.albinus@gmx.de>
805         Major rewrite due to changed D-Bus interface of GVFS 1.14.
807         * net/tramp-gvfs.el (top): Extend check for gvfs availability.
808         (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
809         (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
810         New defconst.
811         (tramp-gvfs-file-name-handler-alist) [directory-files]
812         [directory-files-and-attributes, file-exists-p, file-modes]:
813         Use Tramp default handler.
814         [file-acl, file-selinux-context, process-file, set-file-acl]:
815         [set-file-modes, set-file-selinux-context, shell-command]:
816         [start-file-process]: Remove handler.
817         [verify-visited-file-modtime]: New handler.
818         (tramp-gvfs-dbus-string-to-byte-array)
819         (tramp-gvfs-dbus-byte-array-to-string): New defuns.  Replace all
820         calls of `dbus-string-to-byte-array' and
821         `tramp-gvfs-dbus-byte-array-to-string'.
822         (tramp-gvfs-handle-copy-file)
823         (tramp-gvfs-handle-delete-directory)
824         (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
825         (tramp-gvfs-handle-file-directory-p)
826         (tramp-gvfs-handle-file-executable-p)
827         (tramp-gvfs-handle-file-name-all-completions)
828         (tramp-gvfs-handle-file-readable-p)
829         (tramp-gvfs-handle-file-writable-p)
830         (tramp-gvfs-handle-insert-directory)
831         (tramp-gvfs-handle-insert-file-contents)
832         (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
833         (tramp-gvfs-handle-set-visited-file-modtime)
834         (tramp-gvfs-handle-write-region): Rewrite.
835         (tramp-gvfs-handle-file-acl)
836         (tramp-gvfs-handle-file-selinux-context)
837         (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
838         (tramp-gvfs-handle-set-file-modes)
839         (tramp-gvfs-handle-set-file-selinux-context)
840         (tramp-gvfs-handle-shell-command)
841         (tramp-gvfs-handle-start-file-process)
842         (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
843         (tramp-gvfs-url-file-name): Do not use `file-truename', we work
844         over the symlinks.  Fix user handling.
845         (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
846         of the D-Bus signals.
847         (tramp-gvfs-connection-mounted-p): Handle different names of the
848         D-Bus methods.
849         (tramp-gvfs-mount-spec-entry): New defun.
850         (tramp-gvfs-mount-spec): Use it.
851         (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
852         there is a share name.  Handle different names of the D-Bus
853         signals and methods.  Set connection properties needed for
854         `tramp-check-cached-permissions'.
855         (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
856         Return t or nil.
858         * net/tramp.el (tramp-backtrace): Move up.
859         (tramp-error): Dump a backtrace into the debug buffer when
860         `tramp-verbose > 9.
861         (tramp-file-mode-type-map, tramp-file-mode-from-int)
862         (tramp-file-mode-permissions, tramp-get-local-uid)
863         (tramp-get-local-gid, tramp-check-cached-permissions): Move from
864         tramp-sh.el.
866         * net/tramp-sh.el (tramp-file-mode-type-map)
867         (tramp-check-cached-permissions, tramp-file-mode-from-int)
868         (tramp-file-mode-permissions, tramp-get-local-uid)
869         (tramp-get-local-gid): Move to tramp.el.
871 2013-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
873         Separate mouse-1-click-follows-link from mouse-drag-region.
874         * mouse.el (mouse--down-1-maybe-follows-link): New function.
875         (key-translation-map): Use it to implement mouse-1-click-follows-link.
876         (mouse-drag-line, mouse-drag-track):
877         Remove mouse-1-click-follows-link code.
878         (mouse--remap-link-click-p): Remove.
880 2013-03-08  Jambunathan K  <kjambunathan@gmail.com>
882         * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
883         (hi-lock-read-regexp-defaults):  New defun.
884         (hi-lock-line-face-buffer, hi-lock-face-buffer)
885         (hi-lock-face-phrase-buffer): Propagate above change.
886         Update docstring (bug#13892).
888         * subr.el (find-tag-default-as-regexp): New defun.
889         * replace.el (read-regexp): Propagate above change.
891 2013-03-08  Jay Belanger  <jay.p.belanger@gmail.com>
893         * calc/calc-units.el (calc-convert-units): Fix the way that default
894         new units are stored.
896 2013-03-07  Matthias Meulien  <orontee@gmail.com>
898         * bookmark.el: Define a face to highlight bookmark names in
899         bookmark menu buffers, where the default is a bold face similarly
900         to buffer names in buffer menu buffers.
901         (bookmark-menu-bookmark): New face to highlight bookmark names.
902         (bookmark-insert-location): Remove duplicated text property to
903         conform to buffer list (see `list-buffers').
904         (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
905         `bookmark-menu-bookmark' to bookmark names.
907 2013-03-07  Matthias Meulien  <orontee@gmail.com>
908             Karl Fogel  <kfogel@red-bean.com>
910         * bookmark.el: Display the bookmark list header similarly to the
911         buffer list header (see `list-buffers'), where the default is now
912         an immovable/immutable header line.
913         (bookmark-bmenu-use-header-line): New variable.
914         (bookmark-bmenu-inline-header-height): New name for
915         `bookmark-bmenu-header-height', to avoid confusion with the code
916         for the new immovable header.  All references changed.
917         (bookmark-bmenu-set-header): New function.
918         (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
919         Conditionalize header construction accordingly.
920         (bookmark-bmenu-ensure-position): Conditionalize the skipping of
921         the inline header height.
922         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
923         Conditionalize the skipping of the inline header height.
925 2013-03-07  Dmitry Gutov  <dgutov@yandex.ru>
927         * progmodes/js.el (js--multi-line-declaration-indentation):
928         Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
930 2013-03-06  Dmitry Gutov  <dgutov@yandex.ru>
932         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
933         Only propertize regexp when not inside a string (Bug#13885).
935 2013-03-06  Alan Mackenzie  <acm@muc.de>
937         Correct the position of point in some line-up functions.
938         * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
939         (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
940         point at column 0 rather than at a random place in the line.
942 2013-03-05  Michael Albinus  <michael.albinus@gmx.de>
944         * net/tramp-compat.el (tramp-compat-delete-directory):
945         Implement TRASH argument.
947 2013-03-05  Dmitry Gutov  <dgutov@yandex.ru>
949         Keep pre-existing highlighting in completion candidates (Bug#13250).
950         * minibuffer.el (completions-first-difference): State that the
951         face is "added" in the docstring.
952         (completions-common-part): Same.  And don't inherit from default.
953         (completion-hilit-commonality): Prepend 'completions-common-part
954         and 'completion-first-difference faces to the 'face property,
955         instead of replacing the value(s).
956         (completion--insert-strings): Same with 'completions-annotations face.
957         (completion-hilit-commonality): Use 'face instead of
958         'font-lock-face, because it gets priority if the completion
959         strings already have 'face set.
961 2013-03-04  Alan Mackenzie  <acm@muc.de>
963         Replace `last-command-event' by `last-command-char' in XEmacs.
964         * progmodes/cc-defs.el (c-last-command-char): New macro.
965         * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
966         (c-semi&comma-no-newlines-before-nonblanks)
967         (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
968         in place of `last-command-event'.
969         * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
970         (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
971         (c-electric-paren, c-electric-continued-statement): Use the new
972         macro in place of `last-command-event'.
974 2013-03-04  Glenn Morris  <rgm@gnu.org>
976         * files.el (inhibit-local-variables-regexps):
977         Add .diff and .patch.  (Bug#13862)
979 2013-03-03  Michael Albinus  <michael.albinus@gmx.de>
981         * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
982         whether the "su" command is available on the device.
984 2013-03-01  Michael Albinus  <michael.albinus@gmx.de>
986         * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
987         (tramp-adb-handle-process-file): Remove superfluous setting.
988         (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
989         (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
990         (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
992 2013-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
994         * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
995         (ispell-print-if-debug): Build `format' in.  Avoid end-of-buffer.
996         (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
997         Use dict-key rather than dict-name for the error message.
999 2013-03-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1001         * net/net-utils.el (net-utils-run-simple): Don't display-buffer
1002         when reverting (bug#13831).
1004 2013-03-01  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1006         * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
1007         Always expand affix-file before storing to protect against changed
1008         `default-directory'.
1009         (ispell-print-if-debug): Make sure message is printed at the end
1010         of the debug buffer.
1012 2013-03-01  Michael Albinus  <michael.albinus@gmx.de>
1014         * net/tramp.el (tramp-obsolete-methods): New defconst.
1015         (tramp-warned-obsolete-methods): New defvar.
1016         (tramp-find-method): Check for obsolete methods.  Map them to a
1017         replacement method if appropriate.
1019         * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
1020         Remove methods.
1021         (top): Remove completion functions for "scp1", "scp2", "ssh1",
1022         "ssh2" and "plink1".
1024 2013-02-28  Dale Sedivec  <dale@codefu.org>
1026         * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
1027         Return valid syntax-table property value when converting
1028         quotes within text from string syntax to punctuation syntax (bug#13844).
1030 2013-02-28  Juri Linkov  <juri@jurta.org>
1032         * dired-aux.el (dired-diff): If file at point is a backup file,
1033         use its original as the default value, and reverse the order
1034         of arguments to the `diff' call.  Doc fix.  (Bug#13772)
1036 2013-02-28  Michael Albinus  <michael.albinus@gmx.de>
1038         * net/tramp-adb.el (tramp-adb-sdk-dir): Remove.  Replaced by ...
1039         (tramp-adb-program): New defcustom.  Remove function.  Adapt calls.
1041 2013-02-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
1043         Initial support for hunspell dictionaries auto-detection (Bug#13639)
1045         * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
1046         Ask hunspell about available and default dictionaries.
1047         (ispell-parse-hunspell-affix-file): Extract relevant info from
1048         hunspell affix file.
1049         (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
1050         `ispell-dictionary-alist' entry for given dictionary after info
1051         provided by `ispell-parse-hunspell-affix-file'.
1052         (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
1053         of parsed hunspell dicts and associated affix files.
1054         (ispell-hunspell-dictionary-alist): New defvar to contain an alist
1055         of parsed hunspell dicts and associated parameters.
1056         (ispell-set-spellchecker-params):
1057         Call `ispell-find-hunspell-dictionaries' if hunspell and not
1058         previously done.
1059         (ispell-start-process):
1060         Call `ispell-hunspell-fill-dictionary-entry' for current
1061         dictionary if it is not initialized.
1063 2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1065         * imenu.el: Comment nitpicks.
1067 2013-02-28  Sam Steingold  <sds@gnu.org>
1069         * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
1070         See <http://stackoverflow.com/questions/14720205>.
1072 2013-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1074         * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
1075         (net-utils-mode): Use it.
1076         (net-utils--revert-cmd): New var.
1077         (net-utils-run-simple): Set it, and remove bogus interactive spec.
1078         (traceroute): Use net-utils-run-simple.
1080 2013-02-28  Glenn Morris  <rgm@gnu.org>
1082         * textmodes/paragraphs.el (mark-paragraph): Doc fix.
1084 2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1086         * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
1087         (doc-view-fallback-mode): Remove overlays here.
1088         (doc-view-toggle-display): Instead of here.  Don't throw away
1089         image-mode-winprops-alist.
1090         (doc-view-goto-page): Don't mess with hscroll.
1092 2013-02-27  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1094         * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
1095         &optional (bug#13819).
1097 2013-02-27  Michael Albinus  <michael.albinus@gmx.de>
1099         * net/tramp-adb.el (tramp-adb-parse-device-names)
1100         (tramp-adb-maybe-open-connection): Add timeouts.  (Bug#13299)
1102 2013-02-26  Michael Albinus  <michael.albinus@gmx.de>
1104         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1105         Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
1106         defined.  POSIX environments fall back to the "C" locale then and
1107         emit a warning, which shall be suppressed.
1109 2013-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1111         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
1112         (easy-mmode-set-keymap-parents): Use make-composed-keymap.
1114 2013-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1116         * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
1118 2013-02-25  Juri Linkov  <juri@jurta.org>
1120         * replace.el (read-regexp): Let-bind `default' to the first
1121         element of `defaults' if it's a list, otherwise it should be
1122         a string or nil.  Let-bind `suggestions' to `defaults' if it's
1123         a list, otherwise make a list with the string value.  Doc fix.
1124         (Bug#13805)
1126 2013-02-25  Eli Zaretskii  <eliz@gnu.org>
1128         * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
1129         that match "\`\.#", to avoid compiling lock files, even if they
1130         are readable (as they are on MS-Windows).
1132 2013-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1134         * files.el (basic-save-buffer): Remove redundant directory-creation.
1136 2013-02-24  Jay Belanger  <jay.p.belanger@gmail.com>
1138         * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
1139         Add option to force `pi' to remain symbolic.
1140         * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
1141         (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
1142         (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
1143         derivatives, when necessary.
1145 2013-02-23  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
1147         * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
1148         (ps-mode-octal-region): Use string-make-unibyte.
1150 2013-02-23  Glenn Morris  <rgm@gnu.org>
1152         * emulation/viper-cmd.el (viper-submit-report):
1153         * progmodes/ps-mode.el (ps-mode-maintainer-address):
1154         * progmodes/vera-mode.el (vera-mode-help-address):
1155         * textmodes/artist.el (artist-maintainer-address):
1156         * textmodes/reftex.el (reftex-report-bug):
1157         * vc/ediff-util.el (ediff-submit-report):
1158         Add bug-gnu-emacs to bug report address.
1160         * progmodes/simula.el (simula-mode-menu, simula-mode-map):
1161         Remove bug report entries.
1162         (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
1164         * emacs-lisp/bytecomp.el (byte-compile-level): New.
1165         (byte-compile-file, byte-compile-from-buffer):
1166         Use separate input/output buffers for each level of recursive
1167         byte-compile-file calls.  (Bug#13787)
1169 2013-02-23  Michael Albinus  <michael.albinus@gmx.de>
1171         * net/tramp.el (tramp-methods): Fix docstring.
1172         (tramp-ssh-controlmaster-options): Rename it from
1173         `tramp-ssh-controlmaster-template'.  Return a string.
1174         (tramp-default-method): Adapt check for
1175         `tramp-ssh-controlmaster-options'.
1177         * net/tramp-sh.el (tramp-methods):
1178         Replace `tramp-ssh-controlmaster-template' by "%c".
1179         (tramp-do-copy-or-rename-file-out-of-band)
1180         (tramp-maybe-open-connection): Use it in format spec.  Ensure,
1181         that it is applied for the first hop only.
1183 2013-02-22  Juri Linkov  <juri@jurta.org>
1185         * isearch.el (isearch-lazy-highlight-new-loop):
1186         Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
1187         to `isearch-other-end' if it is not nil.  (Bug#13402)
1189         * replace.el (replace-highlight): Let-bind `isearch-other-end'
1190         to `match-beg'.
1192         * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1193         Let-bind `isearch-other-end' to `start', `isearch-forward' to t
1194         and `isearch-error' to nil.
1196 2013-03-16  Fabián Ezequiel Gallina  <fgallina@cuca>
1198         * progmodes/python.el (python-info-current-defun):
1199         Enhance match-data cluttering prevention.
1201 2013-02-22  Michael Albinus  <michael.albinus@gmx.de>
1203         * net/tramp.el (tramp-tramp-file-p): Fix docstring.
1205         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1206         Handle multibyte file names.
1208 2013-02-22  Glenn Morris  <rgm@gnu.org>
1210         * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
1211         (sgml-transformation-function): Give it a :set function.
1212         (sgml-tag): Doc fix.
1214         * cmuscheme.el (scheme-buffer):
1215         * progmodes/inf-lisp.el (inferior-lisp-buffer):
1216         * progmodes/tcl.el (inferior-tcl-buffer):
1217         * textmodes/tex-mode.el (tex-command): Doc fixes.
1219         * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
1221         * htmlfontify.el (hfy-default-header): Encode title string.  (Bug#7457)
1223 2013-02-21  Bastien Guerry  <bzg@gnu.org>
1225         * cmuscheme.el (scheme-buffer): Fix docstring.  (Bug#13778)
1227 2013-02-21  Fabián Ezequiel Gallina  <fgallina@cuca>
1229         * progmodes/python.el (python-info-current-defun):
1230         Enhance match-data cluttering prevention.
1232 2013-02-21  Glenn Morris  <rgm@gnu.org>
1234         * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
1235         loaded while outline-regexp is let bound.  (Bug#9584)
1237 2013-02-21  Fabián Ezequiel Gallina  <fgallina@cuca>
1239         * progmodes/python.el (python-info-current-defun): Fix failed
1240         defun name retrieval because of unwanted match-data cluttering.
1242 2013-02-21  Michael Albinus  <michael.albinus@gmx.de>
1244         * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
1245         defconst.  Apply independent check for ControlPersist.
1247         * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
1248         temporarily, via "env".
1250 2013-02-21  Glenn Morris  <rgm@gnu.org>
1252         * info.el (Info-enable-edit): Remove.
1253         (Info-edit): Disable it rather than using Info-enable.
1254         (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
1255         (Info-cease-edit): Make editing of Info files obsolete.
1257         * informat.el (Info-tagify):
1258         Handle buffers not visiting files.  (Bug#13763)
1260 2013-02-21  Juanma Barranquero  <lekktu@gmail.com>
1262         * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
1264 2013-02-21  Glenn Morris  <rgm@gnu.org>
1266         * files.el (basic-save-buffer): Move check for existing parent
1267         directory after hooks.  (Bug#13773)
1269 2013-02-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1271         * simple.el (command-execute): Move from C.  Add obsolete check.
1272         (extended-command-history): Move from C.
1274 2013-02-20  Ulrich Müller  <ulm@gentoo.org>
1276         * jka-cmpr-hook.el (jka-compr-compression-info-list)
1277         (jka-compr-mode-alist-additions): Handle .txz suffix for
1278         XZ-compressed tar archives (bug#13770).
1280 2013-02-20  Bastien Guerry  <bzg@gnu.org>
1282         * outline.el (outline-regexp, outline-heading-end-regexp):
1283         Make variables, not options (bug#13731).
1285 2013-02-20  Glenn Morris  <rgm@gnu.org>
1287         * image.el (image-current-frame): Change from variable to function.
1288         (image-show-frame): Rename from image-nth-frame.  Update callers.
1289         * image-mode.el (image-multi-frame): New variable.
1290         (image-mode-map, image-mode, image-goto-frame):
1291         Use image-multi-frame rather than image-current-frame.
1292         (image-mode, image-goto-frame): Use image-current-frame as
1293         function rather than as variable.
1295         * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
1296         * emacs-lisp/cl-macs.el (cl--make-type-test)
1297         (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
1299 2013-02-19  Michael Albinus  <michael.albinus@gmx.de>
1301         * net/tramp-cache.el (tramp-get-hash-table): New defun.
1302         (tramp-get-file-property, tramp-set-file-property)
1303         (tramp-get-connection-property, tramp-set-connection-property): Use it.
1304         (tramp-flush-file-property, tramp-flush-directory-property):
1305         Rename argument to KEY.
1306         (tramp-flush-connection-property): Simplify a little bit.
1307         (tramp-connection-property-p): New defun.
1308         (top): Reapply saved values only if there isn't a corresponding
1309         entry in `tramp-connection-properties'.
1311 2013-02-19  Fabián Ezequiel Gallina  <fgallina@cuca>
1313         * progmodes/python.el (python-indent-context):
1314         Fix python-info-line-ends-backslash-p call.
1315         (python-info-line-ends-backslash-p)
1316         (python-info-beginning-of-backslash): Respect line-number argument.
1317         (python-info-current-line-comment-p):
1318         Fix behavior when not at beginning-of-line.
1319         (python-util-position): Remove function.
1320         (python-util-goto-line): New function.
1322 2013-02-19  Michael Albinus  <michael.albinus@gmx.de>
1324         * eshell/em-unix.el (eshell/su): Require tramp.
1325         (eshell/sudo): Require tramp.  Remove now unnecessary check.
1327         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1328         `tramp-current-connection' in order to avoid an error when several
1329         commands are invoked in a short time in eshell and friends.
1331 2013-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1333         Cleanup some of EIEIO's namespace.
1334         * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1335         Use it to define all the class-* and object-* field accessors (renamed
1336         to eieio--class-* and eieio--object-*).  Update all uses.
1337         (eieio--class-num-slots, eieio--object-num-slots): Rename from
1338         class-num-slots and object-num-slots.
1339         (eieio--check-type): New macro.
1340         (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1341         (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1342         (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1343         (object-assoc-list-safe): Use it.
1344         (eieio-defclass): Tighten regexp.
1345         (eieio--defmethod): Use `memq'.  Signal an error for unknown method kind.
1346         Remove unreachable code.
1347         (object-class-fast): Declare obsolete.
1348         (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1349         (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1350         (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1351         Rename from class-name, object-name, object-set-name-string,
1352         object-class, object-class-name, class-parents, class-children,
1353         class-precedence-list, class-parent; with obsolete alias.
1354         (class-of, class-direct-superclasses, class-direct-subclasses):
1355         Declare obsolete.
1356         (eieio-defmethod): Use `memq'; remove unreachable code.
1357         * emacs-lisp/eieio-base.el (eieio-persistent-read):
1358         * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1359         (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1362 2013-02-18  Aidan Gauland  <aidalgol@no8wireless.co.nz>
1364         * eshell/em-cmpl.el: Correct "context-related help" keybinding in
1365         commentary.
1367 2013-02-18  Michael Heerdegen  <michael_heerdegen@web.de>
1369         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1370         Use font-lock-keyword-face for macros and special forms (bug#8345).
1372 2013-02-17  Didier Verna  <didier@didierverna.net>
1374         * net/network-stream.el (network-stream-open-starttls):
1375         Check that response to the starttls-command is non-nil.  (Bug#13706)
1377 2013-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1379         * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1380         Don't assume all identifier chars have syntax word.
1381         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1382         Remove bar-not-symbol.  Adjust callers.
1383         (lisp-mode-variables): Don't set a font-lock-syntax-table.
1385 2013-02-17  Leo Liu  <sdl.web@gmail.com>
1387         * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1389 2013-02-17  Glenn Morris  <rgm@gnu.org>
1391         * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1393         * image-mode.el (image-mode-map): Add image-dired menu entry.
1395         * image-dired.el (tumme): Make this alias obsolete.
1397 2013-02-16  Glenn Morris  <rgm@gnu.org>
1399         * image.el (image-animated-types): Remove.
1400         (image-multi-frame-p): Rename from image-animated-p, and generalize.
1401         (image-animated-p): Make obsolete alias.
1402         (image-animate, image-nth-frame, image-animate-timeout):
1403         Use image-multi-frame-p.
1404         (image-animate-timeout): If no delay, use image-default-frame-delay.
1405         * image-mode.el (image-mode, image-toggle-animation):
1406         Use image-multi-frame-p.  (Bug#763, bug#10739)
1407         (image-mode): Adjust startup message for a multi-frame image.
1409         * image-mode.el (image-mode-map): Give it a menu.
1411 2013-02-16  Michael Albinus  <michael.albinus@gmx.de>
1413         * net/tramp-cache.el (tramp-connection-properties): New customer
1414         option.
1415         (tramp-get-connection-property): Use it.
1417         * net/tramp-compat.el (top): Require 'trampver.
1419         * net/tramp-sh.el (tramp-remote-process-environment):
1420         Set tramp-autoload cookie.
1422 2013-02-16  Kevin Ryde  <user42@zip.com.au>
1424         * info-look.el (info-lookup-select-mode): If major-mode has no
1425         info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1427 2013-02-16  Jambunathan K  <kjambunathan@gmail.com>
1429         * replace.el (read-regexp): Tighten the regexp that matches tag.
1430         When tag is retrieved with `find-tag-default', use regexp that
1431         matches tag at point.  Also update docstring (Bug#13687).
1433 2013-02-16  Eli Zaretskii  <eliz@gnu.org>
1435         * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1436         add watch for the file, not its parent directory, since w32notify
1437         sets up the watch for the directory internally.  (Bug#13725)
1439 2013-02-16  Glenn Morris  <rgm@gnu.org>
1441         * image.el (image-default-frame-delay): New variable.
1442         (image-animated-p): Use image-default-frame-delay.
1443         (image-minimum-frame-delay): New constant.
1444         (image-animate-timeout): Use image-minimum-frame-delay.
1446         * image.el (image-nth-frame): New, split from image-animate-timeout.
1447         (image-animate-timeout): Use image-nth-frame.
1448         * image-mode.el (image-goto-frame, image-next-frame)
1449         (image-previous-frame): New commands.
1450         (image-mode-map): Add new frame commands.
1452 2013-02-16  Jonas Bernoulli  <jonas@bernoul.li>
1454         * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1455         If col-desc already has help-echo, use it.  (Bug#13563)
1457 2013-02-16  Glenn Morris  <rgm@gnu.org>
1459         * image.el (image-current-frame): New variable.
1460         (image-animate-timeout): Set image-current-frame.
1461         * image-mode.el (image-mode): For animated images,
1462         display a frame counter via mode-line-process.
1464         * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1466 2013-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1468         * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1470 2013-02-15  Alan Mackenzie  <acm@muc.de>
1472         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1473         global minor mode has been enabled, call the minor mode function
1474         for a new buffer once only, after the major mode hook, whilst
1475         allowing that hook explicitly to disable the minor mode.
1476         (MODE-disable-in-buffer): New (generated) function.
1477         (disable-MODE): New (generated) buffer local variable.
1479 2013-02-15  Jambunathan K  <kjambunathan@gmail.com>
1481         * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1482         `iswitchb-next-match' and `iswitchb-prev-match' resply.
1483         * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1484         `ido-next-match' and `ido-prev-match' resply.
1485         * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1486         Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1487         `icomplete-backward-completions' (Bug#13708).
1489 2013-02-15  Glenn Morris  <rgm@gnu.org>
1491         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1493 2013-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1495         * net/goto-addr.el (goto-address-fontify): Add start and end args.
1496         (goto-address-fontify-region): Use them instead of narrowing, so
1497         syntax-ppss has access to the whole buffer.
1499 2013-02-15  Fabián Ezequiel Gallina  <fgallina@cuca>
1501         * progmodes/python.el: Explain how to restore "cc-mode"-like
1502         forward-sexp movement in header documentation (Bug#13642).
1503         (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1504         comments and strings (GH bug 114).
1506 2013-02-15  Fabián Ezequiel Gallina  <fgallina@cuca>
1508         * progmodes/python.el (python-info-current-defun): Fix current
1509         defun detection (Bug#13618).
1511 2013-02-15  Chong Yidong  <cyd@gnu.org>
1513         * xml.el (xml-parse-string): Fix typo in handling of bad character
1514         references.
1516 2013-02-15  Glenn Morris  <rgm@gnu.org>
1518         * play/fortune.el (fortune-compile): Simplify and fix previous change.
1520 2013-02-14  Michael Albinus  <michael.albinus@gmx.de>
1522         * net/tramp.el (tramp-debug-message):
1523         Add `tramp-condition-case-unless-debug'.
1524         (tramp-debug-on-error): New defvar.
1525         (tramp-condition-case-unless-debug): New defun.
1526         (tramp-file-name-handler): Use it.
1528 2013-02-14  Juri Linkov  <juri@jurta.org>
1530         * info.el (Info-isearch-filter): Treat non-nil values of
1531         `search-invisible' including its default value `open'
1532         like the value `t' to match hidden text.  (Bug#13402)
1534 2013-02-14  Glenn Morris  <rgm@gnu.org>
1536         * help-fns.el (find-lisp-object-file-name): Give special treatment
1537         to all ~/.foo.elc files, not just ~/.emacs.  (Bug#9007)
1539 2013-02-14  David Biesack  <sasdjb@d72933.na.sas.com>  (tiny change)
1541         * net/quickurl.el (quickurl-save-urls):
1542         Ensure quickurl-urls is not truncated on printing.  (Bug#9276)
1544 2013-02-14  Dmitry Gutov  <dgutov@yandex.ru>
1546         * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1547         depth for unfinished percent literal.  Not using it in the caller.
1548         (ruby-move-to-block): Jump over multiline literals of all types,
1549         ignoring code-looking contents inside them.
1550         (ruby-add-log-current-method): Improve performance at the expense
1551         of accuracy.  `ruby-block-contains-point' is relatively slow, so
1552         only use it for method and singleton class blocks.
1554 2013-02-13  Michael Albinus  <michael.albinus@gmx.de>
1556         Use ControlMaster where applicable.  (Bug#13677)
1558         * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1559         replacing `tramp-detect-ssh-controlmaster'.
1560         (tramp-default-method): Use it.
1562         * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1563         [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1564         arguments.
1565         [scpc, rsyncc]: Remove methods.
1566         (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1567         and "ssh2_old".
1568         (tramp-do-copy-or-rename-file-out-of-band):  Change trace level.
1569         (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1571 2013-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1573         * emacs-lisp/package.el (package--initialized): Move before first use.
1575 2013-02-13  Jambunathan K  <kjambunathan@gmail.com>
1577         * icomplete.el (icomplete-hide-common-prefix):  New user option.
1578         (icomplete-first-match): New face.
1579         (icomplete-completions): Correct handling of "complete but not
1580         unique" (Bug#12638).
1582 2013-02-13  YE Qianchuan  <stool.ye@gmail.com>  (tiny change)
1584         * descr-text.el (describe-char): Display the script (bug#13698).
1586 2013-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1588         * tmm.el: Use lexical-binding and current-active-maps.
1589         (tmm-menubar): Use map-keymap and pcase.
1590         (tmm--completion-table): New function.
1591         (tmm-prompt): Use it to fix the menu order.
1592         (tmm-get-keybind): Use current-active-maps.
1594 2013-02-12  Christopher Schmidt  <christopher@ch.ristopher.com>
1596         Add dired-hide-details-mode.  (Bug#6799)
1598         * locate.el (locate-mode): Set parent mode property to dired-mode.
1600         * find-dired.el (find-dired): Call dired-insert-set-properties on
1601         initial information line.  Set process mark on end of buffer.
1602         (find-dired-sentinel):
1603         Call dired-insert-set-properties on summary.
1605         * dired.el (dired-hide-details-hide-symlink-targets)
1606         (dired-hide-details-hide-information-lines): New options.
1607         (dired-insert-directory):
1608         Set properties after final treatment of output.
1609         (dired-insert-set-properties):
1610         Set dired-hide-details-* properties.
1611         (dired-mode-map): Bind dired-hide-details-mode.
1612         (dired-mode): Set buffer-invisibility-spec to a list.
1613         (dired-next-line): Skip hidden lines.
1614         (dired-previous-line): Use dired-next-line.
1615         (dired-hide-details-mode): New minor mode.
1616         (dired-hide-details-update-invisibility-spec): New function.
1618 2013-02-13  Glenn Morris  <rgm@gnu.org>
1620         * play/yow.el: Move to obsolete/.  (Bug#9384)
1622 2013-02-13  Juri Linkov  <juri@jurta.org>
1624         * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1625         to select `ediff-control-frame' and set input focus correctly on Xfce.
1626         (Bug#12218)
1628 2013-02-13  Juri Linkov  <juri@jurta.org>
1630         * image-mode.el (image-mode-map):
1631         * doc-view.el (doc-view-mode-map):
1632         * vc/ediff-util.el (ediff-setup-keymap):
1633         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
1635 2013-02-13  Dmitry Gutov  <dgutov@yandex.ru>
1637         * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1638         performance.  Instead of recalculating indentation fully for each
1639         line, sum up indentation depth based only on visited lines.
1640         (ruby-parse-partial): Increase the depth after "do" even when END
1641         is right after it.
1642         (ruby-parse-partial): When END is in the middle of a percent
1643         literal, increase the depth if the delimiter chars belong to the
1644         paren syntax class.
1646 2013-02-13  Kirill A. Korinskiy  <catap@catap.ru>
1648         * play/fortune.el (fortune-compile): Also make the compiled file
1649         if it does not exist at all, not just if it is old.  (Bug#5338)
1651 2013-02-13  Glenn Morris  <rgm@gnu.org>
1653         * emacs-lisp/package.el (package-menu-execute): Doc fix.
1655 2013-02-13  Yves Baumes  <ybaumes@gmail.com>  (tiny change)
1657         * lisp/emacs-lisp/package.el (package-menu-execute):
1658         Add optional noquery argument.  (Bug#13625)
1660 2013-02-13  Michael Albinus  <michael.albinus@gmx.de>
1662         * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1663         if DIR exists and PARENTS is non-nil.
1665 2013-02-13  Juanma Barranquero  <lekktu@gmail.com>
1667         * progmodes/js.el (js--multi-line-declaration-indentation):
1668         Silence byte-compiler warning.
1670 2013-02-12  Michael Albinus  <michael.albinus@gmx.de>
1672         * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1674         * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1675         only if it doesn't exist.
1677         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1678         Set process marker.
1680 2013-02-12  Tassilo Horn  <tsdh@gnu.org>
1682         * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1683         UserInstallation when calling soffice to work around LibreOffice
1684         bug 37531.
1686 2013-02-12  Glenn Morris  <rgm@gnu.org>
1688         * files.el (basic-save-buffer):
1689         Offer to create a non-existing directory.  (Bug#3016)
1691         * calc/calc-graph.el (calc-graph-show-dumb):
1692         * calendar/calendar.el (calendar-mode-map):
1693         * cus-edit.el (custom-mode-map):
1694         * ehelp.el (electric-help-map):
1695         * emulation/vip.el (vip-mode-map):
1696         * epa.el (epa-key-list-mode-map):
1697         * info.el (Info-mode-map):
1698         * mail/rmail.el (rmail-mode-map):
1699         * mail/rmailsum.el (rmail-summary-mode-map):
1700         * man.el (Man-mode-map):
1701         * net/newst-plainview.el (newsticker-mode-map):
1702         * progmodes/cpp.el (cpp-edit-mode-map):
1703         * progmodes/grep.el (grep-mode-map):
1704         * progmodes/idlw-help.el (idlwave-help-mode-map):
1705         * simple.el (special-mode-map):
1706         * startup.el (splash-screen-keymap):
1707         * view.el (view-mode-map):
1708         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
1710 2013-02-11  Elias Pipping  <pipping@lavabit.com>
1712         * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1713         (bug#13679).
1715 2013-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1717         * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1719 2013-02-11  Glenn Morris  <rgm@gnu.org>
1721         * vc/diff.el (diff-use-labels): New variable.
1722         (diff-no-select): Use --label rather than -L, and first
1723         check that it is supported.  (Bug#11067)
1725         * files.el (enable-dir-local-variables): New variable.
1726         (hack-dir-local-variables): Respect enable-dir-local-variables.
1727         * tutorial.el (help-with-tutorial):
1728         Ignore directory-local variables.  (Bug#11127)
1730         * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1731         (vc-svn-global-switches): ... to here.  (Bug#13513)
1733 2013-02-10  Christopher Schmidt  <christopher@ch.ristopher.com>
1735         * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1736         Handle "foo (bar, default: xxx): " prompts.
1738 2013-02-10  Chong Yidong  <cyd@gnu.org>
1740         * files.el (basic-save-buffer-1): Do not set
1741         buffer-file-coding-system-explicit (Bug#4533).
1743         * mail/emacsbug.el (report-emacs-bug): Change binding of
1744         report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1746 2013-02-09  Jay Belanger  <jay.p.belanger@gmail.com>
1748         * calc/calc.el (calc-allow-units-as-numbers): New variable.
1749         * calc/calc-units.el (calc-convert-units): Use new variable.
1751 2013-02-09  Eli Zaretskii  <eliz@gnu.org>
1753         * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1755         * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1756         buffer-file-type.
1758         * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1759         (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1760         (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1761         coding-system-for-write instead.
1763         * jka-compr.el (jka-compr-write-region): Don't bind
1764         buffer-file-type.
1766         * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1767         buffer-file-type.
1769         * files.el (file-name-buffer-file-type-alist): Remove defvar.
1770         (insert-file-contents-literally): Remove reference to
1771         file-name-buffer-file-type-alist.
1773         * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1774         make-obsolete.
1775         (find-buffer-file-type-match, find-buffer-file-type): Remove.
1776         (find-buffer-file-type-coding-system): Remove references to
1777         find-buffer-file-type-match, find-buffer-file-type, and
1778         buffer-file-type.
1779         Don't put find-buffer-file-type-coding-system into
1780         file-coding-system-alist.
1781         (find-file-binary, find-file-text): Bind coding-system-for-read
1782         instead of file-name-buffer-file-type-alist.
1784 2013-02-09  Jambunathan K  <kjambunathan@gmail.com>
1786         * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1787         converter (Bug#13622).
1788         (doc-view-unoconv-program): Make obsolete alias.
1789         (doc-view-odf->pdf-converter-program): New variable.
1790         (doc-view-odf->pdf-converter-function): New variable.
1791         (doc-view-mode-p): Use it.
1792         (doc-view-odf->pdf-converter-unoconv):
1793         Rename from `doc-view-odf->pdf-converter-unoconv'.
1794         (doc-view-odf->pdf-converter-soffice): New function.
1795         (doc-view-convert-current-doc):
1796         Use `doc-view-odf->pdf-converter-function'.
1798 2013-02-09  Chong Yidong  <cyd@gnu.org>
1800         * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1801         view-echo-area-messages (Bug#13340).
1803         * help.el (view-echo-area-messages): Use display-buffer.
1805         * dired-x.el (dired-do-run-mail): Prompt for confirmation
1806         (Bug#13561).
1808 2013-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1810         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1811         Eval body right away, now that we do eager macroexpansion (bug#13605).
1813         * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1814         (fundamental-mode): Use run-mode-hooks.
1816         * eshell/esh-proc.el (eshell/kill): Fix last change.
1817         * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1819 2013-02-08  Aidan Gauland  <aidalgol@no8wireless.co.nz>
1821         * eshell/esh-proc.el (eshell/kill): Rewrite.
1823         * eshell/em-ls.el (show-almost-all): Declare.
1824         (eshell-do-ls): Add support for -A argument.
1826 2013-02-08  Jambunathan K  <kjambunathan@gmail.com>
1828         * icomplete.el (icomplete-forward-completions)
1829         (icomplete-backward-completions): Handle corner case (bug#13602).
1831 2013-02-07  Michael Albinus  <michael.albinus@gmx.de>
1833         * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1834         be nil.  Handle this.  (Bug#13636)
1836 2013-02-07  Richard Stallman  <rms@gnu.org>
1838         * mail/rmail.el (rmail-variables): Specify `no-conversion' for
1839         `save-buffer-coding-system'.
1841 2013-02-07  Alan Mackenzie  <acm@muc.de>
1843         Fix bug in state cache mechanism.  Remove 'BOD "strategy".  Refactor.
1844         * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
1845         (c-parse-state-get-strategy): Don't return 'BOD any more.
1846         (c-append-lower-brace-pair-to-state-cache):
1847         Extra parameter HERE instead of narrowing.
1848         Widen to top of buffer before searching backwards for a brace pair.
1849         (c-state-push-any-brace-pair): Add HERE parameter to function call.
1850         (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
1851         Narrow to parameter HERE, in place of being called narrowed.
1852         (c-remove-stale-state-cache): Extra parameter HERE in place of
1853         narrowing.  Check there's an open brace in the cache before
1854         searching for its match.
1855         (c-invalidate-state-cache-1): Add HERE parameter to function call.
1856         (c-parse-state-1): Don't narrow here for 'forward strategy,
1857         instead passing extra parameter HERE to several functions.
1858         Remove 'BOD strategy.
1860 2013-02-06  Nicolas Richard <theonewiththeevillook@yahoo.fr>  (tiny change)
1862         * emacs-lisp/package.el (describe-package-1): Tell what archive is
1863         used to install the package.
1865 2013-02-06  Glenn Morris  <rgm@gnu.org>
1867         * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
1868         if we can't get user input.  (Bug#6567)
1870         * startup.el (command-line): If simple.el is missing,
1871         test and warn about for some possible causes.
1873 2013-02-05  Jan Djärv  <jan.h.d@swipnet.se>
1875         * cus-start.el (all): Add ns-use-native-fullscreen.
1877 2013-02-05  Glenn Morris  <rgm@gnu.org>
1879         * profiler.el (profiler-report-mode-map): Add a restart menu entry.
1881         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1882         Fix directory creation in fallback case.
1884 2013-02-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1886         * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
1887         (vc-update-change-log): Use dolist.
1889 2013-02-04  Chong Yidong  <cyd@gnu.org>
1891         * thingatpt.el: Rewrite the URL detection routines, absorbing some
1892         code from ffap.el.
1893         (thing-at-point-beginning-of-url-regexp): New var.
1894         (thing-at-point-uri-schemes): Update list of URI schemes.
1895         (thing-at-point-url-regexp): Variable deleted.
1896         (thing-at-point-markedup-url-regexp): Disallow newlines.
1897         (thing-at-point-newsgroup-regexp)
1898         (thing-at-point-newsgroup-heads)
1899         (thing-at-point-default-mail-uri-scheme): New variables.
1900         (thing-at-point-bounds-of-url-at-point): Rewrite.  Use ffap's
1901         method to find the possible bounds of the URI at point.
1902         New optional argument to find ill-formed URIs.
1903         (thing-at-point-url-at-point): Rewrite.  New arguments for finding
1904         ill-formed URIs.  Use thing-at-point-bounds-of-url-at-point, and
1905         the scheme-adding heuristics from ffap-url-at-point.
1906         (thing-at-point--bounds-of-well-formed-url): New function.
1907         Do parens matching to decide whether to include parens in the URI
1908         (Bug#9153).
1910         * ffap.el: Require thingatpt.
1911         (ffap-url-at-point): Delegate URI detection to thing-at-point.
1912         All URI-valid characters are now recognized (Bug#5673).
1913         (ffap-string-at-point): Use use-region-p.
1914         (ffap-url-regexp): Extra character is handled by thing-at-point.
1915         (ffap-string-at-point-mode-alist): Allow parentheses.
1916         (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
1917         Convert to aliases; code moved to thingatpt.el.
1918         (ffap-gnus-hook): Use setq-local.
1920 2013-02-04  Glenn Morris  <rgm@gnu.org>
1922         * emacs-lisp/ert.el (ert--explain-format-atom):
1923         Don't try to print non-characters as characters.  (Bug#13543)
1925 2013-02-03  Michael Albinus  <michael.albinus@gmx.de>
1927         * net/tramp.el (tramp-debug-message): Extend function exclude list.
1928         (tramp-backtrace): New defun.
1929         (tramp-handle-insert-file-contents): Use `visit' when inserting
1930         the local copy.
1932         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
1933         Use `remote-file-name-inhibit-cache'.
1935 2013-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1937         * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
1938         (bug#13614).
1940         * subr.el (internal--called-interactively-p--get-frame): Avoid filling
1941         current-load-list (bug#13366).
1943 2013-02-02  Christopher Schmidt  <christopher@ch.ristopher.com>
1945         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1946         Identify g++ template instantiation trace.  (Bug#12287)
1947         (compilation-mode-hook, compilation-start-hook)
1948         (compilation-window-height): Simplify docstrings.  (Bug#13379)
1950 2013-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1952         * mouse.el (mouse-drag-track): Always deactivate the mark before
1953         running the final event's command since that command is in charge of
1954         activating the mark if needed (bug#13523).
1956 2013-02-02  Juri Linkov  <juri@jurta.org>
1958         * replace.el (perform-replace): Move let-bindings of isearch-*
1959         variables deeper to the loop that searches for the next match.
1960         Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
1961         Use `isearch-search-fun-default' instead of `isearch-search-fun'.
1962         (Bug#13579)
1964         * isearch.el (isearch-search-fun-default): Check for null
1965         first element of isearch-cmds as a precaution when it's used
1966         with inactive isearch.
1968 2013-02-02  Andrew W. Nosenko  <andrew.w.nosenko@gmail.com>  (tiny change)
1970         * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
1971         error when buffer in question is narrowed so position 1 is out of
1972         visible part.
1974 2013-02-02  Glenn Morris  <rgm@gnu.org>
1976         * textmodes/remember.el (remember-clipboard): Doc fix.
1978 2013-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1980         * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
1981         properties (bug#13179).
1983 2013-02-02  Juri Linkov  <juri@jurta.org>
1985         * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
1986         instead of hard-coded default face `match'.  (Bug#9438)
1988 2012-02-01  Christopher Schmidt  <christopher@ch.ristopher.com>
1990         * vc/vc-arch.el (vc-arch-registered):
1991         * vc/vc-bzr.el (vc-bzr-registered):
1992         * vc/vc-cvs.el (vc-cvs-registered):
1993         * vc/vc-git.el (vc-git-registered):
1994         * vc/vc-hg.el (vc-hg-registered):
1995         * vc/vc-mtn.el (vc-mtn-registered):
1996         * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
1997         (Bug#13139)
1999         * info.el (Info-next-reference, Info-prev-reference): Add numeric
2000         prefix argument.  (Bug#11656)
2002 2013-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2004         * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
2006 2013-02-01  Glenn Morris  <rgm@gnu.org>
2008         * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
2009         if the backend is known not to support it.
2011         * imenu.el (imenu-default-create-index-function):
2012         Tweak infinite loop test to check for forward motion as well as none.
2014 2013-02-01  Alex Harsanyi  <AlexHarsanyi@gmail.com>
2016         * net/soap-client.el (soap-invoke): Encode the string for
2017         `url-request-data' as UTF-8.
2018         Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
2020 2013-02-01  Glenn Morris  <rgm@gnu.org>
2022         * calc/calc-help.el (calc-view-news): Use view-emacs-news.
2024         * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
2026 2013-01-31  Michael Albinus  <michael.albinus@gmx.de>
2028         * net/tramp.el (tramp-tramp-file-p): Comment check for
2029         `string-as-unibyte'.  The function does not exist on XEmacs, and
2030         likely we need another approach.
2032         * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
2033         `tramp-gw-*' variables are bound.
2035 2013-01-31  Glenn Morris  <rgm@gnu.org>
2037         * files.el (basic-save-buffer-2): Choose coding system for
2038         writing the file before backing it up, to reduce delay between
2039         backing up and writing the new version.  (Bug#13522)
2041 2013-01-31  Michal Nazarewicz  <mina86@mina86.com>
2043         * simple.el (cycle-spacing): New command.
2044         (just-one-space): Use it.
2046 2013-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2048         * progmodes/opascal.el: Rename from delphi.el.  Use lexical-binding.
2049         (opascal-newline-always-indents): Remove custom.
2050         (opascal-tab, opascal-newline): Remove commands.
2051         (opascal-new-comment-line): Insert "\n" instead of calling newline.
2052         (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
2053         (opascal-save-match-data): Remove, use save-match-data instead.
2054         (opascal-save-state): Use with-silent-modifications.
2056         * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
2057         (bug#13585).
2059 2013-01-30  Juri Linkov  <juri@jurta.org>
2061         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
2062         Use fullboth as an alias for fullscreen.  Suggested by Jan Djärv in
2063         <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
2065 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2067         * progmodes/make-mode.el (makefile-backslash-region): Don't compute
2068         column if we're just deleting the backslashes.
2069         (makefile-fill-paragraph): Use eolp.
2071 2013-01-30  Michael Albinus  <michael.albinus@gmx.de>
2073         * autorevert.el (auto-revert-use-notify): Fix docstring.
2075 2013-01-30  Leo Liu  <sdl.web@gmail.com>
2077         * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
2079 2013-01-30  Glenn Morris  <rgm@gnu.org>
2081         * mouse.el (mouse-drag-line): Avoid pushing same event onto
2082         unread-command-events twice in some cases.  This tries to implement
2083         the 2012-07-26 changes in a different way.  (Bug#13560)
2085 2013-01-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2087         * progmodes/python.el
2088         (python-pdbtrack-comint-output-filter-function): Enhancements on
2089         stacktrace detection.  (thanks @gnovak)
2091 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2093         * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
2094         (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
2095         Use defvar-local.
2096         (jit-lock-register): Use setq-local.
2098 2013-01-30  Jay Belanger  <jay.p.belanger@gmail.com>
2100         * calc-units.el (math-default-units-table): Remove initial value.
2101         (calc-convert-units): Treat expressions where all the units cancel as
2102         if they didn't have units.
2104 2013-01-30  Michael Albinus  <michael.albinus@gmx.de>
2106         * net/tramp.el (tramp-process-connection-type): Fix docstring.
2107         (tramp-completion-reread-directory-timeout): Fix type.
2108         (tramp-connection-min-time-diff): New defcustom.
2110         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
2112 2013-01-30  Glenn Morris  <rgm@gnu.org>
2114         * imenu.el (imenu-default-create-index-function):
2115         Put back a version of the infinite loop test removed 2013-01-23.
2117 2013-01-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2119         * progmodes/python.el (python-shell-parse-command):
2120         Find python-shell-interpreter with modified environment.
2122 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2124         * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
2126 2013-01-29  Alan Mackenzie  <acm@muc.de>
2128         Amend to fontify /regexp/s in actions correctly.
2129         * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
2130         (c-awk-harmless-string*-here-re): Braces, parens and semicolons
2131         are no longer included.
2132         (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
2133         What used to be these variables without "-line" in the name.
2134         (c-awk-neutral-re): { is no longer neutral.  Escaped newlines now are.
2135         (c-awk-non-arith-op-bra-re): Now also matches {.
2136         (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
2137         "return", and "case".
2138         (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
2139         by /.
2140         (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
2141         (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
2143 2013-01-29  Michael Albinus  <michael.albinus@gmx.de>
2145         * autorevert.el (auto-revert-use-notify):
2146         Use `custom-initialize-default' for initialization.  (Bug#13583)
2148         * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
2150         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2151         Catch `suppress'.  Otherwise, `tramp-run-real-handler' might be called
2152         in `tramp-file-name-handler'.
2153         (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
2154         compatibility.
2155         (tramp-compute-multi-hops): Check, whether
2156         `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
2158 2013-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2160         * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
2161         (bug#13297).
2163 2013-01-27  Dmitry Gutov  <dgutov@yandex.ru>
2165         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
2166         checks made superfluous by the \_< operator.
2167         * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
2168         temporarily) broken indentation.
2169         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2170         Highlight nested constants, too.  \_< broke that.
2172 2013-01-27  Nobuyoshi Nakada  <nobu@ruby-lang.org>
2174         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
2175         instead of "\\b".
2177 2013-01-27  Michael Albinus  <michael.albinus@gmx.de>
2179         * autorevert.el (auto-revert-handler): Notifications which result
2180         from a saved file shall not be taken into account.  (Bug#13557)
2182 2013-01-26  Andreas Schwab  <schwab@linux-m68k.org>
2184         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
2185         parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
2186         (lisp-mode): Pass t for it.  (Bug#13556)
2188 2013-01-25  Alan Mackenzie  <acm@muc.de>
2190         AWK Mode: Fix indentation bug at top level.  Bug #12274.
2192         * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
2193         just before CASE 5D.
2195 2013-01-25  Dmitry Antipov  <dmantipov@yandex.ru>
2197         * net/socks.el (socks-nslookup-host): Use string-to-number.
2199 2013-01-25  Michael Albinus  <michael.albinus@gmx.de>
2201         * autorevert.el (auto-revert-remote-files)
2202         (auto-revert-notify-exclude-dir-regexp): New defcustoms.
2203         (auto-revert-notify-enabled, auto-revert-use-notify)
2204         (auto-revert-notify-watch-descriptor-hash-list)
2205         (auto-revert-notify-modified-p, auto-revert-notify-event-p)
2206         (auto-revert-notify-event-descriptor)
2207         (auto-revert-notify-event-action)
2208         (auto-revert-notify-event-file-name): Doc fix.
2209         (global-auto-revert-mode): Reorder checks.
2210         (auto-revert-notify-rm-watch): Respect changed values of
2211         `auto-revert-notify-watch-descriptor-hash-list'.
2212         (auto-revert-notify-add-watch): Check for
2213         `auto-revert-notify-exclude-dir-regexp'.  Adapt filters for
2214         `inotify-add-watch'.  Watch `default-directory' instead of
2215         `buffer-file-name'.  `auto-revert-notify-watch-descriptor-hash-list'
2216         has a changed meaning now.  (Bug#13540)
2217         (auto-revert-notify-handler): Change implementation wrt events
2218         returning from a directory.
2219         (auto-revert-handler): Reorder implementation for checks of remote
2220         files.
2221         (auto-revert-buffers): Fix parentheses error.
2223 2013-01-25  Fabián Ezequiel Gallina  <fgallina@cuca>
2225         * progmodes/python.el: Enhancements to header documentation about
2226         skeletons.  (Bug#5716)
2228         * imenu.el (imenu-default-create-index-function): Remove useless
2229         infinite loop check.  (Bug#13438)
2231 2013-01-25  Alan Mackenzie  <acm@muc.de>
2233         Fix a bug in the state cache mechanism.  Refactor this a bit.
2235         * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
2236         `cache-pos' element from the return value.
2237         (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
2238         buffer to enable proper searching from beyond HERE.  Amend the
2239         test for detecting the sought brace pair.  Amend the value written
2240         to the "brace desert cache" when the brace isn't found.
2241         (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
2242         and several other variables analogously.
2243         (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
2244         parameter to a locally calculated variable.
2245         (c-parse-state-1): Change the calling conventions to the two
2246         defuns involving `cache-pos'.
2248 2013-01-25  Chong Yidong  <cyd@gnu.org>
2250         * xml.el (xml-entity-or-char-ref-re): Fix regexp.
2252 2013-01-24  Aaron Ecay <aaronecay@gmail.com>  (tiny change)
2254         * paren.el (show-paren-function): Make sure to set 'priority and
2255         'face only if the overlay does exist.
2257 2013-01-24  Michael Albinus  <michael.albinus@gmx.de>
2259         * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
2261         * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
2262         basic attributes.
2263         (tramp-sh-handle-set-file-acl): Improve error checking.
2265 2013-01-24  Dmitry Antipov  <dmantipov@yandex.ru>
2267         * doc-view.el (doc-view-display): Force mode line update until all
2268         document is converted.  Suggested by Stefan Monnier (Bug#13164).
2270 2013-01-23  Bastien Guerry  <bzg@gnu.org>
2272         * paren.el (show-paren-function): Make sure an overlay exists
2273         before trying to delete it.  Also use `pos' as a position only
2274         when it is an integer.
2276 2013-01-23  Dmitry Antipov  <dmantipov@yandex.ru>
2278         * play/gametree.el (gametree-break-line-here): Use point-marker.
2280 2013-01-22  Michael Albinus  <michael.albinus@gmx.de>
2282         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
2283         Mark descriptive parts with `display' property.
2285 2013-01-21  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2287         * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
2288         New variable to map standard dict names to hunspell ones.
2289         (ispell-set-spellchecker-params): Make sure specific dict names
2290         are used for standard dicts with hunspell.
2292 2013-01-21  Tassilo Horn  <tsdh@gnu.org>
2294         * textmodes/reftex-cite.el (reftex-format-citation): Add format
2295         chars for note (%N) and url (%U).
2296         * textmodes/reftex-vars.el (reftex-cite-format): Document them.
2298 2013-01-21  Juri Linkov  <juri@jurta.org>
2300         * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
2301         in addition to existing separate binding `meta f10' in `global-map'.
2302         (Bug#13484)
2304 2013-01-21  Michael Albinus  <michael.albinus@gmx.de>
2306         Improve XEmacs compatibility.
2308         * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
2310         * net/tramp-adb.el (top): Require `time-date'.
2311         (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
2312         (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
2313         Use `tramp-file-name-handler'.
2314         (tramp-adb-maybe-open-connection):
2315         Use `tramp-compat-set-process-query-on-exit-flag'.
2317         * net/tramp-sh.el (tramp-sh-handle-file-acl):
2318         Use `tramp-compat-funcall'.
2320         * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2321         `tramp-compat-funcall'.
2323 2013-01-21  Jürgen Hötzel  <juergen@archlinux.org>
2325         * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2326         reimplementation using "adb shell command ..." instead of running
2327         remote shell interactively.
2329 2013-01-20  Glenn Morris  <rgm@gnu.org>
2331         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2332         Add native profiler menu entries.
2334         * profiler.el (profiler-running-p): New function.
2335         (profiler-cpu-profile): Use profiler-running-p.
2336         (profiler-report-mode-map): Add some more menu entries.
2338 2013-01-19  Glenn Morris  <rgm@gnu.org>
2340         * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2341         fixes 2012-12-07 change.  (Bug#13499)
2343 2013-01-19  Leo Liu  <sdl.web@gmail.com>
2345         * dired.el (dired-get-marked-files): Prune erroneous values due to
2346         last change.  (Bug#13152)
2348 2013-01-19  Glenn Morris  <rgm@gnu.org>
2350         * progmodes/etags.el (tags-table-check-computed-list):
2351         Preserve point in tags buffer.  (Bug#13412)
2353         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2355 2013-01-19  Christian Wittern  <cwittern@gmail.com>  (tiny change)
2356             Chong Yidong  <cyd@gnu.org>
2358         * image-mode.el (image-next-file, image-previous-file):
2359         New commands (Bug#8453).
2360         (image-mode-map): Bind them to n and p.
2361         (image-mode--images-in-directory): New helper function.
2363 2013-01-19  Chong Yidong  <cyd@gnu.org>
2365         * image-mode.el (image-mode-fit-frame): Add a frame argument.
2366         Suggested by Drew Adams (Bug#7730).  Handle window decorations;
2367         save and restore the old window configuration.
2369 2013-01-18  Leo Liu  <sdl.web@gmail.com>
2371         * progmodes/js.el: Tweak autoload cookie for alias.
2373 2013-01-17  Michael Albinus  <michael.albinus@gmx.de>
2375         * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2376         buffer local, again.  This was lost with the fix on 2013-01-12.
2378 2013-01-17  Jürgen Hötzel  <juergen@archlinux.org>
2380         * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2381         order to support several eshell buffers in parallel.
2383 2013-01-17  Michael Albinus  <michael.albinus@gmx.de>
2385         * autorevert.el (auto-revert-use-notify): In the :set function, do
2386         not modify `kill-buffer-hook'.
2387         (auto-revert-notify-rm-watch):
2388         Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2389         (auto-revert-notify-add-watch): Do not call
2390         `auto-revert-notify-rm-watch', but add it to a buffer local
2391         `kill-buffer-hook'.
2393 2013-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2395         * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2396         call to `eval' rather than a backquoted lambda.
2398 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2400         * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2401         to return an explicit nil.
2402         (advice--remove-function): Change accordingly.
2404         * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2405         the use of nadvice.el.
2407         * progmodes/which-func.el (which-function): Silence imenu errors
2408         (bug#13433).
2410 2013-01-15  Michael R. Mauger  <mmaug@yahoo.com>
2412         * progmodes/sql.el: (sql-imenu-generic-expression):
2413         (sql-mode-font-lock-object-name): Match schema qualified names.
2414         (sql-connect): Use string keys.
2415         (sql-product-interactive): Wait for interpreter prompt.
2416         (sql-comint-oracle): Set process coding based on NLS_LANG.
2418 2013-01-15  Michael R. Mauger  <mmaug@yahoo.com>
2420         * progmodes/sql.el (sql-output-to-send): Remove, unused.
2421         (sql-interactive-remove-continuation-prompt):
2422         (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2424 2013-01-14  Leo Liu  <sdl.web@gmail.com>
2426         * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2427         (Bug#13420)
2429 2013-01-14  Glenn Morris  <rgm@gnu.org>
2431         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2432         Fix interpretation of gnu line.col1-col2 format.  (Bug#13335)
2434 2013-01-13  Fabián Ezequiel Gallina  <fgallina@cuca>
2436         * progmodes/python.el (python-nav-end-of-statement):
2437         Fix cornercase when handling multiline strings.
2439 2013-01-13  Richard Stallman  <rms@gnu.org>
2441         * mail/sendmail.el (mail-position-on-field): Add doc string.
2443         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2444         Get current message boundaries and pass them to
2445         message-forward-make-body-mime.  Minor style changes.
2447 2013-01-13  Eli Zaretskii  <eliz@gnu.org>
2449         * cus-start.el (all): Avoid warnings about
2450         scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2452 2013-01-11  Jan Djärv  <jan.h.d@swipnet.se>
2454         * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2456 2013-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2458         * jit-lock.el (jit-lock-debug-mode): New minor mode.
2459         (jit-lock--debug-fontifying): New var.
2460         (jit-lock--debug-fontify): New function.
2461         * subr.el (condition-case-unless-debug): Don't prevent catching the
2462         error, just let the debbugger run.
2463         * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2464         timer code and don't drop errors silently.
2466 2013-01-12  Michael Albinus  <michael.albinus@gmx.de>
2468         * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2469         `permanent-local' property.
2470         (auto-revert-notify-handler): Use `file-equal-p'.
2472 2013-01-12  Eli Zaretskii  <eliz@gnu.org>
2474         * autorevert.el (auto-revert-notify-handler): Fix filtering of
2475         file notification by ACTION. For filtering by file name, compare
2476         only the non-directory part of the file name.
2478 2013-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2480         * autorevert.el: Use cl-lib instead of cl.
2482         * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2483         (vc-bzr-checkin): Use it.
2484         * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2485         will preserve match-data.
2487 2013-01-11  Felix H. Dahlke  <fhd@ubercode.de>
2489         * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2490         (js--declaration-keyword-re): New var.
2491         (js--multi-line-declaration-indentation): New function.
2492         (js--proper-indentation): Use it.
2494 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
2496         * calc/calc.el (calc-highlight-selections-with-faces)
2497          (calc-dispatch):
2498         * comint.el (comint-history-isearch-message):
2499         * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2500         * ffap.el (ffap-string-at-point-region, ffap-next)
2501         (ffap-string-at-point, ffap-string-around)
2502         (ffap-copy-string-as-kill, ffap-highlight-overlay)
2503         (ffap-literally):
2504         * font-lock.el (font-lock-keywords-alist)
2505         (font-lock-removed-keywords-alist):
2506         * help-mode.el (help-xref-symbol-regexp):
2507         * info.el (Info-find-emacs-command-nodes):
2508         * international/mule.el (add-to-coding-system-list):
2509         * isearch.el (isearch-message-function, isearch-fail-pos):
2510         * misearch.el (multi-isearch-next-buffer-function):
2511         * newcomment.el (comment-box):
2512         * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2513         (pr-setting-database):
2514         * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2515         (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2516         (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2517         (pike-font-lock-keywords-3):
2518         * progmodes/compile.el (compile):
2519         * progmodes/etags.el (tags-table-files)
2520         (tags-table-files-function, tags-included-tables-function):
2521         * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2522         (gdb-restore-windows):
2523         * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2524         (ps-n-up-filling-database):
2525         * server.el (server-buffer, server-log):
2526         * simple.el (newline, delete-backward-char, delete-forward-char)
2527         (minibuffer-history-isearch-message, kill-line, track-eol)
2528         (temporary-goal-column):
2529         * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2530         (flyspell-default-deplacement-commands):
2531         * textmodes/ispell.el (ispell-accept-output):
2532         * textmodes/sgml-mode.el (html-tag-help):
2533         * vc/compare-w.el (compare-ignore-whitespace)
2534         (compare-ignore-case, compare-windows-dehighlight):
2535         * vc/diff.el (diff):
2536         * whitespace.el (whitespace-point)
2537         (whitespace-font-lock-refontify, whitespace-bob-marker)
2538         (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2540 2013-01-11  Michael Albinus  <michael.albinus@gmx.de>
2542         * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2543         (auto-revert-notify-rm-watch): Ignore errors.
2544         (auto-revert-notify-add-watch): Ignore errors.  Use '(modify) for
2545         inotify, and '(size last-write-time) for w32notify.
2546         Set buffer-local `auto-revert-use-notify' to nil when adding a file
2547         watch fails - this is a fallback to the file modification check.
2548         (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2549         (auto-revert-notify-event-action)
2550         (auto-revert-notify-event-file-name): New defuns.
2551         (auto-revert-notify-handler): Use them.  Implement first
2552         plausibility checks.
2553         (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2555 2013-01-11  Julien Danjou  <julien@danjou.info>
2557         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2558         max are almost equal. Also return the correct value for V which is
2559         already between 0 and 1.
2561 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
2563         * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2565 2013-01-11  Eli Zaretskii  <eliz@gnu.org>
2567         * autorevert.el (auto-revert-notify-rm-watch)
2568         (auto-revert-notify-add-watch): Fix typos in w32notify function
2569         names.
2571 2013-01-10  Michael Albinus  <michael.albinus@gmx.de>
2573         * autorevert.el (auto-revert-notify-enabled): Move up.
2574         (auto-revert-use-notify): New defcustom.
2575         (auto-revert-mode, global-auto-revert-mode)
2576         (auto-revert-notify-add-watch, auto-revert-handler)
2577         (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2578         `auto-revert-notify-enabled'.
2580 2013-01-10  Elias Pipping  <pipping@exherbo.org>
2582         * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2583         * doc-view.el (doc-view-document->bitmap):
2584         Use doc-view-single-page-converter-function instead of
2585         single-page-converter arg; adjust callers.
2587 2013-01-10  Feng Li  <fengli@gmail.com>  (tiny change)
2589         * progmodes/which-func.el (which-function): Understand Semantic's use
2590         of overlays in imenu--index-alist.
2592 2013-01-10  Wolfgang Jenkner  <wjenkner@inode.at>
2594         * man.el: Handle different "man -k" behaviors (bug#13160).  Use utf-8.
2595         (Man-man-k-use-anchor): New var.
2596         (Man-parse-man-k): New function.
2597         (Man-completion-table): Use it.
2598         (man): Flush the completion cache between uses.
2600 2013-01-10  Michael Albinus  <michael.albinus@gmx.de>
2602         * autorevert.el: Add file watch support.
2603         (auto-revert-notify-enabled): New defconst.
2604         (auto-revert-notify-watch-descriptor-hash-list)
2605         (auto-revert-notify-watch-descriptor)
2606         (auto-revert-notify-modified-p): New defvars.
2607         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2608         (auto-revert-notify-handler): New defuns.
2609         (auto-revert-mode, global-auto-revert-mode): Remove file watches
2610         when mode is disabled.
2611         (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2612         (auto-revert-buffers): Add file watches for active buffers.
2614 2013-01-10  Dmitry Antipov  <dmantipov@yandex.ru>
2616         * cus-start.el (toplevel): Only allow float values for
2617         scroll-up-aggressively and scroll-down-aggressively.
2618         Allow any number for line-spacing.
2620 2013-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2622         * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2623         (doc-view-pdf->png-converter-function): Use mupdf if available.
2624         (doc-view-djvu->png-converter-function)
2625         (doc-view-ps->png-converter-function): Remove.
2626         (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2627         (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2628         (doc-view-already-converted-p): Adjust accordingly.
2629         (doc-view-mode-p): Simplify.
2630         (doc-view-enlarge): Use setq-local.
2631         (doc-view-pdf->png-converter-ghostscript)
2632         (doc-view-djvu->png-converter-ddjvu)
2633         (doc-view-pdf->png-converter-mupdf): Rework to call
2634         doc-view-start-process directly.
2635         (doc-view-pdf/ps->png): Simplify accordingly.
2636         (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2637         (doc-view-document->bitmap): Rename from doc-view-document->png.
2638         (doc-view-convert-current-doc): Merge pdf and djvu cases.
2639         (doc-view-set-slice-from-bounding-box): Fix completion table.
2640         (doc-view-mode): Use add-hook for after-revert-hook.
2642 2013-01-10  Glenn Morris  <rgm@gnu.org>
2644         * emacs-lisp/authors.el (authors-ignored-files)
2645         (authors-valid-file-names, authors-renamed-files-alist):
2646         Add some more entries.
2648 2013-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2650         * image-mode.el (image-mode-winprops): Don't throw away the fallback
2651         `t' pseudo-window entry.
2653 2013-01-10  Alan Mackenzie  <acm@muc.de>
2655         Fix bugs in the c-parse-state mechanism.  Reuse some markers
2656         instead of continually generating new ones.
2658         * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2659         (c-state-old-cpp-end-marker): New variables.
2660         (c-append-lower-brace-pair-to-state-cache): Start a backward
2661         search for "}" definitively outside CPP constructs.
2662         (c-remove-stale-state-cache): Inform the caller of a need to
2663         search back for a brace pair in certain circumstances.
2664         (c-state-maybe-marker): New macro.
2665         (c-parse-state): Reuse markers when appropriate.
2667 2013-01-10  Glenn Morris  <rgm@gnu.org>
2669         * simple.el (execute-extended-command): Doc fix.
2670         Bind prefix-arg around read-extended-command, for prompt.  (Bug#13395)
2672 2013-01-10  Chong Yidong  <cyd@gnu.org>
2674         * faces.el (read-face-name): Doc fix.
2676 2013-01-10  Roland Winkler  <winkler@gnu.org>
2678         * emacs-lisp/crm.el: Allow any regexp for separators.
2679         (crm-default-separator): All spaces around the default comma separator.
2680         (crm--completion-command): New macro.
2681         (crm-completion-help, crm-complete, crm-complete-word): Use it.
2682         (crm-complete-and-exit): Handle non-single-char separators.
2684 2013-01-09  Elias Pipping  <pipping@lavabit.com>
2686         * doc-view.el: Add support for DjVu (bug#13164).
2687         (doc-view-djvu->png-converter-function): New config var.
2688         (doc-view-single-page-converter-function, doc-view--image-type)
2689         (doc-view--image-file-extension): New vars.
2690         (doc-view-mode): Initialize them.
2691         (doc-view-goto-page): Use them.
2692         (doc-view-mode-p): Add support for ddjvu.
2693         (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2694         (doc-view-set-up-single-converter): New funs.
2695         (doc-view-pdf/ps->png): Extend for djvu.
2696         (doc-view-document->png): Rename from doc-view-pdf->png.
2697         (doc-view-convert-current-doc): Handle djvu.
2698         (doc-view-insert-image, doc-view-display)
2699         (doc-view-already-converted-p): Don't hardcode png.
2700         (doc-view-set-doc-type): Recognize djvu docs.
2702 2013-01-09  Elias Pipping  <pipping@lavabit.com>
2704         * doc-view.el: Add support for mupdf converter (bug#13164).
2705         (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2706         (doc-view-ps->png-converter-function): New config vars.
2707         (doc-view-pdf->png-converter-ghostscript)
2708         (doc-view-ps->png-converter-ghostscript)
2709         (doc-view-pdf->png-converter-mupdf): New functions.
2710         (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2712 2013-01-09  Jürgen Hötzel  <juergen@archlinux.org>
2714         * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2715         first in session cache: When `tramp-own-remote-path' is in
2716         `tramp-remote-path', the remote path is only set in the session
2717         cache.
2719 2013-01-09  Glenn Morris  <rgm@gnu.org>
2721         * emacs-lisp/trace.el (trace-function-foreground)
2722         (trace-function-background): Doc fix.
2724 2013-01-09  Juri Linkov  <juri@jurta.org>
2726         * international/mule-cmds.el (read-char-by-name): Move let-binding
2727         of completion-ignore-case around completing-read to fix regression
2728         exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2729         `string-match-p' using the nil value of `case-fold-search' and
2730         `completion-ignore-case' in `completion-pcm--all-completions'.
2731         (Bug#12615).
2733 2013-01-09  Glenn Morris  <rgm@gnu.org>
2735         * progmodes/compile.el (compilation-parse-errors):
2736         Fix typo.  (Bug#13369)
2738 2013-01-09  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
2740         * comint.el (comint-send-input): Check size of buffer before
2741         waiting for process output, in case already accepted.  (Bug#13290)
2743 2013-01-09  Paul Eggert  <eggert@cs.ucla.edu>
2745         Spelling fixes.
2746         * net/tramp-adb.el (tramp-adb-get-toolbox):
2747         Fix misspelling of 'unknown'.
2749 2013-01-08  Juri Linkov  <juri@jurta.org>
2751         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2752         * progmodes/flymake.el (flymake-errline, flymake-warnline):
2753         Use underline style wave on terminals that support it.  (Bug#13000)
2755 2013-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2757         * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2758         the predicate returns nil.
2760         * simple.el: Use lexical-binding.
2761         (primitive-undo): Use pcase.
2762         (minibuffer-history-isearch-push-state): Use a closure.
2764 2013-01-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
2766         * simple.el (primitive-undo): Move from undo.c.
2768 2013-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2770         * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2771         (cvs-mode-remove-handled): Use it (bug#13380).
2773         * emacs-lisp/nadvice.el (advice--tweak): New function.
2774         (advice--remove-function, advice--subst-main): Use it.
2776         * emacs-lisp/advice.el: Update commentary.
2778 2013-01-08  Michael Albinus  <michael.albinus@gmx.de>
2780         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2781         Remove spurious entry.
2783 2013-01-08  Glenn Morris  <rgm@gnu.org>
2785         * net/tramp.el (tramp-default-host-alist): Add :version.
2787 2013-01-08  Juri Linkov  <juri@jurta.org>
2789         * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2790         single completion.  (Bug#12456)
2791         (info--manual-names): Expand node completions into an explicit list
2792         before appending it to another list.  Filter out internal buffers
2793         with the leading space in the buffer name.  (Bug#10771)
2795 2013-01-08  Juri Linkov  <juri@jurta.org>
2797         * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2798         that defaults to the Top node.
2799         (Info-goto-node, Info-read-node-name): Doc fix to mention that
2800         the short format (FILENAME) goes to the Top node.
2801         (Info-build-node-completions): Rename arg `file' to `filename'.
2802         (Bug#13365)
2804 2013-01-07  Bastien Guerry  <bzg@gnu.org>
2806         * menu-bar.el (menu-bar-search-documentation-menu):
2807         Use `apropos-user-option' and fix the help message.
2809 2013-01-07  Bastien Guerry  <bzg@gnu.org>
2811         * apropos.el (apropos-do-all): Update docstring.
2812         (apropos-user-option-button): New face.
2813         (apropos-user-option): Rename from `apropos-variable' and update
2814         docstring.
2815         (apropos-variable): Rewrite, now show all variables by default.
2816         (apropos-print): Mention "User option" instead of "Variable" when
2817         printing doc for user options.  (Bug#13276)
2819 2013-01-07  Jürgen Hötzel  <juergen@archlinux.org>
2821         * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2822         Handle filename correctly, when parsing "source -> target" symlink
2823         output.
2824         (tramp-adb-handle-set-file-times): New defun.
2826 2013-01-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2828         * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2829         advice list when the interactive-spec of ad-Advice-* changes.
2831 2013-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2833         * wid-edit.el (widget-default-get): Work for inlined elements.
2834         (Bug#12670)
2836 2013-01-07  Michael Albinus  <michael.albinus@gmx.de>
2838         * net/tramp.el (tramp-default-host-alist): New defcustom.
2839         (tramp-find-host): Use it.
2840         (tramp-eshell-directory-change): Move from tramp-sh.el.  Add to
2841         `eshell-directory-change-hook'.
2843         * net/tramp-adb.el (top): Add adb specific entry in
2844         `tramp-default-host-alist'.
2845         (tramp-adb-file-name-host): Remove function.
2846         (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2847         Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
2849         * net/tramp-sh.el: Move eshell integration code to tramp.el.
2851 2013-01-06  Jürgen Hötzel  <juergen@archlinux.org>
2853         * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
2855 2013-01-06  Michael Albinus  <michael.albinus@gmx.de>
2857         * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
2858         consist of more than one digit.
2859         (tramp-adb-file-name-handler-alist):
2860         Use `tramp-handle-file-exists-p' consistently.
2861         (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
2862         (tramp-adb-handle-file-exists-p): Remove function.
2863         (tramp-adb-file-name-host): New defun.
2864         (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2865         Use it.
2866         (tramp-adb-maybe-open-connection): Set "remote-path" property.
2868 2013-01-06  Chong Yidong  <cyd@gnu.org>
2870         * vc/vc.el (vc-next-action): Detect buffer modifications
2871         conflicting with locking VCS operation (Bug#11490).
2873         * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
2875 2013-01-05  Michael Albinus  <michael.albinus@gmx.de>
2877         * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2878         (tramp-adb-handle-directory-files-and-attributes): Fix typos.
2880 2013-01-05  Jürgen Hötzel  <juergen@archlinux.org>
2882         * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
2883         parsing of ls output using regular expression (handle filenames
2884         with spaces).  Use virtual device number.
2885         (tramp-do-parse-file-attributes-with-ls): New defun (Code
2886         cleanup).
2888 2013-01-04  Daiki Ueno  <ueno@gnu.org>
2890         * epg.el: Silence byte-compiler warnings.
2891         (epg--start): Use delete-char instead of delete-backward-char.
2892         (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
2894 2013-01-04  Daiki Ueno  <ueno@gnu.org>
2896         * epg.el (epg--start): Don't call "tty" program on W32 platforms.
2897         Suggested by Eli Zaretskii  <eliz@gnu.org>.
2899 2013-01-04  Michael Albinus  <michael.albinus@gmx.de>
2901         * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
2902         non-negative integers.  Otherwise, the default values are used.
2903         (tramp-convert-file-attributes): Convert uid and gid to integers.
2905 2013-01-04  Glenn Morris  <rgm@gnu.org>
2907         * term.el (term-handle-colors-array): Ensure face attributes
2908         are fully specified, not nil.  (Bug#13337)
2910         * term.el (term-default-fg-color, term-default-bg-color):
2911         Fix custom type.
2913         * progmodes/etags.el (tags-compression-info-list): Doc fix.
2914         (tag-find-file-of-tag-noselect): Check auto-compression-mode
2915         rather than 'jka-compr being loaded.  (Bug#13338)
2917 2013-01-04  Wesley Dawson  <whd@lavabit.com>  (tiny change)
2919         * icomplete.el (icomplete-completions):
2920         Honor icomplete-prospects-height once more following
2921         2012-11-29 changes.  (Bug#13224)
2923 2013-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2925         * subr.el (internal--called-interactively-p--get-frame): Find aliases
2926         of called-interactively-p as well (bug#13237).
2928         * view.el (view--enable, view--disable): Rename from view-mode-enable
2929         and view-mode-disable and assume it's called from view-mode.
2930         (view-mode-enable, view-mode-disable): Redefine as obsolete
2931         compatibility layer above view-mode.
2932         (view-mode-enter): Call `view-mode'.
2934         * files.el (after-find-file): Call `view-mode'.
2936         * doc-view.el (doc-view-scale-internally): New var.
2937         (doc-view-enlarge, doc-view-insert-image): Obey it.
2939 2013-01-03  Daiki Ueno  <ueno@gnu.org>
2941         * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
2942         exist.  (Bug#13344)
2944 2013-01-03  Glenn Morris  <rgm@gnu.org>
2946         * mail/rmail.el (rmail-set-header-1): Ignore case.
2947         Handle multi-line headers.  (Bug#13330)
2949         * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
2950         Handle paragraph starting at beginning of buffer.
2952         * subr.el (eval-after-load): Don't purecopy the form, so that it
2953         can be nconc'd later on; reverts 2009-11-11 change.  (Bug#13331)
2955         * emacs-lisp/byte-run.el (defun): Place cl declarations
2956         after any interactive spec.  (Bug#13265)
2958 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
2960         * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
2961         defun.  Don't check for DECL if DOCSTRING isn't a string.
2962         (defun): Likewise.
2964 2013-01-02  Glenn Morris  <rgm@gnu.org>
2966         * eshell/em-cmpl.el (eshell-pcomplete):
2967         More thoroughly imitate pcomplete.  (Bug#13293)
2969         * files.el (parse-colon-path): Doc fix.  (Bug#12351)
2970         Return nil for empty path elements.  (Bug#13296)
2972 2013-01-02  Fabián Ezequiel Gallina  <fgallina@cuca>
2974         * progmodes/python.el (python-nav-end-of-statement): Rewrite in
2975         order to improve efficiency (Based on Daniel Colascione's
2976         <dancol@dancol.org> patch).  (Bug#13182)
2978 2013-01-02  Glenn Morris  <rgm@gnu.org>
2980         * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
2982 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
2984         * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
2985         neither DOCSTRING nor DECL was given.  (Bug#13316)
2987 2013-01-02  Michael Albinus  <michael.albinus@gmx.de>
2989         * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
2990         `error' call.
2991         (tramp-do-copy-or-rename-file): Ignore errors when calling
2992         `set-file-extended-attributes'.
2994         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2995         Add handler for `file-acl'.
2996         (tramp-smb-handle-file-acl): New defun.
2998 2013-01-02  Jay Belanger  <jay.p.belanger@gmail.com>
3000         * calc/README: Mention ISO 8601 week-numbering dates.
3002 2013-01-01  Martin Rudalics  <rudalics@gmx.at>
3004         * view.el (view-mode-enable): New argument run-view-mode-hook.
3005         Run view-mode-hook only when it's non-nil (Bug#13315).
3006         (view-mode-enter): Call view-mode-enable with run-view-mode-hook
3007         argument t.
3009 2012-12-31  Jürgen Hötzel  <juergen@archlinux.org>
3011         * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
3012         (No device connected, invalid device name). (Bug #13299)
3014 2012-12-31  Martin Rudalics  <rudalics@gmx.at>
3016         * window.el (window-resizable--p): Rename to window-resizable-p.
3017         (window-resize-no-error): New function.
3019         * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
3020         broken in fix from 2012-12-28.
3022 2012-12-31  Stefan Monnier  <monnier@iro.umontreal.ca>
3024         * subr.el (special-form-p): Don't signal errors on undef aliases.
3026 2012-12-31  Jay Belanger  <jay.p.belanger@gmail.com>
3028         * calc/calc-forms.el (math-parse-date): Try using
3029         `math-parse-iso-date' when it looks like it might be needed.
3030         Allow times of 24:00.
3031         (math-parse-date-validate, math-parse-iso-date-validate):  Allow times
3032         of 24:00.
3034 2012-12-30  Glenn Morris  <rgm@gnu.org>
3036         * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
3037         Remove unnecessary/buggy autoloads (missing interactive).  (Bug#13294)
3038         (rmail-summary-displayed, rmail-summary): Declare.
3039         (mairix-rmail-display): Just require rmail.
3041 2012-12-30  Chong Yidong  <cyd@gnu.org>
3043         * emacs-lisp/package.el (package-untar-buffer): Improve integrity
3044         check for the tarball contents.
3046 2012-12-30  Matt Fidler  <matt.fidler@alcon.com>  (tiny change)
3048         * emacs-lisp/package.el (package-untar-buffer): Handle problematic
3049         tarfile content listings (Bug#13136).
3051 2012-12-30  Mark Lillibridge  <mark.lillibridge@hp.com>
3053         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
3054         Insert the undecoded text of the message being forwarded.  (Bug#9521)
3056 2012-12-30  Michael Albinus  <michael.albinus@gmx.de>
3058         * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
3059         integers, if they are real numbers.  (Bug#13282)
3061         * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
3062         Return `t' on success.
3064         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3065         Add handler for `set-file-selinux-context'.
3067 2012-12-29  Michael Albinus  <michael.albinus@gmx.de>
3069         * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
3070         (tramp-sh-handle-set-file-acl): Return `t' on success.
3072 2012-12-29  Eli Zaretskii  <eliz@gnu.org>
3074         * files.el (backup-buffer-copy, basic-save-buffer-2):
3075         If set-file-extended-attributes fails, fall back on set-file-modes
3076         instead of signaling an error.  (Bug#13298)
3077         (basic-save-buffer): Likewise.
3079 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3081         * progmodes/python.el: Support other commands triggering
3082         python-indent-line so indentation cycling continues to work.
3083         (python-indent-trigger-commands): New defcustom.
3084         (python-indent-line): Use it.
3086 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3088         * progmodes/python.el (python-shell-send-region): Add blank lines
3089         for non sent code so backtraces remain correct.
3091 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3093         * progmodes/python.el: Remove cl dependency.
3094         (python-syntax-count-quotes): Replace incf call.
3095         (python-fill-string): Replace setf call.
3097 2012-12-29  Damien Cassou  <damien.cassou@gmail.com>
3099         * info.el (info-other-window): New arg, for consistency with info.
3101 2012-12-28  Martin Rudalics  <rudalics@gmx.at>
3103         * mail/rmail.el (rmail-maybe-display-summary):
3104         Rewrite (Bug#13066).
3106 2012-12-28  Andreas Schwab  <schwab@linux-m68k.org>
3108         * epg.el (epg--start): Modify process-environment locally.
3110 2012-12-28  Daiki Ueno  <ueno@gnu.org>
3112         * epg.el: Support pinentry-curses.
3113         Suggested by Werner Koch in
3114         <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
3115         (epg-agent-file, epg-agent-mtime): New variable.
3116         (epg--start): Record the modified time of gpg-agent socket file,
3117         to restore Emacs frame after pinentry-curses termination.
3118         (epg-wait-for-completion): Restore Emacs frame here.
3120 2012-12-27  Juri Linkov  <juri@jurta.org>
3122         * info.el (Info-file-completions): New variable.
3123         (Info-read-node-name-1): Complete node names in the Info file
3124         when a file name is given.  Call `Info-build-node-completions'
3125         with a file name.
3126         (Info-build-node-completions): Add new arg `file'.  When it is
3127         non-nil, visit it in a temporary buffer and cache its completions in
3128         `Info-current-file-completions'.  Move most of the function body to
3129         `Info-build-node-completions-1'.
3130         (Info-build-node-completions-1): New function with the body from
3131         `Info-build-node-completions'.  (Bug#12456)
3133 2012-12-27  Juri Linkov  <juri@jurta.org>
3135         * frame.el (frame-maximization-style): Remove user option.
3136         (cycle-frame-maximized): Remove function.
3137         (toggle-frame-maximized): Rewrite and bind to M-<f10>.
3138         (toggle-frame-fullscreen): New command bound to <f11> instead of
3139         `toggle-frame-maximized'.
3140         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
3142 2012-12-27  Michael Albinus  <michael.albinus@gmx.de>
3144         * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
3146         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3147         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3148         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3149         for `file-accessible-directory-p'.  (Bug#13275)
3151 2012-12-27  Sam Steingold  <sds@gnu.org>
3153         * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
3154         continuations, see <http://stackoverflow.com/questions/3582436>.
3156 2012-12-27  Dmitry Gutov  <dgutov@yandex.ru>
3158         * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
3159         "module" and "def" to have indentation before them.
3160         Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
3162         * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
3164 2012-12-27  Alan Mackenzie  <acm@muc.de>
3166         Speed up fontification where there's large brace blocks.
3167         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
3168         to a call of c-beginning-of-decl-1.
3170 2012-12-27  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
3172         * comint.el (comint-adjust-window-point): New function.
3173         (comint-postoutput-scroll-to-bottom):
3174         Call comint-adjust-window-point (Bug#13248).
3176 2012-12-26  Dmitry Gutov  <dgutov@yandex.ru>
3178         * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
3179         Rakefile regexp.
3180         (auto-mode-alist): Associate .gemspec files with ruby-mode
3181         (https://bugs.ruby-lang.org/issues/5453).
3183 2012-12-26  Jürgen Hötzel  <juergen@archlinux.org>
3185         * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
3186         Suppress coloring, if possible (required for BusyBox based systems like
3187         CyanogenMod).
3188         (tramp-adb-handle-file-attributes)
3189         (tramp-adb-handle-insert-directory)
3190         (tramp-adb-handle-file-name-all-completions): Use it.
3191         (tramp-adb-get-toolbox): New defun.  Check for remote shell
3192         implementation (BusyBox or Toolbox).
3194 2012-12-24  Constantin Kulikov <zxnotdead@gmail.com>  (tiny change)
3196         * startup.el (initial-buffer-choice): Allow function as value
3197         (Bug#13251).
3198         (command-line-1): Handle case where initial-buffer-choice
3199         specifies a function.
3200         * server.el (server-execute): Handle case where
3201         initial-buffer-choice specifies a function.
3203 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
3205         * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
3206         its own function.
3207         (smtpmail-try-auth-methods): Forget the user name/password if the
3208         login is unsuccessful (bug#12424).
3210 2012-12-22  Michael Albinus  <michael.albinus@gmx.de>
3212         * notifications.el (notifications-notify): Protect body with
3213         `with-demoted-errors'.
3215         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
3216         Check properties of remote device.  Restart connection, if there is a
3217         change.
3219 2012-12-21  Chong Yidong  <cyd@gnu.org>
3221         * sort.el (sort-subr): Doc fix (Bug#13056).
3223 2012-12-21  Bastien Guerry  <bzg@gnu.org>
3225         * progmodes/etags.el (tags-search): Fix typo.  Bug #13232.
3227 2012-12-21  Michael Albinus  <michael.albinus@gmx.de>
3229         * simple.el (process-file): Overwrite stderr file, if exists.
3231 2012-12-21  Daiki Ueno  <ueno@gnu.org>
3233         * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
3234         (epg-error): Set `error-message' property.
3236 2012-12-21  Chong Yidong  <cyd@gnu.org>
3238         * international/mule-cmds.el (read-char-by-name): Signal an error
3239         if the user does not supply a valid character (Bug#13177).
3241         * simple.el (transpose-subr-1): Preserve marker positions by
3242         changing the insertion sequence (Bug#13122).
3244 2012-12-21  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
3246         * simple.el (kill-region): Deactivate mark even for empty regions
3247         (Bug#13169).
3249 2012-12-21  Chong Yidong  <cyd@gnu.org>
3251         * help-fns.el (describe-variable): Make sure we get the right
3252         buffer name (Bug#13105).  Suggested by Kelly Dean.
3254 2012-12-20  Michael R. Mauger  <mmaug@yahoo.com>
3256         * comint.el (comint-redirect-previous-input-string): New variable.
3257         (comint-redirect-setup, comint-redirect-cleanup)
3258         (comint-redirect-preoutput-filter): Use it.  Fixes redirection bug.
3259         (comint-redirect-preoutput-filter): Fix verbose message.
3261 2012-12-20  Michael Albinus  <michael.albinus@gmx.de>
3263         * progmodes/grep.el (rgrep): Escape command line.  Sometimes, it
3264         is too long for Tramp.  See discussion in
3265         <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
3267         * progmodes/compile.el (compilation-start): Remove line escape
3268         template.
3270 2012-12-20  Dmitry Antipov  <dmantipov@yandex.ru>
3272         * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
3273         Adjust comment.
3275 2012-12-19  Jonas Bernoulli  <jonas@bernoul.li>
3277         * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
3278         following non-comment text (bug#13207).
3279         (lm-header-multiline): Continuation lines need to be indented more than
3280         the first line.
3281         (lm-homepage): New function.
3282         (lm-with-file): Don't be confused if narrowing is in effect.
3284 2012-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3286         * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
3287         very beginning of a hunk (e.g. killing the first line).
3289 2012-12-19  Michael Albinus  <michael.albinus@gmx.de>
3291         * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
3292         and text properties from returned ACL string.
3293         (tramp-sh-handle-set-file-acl): Do not use additional parentheses
3294         for "setfacl" command.
3296 2012-12-18  Michael Albinus  <michael.albinus@gmx.de>
3298         * net/tramp.el (tramp-error-with-buffer): Give a hint to use
3299         `tramp-cleanup-this-connection', when the process has died.
3300         (Bug#13151)
3302 2012-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3304         * icomplete.el (icomplete-completions): Also use … to truncate prefix.
3306 2012-12-17  Kevin Ryde  <user42@zip.com.au>
3308         * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
3310 2012-12-17  Michael Albinus  <michael.albinus@gmx.de>
3312         Add support for preserving ACL entries of files.
3314         * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
3315         `set-file-acl' handlers.
3317         * net/tramp-adb.el (tramp-adb-handle-copy-file):
3318         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3320         * net/tramp-compat.el (tramp-compat-copy-file):
3321         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3323         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3324         Add `file-acl' and `set-file-acl' handlers.
3325         (tramp-gvfs-handle-copy-file):
3326         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3327         (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3328         New defuns.
3330         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3331         Add `file-acl' and `set-file-acl' handlers.
3332         (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3333         (tramp-sh-handle-set-file-acl): New defuns.
3334         (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3335         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3337         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3338         Add `file-acl' and `set-file-acl' handlers.
3339         (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3341 2012-12-17  Kelly Dean  <kellydeanch@yahoo.com> (tiny change)
3343         * help-macro.el (make-help-screen): Instead of switch-to-buffer
3344         use pop-to-buffer with NORECORD argument t.  As buffer name, use
3345         *Metahelp* with a leading space (Bug#13190).
3347 2012-12-16  Romain Francoise  <romain@orebokech.com>
3349         * files.el (file-extended-attributes)
3350         (set-file-extended-attributes): New functions.
3351         (backup-buffer): Use them to handle both SELinux context and ACL
3352         entries.
3353         (backup-buffer-copy): Work with an alist of extended attributes,
3354         rather than an SELinux context.
3355         (basic-save-buffer-2): Ditto.
3357 2012-12-16  Timo Myyrä  <timo.myyra@gmail.com>
3359         * battery.el (battery-bsd-apm): New function.
3361 2012-12-16  Jay Belanger  <jay.p.belanger@gmail.com>
3363         * calc/calc.el (calc-standard-date-formats): Adjust one of the
3364         standard date formats.
3366 2012-12-15  Juri Linkov  <juri@jurta.org>
3368         * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3369         `isearch-insert-char-by-name'.
3370         (with-isearch-suspended): New defmacro with body mostly from
3371         `isearch-edit-string' except the part that sets
3372         `isearch-new-string' and `isearch-new-message'.
3373         (isearch-edit-string): Use new macro `with-isearch-suspended' with
3374         body that sets `isearch-new-string' and `isearch-new-message'.
3375         (isearch-insert-char-by-name): New command.
3376         * international/mule-cmds.el (read-char-by-name): Let-bind
3377         `enable-recursive-minibuffers' to t.
3378         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3380 2012-12-15  Juri Linkov  <juri@jurta.org>
3382         * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3383         (Bug#13175)
3385 2012-12-15  Christopher Schmidt  <christopher@ch.ristopher.com>
3387         * dired-x.el (dired-guess-shell-command): Put colon at the end of
3388         the prompt.  (Bug#13045)
3390 2012-12-14  Glenn Morris  <rgm@gnu.org>
3392         * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3393         Try to include filename in non-bytecomp warning.  (Bug#13132)
3395 2012-12-14  Paul Eggert  <eggert@cs.ucla.edu>
3397         Fix permissions bugs with setgid directories etc. (Bug#13125)
3398         * files.el (backup-buffer): Don't rely on 9th output of
3399         file-attributes, as it's now a placeholder.  Instead, use the new
3400         optional arg of file-ownership-preserved-p.
3401         (file-ownership-preserved-p): New optional arg GROUP.
3402         Fix mishandling of setuid directories that would cause this
3403         function to return t when it should have returned nil.
3404         Document what happens if the file does not exist, and when
3405         it's not known whether the ownership will be preserved.
3406         * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3407         Likewise.
3408         (tramp-get-local-gid): Use group-gid for integer, as that's
3409         faster and more reliable.
3411 2012-12-14  Julien Danjou  <julien@danjou.info>
3413         * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3414         Update keywords list, data type and PL/pgSQL.
3416 2012-12-14  Dave Abrahams  <dave@boostpro.com>
3418         * vc/ediff-util.el (ediff-buffer-type): New function.
3419         (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3420         rather than taking it as as argument.
3421         (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3423 2012-12-14  Ryan Crum  <ryan.crum@eleostech.com>
3425         * json.el: Add pretty-print option (bug#12634).
3426         (json-encoding-separator, json-encoding-default-indentation)
3427         (json--encoding-current-indentation, json-encoding-pretty-print)
3428         (json-encoding-lisp-style-closings): New vars.
3429         (json--with-indentation): New macro.
3430         (json-encode-hash-table, json-encode-alist, json-encode-plist)
3431         (json-encode-array): Use it to obey json-encoding-pretty-print.
3432         (json-pretty-print-buffer, json-pretty-print): New commands.
3434 2012-12-14  Dmitry Gutov  <dgutov@yandex.ru>
3436         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3437         Extract `ruby-syntax-propertize-expansions'.
3438         (ruby-syntax-propertize-expansions): Only change syntax on
3439         certain string delimiters, to punctuation.  This way the common
3440         functions like forward-word and thing-at-point still work.
3441         (ruby-match-expression-expansion): Improve readability.
3442         (ruby-block-contains-point): New function.
3443         (ruby-add-log-current-method): Handle several edge cases.
3445 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
3447         * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3448         unload-feature finishes even when aborting an ongoing edebug session.
3449         Also, do not worry about edebug-mode, unload-feature takes care of it.
3451 2012-12-13  Andreas Schwab  <schwab@suse.de>
3453         * net/tls.el (tls-program): Update customize type.
3455 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
3457         * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3458         (edebug-setup-hook, cl-read-load-hooks): Use it.
3459         (edebug-unload-function): New function.  (Bug#13163)
3461 2012-12-13  Michael Albinus  <michael.albinus@gmx.de>
3463         * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3464         Otherwise, there could be errors in autoloading.  (Bug#13151)
3466 2012-12-13  Jürgen Hötzel  <juergen@archlinux.org>
3468         * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3469         sequences.
3471 2012-12-13  Alan Mackenzie  <acm@muc.de>
3473         Make CC Mode not hang when _some_ lines end in CRLF.  Bug #11841.
3474         * progmodes/cc-engine.el (c-backward-comments): Add code to work
3475         around `forward-comment' not recognizing ^M as whitespace.
3477 2012-12-13  Fabián Ezequiel Gallina  <fgallina@cuca>
3479         * progmodes/python.el (python-skeleton-class)
3480         (python-skeleton-def): Do not add space after defun name.
3482 2012-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3484         * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3485         (cl--symbol-function): Remove (now that funbound is like nil).
3487 2012-12-12  Glenn Morris  <rgm@gnu.org>
3489         * button.el (button--area-button-p): Fix typo.
3491 2012-12-12  Sam Steingold  <sds@gnu.org>
3493         * frame.el (frame-maximization-style): New user option.
3494         (toggle-frame-maximized): Toggle frame maximization according to
3495         `frame-maximization-style', bound to <f11>.
3496         (cycle-frame-maximized): Cycle between all maximization styles and
3497         non-maximized frame, bound to shift-<f11>.
3499 2012-12-12  David Cadé  <codename68@gmail.com>
3501         * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3503 2012-12-12  Jonas Bernoulli  <jonas@bernoul.li>
3505         * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3506         (eieio-override-prin1): Don't quote kewords and booleans.
3507         (object-write) <eieio-default-superclass>: Don't put closing parens
3508         on new line, avoid needless empty lines, align values that are objects
3509         with the slot keyword (instead of beginning on the same line).
3510         (eieio-list-prin1): Align value with slot keyword; increase
3511         eieio-print-depth before printing members of the list.
3513 2012-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3515         * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3516         a display text-property.
3517         (report-emacs-bug-hook): Don't bother deleting it any more.
3519         * hilit-chg.el (highlight-save-buffer-state): Delete.
3520         Use with-silent-modifications instead.
3521         (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3523         * button.el: Handle buttons in display text-properties.
3524         (button--area-button-p, button--area-button-string):
3525         Use (STRING . STRING-POS) representation instead of just STRING.
3527 2012-12-11  Eli Zaretskii  <eliz@gnu.org>
3529         * makefile.w32-in (compile4-SH): Fix a typo that caused term
3530         subdirectory be skipped.
3532 2012-12-11  Glenn Morris  <rgm@gnu.org>
3534         * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3536         * progmodes/f90.el (f90-line-continued, f90-indent-region):
3537         Treat preprocessor lines embedded in continuations like comments.
3538         (f90-indent-line): Special-case preprocessor lines.  (Bug#13138)
3540 2012-12-11  Jay Belanger  <jay.p.belanger@gmail.com>
3542         * calc/calc.el (calc-standard-date-formats):  Add more date
3543         formats.
3544         * calc/calc-forms.el (math-parse-iso-date): New function.
3545         (math-parse-date): Use `math-parse-iso-date' when appropriate.
3546         (math-parse-iso-date-validate): Add extra error checking.
3547         (calc-date-notation): Add ability to access new date formats.
3549 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3551         * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3552         font-lock as well as when there's no text-property.
3554 2012-12-10  Jambunathan K  <kjambunathan@gmail.com>
3556         * hi-lock.el: Refine the choice of default face.
3557         (hi-lock-keyword->face): New function.  Use it wherever we used
3558         cadadadr instead.
3559         (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3560         (hi-lock--last-face): Remove var.
3561         (hi-lock--unused-faces): New var to replace it.
3562         (hi-lock-read-face-name): Use/maintain it.
3563         (hi-lock-unface-buffer): Maintain it.  Fix error for the C-u case.
3564         (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3565         if it has another face.
3567 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3569         * subr.el (w32notify-handle-event): New function.
3570         (inotify-handle-event): Doc fix.
3572 2012-12-10  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3574         * subr.el (inotify-event-p, inotify-handle-event): New functions.
3576 2012-12-10  Dani Moncayo <dmoncayo@gmail.com>
3578         * simple.el (just-one-space): Doc fix.
3580 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3582         * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3584 2012-12-10  Le Wang  <l26wang@gmail.com>
3586         * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3587         narrowed buffer (bug#12361).
3589 2012-12-10  Juanma Barranquero  <lekktu@gmail.com>
3591         * vc/vc-hooks.el (vc-state): Doc fix.
3593 2012-12-10  Glenn Morris  <rgm@gnu.org>
3595         * mail/rmail.el (rmail-maybe-display-summary):
3596         Preserve buffer, in case select-window changes it.  (Bug#13066)
3598 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3600         * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3601         cl-load-hook where they belong.
3603 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3605         * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3607 2012-12-09  Eli Zaretskii  <eliz@gnu.org>
3609         Parallelize byte compilation on MS-Windows.
3610         * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3611         (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3612         (WINS_BASIC): Define as concatenation of the above.
3613         (compile): Subdivide into 4 separate and independent jobs that can
3614         be run in parallel.
3615         (compile0-CMD, compile0-SH): New targets for compiling
3616         COMPILE_FIRST files, which are prerequisites for the rest of the
3617         byte-compilation.
3618         (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3619         New targets for parallel compilation with cmd.exe.
3620         (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3621         compiling under a Unixy shell.
3623 2012-12-09  Chong Yidong  <cyd@gnu.org>
3625         * simple.el (set-mark-default-inactive): Delete this
3626         accidentally-introduced option.
3627         (set-mark-command, exchange-point-and-mark): Remove calls.
3629 2012-12-09  Glenn Morris  <rgm@gnu.org>
3631         * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3632         Respect a defcustom's :set function, if appropriate.  (Bug#109)
3633         (eval-defun): Doc fix.
3635 2012-12-08  Juri Linkov  <juri@jurta.org>
3637         * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3638         (Info-fontify-node, Info-bookmark-make-record): Remove the
3639         file extension from Info-current-file (Bug#13016).
3641 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3643         * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3644         point, still provide some default.
3645         (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3646         names, since we don't use it right now.  Actually return the list.
3647         (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3649 2012-12-07  Chong Yidong  <cyd@gnu.org>
3651         * novice.el (disabled-command-function): Remove a spurious help
3652         xref (Bug#13043).  Suggested by Kelly Dean.
3654         * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3655         syntax is specified (Bug#13025).
3657         * info.el (Info-set-mode-line): Remove the file extension from
3658         Info-current-file if there is one (Bug#13016).
3660 2012-12-07  Glenn Morris  <rgm@gnu.org>
3662         * mail/rmail.el (rmail-mime-decoded): New permanent local.
3663         (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3664         * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3665         and rmail-mime-decoded.  (Bug#9841)
3667         * mail/unrmail.el (unrmail-mbox-format): New option.  (Bug#6574)
3668         (batch-unrmail, unrmail): Doc fixes.
3669         (unrmail): Respect unrmail-mbox-format.
3670         * mail/rmail.el (rmail-mbox-format): New option.
3671         (rmail-show-message-1): Respect rmail-mbox-format.
3673 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3675         * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3677 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3679         Further cleanup of the "cl-" namespace.  Fit CL in 80 columns.
3680         * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3681         (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3682         (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3683         (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3684         (cl-progv): Don't rely on dynamic scoping to find the body.
3685         * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3686         (cl--proclaims-deferred): Rename from the "cl-" prefix.
3687         (cl-declaim): Use backquotes.
3688         * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3689         Use "cl--" prefix for the object's tag.
3691         * ses.el: Use advice-add/remove.
3692         (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3693         (copy-region-as-kill, yank): Use advice-add.
3694         (ses-unload-function): Use advice-remove.
3696 2012-12-06  Jonas Bernoulli  <jonas@bernoul.li>
3698         * button.el: Make them work in header-lines (bug#12817).
3699         (button-map): Add bindings for header-line and mode-line use.
3700         (button-get, button-put, button-label): `button' may now be a string.
3701         (button-activate): Don't make it a defsubst.
3702         (button--area-button-p, button--area-button-string): New functions.
3703         (make-text-button): Fix the return value when `beg' was a string.
3704         (push-button): Handle the mode-line case.
3706 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3708         * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3709         (sql-signum): Remove.  Use `cl-signum' instead.
3710         (sql-read-passwd): Remove; use read-passwd instread.
3711         (sql-get-login-ext): Use read-string.
3712         (sql-get-login): Use dolist and pcase.
3713         (sql--completion-table): Rename from sql-try-completion.
3714         Use complete-with-action.
3715         (sql-mode): Don't change abbrev-all-caps globally.
3716         (sql-connect): Don't rely on dynamic scoping for `new-name'.
3717         (sql-postgres-completion-object): Initialize vars in their `let'.
3718         (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3719         (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3720         (sql-comint-interbase): Use a single append, without setq.
3721         (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3723         * hi-lock.el: Rework the default face and the serialize regexp code.
3724         (hi-lock--auto-select-face-defaults): Remove.
3725         (hi-lock-string-serialize-serial): Remove.
3726         (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3727         make weak.
3728         (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3729         equal string.
3730         (hi-lock-set-pattern): Adjust accordingly.
3731         (hi-lock--regexps-at-point): Simplify accordingly.
3732         (hi-lock--auto-select-face-defaults): Remove.
3733         (hi-lock--last-face): New var to replace it.
3734         (hi-lock-read-face-name): Rewrite (bug#11095).
3735         (hi-lock-unface-buffer): Arrange for the face to be the next default.
3737 2012-12-06  Michael Albinus  <michael.albinus@gmx.de>
3739         * net/tramp.el (tramp-replace-environment-variables):
3740         Hide compiler warning.
3741         (tramp-file-name-for-operation): Remove `executable-find',
3742         `start-process', `call-process' and `call-process-region'.
3744         * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3746         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3747         compatibility.
3749         * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3751 2012-12-06  Chong Yidong  <cyd@gnu.org>
3753         * ffap.el (ffap-replace-file-component): Fix typo.
3755 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3757         * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3758         fix open-paren-like token test (bug#12785).
3760 2012-12-06  Glenn Morris  <rgm@gnu.org>
3762         * mail/rmailsum.el (rmail-new-summary): Tweak for
3763         rmail-maybe-display-summary changing buffer.  (Bug#13066)
3765 2012-12-06  Juri Linkov  <juri@jurta.org>
3767         * info.el (Info-fontify-node): Don't hide the last newline.
3768         (Bug#12272)
3770 2012-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3772         * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3773         so as to enable message-read-from-minibuffer to expand mail aliases.
3775 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3777         * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3778         the `intangible' property.
3779         Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3781 2012-12-05  Deniz Dogan  <deniz@dogan.se>
3783         * net/rcirc.el (rcirc-urls): Update documentation.
3784         (rcirc-condition-filter): New function.
3785         (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3786         and exclude consecutive duplicate URLs (Bug#6082).
3788 2012-12-05  Michael Albinus  <michael.albinus@gmx.de>
3790         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3791         Check return code of copy command.
3793         * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3794         Use group `tramp'.  Add version.
3796 2012-12-05  Chong Yidong  <cyd@gnu.org>
3798         * ffap.el (ffap-url-regexp): Don't require matching at front of
3799         string (Bug#4952).
3800         (ffap-url-p): If only a substring matches, return that.
3801         (ffap-url-at-point): Use the return value of ffap-url-p.
3802         (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3803         (find-file-at-point, dired-at-point, dired-at-point-prompter)
3804         (ffap-guess-file-name-at-point): Likewise.
3805         (ffap-replace-file-component): Fix typo.
3807         * info.el (info-display-manual): Add existing Info buffers, whose
3808         files may not be in Info-directory-list, to the completion.
3809         (info--manual-names): New helper function.
3811 2012-12-05  Glenn Morris  <rgm@gnu.org>
3813         * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3814         New functions, for detecting and resolving conflicts.  (Bug#10709)
3816 2012-12-04  Jambunathan K  <kjambunathan@gmail.com>
3818         * hi-lock.el (hi-lock-auto-select-face): New user variable.
3819         (hi-lock-auto-select-face-defaults): New buffer local variable.
3820         (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3821         (hi-lock-unface-buffer): Prompt user with useful defaults.
3822         With prefix arg, unhighlight all hi-lock patterns in buffer.
3824 2012-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3826         * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3828 2012-12-04  Michael Albinus  <michael.albinus@gmx.de>
3830         * Makefile.in (TRAMP_SRC):
3831         * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3833 2012-12-04  Juergen Hoetzel  <juergen@archlinux.org>
3835         * net/tramp-adb.el: New package.
3837 2012-12-04  Chong Yidong  <cyd@gnu.org>
3839         * terminal.el: Move to obsolete/.
3841         * longlines.el: Move to obsolete/.
3843         * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
3844         Remove code referring to longlines mode.
3846 2012-12-03  Juri Linkov  <juri@jurta.org>
3848         * sort.el (delete-duplicate-lines): New command.  (Bug#13032)
3850 2012-12-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3852         * textmodes/ispell.el (ispell-init-process)
3853         (ispell-start-process, ispell-internal-change-dictionary):
3854         Make sure personal dictionary name is expanded after initial
3855         `default-directory' value. Use expanded strings for
3856         keep/restart checks and for value (Bug#13019).
3858 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
3860         * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
3862 2012-12-03  Leo Liu  <sdl.web@gmail.com>
3864         * files.el (dir-locals-read-from-file): Check file non-empty
3865         before reading.  (Bug#13038)
3867 2012-12-03  Glenn Morris  <rgm@gnu.org>
3869         * jka-cmpr-hook.el (jka-compr-get-compression-info):
3870         Remove any version extension before checking filename.  (Bug#13006)
3871         (jka-compr-compression-info-list): Belated :version bump.
3873 2012-12-03  Chong Yidong  <cyd@gnu.org>
3875         * simple.el (transient-mark-mode): Doc fix (Bug#11523).
3877         * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
3878         (buffer-menu): Doc fix (Bug#12294).
3880 2012-12-03  Roland Winkler  <winkler@gnu.org>
3882         * calendar/diary-lib.el (diary-header-line-format): Use keybinding
3883         of diary-show-all-entries in the diary buffer (Bug#12994).
3885 2012-12-03  Michael Albinus  <michael.albinus@gmx.de>
3887         * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
3888         "<STDIN>".  This is binary safe.
3890 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
3892         * calc/calc-forms.el (math-absolute-from-iso-dt)
3893         (math-date-to-iso-dt, math-parse-iso-date-validate)
3894         (math-iso-dt-to-date): New functions.
3895         (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
3896         (math-fd-isoweekday): New variables.
3897         (calc-date-notation, math-parse-standard-date, math-format-date)
3898         (math-format-date-part): Add support for more formatting codes.
3900 2012-12-02  Dmitry Gutov  <dgutov@yandex.ru>
3902         * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
3903         current buffer's file name when called interactively (Bug#12488).
3905 2012-12-02  Juri Linkov  <juri@jurta.org>
3907         * info.el (info-display-manual): Don't clobber an existing Info
3908         buffer (Bug#10770).  Add completion (Bug#10771).
3910 2012-12-01  Yuya Nishihara  <yuya@tcha.org>  (tiny change)
3912         * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
3913         before using it for comparison (Bug#5297).
3915 2012-12-01  Jari Aalto  <jari.aalto@cante.net>
3917         * textmodes/css-mode.el (css-current-defun-name): New function.
3918         (css-mode): Use it.
3920         * textmodes/sgml-mode.el (html-current-defun-name): New function.
3921         (html-mode): Use it.
3923 2012-12-01  Chong Yidong  <cyd@gnu.org>
3925         Modularize add-log-current-defun (Bug#2224).
3926         Suggested by Jari Aalto.
3928         * vc/add-log.el (add-log-current-defun-function): Doc fix.
3929         (add-log-current-defun): Move mode-specific code to other files.
3930         (add-log-lisp-like-modes, add-log-c-like-modes)
3931         (add-log-tex-like-modes): Variables deleted.
3933         * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
3934         (lisp-mode-variables): Use it.
3936         * progmodes/cc-mode.el (c-common-init):
3937         * progmodes/cperl-mode.el (cperl-mode): Set a value for
3938         add-log-current-defun-function.
3940         * progmodes/m4-mode.el (m4-current-defun-name): New function.
3941         (m4-mode): Use it.
3943         * progmodes/perl-mode.el (perl-current-defun-name): New.
3944         (perl-mode): Use it.
3946         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3947         Use lisp-current-defun-name.
3949         * textmodes/tex-mode.el (tex-current-defun-name): New.
3950         (tex-common-initialization): Use it.
3952         * textmodes/texinfo.el (texinfo-current-defun-name): New.
3953         (texinfo-mode): Use it.
3955 2012-12-01  Chong Yidong  <cyd@gnu.org>
3957         * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
3958         * progmodes/autoconf.el (autoconf-mode):
3959         * progmodes/js.el (js-mode):
3960         * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
3961         (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
3962         * progmodes/perl-mode.el (perl-mode):
3963         * progmodes/sh-script.el (sh-mode, sh-set-shell):
3964         * textmodes/css-mode.el (css-mode):
3965         * textmodes/sgml-mode.el (html-mode, sgml-mode)
3966         (sgml-tags-invisible, sgml-guess-indent):
3967         * textmodes/tex-mode.el (tex-common-initialization)
3968         (latex-complete-bibtex-keys, tex-shell, tex-main-file)
3969         (doctex-mode, plain-tex-mode, latex-mode):
3970         * textmodes/texinfo.el (texinfo-mode): Use setq-local.
3972 2012-12-01  Kirk Kelsey  <kirk.kelsey@0x4b.net>
3974         * vc/vc-hg.el (vc-hg-next-revision):
3975         Ensure use of default "tip" output format.  (Bug#6968)
3977 2012-12-01  Kim F. Storm  <storm@cua.dk>
3979         * startup.el (fancy-startup-tail): Add a clickable link
3980         (Bug#2176).
3982 2012-12-01  Chong Yidong  <cyd@gnu.org>
3984         * startup.el (fancy-startup-tail): Improve the message about
3985         auto-save files (Bug#2176).
3987         * files.el (recover-session): Improve the descriptive message, and
3988         use substitute-command-keys.
3990 2012-12-01  Glenn Morris  <rgm@gnu.org>
3992         * ido.el (ido-file-internal):
3993         Handle other-window, other-frame for dired.  (Bug#13036)
3995 2012-11-30  Glenn Morris  <rgm@gnu.org>
3997         * icomplete.el (icomplete-separator): Fix :version.
3999 2012-11-30  Chong Yidong  <cyd@gnu.org>
4001         * shell.el (shell): For C-u M-x shell, use an inactive shell
4002         buffer as the default (Bug#1975).
4003         (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
4004         (shell-mode): Use them to reapply ansi colorization if Shell mode
4005         is re-enabled.
4007 2012-11-30  Yuriy Vostrikov  <delamonpansie@gmail.com>  (tiny change)
4009         * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
4011 2012-11-30  Samuel Bronson  <naesten@gmail.com>
4013         * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
4014         flag to xargs, for compatibility with BSD xargs (Bug#11703).
4016 2012-11-30  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
4018         * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
4019         by move-to-column (Bug#3234).
4021 2012-11-30  Chong Yidong  <cyd@gnu.org>
4023         * longlines.el (longlines-wrap-line, longlines-encode-region):
4024         Preserve text properties (Bug#1425).
4026 2012-11-30  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
4028         * vc/vc.el (vc-register): Allow registering a file which is
4029         already registered with a different backend (Bug#10589).
4031 2012-11-29  Jambunathan K  <kjambunathan@gmail.com>
4032             Stefan Monnier  <monnier@iro.umontreal.ca>
4034         * icomplete.el: Change separator; add ido-style commands.
4035         (icomplete-show-key-bindings): Remove custom var.
4036         (icomplete-get-keys): Remove function.
4037         (icomplete-forward-completions, icomplete-backward-completions):
4038         New commands.
4039         (icomplete-minibuffer-map): New var.
4040         (icomplete-minibuffer-setup): Use it.
4041         (icomplete-exhibit): Don't delay if the list of completions is known.
4042         (icomplete-separator): New custom.
4043         (icomplete-completions): Use it.
4044         * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
4045         (minibuffer-force-complete-and-exit): New command.
4046         (minibuffer--complete-and-exit): New function extracted from
4047         minibuffer-complete-and-exit.
4048         (minibuffer-complete-and-exit): Use it.
4050         * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
4051         error message when the file doesn't exist (bug#12974).
4053 2012-11-29  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
4055         * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
4057 2012-11-29  Glenn Morris  <rgm@gnu.org>
4059         * files.el (hack-dir-local-variables): Warn if try to set
4060         coding via dir-locals, since it doesn't work.  (Bug#7169)
4062         Add desktop support for restoring vc-dir buffers.  (Bug#10606)
4063         * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
4064         Set buffer-local value of desktop-save-buffer.
4065         (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
4066         New functions.
4067         (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
4068         * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
4070         * files.el (inhibit-local-variables-ignore-case): New.  (Bug#10610)
4071         (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
4072         Doc fix.
4073         (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
4074         Doc fixes.
4076 2012-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
4078         * calc/calc-forms.el (calc-date-notation): Fix regexp
4079         used to find time codes.  Fix symbol for seconds.
4081 2012-11-27  Glenn Morris  <rgm@gnu.org>
4083         * emacs-lisp/derived.el (derived-mode-make-docstring):
4084         Don't mention "abbrev" or "syntax" if nil.  (Bug#11277)
4086 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4088         * textmodes/table.el (table-insert): Don't use `symbol-name' on
4089         lexically scoped variables (bug#13005).
4091 2012-11-27  Glenn Morris  <rgm@gnu.org>
4093         * vc/vc-hooks.el (vc-mistrust-permissions):
4094         Default to t, to avoid data-loss.  (Bug#11490)
4096 2012-11-27  Fabián Ezequiel Gallina  <fgallina@cuca>
4098         * progmodes/python.el (python-indent-guess-indent-offset):
4099         If indentation is guessed make python-indent-offset buffer-local.
4101         Fix Imenu regression.
4102         * progmodes/python.el (python-nav-beginning-of-defun):
4103         Fix forward movement when statement(s) separates point from defun.
4104         (python-imenu-prev-index-position): New function.
4106 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
4108         * subr.el (buffer-file-type): Declare with defvar-local.  Doc fix.
4110         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4111         Don't set buffer-file-type.  Return nil.  (Bug#12989)
4113 2012-11-27  Glenn Morris  <rgm@gnu.org>
4115         * hippie-exp.el (hippie-expand-try-functions-list):
4116         Re-autoload it.  (Bug#12982)
4118 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
4120         * descr-text.el (describe-char-padded-string):
4121         Call internal-char-font only on GUI frames.  (Bug#11964)
4123 2012-11-27  Andreas Schwab  <schwab@linux-m68k.org>
4125         * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
4126         and obsoletion message.
4128 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4130         * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
4131         the constructs to keep outside of the `cl-block' (bug#12977).
4133 2012-11-27  Chong Yidong  <cyd@gnu.org>
4135         * mouse.el (mouse-drag-line): Even if the line is not draggable,
4136         keep reading until we get the up-event anyway, in order to process
4137         the up-event for mouse-1-click-follows-link (Bug#12971).
4139 2012-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4141         * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
4142         base function is not yet defined (bug#12965).
4143         (ad-activate-advised-definition): Use ad-compile-function.
4144         (ad-activate): Use cond.
4146 2012-11-25  Leo Liu  <sdl.web@gmail.com>
4148         * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
4149         (Bug#12979)
4151 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4153         * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
4154         reftex-section-info-function in order to be compatible with
4155         Texinfo integration.
4157         * textmodes/reftex.el (reftex-section-pre-regexp)
4158         (reftex-section-post-regexp, reftex-section-info-function):
4159         New variable.
4160         (reftex-compile-variables): Use variables reftex-section-pre-regexp,
4161         reftex-section-post-regexp, and reftex-section-info-function in order
4162         to be compatible with Texinfo integration.
4164         * textmodes/reftex-toc.el (reftex-toc-promote-action):
4165         use reftex-section-pre-regexp variable in order to be compatible with
4166         Texinfo integration.
4168 2012-11-25  Chong Yidong  <cyd@gnu.org>
4170         * faces.el: Make face-spec-set more analogous to setq.
4171         (face-spec-set): Change the third arg to specify whether this
4172         function is being called via defface, customize, or a third party.
4173         Set the appropriate symbol properties.  Clear the override spec if
4174         setting via Custom.  Initialize face if necessary.  (Bug#4988)
4175         (face-spec-recalc): Allow theme faces to completely replace the
4176         defface spec, in the same way as custom faces (Bug#8454).
4178         * cus-face.el (custom-declare-face): Move face initialization to
4179         face-spec-set.
4180         (custom-theme-set-faces): Don't initialize the face name here, as
4181         that is now done in face-spec-set.
4183         * cus-edit.el (custom-face-set, custom-face-mark-to-save)
4184         (custom-face-reset-saved, custom-face-mark-to-reset-standard):
4185         Simplify by using the new arg to face-spec-set.
4187         * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
4188         reset face-override-spec too, and use custom-declare-face.
4190 2012-11-24  Jan Djärv  <jan.h.d@swipnet.se>
4192         * term/ns-win.el (ns-initialize-window-system): Move creation of
4193         fontsets here (Bug#11964).
4195 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4197         * ses.el (ses-rename-cell): Correct bug on mode-line update after
4198         cell renaming.
4200 2012-11-24  Chong Yidong  <cyd@gnu.org>
4202         * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
4203         obsolete.
4205         * custom.el (custom-theme-set-variables): Use a topological sort
4206         for ordering by custom dependencies (Bug#12952).
4207         (custom--sort-vars, custom--sort-vars-1): New functions.
4209 2012-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4211         * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
4212         lexical-binding (bug#12938).
4214 2012-11-24  Wolfgang Jenkner  <wjenkner@inode.at>
4216         * image-mode.el (image-transform-check-size): Use assertions only
4217         for images of type imagemagick.
4219         Otherwise no error, image-transform-fit-to-{width,height} is
4220         silently ignored, as before.  Doc fix.
4222 2012-11-24  Chong Yidong  <cyd@gnu.org>
4224         * faces.el (color-defined-p): Doc fix (Bug#12853).
4226 2012-11-24  Juri Linkov  <juri@jurta.org>
4228         * dired.el (dired-mark): Add optional arg `interactive'.
4229         Check for `use-region-p' if `interactive' is non-nil.
4230         (dired-unmark, dired-flag-file-deletion): Add optional arg
4231         `interactive'.  Call `dired-mark' with the arg `interactive'.
4232         (Bug#10624)
4234         * wdired.el: Revert 2012-10-17 change partly and replace it with
4235         Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
4236         (wdired-finish-edit): Add marks for new file names to
4237         `wdired-old-marks'.  Restore marks using `dired-mark-remembered'
4238         after `revert-buffer'.
4239         (wdired-do-renames): Remove calls to `dired-remove-file',
4240         `dired-add-file', `dired-add-entry'.  (Bug#11795)
4242 2012-11-24  Alan Mackenzie  <acm@muc.de>
4244         * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
4246         Fix bugs in the state cache.  Enhance a debugging mechanism.
4247         * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
4248         "brace at column zero" strategy for C++.
4249         (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
4250         (c-parse-state-point): New variable.
4251         (c-record-parse-state-state): Record old parse state with
4252         `copy-tree'.  Record previous value of point.
4253         (c-debug-parse-state-double-cons): New debugging function.
4254         (c-debug-parse-state): Call the above new function.
4255         (c-toggle-parse-state-debug): Output a confirmatory message.
4257         * progmodes/cc-mode.el (c-before-change, c-after-change):
4258         Call c-invalidate-state-cache from `c-before-change' instead of
4259         `c-after-change'.
4261 2012-11-23  Chong Yidong  <cyd@gnu.org>
4263         * find-cmd.el (find-constituents): Add executable, ipath,
4264         readable, samefile, writable, daystart, regextype (Bug#12856).
4266 2012-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4268         * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
4270 2012-11-22  Paul Eggert  <eggert@cs.ucla.edu>
4272         * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
4273         definition.  This fixes a bootstrap failure.
4274         (calc-gregorian-switch): In menu, put dates before regions.
4275         This is easier to follow, lines up better in the menu, and lets us
4276         coalesce regions that switch at the same time.  Give country
4277         names, not "Vatican", as that's better for non-expert users.
4278         Use names that are stable between the date of switch and now, e.g.,
4279         Bohemia and Moravia (which existed then and now) and not
4280         Czechoslovakia (which didn't exist then and doesn't exist now).
4281         What is now the U.S. mostly did not switch at the same time as
4282         Britain, so omit the U.S.  Correct spelling of "Britain".
4283         Catholic Switzerland was too much of a mess, so omit it.
4285 2012-11-22  Jay Belanger  <jay.p.belanger@gmail.com>
4287         * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
4288         after the variable is changed.
4290 2012-11-21  Daniel Colascione  <dancol@dancol.org>
4292         * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
4293         in SQL declarations for font-lock.
4294         (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
4296 2012-11-21  Glenn Morris  <rgm@gnu.org>
4298         * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
4299         (face-italic-p): Add optional argument "inherit".
4301         * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
4302         Remove -p suffix from names, for consistency with other set-face-*.
4303         (set-face-inverse-video): Fix interactive spec.
4304         * play/gamegrid.el (gamegrid-make-mono-tty-face):
4305         * textmodes/table.el (table--update-cell-face):
4306         Use set-face-inverse-video rather than now obsolete alias.
4308 2012-11-21  Eli Zaretskii  <eliz@gnu.org>
4310         * simple.el (line-move): Don't call line-move-partial if
4311         scroll-conservatively is in effect.  (Bug#12927)
4313 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4315         * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
4316         Fallback on completion-at-point rather than
4317         pcomplete-expand-and-complete, and only if pcomplete actually failed.
4318         (eshell-cmpl-initialize): Setup completion-at-point.
4320         * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4322         * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4324 2012-11-21  Michael Albinus  <michael.albinus@gmx.de>
4326         * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4327         are remote, check out-of-band property for both.
4329 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4331         * window.el (switch-to-buffer): Re-add the warning that was lost in the
4332         code rewrite.
4334 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
4336         More minor time fixes.
4337         * calendar/time-date.el: Commentary fix.
4338         * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4339         too much other code depends on (0 0) time stamps.
4340         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4341         Add a couple of FIXME comments.
4343         Minor cleanup for times as lists of four integers.
4344         * files.el (dir-locals-directory-cache):
4345         * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4346         Doc fixes.
4347         * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4348         * ps-bdf.el (bdf-file-newer-than-time):
4349         Process four-integers time stamps, not two.  Doc fixes.
4351 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4353         * uniquify.el (uniquify-managed): Use defvar-local.
4354         (rename-buffer, create-file-buffer): Advise with advice-add.
4355         (uniquify-unload-function): Unadvise accordingly.
4357         * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4358         (trace-buffer): Don't purecopy.
4359         (trace-entry-message, trace-exit-message): Add `context' arg.
4360         (trace--timer): New var.
4361         (trace-make-advice): Adjust for use in nadvice.
4362         Add `context' argument.  Delay `display-buffer' via a timer.
4363         (trace-function-internal): Use advice-add.
4364         (trace--read-args): New function.
4365         (trace-function-foreground, trace-function-background): Use it.
4366         (trace-function): Rename to trace-function-foreground and redefine as
4367         an alias to that new name.
4368         (untrace-function, untrace-all): Adjust to the use of nadvice.
4370         * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4372         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4374         * subr.el (called-interactively-p-functions): New var.
4375         (internal--called-interactively-p--get-frame): New macro.
4376         (called-interactively-p, interactive-p): Rewrite in Lisp.
4377         * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4378         (called-interactively-p-functions): Use it.
4379         * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4380         (called-interactively-p-functions): Use it.
4381         * allout.el (allout-called-interactively-p): Don't assume
4382         called-interactively-p is a subr.
4384 2012-11-20  Glenn Morris  <rgm@gnu.org>
4386         * profiler.el (profiler-report-mode-map): Add a menu.
4387         No need to bind `q' because we derive from special-mode.
4388         (profiler-report-find-entry): Handle calls from the menu-bar.
4390 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4392         * emacs-lisp/byte-run.el (defun-declarations-alist):
4393         Allow a compiler-macro to be a lambda expression.
4395         * progmodes/python.el: Use cl-lib.  Move var declarations outside of
4396         eval-when-compile.
4397         (python-syntax-context): Add compiler-macro.
4398         (python-font-lock-keywords): Simplify with De Morgan.
4400         * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4402         * files.el (load-file): Require match in minibuffer selection, as was
4403         the case in Emacs-20 before we changed the spec to allow .elc files
4404         (bug#12935).
4406         * json.el: Don't require cl since we don't use it.
4407         * color.el: Don't require cl.
4408         (color-complement): `caddr' -> `nth 2'.
4410         * calendar/time-date.el (time-to-seconds): De-obsolete.
4412 2012-11-19  Jay Belanger  <jay.p.belanger@gmail.com>
4414         * calc/calc-forms.el (math-leap-year-p):  Fix formula for negative
4415         year numbers.
4416         (math-date-to-julian-dt): Adjust the initial approximation for the
4417         year to deal with the new definition of the DATE.
4419 2012-11-19  Daniel Colascione  <dancol@dancol.org>
4421         * term/w32-win.el (cygwin-convert-path-from-windows):
4422         Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4424 2012-11-18  Chong Yidong  <cyd@gnu.org>
4426         * filecache.el (file-cache--read-list): New function.
4427         (file-cache-add-directory-list, file-cache-add-file-list)
4428         (file-cache-delete-file-list, file-cache-delete-directory-list):
4429         Use it to read a list of files or directories (Bug#12846).
4430         (file-cache-add-file, file-cache-add-directory)
4431         (file-cache-delete-file-list, file-cache-delete-file-regexp)
4432         (file-cache-delete-directory): Print an message.
4434 2012-11-18  Jay Belanger  <jay.p.belanger@gmail.com>
4436         * calc/calc-forms.el (math-date-to-dt): Use integer date when
4437         calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4439 2012-11-18  Glenn Morris  <rgm@gnu.org>
4441         * image.el (insert-image, insert-sliced-image): Doc fix.
4443 2012-11-18  Chong Yidong  <cyd@gnu.org>
4445         * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4446         (Bug#12810).
4448 2012-11-18  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
4450         * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4451         response when the target file is in a subdirectory (Bug#12757).
4453 2012-11-18  Chong Yidong  <cyd@gnu.org>
4455         * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4457 2012-11-18  Glenn Morris  <rgm@gnu.org>
4459         * emacs-lisp/cl-lib.el (face-underline-p):
4460         Use set-face-underline rather than the alias set-face-underline-p.
4462         * window.el (with-temp-buffer-window): Doc fix.
4463         * subr.el (with-output-to-temp-buffer):
4464         Add doc xref to with-temp-buffer-window.
4466 2012-11-18  Juanma Barranquero  <lekktu@gmail.com>
4468         * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4469         * calc/calc.el (math-format-date-cache): Declare.
4471 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4473         Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4474         It also uses January 1, 1 AD as its day number 1.
4475         * calc/calc-forms.el (math-julian-date-beginning)
4476         (math-julian-date-beginning-int): Implement this.
4478 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
4480         * descr-text.el (quail-find-key):
4481         * dired.el (desktop-file-name):
4482         * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4483         * generic-x.el (comint-mode, comint-exec):
4484         * image-dired.el (widget-forward):
4485         * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4486         (speedbar-change-expand-button-char)
4487         (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4488         (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4489         * printing.el (easy-menu-add-item, easy-menu-remove-item)
4490         (widget-field-action, widget-value-set):
4491         * speedbar.el (imenu--make-index-alist):
4492         * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4493         (ring-length, ring-insert):
4494         * vcursor.el (compare-windows-skip-whitespace):
4495         * woman.el (dired-get-filename):
4496         Declare functions.
4498         * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4500 2012-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
4502         * calc/calc.el (calc-gregorian-switch): New variable.
4504         * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4505         (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4506         (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4507         (math-leap-year-p): Add option to distinguish between Julian
4508         and Gregorian calendars.
4509         (math-day-number): Use `math-day-in-year' to do the computations.
4510         (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4511         Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4512         to do the computations.
4513         (math-date-to-dt): Use `math-date-to-julian-dt' and
4514         `math-date-to-gregorian-dt' to do the computations.
4515         (calcFunc-weekday, math-format-date-part): Use the new version of
4516         the DATE to determine the weekday.
4517         (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4518         when necessary.
4520 2012-11-17  Eli Zaretskii  <eliz@gnu.org>
4522         * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4523         Cygwin; otherwise use 'file:'.  (Bug#12914)
4524         (cygwin-convert-path-from-windows): Declare, to avoid
4525         byte-compiler warnings.
4527 2012-11-17  Andreas Politz  <politza@fh-trier.de>
4529         * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4530         (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4531         prefix and negative numeric prefix args (Bug#12795).
4533 2012-11-17  Stephen Berman  <stephen.berman@gmx.net>
4535         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4536         Don't signal an error with a score that is too low to add to the
4537         list of top scores. (Bug#12779)
4539 2012-11-17  Chong Yidong  <cyd@gnu.org>
4541         * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4543         * filecache.el (file-cache-add-file): Handle relative file name in
4544         the argument (Bug#12694).
4546 2012-11-16  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
4548         * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4550 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4552         * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4554         * emacs-lisp/cl-lib.el: Set more meaningful version number.
4556 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
4558         * window.el (enlarge-window, shrink-window): Don't mention return
4559         value in doc-string (Bug#12896).
4560         (window--display-buffer): Don't resize frames - it won't work
4561         with all window managers and defeat pop-up-frame-alist.
4562         (display-buffer-alist): In doc-string explain that CONDITION can
4563         be a function and which arguments are passed to it (Bug#12854).
4564         (display-buffer-assq-regexp): New argument ACTION.  Handle lambda
4565         expressions (Bug#12854).
4566         (display-buffer): Pass ACTION argument to
4567         display-buffer-assq-regexp.
4569 2012-11-16  Glenn Morris  <rgm@gnu.org>
4571         * window.el (fit-frame-to-buffer-bottom-margin)
4572         (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4574         * faces.el (face-underline-p): Use face-attribute-specified-or.
4576 2012-11-16  Juanma Barranquero  <lekktu@gmail.com>
4578         * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4580 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4582         * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4584 2012-11-16  Glenn Morris  <rgm@gnu.org>
4586         * eshell/em-cmpl.el (eshell-pcomplete): New command.  (Bug#12838)
4587         (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4589         * faces.el (face-underline-p): Doc fix.  Handle :underline being
4590         things other than `t' (a string, a list).
4591         (face-inverse-video-p): Doc fix.
4592         (set-face-underline): Rename it back from set-face-underline-p.
4593         Doc fix.  Allow interactive input of values other than t.
4594         (read-face-attribute): Apply formatting to :underline,
4595         since like :box and :stipple it can take list values.
4597         * term.el (ansi-term): Don't let C-x escape-char binding
4598         clobber the more standard C-c binding.  (Bug#12842)
4600         * subr.el (set-temporary-overlay-map): Doc fix.
4602 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
4604         * window.el (record-window-buffer)
4605         (display-buffer-record-window): When copying the markers to
4606         window-point preserve window-point-insertion-type. (Bug#12588)
4608 2012-11-16  Glenn Morris  <rgm@gnu.org>
4610         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4611         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4612         Use new names for hooks rather than obsolete aliases.
4614 2012-11-15  Daniel Colascione  <dancol@dancol.org>
4616         * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4617         prefix instead of "file:" so that when FILE-NAME begins with "//",
4618         as it does when the target file is on a network share, url-handler
4619         isn't confused.
4621 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4623         * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4624         a preactivated advice from an old advice.el; they're not compatible!
4626 2012-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4628         * emacs-lisp/nadvice.el (advice--make-interactive-form):
4629         Fix string-spec case.
4631         * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4633 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4635         * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4636         (advice--buffer-local-function-sample): New var.
4637         (advice--set-buffer-local, advice--buffer-local): New functions.
4638         (add-function, remove-function): Use them.
4640 2012-11-15  Drew Adams  <drew.adams@oracle.com>
4642         * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4644 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4646         * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4647         potential binding of print-gensym to t, and prettify (back)quotes in
4648         case they appear in args's default values (bug#12884).
4650 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4652         * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4653         (advice-eval-interactive-spec): New function.
4654         (advice--make-interactive-form): Support around advice (bug#12844).
4656 2012-11-14  Dmitry Gutov  <dgutov@yandex.ru>
4658         * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4659         more strict.  Add docstring.
4660         (ruby-expression-expansion-re): Extract from
4661         `ruby-match-expression-expansion'.
4662         (ruby-syntax-propertize-function): After everything else, search
4663         for expansions in string literals, mark their insides as
4664         whitespace syntax and save match data for font-lock.
4665         (ruby-font-lock-keywords): Use the 2nd group from expression
4666         expansion matches.
4667         (ruby-match-expression-expansion): Use the match data saved to the
4668         text property in ruby-syntax-propertize-function.
4670 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4672         * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4673         (bug#12879).
4675 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4677         * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4678         start/end keyword a bit harder.  Works with different values of N.
4679         Add more comments.
4680         (ruby-end-of-block): Update accordingly.
4682 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4684         * woman.el (woman-file-name): Don't mess with unread-command-events
4685         (bug#12861).
4687         * emacs-lisp/advice.el: Layer on top of nadvice.el.
4688         Remove out of date self-require hack.
4689         (ad-do-advised-functions): Use simple `dolist'.
4690         (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4691         (ad-advice-definition): Redefine as functions.
4692         (ad-advice-classes): Move before first use.
4693         (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4694         (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4695         (ad--defalias-fset): Remove functions.
4696         (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4697         (ad-get-orig-definition): Rewrite.
4698         (ad-make-advised-definition-docstring): Change base docstring.
4699         (ad-real-orig-definition): Rewrite.
4700         (ad-map-arglists): Change name of called function.
4701         (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4702         (ad-make-advised-definition): Simplify.
4703         (ad-assemble-advised-definition): Tweak for new calling context.
4704         (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4705         (ad--defalias-fset): Rename from ad-handle-definition.  Make it set the
4706         function and call ad-activate if needed.
4707         (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4708         (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4709         (ad-compile-function): Compile ad-Advice-*.
4710         (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4711         (ad-start-advice, ad-stop-advice): Remove.
4713 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4715         * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4716         period before class method names, not after.  Remove handling of
4717         one impossible case.  Add comments.
4719 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4721         * emacs-lisp/advice.el: Remove support for freezing.
4722         (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4723         (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4724         Remove support for `freeze'.
4726         * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4727         override the default.
4728         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4729         cl--dotimes/dolist.
4730         * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4731         `cl' is loaded.
4733         * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4734         from add-advice.
4735         (advice--strip-macro): New function.
4736         (advice--defalias-fset): Use them to handle macros.
4737         (advice-add): Use them.
4738         (advice-member-p): Correctly handle macros.
4740 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4742         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4743         Never font-lock the beginning of singleton class as heredoc.
4745 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4747         * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4749 2012-11-13  Wolfgang Jenkner  <wjenkner@inode.at>
4751         * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4752         39 and 49 (bug#12792).  Also, treat unimplemented parameters as 0,
4753         thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4755 2012-11-13  Fabián Ezequiel Gallina  <fgallina@cuca>
4757         Fix end-of-defun misbehavior.
4758         * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4759         python-beginning-of-defun-function.  Handle nested defuns
4760         correctly.
4761         (python-nav-end-of-defun): Rename from
4762         python-end-of-defun-function.  Ensure forward movement.
4763         (python-info-current-defun): Reimplement to work as intended
4764         with new fixed python-nav-{end,beginning}-of-defun.  Stop scanning
4765         parent defuns as soon as possible.
4767 2012-11-13  Glenn Morris  <rgm@gnu.org>
4769         * progmodes/flymake.el (flymake-error-bitmap)
4770         (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4771         (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4773 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4775         * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4776         backward, always stop at indentation.  Reverts the change from
4777         2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4779 2012-11-13  Glenn Morris  <rgm@gnu.org>
4781         * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4782         Add ibuffer-filter-by-derived-mode.
4784         * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4785         the same name shadowing each other.
4787         * window.el (with-temp-buffer-window): Doc tweak.
4789         * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4791         * help.el (temp-buffer-max-height):
4792         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4793         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4795 2012-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4797         * emacs-lisp/nadvice.el: New package.
4798         * subr.el (special-form-p): New function.
4799         * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4800         (elp-all-instrumented-list): Remove var.
4801         (elp-not-profilable): Remove elp-wrapper.
4802         (elp-profilable-p): Use autoloadp and special-form-p.
4803         (elp--advice-name): New const.
4804         (elp-instrument-function): Use advice-add.
4805         (elp--instrumented-p): New predicate.
4806         (elp-restore-function): Use advice-remove.
4807         (elp-restore-all, elp-reset-all): Use mapatoms.
4808         (elp-set-master): Use elp--instrumented-p.
4809         (elp--make-wrapper): Rename from elp-wrapper, return a function
4810         suitable for advice-add.  Use cl-inf.
4811         (elp-results): Use mapatoms+elp--instrumented-p.
4812         * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4813         (debug-function-list): Remove var.
4814         (debug): Rename arg, and then let-bind it explicitly inside.
4815         (debugger-setup-buffer): Rename arg.
4816         (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4817         (debugger-frame-number): Adjust to new debug-on-entry setup.
4818         (debug--implement-debug-on-entry): Rename from
4819         implement-debug-on-entry, add argument.
4820         (debugger-special-form-p): Remove, use special-form-p instead.
4821         (debug-on-entry): Use advice-add.
4822         (debug--function-list): New function.
4823         (cancel-debug-on-entry): Use it, along with advice-remove.
4824         (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4825         (debugger-list-functions): Use debug--function-list instead of
4826         debug-function-list.
4827         * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4828         (ad-special-form-p): Remove, use special-form-p instead.
4829         (ad-set-advice-info): Use add-function and remove-function.
4830         (ad--defalias-fset): Adjust accordingly.
4832 2012-11-10  Glenn Morris  <rgm@gnu.org>
4834         * mail/emacsbug.el (report-emacs-bug-tracker-url)
4835         (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4836         (report-emacs-bug-create-existing-bugs-buffer)
4837         (report-emacs-bug-parse-query-results)
4838         (report-emacs-bug-query-existing-bugs): Remove.  (Bug#7449)
4840         * term.el (term-default-fg-color, term-default-bg-color):
4841         Make obsolete, rather than just saying "deprecated" in the doc.
4843         * term.el (term): Rename from `term-face'.
4844         (term-current-face, ansi-term-color-vector)
4845         (term-default-fg-color, term-default-bg-color, term-ansi-reset):
4846         Update all users.
4848 2012-11-10  Jan Djärv  <jan.h.d@swipnet.se>
4850         * server.el (server-create-window-system-frame): Handle Nextstep
4851         specially (Bug#12780).
4853 2012-11-10  Glenn Morris  <rgm@gnu.org>
4855         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4856         Unautoload, and make obsolete.  (Bug#7449)
4858 2012-11-10  Chong Yidong  <cyd@gnu.org>
4860         * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
4861         rename from diff-remove-trailing-whitespace (Bug#12831).
4863 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4865         * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
4866         miscompilation of trace.el.
4868 2012-11-10  Glenn Morris  <rgm@gnu.org>
4870         * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
4872 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4874         * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
4875         (bug#12812).
4877 2012-11-10  Chong Yidong  <cyd@gnu.org>
4879         * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
4880         a defcustom with an appropriate :set function.
4881         (minibuffer-default--in-prompt-regexps): New function.
4883 2012-11-10  Glenn Morris  <rgm@gnu.org>
4885         * emacs-lisp/cl.el (define-setf-expander, defsetf)
4886         (define-modify-macro): Doc fixes.
4888         * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
4889         (gv-define-simple-setter): Update doc of `fix-return'.
4891 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4893         * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
4894         twice when `fix-return' is set (bug#12813).
4896         * emacs-lisp/cl.el (defsetf): Pass the third arg to
4897         gv-define-simple-setter (bug#12812).
4899         * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4900         (bug#12756).
4902 2012-11-10  Glenn Morris  <rgm@gnu.org>
4904         * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
4906         * emacs-lisp/cl-extra.el (cl-prettyexpand):
4907         * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
4908         * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
4909         (cl-the, cl-compiler-macroexpand): Add basic doc strings.
4911         * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
4913 2012-11-10  Leo Liu  <sdl.web@gmail.com>
4915         * ido.el (ido-set-matches-1): Improve flex matching performance by
4916         removing backtracking in the regexp (suggested by Stefan).  (Bug#12796)
4918 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4920         * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
4921         (ad--defalias-fset): New function.
4922         (ad-safe-fset): Remove.
4923         (ad-make-freeze-definition): Use cl-letf*.
4925 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4927         * subr.el (dolist): Don't bind VAR in RESULT.
4929         * emacs-lisp/advice.el: Miscellaneous cleanup.  Use lexical-binding.
4930         (fset, documentation): Don't save real def since we don't advise.
4931         (ad-do-advised-functions): Remove problematic `result-form'.
4932         (ad-safe-fset): `ad-real-fset' => `fset'.
4933         (ad-read-advised-function): Don't assume that ad-do-advised-functions
4934         uses CL's dolist internally.
4935         (ad-arglist): Remove unused arg `name'.
4936         (ad-docstring, ad-make-advised-docstring):
4937         `ad-real-documentation' => `documentation'.
4938         (warning-suppress-types): Declare.
4939         (ad-set-arguments): Simple CSE.
4940         (ad-recover-normality): Sanity check.
4942         * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
4943         (funcall '(lambda ..) ..) into ((lambda ..) ..).
4945 2012-11-09  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4947         * ses.el: symbol to coordinate mapping is made by symbol property
4948         `ses-cell'.  This means that the same mapping is done for all SES
4949         sheets.  That is good enough for cells with standard A1 names, but
4950         not for named cell.  So a hash map is added for the latter.
4951         (defconst ses-localvars): Add local variable ses--named-cell-hashmap
4952         (ses-sym-rowcol): Use hashmap for named cell.
4953         (ses-is-cell-sym-p): New defun.
4954         (ses-decode-cell-symbol): New defun.
4955         (ses-create-cell-variable): Add cell to hashmap when name is not
4956         A1-like.
4957         (ses-rename-cell): Check that cell new name is not already in
4958         spreadsheet with the use of ses-is-cell-sym-p
4959         (ses-rename-cell): Use hash map for named cells, but accept also
4960         renaming back to A1-like.
4962 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4964         * emacs-lisp/advice.el: Use new dynamic docstrings.
4965         (ad-make-advised-definition-docstring, ad-advised-definition-p):
4966         Use dynamic-docstring-function instead of ad-advice-info.
4967         (ad--make-advised-docstring): New function extracted from
4968         ad-make-advised-docstring.
4969         (ad-make-advised-docstring): Use it.
4970         * progmodes/sql.el (sql--make-help-docstring): New function, extracted
4971         from sql-help.
4972         (sql-help): Use it with dynamic-docstring-function.
4974         * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
4976 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4978         * files.el (hack-one-local-variable--obsolete): New function.
4979         (hack-one-local-variable): Use it for obsolete settings.
4981         * subr.el (locate-user-emacs-file): If both old and new name exist, use
4982         the new name.
4984         * progmodes/js.el (js--filling-paragraph): New var.
4985         (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
4986         (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
4987         less sneaky.
4989 2012-11-08  Julien Danjou  <julien@danjou.info>
4991         * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
4992         `auto-mode-alist' (Bug#12835).
4994 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4996         * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
4997         (perl--prettify-symbols-alist): New const.
4998         (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
4999         New functions.
5000         (perl-font-lock-keywords-2): Use them.
5001         (perl-electric-noindent-p): New function.
5002         (perl-mode): Use it to set up electric-indent-mode.
5003         (perl-electric-terminator, perl-indent-command): Mark obsolete.
5004         (perl-mode-map): Remove bindings for them.
5005         (perl-imenu-generic-expression, perl-outline-level):
5006         Match functions&packages in column>0.
5008         * env.el (env--substitute-vars-regexp): New const.
5009         (substitute-env-vars): Use it.  Add `only-defined' arg.
5010         * net/tramp.el (tramp-replace-environment-variables): Use it.
5012         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
5013         Byte-compile *before* eval in eval-and-compile.
5014         (byte-compile-log-warning): Remove redundant inhibit-read-only.
5015         (byte-compile-file-form-autoload): Don't hide actual definition.
5016         (byte-compile-maybe-guarded): Accept `functionp' as well.
5018         * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
5020 2012-11-07  Michael Albinus  <michael.albinus@gmx.de>
5022         * notifications.el (notifications-get-server-information-method):
5023         New defconst.
5024         (notifications-get-capabilities): Fix docstring.
5025         (notifications-get-server-information): New defun.
5027 2012-11-06  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
5029         * textmodes/ispell.el (ispell-region): Standard re-indent for better
5030         readability.
5032         * textmodes/ispell.el: Experimental support for support debugging.
5033         (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
5034         buffer for ispell.
5035         (ispell-print-if-debug): New function to print stuff to
5036         `ispell-debug-buffer' if debugging is enabled.
5037         (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
5038         show some debugging info.
5039         (ispell-buffer-with-debug): New function that creates a debugging
5040         buffer and calls `ispell-buffer' with debugging enabled.
5042         * textmodes/ispell.el (ispell-region): Do not prefix sent string by
5043         comment in autoconf mode. (Bug#12768)
5045 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
5047         * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
5048         frame-first-window, frame-root-window, frame-selected-window,
5049         minibuffer-selected-window, minibuffer-window,
5050         window-absolute-pixel-edges, window-at, window-body-height,
5051         window-body-width, window-display-table, window-combination-limit,
5052         window-frame, window-fringes, window-inside-absolute-pixel-edges,
5053         window-inside-edges, window-inside-pixel-edges, window-left-child,
5054         window-left-column, window-margins, window-next-buffers,
5055         window-next-sibling, window-new-normal, window-new-total,
5056         window-normal-size, window-parameter, window-parameters, window-parent,
5057         window-pixel-edges, window-point, window-prev-buffers,
5058         window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
5059         window-start, window-text-height, window-top-child, window-top-line,
5060         window-total-height, window-total-width and window-use-time to the list
5061         of functions without side-effects.
5062         (toplevel): Add window-valid-p to the list of error-free functions
5063         without side-effects.
5065 2012-11-05  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
5067         * textmodes/ispell.el (ispell-program-name):
5068         Update spellchecker parameters when customized.
5070 2012-11-04  Glenn Morris  <rgm@gnu.org>
5072         * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn.  (Bug#7850)
5074 2012-11-04  Chong Yidong  <cyd@gnu.org>
5076         * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
5077         same-window-* variables.
5079 2012-11-04  Juri Linkov  <juri@jurta.org>
5081         * isearch.el (isearch-help-for-help, isearch-describe-bindings)
5082         (isearch-describe-key, isearch-describe-mode): Use a display
5083         action instead of binding same-window-* variables (Bug#10040).
5085 2012-11-03  Glenn Morris  <rgm@gnu.org>
5087         * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
5088         Rename handler properties back from cl-- to cl-.  (Bug#12788)
5090         * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
5092 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
5094         * term/pc-win.el: Don't load term/internal from here.
5096         * loadup.el: Load term/internal from here.
5098 2012-11-03  Fabián Ezequiel Gallina  <fgallina@cuca>
5100         * progmodes/python.el (inferior-python-mode): Fix hang in
5101         jit-lock (Bug#12645).
5103 2012-11-03  Martin Rudalics  <rudalics@gmx.at>
5105         * window.el (switch-to-visible-buffer)
5106         (switch-to-buffer-preserve-window-point): Fix doc-strings.
5108 2012-11-03  Glenn Morris  <rgm@gnu.org>
5110         * emacs-lisp/cl-lib.el (cl--random-time):
5111         Rename from cl-random-time.  (Bug#12773)
5112         (cl--gensym-counter, cl--random-state): Update callers.
5113         * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
5115 2012-11-03  Chong Yidong  <cyd@gnu.org>
5117         * cus-start.el: Make cursor-type customizable (Bug#11633).
5119 2012-11-02  Glenn Morris  <rgm@gnu.org>
5121         * filecache.el: No need to load find-lisp when compiling.
5122         (find-lisp-find-files): Autoload it.
5123         (file-cache-add-directory-recursively): Don't require find-lisp.
5125         * image.el (image-type-from-file-name): Trivial simplification.
5127         * emacs-lisp/bytecomp.el (byte-compile-eval):
5128         Decouple "noruntime" and "cl-functions" warnings.
5130 2012-11-01  Stephen Berman  <stephen.berman@gmx.net>
5132         * play/gomoku.el (gomoku-display-statistics): Update mode line
5133         only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
5135 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
5137         * window.el (quit-restore-window): If the window has been
5138         created on an existing frame and ended up as the sole window on
5139         that frame, do not delete it (Bug#12764).
5141 2012-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5143         * progmodes/sh-script.el (sh--inside-noncommand-expression):
5144         Rename from sh--inside-arithmetic-expression, handle more cases
5145         (bug#11263).
5147         * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
5148         (sh-font-lock-open-heredoc): Use it (bug#12770).
5150 2012-10-30  Glenn Morris  <rgm@gnu.org>
5152         * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie.  Doc fix.
5154         * emacs-lisp/cl.el (letf): Doc fix.  (Bug#12760)
5156 2012-10-29  Chong Yidong  <cyd@gnu.org>
5158         * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
5159         function key is stored in a keyboard macro (Bug#4894).
5161         * thingatpt.el (number-at-point): Apply a thing-at-point property.
5163 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5165         * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
5166         header comments".
5167         (diff-unified->context, diff-context->unified)
5168         (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
5170         * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
5172         * files.el (find-alternate-file): Only ask one question (bug#12487).
5174 2012-10-29  Chong Yidong  <cyd@gnu.org>
5176         * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
5177         Suggested by Dan Nicolaescu (Bug#6326).
5179         * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
5181         * startup.el (fancy-about-screen): Don't message (Bug#12680).
5183         * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
5185         * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
5187         * face-remap.el (face-remap-add-relative): Handle the case where a
5188         face-remapping-alist entry is a cons cell (Bug#12762).
5190 2012-10-29  Kevin Ryde  <user42@zip.com.au>
5192         * woman.el (woman-parse-numeric-value): Handle picas correctly
5193         (Bug#12639).
5195 2012-10-29  Glenn Morris  <rgm@gnu.org>
5197         * emacs-lisp/cl.el (defsetf): Doc fix.
5199 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5201         * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
5202         syntax to the matching opener, if any (bug#12547).
5203         (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
5204         matching open as a "case-(".
5205         (sh-smie-rc-grammar): Add a corresponding rule for it.
5207 2012-10-28  Daniel Hackney  <dan@haxney.org>
5209         * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
5210         "PKGNAME-autoloads.el" in case we created it.
5212 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5214         * minibuffer.el (completion--sifn-requote): Rewrite to handle things
5215         like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
5216         (completion--twq-all): Disable too-strict assertions.
5218         * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
5220 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
5222         * profiler.el (profiler-report-make-entry-part): Fix help-echo
5223         text to match the real keybindings.
5225 2012-10-27  Juri Linkov  <juri@jurta.org>
5227         * wdired.el (wdired-keep-marker-rename): New defcustom.
5228         (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
5229         (Bug#11795)
5231         * dired.el (dired-keep-marker-rename): Add reference to
5232         `wdired-keep-marker-rename' in the docstring.
5233         Add default character value ?R to display initially in
5234         Customization UI instead of ?@.
5236 2012-10-27  Martin Rudalics  <rudalics@gmx.at>
5238         * window.el (display-buffer): In doc-string describe
5239         window-height and window-width alist entries.
5241         * time.el (display-time-world): Restore fit-window-to-buffer
5242         behavior.
5244 2012-10-27  Chong Yidong  <cyd@gnu.org>
5246         * subr.el (insert-buffer-substring-as-yank): Doc fix.
5248 2012-10-26  Jambunathan K  <kjambunathan@gmail.com>
5250         * minibuffer.el (completion-category-overrides): New completion
5251         category `bookmark' (bug#11131).
5253 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5255         * emacs-lisp/advice.el (ad-assemble-advised-definition):
5256         Silence bogus compiler warnings for ad-do-it.
5258         * bookmark.el (bookmark-completing-read): Set the completion category
5259         to `bookmark' (bug#11131).
5261 2012-10-26  Bastien  <bzg@altern.org>
5262             Stefan Monnier  <monnier@iro.umontreal.ca>
5264         * face-remap.el: Use lexical-binding.
5265         (text-scale-adjust): Improve docstring.  Use itself for the temporary
5266         overlay-map bindings, so as to repeat the "Use..." message each time.
5268 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5270         * emacs-lisp/macroexp.el (macroexp--expand-all):
5271         Obey byte-compile-warning-enabled-p (bug#12486).
5273         * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
5274         (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
5276 2012-10-26  Martin Rudalics  <rudalics@gmx.at>
5278         * mouse.el (mouse-drag-line): Move last form into preceding when
5279         clause (Bug#12731).
5281         * help.el (resize-temp-buffer-window): Fix doc-string.
5283 2012-10-25  David Engster  <deng@randomsample.de>
5285         * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
5286         Remove.  This feature is already integrated in imenu.
5288         * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
5289         always loaded.  Require `speedbar' unconditionally.
5291 2012-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5293         * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
5295         * minibuffer.el (minibuffer-force-complete): Fix thinko.
5297         * net/ldap.el (ldap-search-internal): The official ldif format starts
5298         with a "version: 1" header (bug#12724).
5300         * emacs-lisp/package.el (package-installed-p): Warn if not ready
5301         (bug#12721).
5303 2012-10-25  Glenn Morris  <rgm@gnu.org>
5305         * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
5307 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5309         * minibuffer.el (minibuffer-force-complete): Use one more marker
5310         for the temporary-overlay-map command (bug#12619).
5312 2012-10-24  Chong Yidong  <cyd@gnu.org>
5314         * time.el (display-time-world-mode): Derive from special-mode.
5315         (display-time-world): Use display-buffer (Bug#12708).
5316         (display-time-world-mode-map): Variable deleted.
5317         (display-time-world-display): Wrap the final delete-char inside
5318         inhibit-read-only.
5320 2012-10-24  Chong Yidong  <cyd@gnu.org>
5322         * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5323         Doc fix.
5325         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5327 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5329         * minibuffer.el (completion--all-sorted-completions-location): New var.
5330         (completion--cache-all-sorted-completions)
5331         (completion--flush-all-sorted-completions): Use it.
5332         (completion-in-region, completion-in-region--postch)
5333         (completion-at-point, completion-help-at-point): Use markers in
5334         completion-in-region--data (bug#12619).
5336 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5338         * progmodes/compile.el (compilation-start): Try to handle common
5339         quoting of `cd' argument (bug#12640).
5341         * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5342         (bug#12671).
5344 2012-10-23  Glenn Morris  <rgm@gnu.org>
5346         * progmodes/gud.el (gud-menu-map):
5347         Check gdb-active-process is bound.  (Bug#12358)
5349 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5351         * repeat.el (repeat): Set real-this-command (bug#12232).
5353         * htmlfontify.el (hfy-post-html-hook):
5354         * filesets.el (filesets-cache-fill-content-hook):
5355         * arc-mode.el (archive-extract-hook):
5356         * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5357         * net/rcirc.el (rcirc-sentinel-functions)
5358         (rcirc-receive-message-functions, rcirc-activity-functions)
5359         (rcirc-print-functions):
5360         * net/dbus.el (dbus-event-error-functions):
5361         * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5362         * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5363         (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5364         * term/sun.el (sun-raw-prefix-hooks):
5365         * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5367 2012-10-23  Michael Albinus  <michael.albinus@gmx.de>
5369         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5370         Set `tramp-chunksize' to 1.  This improves the performance.
5371         (tramp-smb-wait-for-output): Add timeout to
5372         `tramp-accept-process-output' calls.
5374 2012-10-23  Chong Yidong  <cyd@gnu.org>
5376         * faces.el (font-list-limit): Define as an obsolete variable.
5378         * startup.el (command-line):
5379         * cus-start.el: Don't refer to font-list-limit.
5381         * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5383 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5385         * subr.el (internal-temp-output-buffer-show): Rename from
5386         temp-output-buffer-show, since previously compiled files expect this name.
5388 2012-10-23  Glenn Morris  <rgm@gnu.org>
5390         * image.el (image-type-from-file-name): If multiple types match,
5391         return the first one that is supported.  (Bug#9045)
5393 2012-10-22  Glenn Morris  <rgm@gnu.org>
5395         * image.el (imagemagick-enabled-types): Doc fix.
5397 2012-10-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
5399         * progmodes/which-func.el (which-func-current): The hash-table may have
5400         an explicit nil (bug#12338).
5402 2012-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5404         * electric.el (electric-pair-delete-selection-self-insert-function):
5405         Rename to electric-pair-will-use-region, return a boolean.
5406         (electric-pair-mode): Adjust accordingly.  Don't require delsel.
5408         * delsel.el (delete-selection-helper): Use a function instead of a hook.
5409         (delete-selection-pre-hook): Use use-region-p.
5410         (delete-selection-self-insert-function): Remove.
5411         (self-insert-command): Obey self-insert-uses-region-functions.
5412         (self-insert-iso): Revert to previous setting, since we don't actually
5413         know what that command does.
5414         (delete-selection-self-insert-hooks): Remove.
5416 2012-10-22  Simon Law  <sfllaw@sfllaw.ca>  (tiny change)
5418         * delsel.el (delete-selection-helper): New function, extracted from
5419         delete-selection-pre-hook.
5420         (delete-selection-pre-hook): Use it.
5421         (delete-selection-self-insert-function): New function.
5422         (delete-selection-self-insert-hooks): New hook.
5423         (self-insert-command, self-insert-iso): Use it.
5424         * electric.el (electric-pair-syntax): New function, extracted from
5425         electric-pair-post-self-insert-function.
5426         (electric-pair-post-self-insert-function): Use it.
5427         (electric-pair-delete-selection-self-insert-function): New function.
5428         (electric-pair-mode): Require delsel and setup
5429         delete-selection-self-insert-hooks (bug#11520).
5431 2012-10-20  Chong Yidong  <cyd@gnu.org>
5433         * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5434         no changes to show (Bug#12586).
5436         * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5437         list explicitly (Bug#12571).
5439 2012-10-20  Arne Jørgensen  <arne@arnested.dk>
5441         * progmodes/flymake.el (flymake-create-temp-inplace):
5442         Use file-truename.
5444 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
5446         * loadup.el: Update comment about uncompiled Lisp files.  (Bug#12395)
5448 2012-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
5450         * calc/calc-units.el (math-extract-units): Properly extract powers
5451         of units.
5453 2012-10-20  Daniel Colascione  <dancol@dancol.org>
5455         * frame.el (make-frame): Set x-display-name as we used to in order
5456         to unbreak creating an X11 frame from an Emacs daemon started
5457         without a display.
5459 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5461         * minibuffer.el (minibuffer-force-complete): Make the next completion use
5462         the same completion-field (bug#12221).
5464 2012-10-19  Martin Rudalics  <rudalics@gmx.at>
5466         * emacs-lisp/debug.el (debug): Record height of debugger window
5467         also when debugger will be back (Bug#8789).
5469 2012-10-18  Chong Yidong  <cyd@gnu.org>
5471         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5472         Convert to defcustom.
5473         (gdb-get-source-file): Don't bind pop-up-windows.
5475         * progmodes/gud.el (gud-display-line): Don't specially re-use
5476         other frames for the gdb-mi case (Bug#12648).
5478 2012-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5480         * emacs-lisp/advice.el: Clean up commentary a bit.
5481         (ad-do-advised-functions, ad-with-originals): Use `declare'.
5482         (byte-code-function-p): Never redefine.
5484         * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5486 2012-10-18  Glenn Morris  <rgm@gnu.org>
5488         * dired.el (dired-sort-toggle): Some ls implementations only allow
5489         a single option string.  (Bug#12666)
5491         * minibuffer.el (completion-cycle-threshold): Doc fix.
5493 2012-10-17  Kenichi Handa  <handa@gnu.org>
5495         * international/mule.el (set-keyboard-coding-system):
5496         Recover input meta mode when the new coding system doesn not use 8-bit.
5497         Supply TERMINAL arg to set-input-meta-mode.
5499 2012-10-17  Michael Heerdegen <michael_heerdegen@web.de>
5501         * wdired.el (wdired-old-marks): New variable.
5502         (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5503         (wdired-do-renames): Move point with renamed file and don't lose
5504         mark status (Bug#11795).
5506 2012-10-16  Juri Linkov  <juri@jurta.org>
5508         * replace.el (query-replace-help): Mention multi-buffer replacement
5509         keys in the Help message.  (Bug#12655)
5511 2012-10-15  Chong Yidong  <cyd@gnu.org>
5513         * emacs-lisp/byte-run.el (defsubst): Doc fix.
5515 2012-10-14  Eli Zaretskii  <eliz@gnu.org>
5517         * window.el (display-buffer): Doc fix.
5519         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5520         Adjust the msft regexp to the output of Studio 2010, and move msft
5521         before edg-1.  See the discussion on emacs-devel,
5522         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5523         for the details.
5525 2012-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5527         * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5528         (oset): Move uses of object-class-fast macro after its definition.
5530         * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5532 2012-10-13  Chong Yidong  <cyd@gnu.org>
5534         * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5535         enabled, re-enable it (Bug#11963).
5537 2012-10-13  Martin Rudalics  <rudalics@gmx.at>
5539         * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5540         non-nil, restore window configuration (Bug#12623).
5542 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5544         * help-fns.el (describe-variable, describe-function-1):
5545         * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5547         * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5549 2012-10-12  Glenn Morris  <rgm@gnu.org>
5551         * mail/rmailsum.el (rmail-header-summary):
5552         Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
5554 2012-10-12  Fabián Ezequiel Gallina  <fgallina@cuca>
5556         * progmodes/python.el (python-mode-map):
5557         Replace subtitute-key-definition with proper command remapping.
5558         (python-nav--up-list): Fix behavior for blocks on the same level.
5560 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5562         * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5564         * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5565         changes to the format of load-history.
5567         * international/mule-cmds.el (read-char-by-name): Move let-binding of
5568         completion-ignore-case in case that var is buffer-local (bug#12615).
5570 2012-10-11  Kenichi Handa  <handa@gnu.org>
5572         * international/eucjp-ms.el: Re-generated.
5574 2012-10-10  Kenichi Handa  <handa@gnu.org>
5576         * select.el (xselect--encode-string): If a coding is specified for
5577         selection, and that is compatible with COMPOUND_TEXT, use it.
5579 2012-10-10  Martin Rudalics  <rudalics@gmx.at>
5581         * window.el (switch-to-buffer-preserve-window-point): New option.
5582         (switch-to-buffer):
5583         Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5585 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5587         * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5588         Don't document nil as a useful value (bug#12583).
5590 2012-10-09  Michael Albinus  <michael.albinus@gmx.de>
5592         * net/tramp.el (tramp-debug-message):
5593         Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5594         (with-tramp-progress-reporter): Rename from
5595         `tramp-with-progress-reporter'.
5596         (with-tramp-file-property, with-tramp-connection-property):
5597         Move from tramp-cache.el, rename from `with-file-property' and
5598         `with-connection-property', respectively.
5600         * net/tramp-cache.el: Remove `with-file-property' and
5601         `with-connection-property'.
5603         * net/tramp.el:
5604         * net/tramp-gvfs.el:
5605         * net/tramp-sh.el:
5606         * net/tramp-smb.el: Adapt callees.
5608         * net/trampver.el: Update release number.
5610 2012-10-09  Glenn Morris  <rgm@gnu.org>
5612         * w32-fns.el (set-message-beep):
5613         * term/w32-win.el (set-message-beep): Update declarations.
5615 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5617         * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5618         (mode-line-widen, mode-line-input-method-map)
5619         (mode-line-coding-system-map, mode-line-remote)
5620         (mode-line-unbury-buffer, mode-line-bury-buffer)
5621         (mode-line-next-buffer, mode-line-previous-buffer):
5622         Replace save-selected-window+select-window => with-selected-window.
5624         * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5625         * progmodes/cc-vars.el (bq-process): Remove, unused.
5627         * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5629 2012-10-09  Fabián Ezequiel Gallina  <fgallina@cuca>
5631         Implemented `backward-up-list'-like navigation.
5632         * progmodes/python.el (python-nav-up-list)
5633         (python-nav-backward-up-list): New functions.
5634         (python-mode-map): Define substitute key for backward-up-list to
5635         python-nav-backward-up-list.
5637 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5639         * progmodes/python.el (python-fill-paragraph): Rename from
5640         python-fill-paragraph-function.  Fixed fill-paragraph for
5641         decorators (Bug#12605).
5643 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5645         * progmodes/python.el (python-shell-output-filter): Handle extra
5646         carriage return in OSX (Bug#12409).
5648 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5650         Fix shell handling of unbalanced quotes and parens in output.
5651         * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5652         (python-syntax-propertize-function): Use it.
5653         (python-shell-output-syntax-table): New var.
5654         (inferior-python-mode): Prevent unbalanced parens/quotes from
5655         previous output mess with current input context.
5657 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
5659         * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5660         Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5662 2012-10-08  Michael Albinus  <michael.albinus@gmx.de>
5664         * ffap.el (ffap-replace-file-component): Support Tramp file name
5665         syntax, not only ange-ftp's one.
5667 2012-10-08  Glenn Morris  <rgm@gnu.org>
5669         * cus-start.el (message-log-max): Set :version.
5671         * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5673 2012-10-08  Martin Rudalics  <rudalics@gmx.at>
5675         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5676         the minibuffer window (Bug#10851).
5678 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5680         Enhancements on forward-sexp movement.
5681         * progmodes/python.el (python-nav-beginning-of-statement)
5682         (python-nav-end-of-statement): Return point-marker.
5683         (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5684         (python-info-current-symbol)
5685         (python-info-statement-starts-block-p): Rename from
5686         python-info-beginning-of-block-p.
5687         (python-info-statement-ends-block-p): Rename from
5688         python-info-end-of-block-p.
5689         (python-info-beginning-of-statement-p)
5690         (python-info-end-of-statement-p)
5691         (python-info-beginning-of-block-p, python-info-end-of-block-p):
5692         New functions.
5694 2012-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5696         * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5697         frame-selected-windows.
5699 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5701         * battery.el (battery-status-function): Check for
5702         w32-battery-status itself, not system-time windows-nt.
5704         * frame.el: Require cl-lib.
5705         (display-format-alist): New variable mapping frame types to
5706         functions that initialize them.
5707         (window-system-for-display): New function: interprets
5708         display-format-alist.
5709         (make-frame-on-display): Remove existing display-selection logic
5710         and just forward to make-frame, which will now DTRT.
5711         (make-frame): Restructure to use window-system-for-display to
5712         figure out how to create a frame on a given display.
5713         (display-mouse-p): Look for frame-type w32, not a particular
5714         system-type.
5716         * loadup.el: Load w32 lisp code when we have the w32 feature.
5718         * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5719         system-type windows-nt.
5721         * server.el (server-create-window-system-frame): Look for window
5722         type.
5723         (server-proces-filter): Only force a window system when windows-nt
5724         _and_ w32.  Explain why.
5726         * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5727         of window systems we configure for the mode.
5729         * startup.el (command-line): Mark window system is initialized
5730         after we've done it.
5732         * common-win.el (x-select-text): Look for w32, not windows-nt.
5734         * ns-win.el: Require cl-lib.  Add ourselves to
5735         display-format-alist.
5736         (ns-initialize-window-system): Assert we're not initialized twice.
5738         * w32-win.el: Enable lexical binding; require cl-lib; add
5739         ourselves to display-format-alist.
5740         (w32-handle-dropped-file): Convert incoming dropped files from
5741         Windows paths to Cygwin ones before passing them on to the rest of
5742         Emacs.
5743         (w32-drag-n-drop): New paramter new-frame.  Simplify logic.
5744         (w32-initialize-window-system): Assert we're not initialized twice.
5746         * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5747         (x-initialize-window-system): Assert we're not initialized twice.
5749         * w32-common-fns.el: New File.
5750         (w32-version, w32-using-nt, w32-get-clipboard-data)
5751         (w32-set-clipboard-data, x-set-selection, x-get-selection)
5752         (w32-charset-info-alist, x-last-selected, text)
5753         (x-get-selection-value, x-selection-value): Move here.
5755         * w32-fns.el: Require w32-common-fns.
5756         (w32-version, w32-using-nt, w32-get-clipboard-data)
5757         (w32-set-clipboard-data, x-set-selection, x-get-selection)
5758         (w32-charset-info-alist, x-last-selected, text)
5759         (x-get-selection-value, x-selection-value): Move to
5760         w32-common-fns.
5762         * w32-vars.el:
5763         (w32-allow-system-shell, w32-system-shells): Define only in
5764         non-cygwin case.
5766 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5768         * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5769         (read-passwd): Remove a few more potential sources of leaks.
5771 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5773         * progmodes/python.el (inferior-python-mode)
5774         (python-shell-make-comint): Fix initialization of local
5775         variables copied from parent buffer.
5777 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
5779         * term/ns-win.el (ns-read-file-name): Update declaration to match
5780         nsfns.m.
5781         (ns-respond-to-change-font): Change fontsize separately so we are sure
5782         it is set when font is acted upon.
5784 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5786         Enhancements to indentation.
5787         * progmodes/python.el (python-indent-context): Give priority to
5788         inside-string context.  Make comments indentation markers.
5789         (python-indent-region): Do not mess with strings, unless it's the
5790         enclosing set of quotes.
5792 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5794         * window.el (internal--before-save-selected-window)
5795         (internal--after-save-selected-window): New functions extracted from
5796         save-selected-window.  Make sure we return the `alist' we construct.
5797         (save-selected-window): Use them.
5799         * textmodes/tex-mode.el (tex-recenter-output-buffer):
5800         Use with-selected-window.
5802         * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5803         forms that define macros (bug#12593).
5805 2012-10-07  Kenichi Handa  <handa@gnu.org>
5807         * international/mule-conf.el (compound-text-with-extensions):
5808         Add :mime-charset property as x-ctext.
5810 2012-10-07  Stefan Merten  <smerten@oekonux.de>
5812         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5813         (rst-indent-literal-normal, rst-indent-literal-minimized)
5814         (rst-indent-comment): Correct :version tag.
5815         (rst-official-cvs-rev): Correct version string.
5817 2012-10-07  Glenn Morris  <rgm@gnu.org>
5819         * mail/rmailmm.el (rmail-mime-process-multipart):
5820         Do not confuse a multipart message with an epilogue
5821         with a "truncated" one; fixes 2011-06-27 change.  (Bug#10101)
5823 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5825         Fix shell output retrieval and comint-prompt-regexp init.
5826         * progmodes/python.el (inferior-python-mode):
5827         (python-shell-make-comint): Fix initialization of
5828         comint-prompt-regexp from copied file local variables.
5829         (python-shell-fetched-lines): Remove var.
5830         (python-shell-output-filter-in-progress): Rename from
5831         python-shell-fetch-lines-in-progress.
5832         (python-shell-output-filter-buffer): Rename from
5833         python-shell-fetch-lines-string.
5834         (python-shell-fetch-lines-filter): Delete function.
5835         (python-shell-output-filter): New function.
5836         (python-shell-send-string-no-output): Use them.
5838 2012-10-07  Glenn Morris  <rgm@gnu.org>
5840         * hi-lock.el (hi-lock-process-phrase):
5841         Try to make it less fragile.  (Bug#7161)
5843         * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
5845 2012-10-06  Glenn Morris  <rgm@gnu.org>
5847         * ehelp.el (electric-help-mode): Use help-mode rather than
5848         non-existent mode `help'.
5849         (electric-help-map): Use button-buffer-map.  (Bug#10917)
5851         * textmodes/reftex-vars.el (reftex-create-bibtex-header)
5852         (reftex-create-bibtex-footer): Fix custom types.
5854         * progmodes/sh-script.el (sh-indent-after-continuation):
5855         Add explicit :group.
5857         * textmodes/rst.el (rst-preferred-decorations)
5858         (rst-shift-basic-offset): Clarify obsolescence versions.
5860         * profiler.el (profiler): Add missing group :version tag.
5861         * avoid.el (mouse-avoidance-banish-position):
5862         * proced.el (proced-renice-command):
5863         * calc/calc.el (calc-ensure-consistent-units):
5864         * calendar/icalendar.el (icalendar-import-format-uid):
5865         * net/tramp.el (tramp-save-ad-hoc-proxies):
5866         * progmodes/bug-reference.el (bug-reference-bug-regexp):
5867         * progmodes/flymake.el (flymake-error-bitmap)
5868         (flymake-warning-bitmap, flymake-fringe-indicator-position):
5869         * progmodes/sh-script.el (sh-indent-after-continuation):
5870         * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
5871         (verilog-before-save-font-hook, verilog-after-save-font-hook):
5872         * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
5873         (vhdl-array-index-record-field-in-sensitivity-list)
5874         (vhdl-indent-comment-like-next-code-line):
5875         * textmodes/reftex-vars.el (reftex-ref-style-alist)
5876         (reftex-ref-macro-prompt, reftex-ref-style-default-list)
5877         (reftex-cite-key-separator, reftex-create-bibtex-header)
5878         (reftex-create-bibtex-footer):
5879         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5880         (rst-indent-literal-normal, rst-indent-literal-minimized)
5881         (rst-indent-comment): Add missing custom :version tags.
5883         * calendar/timeclock.el (timeclock-modeline-display):
5884         Add missing obsolete alias for renamed user option.
5886         * strokes.el (strokes-modeline-string):
5887         * emulation/crisp.el (crisp-mode-modeline-string):
5888         * eshell/esh-mode.el (eshell-status-in-modeline):
5889         Aliases to defcustoms must come before the defcustom.
5891         * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
5892         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5893         (cal-tex-cursor-week-monday): Doc fixes.
5894         (cal-tex-cursor-week2-summary): Doc fix.
5895         Rename from cal-tex-cursor-week-at-a-glance.
5897         * calendar/cal-menu.el (cal-menu-context-mouse-menu):
5898         Tweak week descriptions.  Add cal-tex-cursor-week2-summary.
5900         * calendar/calendar.el (calendar-mode-map):
5901         Add cal-tex-cursor-week2-summary.
5903 2012-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5905         * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
5907         * subr.el (read-passwd-map): New var.
5908         (read-passwd): Use `read-string' again.
5909         * minibuffer.el (delete-minibuffer-contents): Make it interactive.
5911 2012-10-06  Jambunathan K  <kjambunathan@gmail.com>
5913         * register.el (append-to-register, prepend-to-register):
5914         Deactivate mark, as does `copy-to-register' (bug#12389).
5916 2012-10-06  Chong Yidong  <cyd@gnu.org>
5918         * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
5920 2012-10-06  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
5922         * international/characters.el: Fix simple mistake ((car chars) ->
5923         elt), delete duplicated code.
5925 2012-10-06  Glenn Morris  <rgm@gnu.org>
5927         * subr.el (read-passwd): Allow C-u to erase entry.  (Bug#12570)
5929 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
5931         * color.el (color-hsl-to-rgb): Fix incorrect results for
5932         small and large hue values.  (Bug#12559)
5934 2012-10-05  Fabián Ezequiel Gallina  <fgallina@cuca>
5936         Enhancements to docstring formatting when filling paragraphs.
5937         * progmodes/python.el (python-fill-docstring-style): Rename from
5938         python-fill-string-style.  Added new style.
5939         (python-fill-string): Use new style.  Better checks for
5940         docstrings.
5942 2012-10-05  Glenn Morris  <rgm@gnu.org>
5944         * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
5946         * color.el (color-name-to-rgb, color-rgb-to-hex)
5947         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
5948         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
5949         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5950         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
5952         * emacs-lisp/timer.el (with-timeout): Add missing progn.  (Bug#12577)
5954 2012-10-05  Juanma Barranquero  <lekktu@gmail.com>
5956         * ido.el (ido-directory-too-big-p): Pass dir through file-truename
5957         to get the correct size across symlinks.
5959         * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
5961 2012-10-04  Juri Linkov  <juri@jurta.org>
5963         * replace.el (query-replace-interactive): Declare obsolete.
5964         (query-replace-read-from): Add the last incremental search string
5965         to the list of default values accessible via M-n.
5966         (map-query-replace-regexp): Use `read-regexp'.
5967         (query-replace, query-replace-regexp, query-replace-regexp-eval)
5968         (map-query-replace-regexp, replace-string, replace-regexp):
5969         Fix docstrings to replace mentions of `query-replace-interactive'
5970         with alternatives.  (Bug#12526)
5972 2012-10-04  Juri Linkov  <juri@jurta.org>
5974         * dired.el (dired-shrink-to-fit): Declare obsolete.  (Bug#1806)
5975         (dired-pop-to-buffer): Declare obsolete.
5976         (dired-mark-pop-up): Doc fix.
5978 2012-10-04  Fabián Ezequiel Gallina  <fgallina@cuca>
5980         Allow user to set docstring style for fill-paragraph.
5981         * progmodes/python.el
5982         (python-fill-comment-function, python-fill-string-function)
5983         (python-fill-decorator-function, python-fill-paren-function):
5984         Remove :safe for defcustoms.
5985         (python-fill-string-style): New defcustom
5986         (python-fill-paragraph-function): Enhance context detection.
5987         (python-fill-string): Honor python-fill-string-style settings.
5989 2012-10-04  Martin Rudalics  <rudalics@gmx.at>
5991         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
5992         after setting its buffer (Bug#10805).
5994 2012-10-03  Fabián Ezequiel Gallina  <fgallina@cuca>
5996         Fix cornercase for string syntax.
5997         * progmodes/python.el (python-syntax-propertize-function):
5998         Simplify and enhance the regexp for unescaped quotes.  Now it also
5999         matches quotes in weird situations like the single quote in
6000         "something\"'".
6001         (python-syntax-stringify): Simplify num-quotes detecting code.
6003 2012-10-03  Glenn Morris  <rgm@gnu.org>
6005         * help-macro.el (three-step-help):
6006         Revert 2012-09-29 change.  (Bug#12567)
6008 2012-10-03  Martin Rudalics  <rudalics@gmx.at>
6010         * menu-bar.el (kill-this-buffer): Don't do anything when
6011         `menu-frame' is not alive or visible (Bug#8184).
6013         * emacs-lisp/debug.el (debug): When quitting the debugger window
6014         restore current buffer (Bug#12502).
6016 2012-10-02  Chong Yidong  <cyd@gnu.org>
6018         * progmodes/hideif.el (hif-lookup, hif-defined):
6019         Handle semantic-c-takeover-hideif.
6021 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
6023         Change sampling interval units from ms to ns.
6024         * profiler.el (profiler-sampling-interval): Change units
6025         from ms to ns, multiplying the default by 1000000 so that
6026         it remains 1 ms.
6027         (profiler-report-cpu-line-format): Give enough room for
6028         the maximum counters on 64-bit hosts.
6029         (profiler-report-render-calltree-1): Call them "CPU samples",
6030         not "Time (ms)", since they are not milliseconds now (and
6031         never really were).
6033 2012-10-02  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
6035         * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
6036         Fix querying BBDB for entries without a last name (Bug#11580).
6038 2012-10-02  Chong Yidong  <cyd@gnu.org>
6040         * emacs-lisp/eieio.el: Restore Version header.
6042 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6044         * vc/diff-mode.el (diff--auto-refine-data): New var.
6045         (diff-hunk): Use it to delay refinement.
6046         (diff-mode): Remove overlays when we turn off font-lock.
6048         * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
6049         (table-initialize-table-fixed-width-mode)
6050         (table-set-table-fixed-width-mode): Remove functions.
6051         (table-command-list): Move initialization into declaration.
6052         (table--tweak-menu-for-xemacs): Move defun outside mapcar.
6053         (table-with-cache-buffer): Use `declare'.
6054         (table-span-cell): Simplify via CSE.
6055         (table-fixed-width-mode): Use define-minor-mode.
6056         (table-call-interactively, table-funcall, table-apply): Remove.
6057         (table-function): New function, to replace them.
6059         * bookmark.el (bookmark-search-pattern): Remove var.
6060         (bookmark-read-search-input): Remove function.
6061         (bookmark-bmenu-search): Reimplement using a minibuffer.
6063         * faces.el (modeline): Remove obsolete face name.
6065         * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
6066         and give a non-nil default value.
6067         (add-change-log-entry): Simplify accordingly.
6069 2012-10-01  Dmitry Gutov  <dgutov@yandex.ru>
6071         * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
6072         (vc-git-log-edit-toggle-amend): New function.
6073         (vc-git-log-edit-toggle-signoff): New function.
6074         (vc-git-log-edit-mode): New major mode.
6075         (vc-git-log-edit-mode-map): Keymap for it.
6076         (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
6078         * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
6079         header names.
6080         (log-edit-toggle-header): New function.
6081         (log-edit-extract-headers): Accept function values in HEADERS alist.
6083 2012-10-01  David Engster  <deng@randomsample.de>
6085         * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
6086         from symbol property and change message to be more consistent with
6087         Emacs proper.
6088         (eieio-describe-generic): Add filename for each implementation.
6089         Fix indices for generic and normal methods.
6090         (eieio-method-def, eieio-class-def): New buttons.
6091         (eieio-help-find-method-definition)
6092         (eieio-help-find-class-definition): New functions.
6093         (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
6094         class, constructor and method definitions.
6096         * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
6097         information in symbol property.
6098         (scoped-class): Remove.
6099         (eieio-slot-name-index, call-next-method): Check if it is bound.
6101 2012-10-01  Leo P. White  <lpw25@cam.ac.uk>
6103         * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
6104         (eieio-custom-mode): New major mode.
6105         (eieio-customize-object): Use it.
6107 2012-10-01  Eric Ludlam  <zappo@gnu.org>
6109         * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
6110         specifying the expected class, and whether subclassing is allowed.
6111         (eieio-persistent-convert-list-to-object):
6112         (eieio-persistent-validate/fix-slot-value)
6113         (eieio-persistent-slot-type-is-class-p): New functions.
6114         (eieio-named::slot-missing): Doc fix.
6116         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
6117         Stop using unused publd variable.
6119         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6120         (eieio-speedbar-description, eieio-speedbar-derive-line-path)
6121         (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
6122         (eieio-speedbar-handle-click): Do not specify a class for the
6123         method.  Fixes method invocation order problems with EDE.
6125 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6127         * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
6128         (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
6130 2012-10-01  Karl Fogel  <kfogel@red-bean.com>
6132         * bookmark.el (bookmark-version-control): Give tags in the
6133         :type choices (Bug#12309), and improve doc string.
6134         (bookmark-write-file): Bind `print-circle' to `t' to allow
6135         circular custom bookmark types.  (Bug#12503)
6137 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
6139         Revert the FOLLOW-SYMLINKS change for file-attributes.
6140         * files.el (remote-file-name-inhibit-cache, after-find-file):
6141         * time.el (display-time-file-nonempty-p): Undo last change.
6143         * profiler.el (profiler-sampling-interval): Change default back to 1.
6144         See Stefan Monnier in
6145         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
6147 2012-10-01  Fabián Ezequiel Gallina  <fgallina@cuca>
6149         Shell output catching a la gud-gdb.
6150         * progmodes/python.el (python-shell-fetch-lines-in-progress)
6151         (python-shell-fetch-lines-string, python-shell-fetched-lines):
6152         New Vars.
6153         (python-shell-fetch-lines-filter): New function.
6154         (python-shell-send-string-no-output): Use them.
6156 2012-09-30  Tomohiro Matsuyama  <tomo@cx4a.org>
6158         * profiler.el (profiler-sampling-interval): Rename from
6159         profiler-sample-interval.
6160         (profiler-sampling-interval): Default to 10.
6161         (profiler-find-profile): New command (was profiler-find-log).
6162         (profiler-find-profile-other-window): New command.
6163         (profiler-find-profile-other-frame): New command.
6164         (profiler-profile): Introduce API-level data structure.
6166 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
6168         file-attributes has a new optional arg FOLLOW-SYMLINKS.
6169         * files.el (remote-file-name-inhibit-cache):
6170         * time.el (display-time-file-nonempty-p): Use it.
6171         * files.el (after-find-file): Don't chase links before calling
6172         file-exists-p, as file-exists-p already does the right thing.
6174 2012-09-30  Ralf Angeli  <angeli@caeruleus.net>
6176         Merge from standalone RefTeX repository.
6178         The following ChangeLog entries are shortened versions of the
6179         original ones with file paths adapted.  A not so strongly edited
6180         version of the original ChangeLog can be found in the commit log.
6182         * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
6183         (reftex-arg-cite): Use `reftex-cite-key-separator'.
6184         Correctly handle new value type returned by `reftex-citation'.
6186         * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
6187         that entries with whitespace at various places are found.
6188         Doc fix. Include entries that are cross-referenced from cited entries.
6189         Include @String definitions in the resulting bib file.  Add header
6190         and footer defined in `reftex-create-bibtex-header' and
6191         `reftex-create-bibtex-footer'.
6192         (reftex-do-citation): Make it possible again to insert
6193         non-existent entries.  Save match data when asking for optional
6194         arguments. Return all keys, not just the first one.
6195         (reftex-all-used-citation-keys): Fix regexp to correctly extract
6196         all citations in the same line.
6197         (reftex-parse-bibtex-entry): Accept additional optional argument
6198         `raw' and keep quotes or braces if it is non-nil.  Match fields
6199         containing hyphens besides word constituents.
6200         (reftex-get-string-refs): New function.
6201         (reftex-extract-bib-entries): Check if BibTeX file changed on disk
6202         and ask if it should be reread in case it did.
6203         (reftex-pop-to-bibtex-entry)
6204         (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
6205         entries with spaces or tabs in front of arguments.
6206         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6207         (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
6208         Match entries containing numbers and symbol constituents.
6209         (reftex-do-citation, reftex-figure-out-cite-format):
6210         Use `reftex-cite-key-separator'.
6212         * textmodes/reftex-dcr.el: Move provide statement to end of file.
6213         (reftex-mouse-view-crossref): Explain why point is set.
6215         * textmodes/reftex-global.el: Whitespace changes.
6217         * textmodes/reftex-index.el: Move provide statement to end of
6218         file.
6219         (reftex-index-selection-or-word): Use `reftex-region-active-p'.
6220         (reftex-index-visit-phrases-buffer): Set marker when visiting
6221         buffer.  This allows for returning from the phrases file to the
6222         file one was just editing instead of the file where the last
6223         phrases was added from.
6224         (reftex-index-phrases-syntax-table): New variable.  Give ?\"
6225         punctuation syntax as it usually is not used as string quote in
6226         TeX-related modes and may occur unmatched.  The change also
6227         prevents fontification of quoted content.
6228         (reftex-index-phrases-mode): Use it.
6230         * textmodes/reftex-parse.el (reftex-parse-from-file):
6231         Move backward one char if a `\' was matched after a section macro.
6232         (reftex-parse-from-file): Use beginning of match instead of end as
6233         bound.
6235         * textmodes/reftex-ref.el: Adapt creation of
6236         `reftex-<package>-<macro>' functions to new structure of
6237         `reftex-ref-style-alist'.
6238         (reftex-reference): Use `reftex-ref-style-list' function.
6239         Adapt to new structure of `reftex-ref-style-alist'.  Prompt for a
6240         reference macro if `reftex-ref-macro-prompt' is non-nil.
6241         (reftex-reference): Pass refstyle to `reftex-format-special'.
6242         Determine reference macro by looking at
6243         `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
6244         Use only one special format function.
6245         (reftex-varioref-vref, reftex-fancyref-fref)
6246         (reftex-fancyref-Fref): Remove definitions.  The functions are now
6247         generated from `reftex-ref-style-alist'.
6248         (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
6249         Remove.
6250         (reftex-format-special): New function.
6252         * textmodes/reftex-sel.el
6253         (reftex-select-cycle-ref-style-internal): Adapt to new structure
6254         of `reftex-ref-style-alist'. Remove code for testing macro type.
6255         (reftex-select-toggle-varioref)
6256         (reftex-select-toggle-fancyref): Remove.
6257         (reftex-select-cycle-ref-style-internal)
6258         (reftex-select-cycle-ref-style-forward)
6259         (reftex-select-cycle-ref-style-backward): New functions.
6260         (reftex-select-label-map): Use `v' and `V' for general cycling
6261         through reference styles.  Add `p' for switching between number
6262         and page reference types.
6264         * textmodes/reftex-toc.el (reftex-re-enlarge):
6265         Call `enlarge-window' only if there is something to do because in Emacs
6266         the horizontal version throws an error even if the parameter is 0.
6268         * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
6269         (reftex-plug-into-AUCTeX): Doc fix.
6270         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
6271         string.  Adapt to new name.
6272         (reftex-ref-style-alist): Change structure so that it is not
6273         possible to use multiple different package names within a style.
6274         Remove the symbols for symbols for macro type distinction.
6275         Add characters for macro selection.
6276         (reftex-ref-macro-prompt, reftex-create-bibtex-header)
6277         (reftex-create-bibtex-footer): New variables.
6278         (reftex-format-ref-function): Mention third argument of special
6279         format function.
6280         (reftex-ref-style-alist, reftex-ref-style-default-list):
6281         New variables.
6282         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
6283         to new implementation.  Mark as obsolete.  Add compatibility code
6284         for honoring the variable values in case they are set.
6285         (reftex-cite-format-builtin, reftex-bibliography-commands):
6286         Add support for ConTeXt.
6287         (reftex-format-ref-function, reftex-format-cite-function):
6288         Fix custom type.
6289         (reftex-cite-key-separator): New variable.
6291         * textmodes/reftex.el (reftex-syntax-table-for-bib)
6292         (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
6293         `reftex-syntax-table' because parens have to retain their paren
6294         syntax in order for parsing of BibTeX entries like @book(...) to
6295         work.
6296         (reftex-in-comment): Do not error out if `comment-start-skip' is
6297         not set.  Deal correctly with escaped comment characters.
6298         (reftex-tie-multifile-symbols): Add doc string.
6299         Initialize `reftex-ref-style-list'.
6300         (reftex-untie-multifile-symbols): Add doc string.
6301         (reftex-add-index-macros): Doc fix.
6302         (reftex-ref-style-activate, reftex-ref-style-toggle)
6303         (reftex-ref-style-list): New functions.
6304         (reftex-mode-menu): Use them.  Adapt to new structure of
6305         `reftex-ref-style-alist'.
6306         (reftex-select-with-char): Kill the RefTeX Select buffer when
6307         done.
6308         (reftex-remove-if): New function.
6309         (reftex-erase-all-selection-and-index-buffers)
6310         (reftex-mode-menu): Reference styles are now computed from
6311         `reftex-ref-style-alist'.  Fix typo.
6312         (reftex-report-bug): New function.
6313         (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
6314         algorithms with O(n log n).  Introduce optional argument SORT (not
6315         yet used).
6317 2012-09-30  Fabián Ezequiel Gallina  <fgallina@cuca>
6319         Enhancements for triple-quote string syntax.
6320         * progmodes/python.el (python-syntax-propertize-function):
6321         Match both quote cases in one regexp.
6322         (python-syntax-stringify): Handle matches properly.
6324 2012-09-30  Juri Linkov  <juri@jurta.org>
6326         * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6327         to nil around the call to `insert' to prevent
6328         directory time modification by lock_file.  (Bug#2295)
6329         * tar-mode.el (tar-summarize-buffer): Idem.
6331 2012-09-30  Juri Linkov  <juri@jurta.org>
6333         * facemenu.el (list-colors-sort): Add option "Luminance".
6334         (list-colors-sort-key): Implement it.
6336         * vc/diff-mode.el (diff-refine-removed):
6337         * vc/ediff-init.el (ediff-fine-diff-A):
6338         * vc/smerge-mode.el (smerge-refined-removed):
6339         Change background color "#ffaaaa" to "#ffbbbb".  (Bug#10181)
6341 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
6343         * term/ns-win.el (x-file-dialog): New function.
6345 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
6347         * ido.el (ido-max-directory-size): Default to nil; the current
6348         default is small for POSIX systems, and impractical on Windows 7
6349         now that lstat returns directory sizes for NTFS.
6351 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
6353         In buffer display functions handle window-height/window-width
6354         alist entries.  Suggested by Juri Linkov as fix for Bug#1806.
6355         * window.el (window--display-buffer): New argument ALIST.
6356         Obey window-height and window-width alist entries.
6357         (window--try-to-split-window): New argument ALIST.
6358         Bind window-combination-limit to t when the window's size shall be
6359         changed and window-combination-limit equals `window-size'.
6360         (display-buffer-in-atom-window)
6361         (display-buffer-in-major-side-window)
6362         (display-buffer-in-side-window, display-buffer-same-window)
6363         (display-buffer-reuse-window, display-buffer-pop-up-frame)
6364         (display-buffer-pop-up-window, display-buffer-below-selected)
6365         (display-buffer-at-bottom, display-buffer-in-previous-window)
6366         (display-buffer-use-some-window): Adjust all callers of
6367         window--display-buffer and window--try-to-split-window.
6368         (fit-frame-to-buffer): New option.
6369         (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6370         is non-nil.
6371         (display-buffer-in-major-side-window): Evaluate window-height /
6372         window-width alist entries.
6374         * help.el (temp-buffer-resize-frames)
6375         (temp-buffer-resize-regexps): Remove options.
6376         (temp-buffer-resize-mode): Adjust doc-string.
6377         (resize-temp-buffer-window): Don't consult
6378         temp-buffer-resize-regexps.  Use fit-frame-to-buffer instead of
6379         temp-buffer-resize-frames.
6381         * dired.el (dired-mark-pop-up):
6382         Call display-buffer-below-selected with a fit-window-to-buffer alist
6383         entry.
6385 2012-09-30  Chong Yidong  <cyd@gnu.org>
6387         * server.el (server-host): Document the security implications.
6388         (server-auth-key): Doc fix.
6390         * startup.el (initial-buffer-choice): Doc fix.
6392         * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6394         * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6395         restriction change.
6397         * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6399         * help-fns.el (help-fns--obsolete): Fix last change.
6401 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6403         * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6404         (minor-mode-map-alist): Remove redundant code.
6406         * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6407         visited in a buffer.
6408         (cvs-insert-visited-file): New function.
6409         (find-file-hook): Use it.
6411         * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6413         * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6414         chose face.
6415         (log-edit-empty-buffer-p): Don't require a space after a header.
6417         * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6419         * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6421         * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6422         a proper minor-mode.
6424         * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6426 2012-09-29  Glenn Morris  <rgm@gnu.org>
6428         * winner.el (winner-mode): Remove variable (let define-minor-mode
6429         handle it).
6430         (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6431         Doc fixes.
6432         (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6433         (winner-mode): Use define-minor-mode.
6435         * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6436         the full definition in loaddefs, rather than duplicating it.
6438         * help-macro.el (three-step-help): No need to autoload defcustom.
6440         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6441         (inferior-lisp-program, inferior-lisp-load-command)
6442         (inferior-lisp-prompt, inferior-lisp-mode-hook):
6443         No need to autoload defcustoms.
6445         * hippie-exp.el (hippie-expand-try-functions-list)
6446         (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6447         (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6448         (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6449         (hippie-expand-only-buffers): No need to autoload defcustoms.
6450         * progmodes/vhdl-mode.el (vhdl-line-expand):
6451         Explicitly load hippie-exp, so it does not get autoloaded
6452         while hippie-expand-try-functions-list is let-bound.
6454 2012-09-28  Glenn Morris  <rgm@gnu.org>
6456         * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6458         * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6459         Only "cl.el" counts as cl these days.
6461 2012-09-28  Juri Linkov  <juri@jurta.org>
6463         Display archive errors in the echo area instead of inserting
6464         to the file buffer.
6466         * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6467         to STDERR-TEST that can be a regexp matching a successful output.
6468         Create a temporary file and redirect stderr to it.  Search for
6469         STDERR-TEST in the stderr output and display it in the echo area
6470         if no match is found.
6471         (archive-extract-by-file): New function like
6472         `archive-extract-by-stdout' but extracting archives to files
6473         and looking for successful matches in stdout.  Function body is
6474         mostly copied from `archive-rar-extract'.
6475         (archive-rar-extract): Use `archive-extract-by-file'.
6476         (archive-7z-extract): Use `archive-extract-by-stdout'.  (Bug#10347)
6478 2012-09-28  Leo Liu  <sdl.web@gmail.com>
6480         * pcomplete.el (pcomplete-show-completions):
6481         Use minibuffer-message to make pcomplete usable in minibuffer.
6483         * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6485 2012-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6487         * type-break.el: Use lexical-binding.
6488         (type-break-mode): Use define-minor-mode.
6490         * emacs-lisp/pcase.el (pcase--mark-used): New.
6491         (pcase--u1): Use it (bug#12512).
6493         * custom.el (load-theme): Set buffer-file-name so the load is recorded
6494         in load-history with the right file name.
6496 2012-09-28  Tassilo Horn  <tsdh@gnu.org>
6498         * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6499         (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6500         (doc-view-get-bounding-box): Make bounding box slicing work for
6501         ODF and DVI documents.
6503 2012-09-28  Glenn Morris  <rgm@gnu.org>
6505         * type-break.el (type-break-mode, type-break-interval)
6506         (type-break-good-rest-interval, type-break-keystroke-threshold):
6507         No need to autoload.
6508         (type-break-good-rest-interval, type-break-keystroke-threshold):
6509         Add :set-after.
6511 2012-09-28  Chong Yidong  <cyd@gnu.org>
6513         * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6514         Add :version tag.
6516 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6518         * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6520 2012-09-27  Glenn Morris  <rgm@gnu.org>
6522         * faces.el (x-display-name): Declare (for without-x builds).
6524         * linum.el (linum-format): Don't autoload it.  Improve :type.
6526         * progmodes/tcl.el: Don't require outline when compiling.
6527         (outline-regexp, outline-level): Declare.
6528         * textmodes/sgml-mode.el: Don't require outline when compiling.
6529         (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6531         * term.el (term-ansi-reset):
6532         Try setting term-ansi-face-already-done to nil.  (Bug#11785)
6534         * vc/vc.el (vc-next-action): Only gripe about committing read-only
6535         files for RCS and SCCS.  (Bug#9781)
6537 2012-09-27  Chong Yidong  <cyd@gnu.org>
6539         * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6540         change; value should be t.
6542 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6544         * image-mode.el: Use lexical-binding.
6545         (image-mode-winprops): Use t to stand for the window of
6546         a buffer that's not displayed.
6547         * doc-view.el (doc-view-new-window-function): Handle the new
6548         t in winprops.
6549         (doc-view-enlarge): Make it a real nop if the size is not changed.
6550         (doc-view-display): Handle the case where the buffer is not (yet?)
6551         displayed in any window.
6552         (doc-view-saved-settings): New var.
6553         (doc-view-mode): Use it.
6554         (doc-view-fallback-mode): Set it.
6556         * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6557         Set lexical-binding.
6558         (minibuffer-eldef-shorten-default): New var.
6559         (minibuffer-default-in-prompt-regexps): Use it for new default.
6560         (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6562 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
6564         * international/uni-bidi.el:
6565         * international/uni-category.el:
6566         * international/uni-name.el:
6567         * international/uni-numeric.el: Regenerate.
6569 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
6570             Stefan Monnier  <monnier@iro.umontreal.ca>
6572         * profiler.el: New file.
6574 2012-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6576         * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6577         (testcover-reinstrument): Simplify with CSE.
6579 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
6581         * window.el (temp-buffer-window-setup): Fix typo in docstring.
6583 2012-09-25  Wilson Snyder  <wsnyder@wsnyder.org>
6585         * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6586         (verilog-auto-input, verilog-auto-insert-lisp)
6587         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6588         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6589         (verilog-auto-unused, verilog-auto-wire)
6590         (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6591         newline.  Reported by Andrew Jones.
6592         (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6593         Reported by Brad Dobbie.
6594         (verilog-batch-delete-trailing-whitespace):
6595         Create verilog-batch-delete-trailing-whitespace.
6596         Reported by Brad Dobbie.
6597         (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6598         parameters from another module.  Reported by Dan Katz.
6599         (verilog-auto, verilog-auto-assign-modport)
6600         (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6601         AUTOINOUTMODPORT for UVM interface module shell generation.
6602         Reported by Brad Dobbie.
6603         (verilog-auto-inst-interfaced-ports): Make default nil, as more
6604         standard behavior.
6605         (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6606         Reported by Matt Martin.
6608 2012-09-25  Martin Rudalics  <rudalics@gmx.at>
6610         * window.el (window--resize-child-windows): When resizing child
6611         windows proportionally, process them in reverse order to
6612         preserve the "when splitting a window the new one gets the odd
6613         line" behavior.
6614         (window--resize-root-window-vertically): When resizing the
6615         minibuffer window try to affect only windows at the bottom of the
6616         frame.  (Bug#12419)
6618 2012-09-25  Chong Yidong  <cyd@gnu.org>
6620         * subr.el (declare): Doc fix.
6622         * help-fns.el (help-fns--obsolete): Handle macros properly.
6624 2012-09-25  Chong Yidong  <cyd@gnu.org>
6626         * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6627         this function obsolete.
6629         * calendar/cal-x.el (calendar-two-frame-setup)
6630         (calendar-only-one-frame-setup, calendar-one-frame-setup):
6631         * calendar/calendar.el (american-calendar, european-calendar)
6632         (calendar-for-loop):
6633         * comint.el (comint-dynamic-simple-complete)
6634         (comint-dynamic-complete-as-filename, comint-unquote-filename):
6635         * desktop.el (desktop-load-default):
6636         * dired-x.el (dired-omit-here-always)
6637         (dired-hack-local-variables, dired-default-directory):
6638         * emacs-lisp/derived.el (derived-mode-class):
6639         * emacs-lisp/timer.el (timer-set-time-with-usecs):
6640         * emacs-lock.el (toggle-emacs-lock):
6641         * epa.el (epa-display-verify-result):
6642         * epg.el (epg-sign-keys, epg-start-sign-keys)
6643         (epg-passphrase-callback-function):
6644         * eshell/esh-util.el (eshell-for):
6645         * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6646         (eshell-add-to-window-buffer-names):
6647         * files.el (locate-file-completion):
6648         * imenu.el (imenu-example--create-c-index)
6649         (imenu-example--create-lisp-index)
6650         (imenu-example--lisp-extract-index-name)
6651         (imenu-example--name-and-position):
6652         * international/mule-cmds.el (princ-list):
6653         * international/mule-diag.el (decode-codepage-char):
6654         * international/mule-util.el (detect-coding-with-priority):
6655         * iswitchb.el (iswitchb-read-buffer):
6656         * mail/mailalias.el (mail-complete):
6657         * mail/sendmail.el (mail-sent-via):
6658         * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6659         (mouse-major-mode-menu):
6660         * password-cache.el (password-read-and-add):
6661         * pcomplete.el (pcomplete-parse-comint-arguments):
6662         * progmodes/sh-script.el (sh-maybe-here-document):
6663         * replace.el (query-replace-regexp-eval):
6664         * savehist.el (savehist-load):
6665         * simple.el (choose-completion-delete-max-match):
6666         * term.el (term-dynamic-simple-complete):
6667         * vc/ediff-init.el (ediff-check-version):
6668         * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6669         * vc/vc.el (vc-diff-switches-list):
6670         * view.el (view-return-to-alist-update): Likewise.
6672         * subr.el (eval-next-after-load, makehash, insert-string)
6673         (assoc-ignore-representation, assoc-ignore-case): Use declare to
6674         mark obsolete.
6675         (mode-line-inverse-video): Variable deleted.
6677         * international/mule-util.el (string-to-sequence): Remove.
6679         * calendar/calendar.el (calendar-version):
6680         * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6681         (icalendar-convert-diary-to-ical):
6682         * cus-edit.el (custom-mode):
6683         * ansi-color.el (ansi-color-unfontify-region):
6684         * international/latin1-disp.el (latin1-char-displayable-p):
6685         * progmodes/cwarn.el (turn-on-cwarn-mode):
6686         * progmodes/which-func.el (which-func-update-1):
6687         Use define-obsolete-function-alias.
6689         * net/newst-backend.el (newsticker-cache-filename):
6690         * net/newst-treeview.el (newsticker-groups-filename):
6691         Fix incorrect obsolescence declaration.
6693         * allout.el (allout-passphrase-hint-string): Likewise.
6694         (allout-init): Use a declare form to mark obsolete.
6696         * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6697         this applies to functions.
6699         * iswitchb.el (iswitchb-read-buffer): Move code of
6700         iswitchb-define-mode-map here, and delete that obsolete function.
6702         * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6703         font-lock-reference-face.
6705 2012-09-25  Glenn Morris  <rgm@gnu.org>
6707         * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6708         Doc fixes.
6710         * eshell/em-term.el (eshell-term-name):
6711         Default to term-term-name.  (Bug#12485)
6713 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
6715         * progmodes/python.el (python-shell-send-buffer): Better handling
6716         of "if __name__ == '__main__':" conditionals when sending the buffer.
6718 2012-09-24  Glenn Morris  <rgm@gnu.org>
6720         * eshell/esh-cmd.el (eshell-find-alias-function):
6721         Tighten up file-name regexp.  (Bug#12499)
6723 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
6725         Enhancements for triple-quote string syntax.
6726         * progmodes/python.el (python-quote-syntax): Remove.
6727         (python-syntax-propertize-function): New value.
6728         (python-syntax-count-quotes, python-syntax-stringify):
6729         New functions.
6731 2012-09-24  Chong Yidong  <cyd@gnu.org>
6733         * mail/supercite.el (sc-version): Remove obsolete function.
6734         (sc-describe): Don't mark as obsolete, since it is bound.
6735         (sc-submit-bug-report): Remove.
6737         * vc/log-edit.el (cvs-changelog-full-paragraphs)
6738         (cvs-commit-buffer-require-final-newline): Remove.
6739         (log-edit-require-final-newline)
6740         (log-edit-changelog-full-paragraphs): Default to t.
6742         * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6743         * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6744         * vc/vc.el (vc-checkout-carefully): Likewise.
6746         * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6747         (emerge-version): Remove.
6749         * progmodes/compile.el (compile-internal): Remove.
6750         (compilation-parse-errors-function): Fix typo.
6752         * international/mule.el (set-char-table-default): Remove.
6753         (set-coding-priority, make-coding-system, generic-char-p)
6754         (charset-list, charset-bytes, charset-id): Use declare to mark
6755         functions as obsolete.
6757         * vc/pcvs-defs.el (cvs-buffer-name-alist)
6758         (cvs-invert-ignore-marks): Remove references to obsolete vars.
6759         * vc/vc-hooks.el (vc-default-registered): Don't use
6760         vc-master-templates.
6762         * font-lock.el (font-lock-reference-face):
6763         Use define-obsolete-variable-alias.
6765         * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6766         * calendar/calendar.el (calendar-font-lock-keywords):
6767         * calendar/diary-lib.el (diary-font-lock-keywords)
6768         (diary-fancy-font-lock-keywords):
6769         * textmodes/reftex-sel.el (reftex-insert-docstruct):
6770         * textmodes/reftex-index.el (reftex-insert-index):
6771         * textmodes/reftex-cite.el (reftex-format-bib-entry):
6772         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6773         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6774         * progmodes/prolog.el (prolog-font-lock-keywords):
6775         * progmodes/idlwave.el (idlwave-idl-keywords):
6776         * progmodes/ada-mode.el (ada-font-lock-keywords):
6777         * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6779 2012-09-24  Glenn Morris  <rgm@gnu.org>
6781         * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6783 2012-09-23  Fabián Ezequiel Gallina  <fgallina@cuca>
6785         * progmodes/python.el (python-indent-line): More consistent cursor
6786         movement behavior.
6788 2012-09-23  Stefan Merten  <smerten@oekonux.de>
6790         * textmodes/rst.el: Fix compiler warning.
6792 2012-09-23  Roland Winkler  <winkler@gnu.org>
6794         * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6795         Transcribe also LaTeX hyphenation.
6796         (bibtex-reformat): Bug fix. Do not quote twice the elements of
6797         bibtex-reformat-previous-options.
6799 2012-09-23  Roland Winkler  <winkler@gnu.org>
6801         * proced.el (proced-renice-command): New variable.
6802         (proced-marked-processes): New function.
6803         (proced-with-processes-buffer): New macro.
6804         (proced-send-signal): Use them.
6805         (proced-renice): New command bound to r.
6807 2012-09-23  Roland Winkler  <winkler@gnu.org>
6809         * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6810         ibuffer-saved-filter-groups has one element, shortcut the call of
6811         completing-read.  (Bug#12331)
6813 2012-09-23  Chong Yidong  <cyd@gnu.org>
6815         * bindings.el (mode-line-toggle-read-only):
6816         * bs.el (bs-toggle-readonly):
6817         * buff-menu.el (Buffer-menu-toggle-read-only):
6818         * dired.el (dired-toggle-read-only):
6819         * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6821 2012-09-23  Chong Yidong  <cyd@gnu.org>
6823         * image.el (image-type-available-p): Adapt to init-image-library
6824         argument changes.
6826 2012-09-22  Juri Linkov  <juri@jurta.org>
6828         * dired.el (dired-mode-map): Add [remap read-only-mode] for
6829         `dired-toggle-read-only'.  (Bug#12462)
6831 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
6833         * subr.el (temp-output-buffer-show): New function.
6834         (with-output-to-temp-buffer): Call temp-output-buffer-show
6835         instead of internal-temp-output-buffer-show.
6837 2012-09-22  Chong Yidong  <cyd@gnu.org>
6839         * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
6840         (Bug#12462).
6842         * repeat.el (repeat): Doc fix (Bug#12348).
6844         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
6845         (Bug#10909).
6847         * simple.el (shell-command-on-region): Doc fix.
6848         (read-only-mode): Doc fix.
6850 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
6852         * emacs-lisp/timer.el (run-with-idle-timer)
6853         (timer-activate-when-idle): Warn against reinvoking an idle timer
6854         from within its own timer action.  (Bug#12447)
6856 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
6858         * cus-start.el (window-combination-limit): Add new optional
6859         values.
6860         * window.el (temp-buffer-window-show)
6861         (window--try-to-split-window): Handle new values of
6862         window-combination-limit (Bug#1806).
6863         (split-window): Test window-combination-limit for t instead of
6864         non-nil.
6865         (display-buffer-at-bottom): New buffer display action function.
6866         * help.el (temp-buffer-resize-regexps): New option.
6867         (temp-buffer-resize-mode): Rewrite doc-string.
6868         (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
6869         Don't resize reused window.  Suggested by Glenn Morris.
6871 2012-09-22  Stefan Merten  <smerten@oekonux.de>
6873         * textmodes/rst.el: Revamp section title faces.
6874         (rst-official-version)
6875         (rst-package-emacs-version-alist): Sync with official version
6876         V1.4.0.
6877         (rst-faces-defaults, rst-set-level-default)
6878         (rst-level-face-max, rst-level-face-base-color)
6879         (rst-level-face-base-light, rst-level-face-format-light)
6880         (rst-level-face-step-light, rst-define-level-faces): Obsolete.
6881         (rst-adornment-faces-alist): Match new setup.
6882         (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
6883         (rst-level-5, rst-level-6): New faces.
6885 2012-09-22  Chong Yidong  <cyd@gnu.org>
6887         * simple.el (undo): Handle indirect buffers (Bug#8207).
6889 2012-09-21  Leo Liu  <sdl.web@gmail.com>
6891         IDO: Disable match re-ordering for buffer switching.
6892         * ido.el (ido-buffer-disable-smart-matches): New variable.
6893         (ido-set-matches-1): Use it.  (Bug#2042)
6895 2012-09-21  Jose Marino  <marinoj@nso.edu>  (tiny change)
6897         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6898         Fix 2011-05-17 change.  (Bug#12418)
6900 2012-09-21  Leo Liu  <sdl.web@gmail.com>
6902         * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
6904 2012-09-21  Glenn Morris  <rgm@gnu.org>
6906         * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
6907         Be more robust about locating simple.el.
6909 2012-09-21  Glenn Morris  <rgm@gnu.org>
6911         * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
6913 2012-09-21  Joel Bion  <jpbion@westvi.com>  (tiny change)
6915         * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz.  (Bug#12382)
6917 2012-09-20  Juri Linkov  <juri@jurta.org>
6919         * replace.el (query-replace-read-from): Use `read-regexp' instead
6920         of `read-from-minibuffer' when `regexp-flag' is non-nil.
6921         (occur-read-primary-args): Use `read-regexp' instead of
6922         `read-string'.
6923         (multi-occur-in-matching-buffers): Use `read-regexp' instead of
6924         `read-from-minibuffer'.
6925         * isearch.el (isearch-occur): Use `read-regexp' instead of
6926         `read-string'.
6927         * dired.el (dired-read-regexp): Use `read-regexp' instead of
6928         `read-from-minibuffer'.
6929         * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
6930         of `read-string'.  (Bug#7567)
6932         * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
6933         and allow accepting a list of strings prepended to a list of
6934         standard default values.  Doc fix.  (Bug#12321)
6936         * replace.el (read-regexp): Add HISTORY arg.  (Bug#7567)
6938         * replace.el (read-regexp): Don't add ": " when PROMPT already
6939         ends with a colon and space.  (Bug#12321)
6941 2012-09-20  Tassilo Horn  <tsdh@gnu.org>
6943         * doc-view.el (doc-view-display): Better fix for the cl-assertion
6944         error.
6946 2012-09-20  Stefan Merten  <smerten@oekonux.de>
6948         * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
6949         Fixes feature request bug#11711.
6950         (rst-mode): Create `imenu-create-index-function'.
6951         (rst-get-stripped-line): Delete after refactoring.
6952         (rst-section-tree, rst-section-tree-rec)
6953         (rst-section-tree-point): Refactor and document properly.
6954         (rst-imenu-find-adornments-for-position)
6955         (rst-imenu-convert-cell, rst-imenu-create-index):
6956         New function.
6958 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6960         * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
6961         (macroexp--expand-all): Use it.
6962         (macroexp--funcall-and-return): Remove by folding it into its sole
6963         caller (macroexp--warn-and-return).
6964         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
6965         Use macroexp--obsolete-warning.
6967         * calc/calc.el: Fix last change by removing the whole chunk, since it
6968         was only needed back when Calc was not bundled.
6970 2012-09-20  Martin Rudalics  <rudalics@gmx.at>
6972         * emacs-lisp/debug.el (debug): Restore assignment to
6973         debugger-old-buffer removed on 2012-09-08.
6975 2012-09-20  Juri Linkov  <juri@jurta.org>
6977         * dired-aux.el (dired-diff): Remove (require 'diff) since
6978         `diff-latest-backup-file' is now autoloaded.
6980 2012-09-20  Chong Yidong  <cyd@gnu.org>
6982         * vc/diff.el (diff-latest-backup-file): Autoload.
6984 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6986         * calc/calc.el: Remove redundant autoload shape check.
6987         (sel-mode): Don't defvar.
6988         (calc-get-stack-element): Add `sel-mode' arg instead.
6989         (calc-top, calc-top-list): Pass it this additional argument.
6990         * calc/calc-store.el (calc-store-map):
6991         * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
6992         (calc-map-equation, calc-outer-product, calc-inner-product):
6993         * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
6995         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
6997 2012-09-19  Juri Linkov  <juri@jurta.org>
6999         * dired-aux.el (dired-diff): Add (require 'diff) because
7000         `diff-latest-backup-file' is not autoloaded.
7001         (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
7002         of `dired-get-filename' to t to not report error when there is
7003         no default file on the current line.
7005 2012-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7007         * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
7008         macroexp--eval-if-compile.
7009         (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
7010         (macroexp--expand-all): Use them (bug#12371).
7012         * doc-view.el (doc-view-guess-paper-size)
7013         (doc-view-scale-bounding-box): Fix unbound `caddr'.
7015 2012-09-19  Tassilo Horn  <tsdh@gnu.org>
7017         New feature: set optimal slice from BoundingBox information.
7018         * doc-view.el (doc-view-mode-map): Add keybinding.
7019         (doc-view-menu): Add menu entry.
7020         (doc-view-set-slice): Adapt docstring.
7021         (doc-view-get-bounding-box, doc-view-guess-paper-size)
7022         (doc-view-scale-bounding-box)
7023         (doc-view-set-slice-from-bounding-box): New functions.
7024         (doc-view-paper-sizes): New defvar.
7026 2012-09-19  Glenn Morris  <rgm@gnu.org>
7028         * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
7029         (byte-compile-log-warning): Autoload.  (Bug#12371)
7031         * calendar/calendar.el (calendar-american-month-header)
7032         (calendar-european-month-header, calendar-iso-month-header)
7033         (calendar-month-header): New options.
7034         (calendar-set-date-style): Set calendar-month-header.  Redraw calendar.
7035         (calendar-generate-month): Use calendar-month-header.  (Bug#9510)
7037 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
7039         * startup.el (command-line-ns-option-alist): Add -g and --geometry.
7041 2012-09-18  Juri Linkov  <juri@jurta.org>
7043         * dired-aux.el (dired-diff): Restore original functionality of
7044         getting the default value, but keep new feature of using the
7045         latest existing backup file (`diff-latest-backup-file').
7047 2012-09-18  Juri Linkov  <juri@jurta.org>
7049         * dired.el (dired-mark): If the region is active in Transient Mark
7050         mode, mark all files in the active region.  Doc fix.
7051         (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
7052         Doc fix.  (Bug#10624)
7054 2012-09-18  Juri Linkov  <juri@jurta.org>
7056         * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
7057         attributes for M-n are pulled from the file at point.
7058         (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
7059         Suggested by Drew Adams.  (Bug#10624)
7061 2012-09-18  Dmitry Gutov  <dgutov@yandex.ru>
7063         * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
7064         whitespace after "end".
7065         (ruby-do-end-to-brace): Collapse block to one line if it fits
7066         within fill-column.
7068 2012-09-18  Martin Rudalics  <rudalics@gmx.at>
7070         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
7071         value.
7072         (debug): Don't remove debugger window when debugger is expected
7073         to be back.
7075 2012-09-18  Chong Yidong  <cyd@gnu.org>
7077         * custom.el (defface): Doc fix.
7079         * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
7081 2012-09-18  Martin Blais  <blais@furius.ca>  (tiny change)
7083         * progmodes/compile.el (compilation-start): Use compilation-always-kill
7084         to initialize query-on-exit; then test that instead (bug#12288).
7086 2012-09-17  Stefan Merten  <smerten@oekonux.de>
7088         * textmodes/rst.el: Add support for `testcover'.
7089         (rst-defcustom-testcover, rst-testcover-add-compose)
7090         (rst-testcover-add-1value): New functions.
7091         (rst-portable-mark-active-p): Replace by `use-region-p'.
7092         (rst-update-section, rst-classify-adornment)
7093         (rst-find-title-line): Mark `1value' forms.
7094         (rst-classify-adornment): Remove superfluous form.
7095         (rst-update-section, rst-get-adornments-around)
7096         (rst-adornment-complete-p, rst-get-next-adornment)
7097         (rst-adjust, rst-promote-region)
7098         (rst-display-adornments-hierarchy, rst-straighten-adornments)
7099         (rst-find-pfx-in-region, rst-section-tree-rec)
7100         (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
7101         (rst-toc-node, rst-toc, rst-forward-section)
7102         (rst-iterate-leftmost-paragraphs)
7103         (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
7104         (rst-bullet-list-region)
7105         (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
7106         (rst-compile-find-conf, rst-compile)
7107         (rst-repeat-last-character): Fix style.
7109 2012-09-17  Chong Yidong  <cyd@gnu.org>
7111         * comint.el (comint--complete-file-name-data): Don't add a space
7112         if the status is `sole'; that adds a gratuitous space in the
7113         completion-cycling case (Bug#12092).
7115         * pcomplete.el (pcomplete-completions-at-point): Likewise.
7117 2012-09-17  Richard Stallman  <rms@gnu.org>
7119         * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
7120         only in the mime-shown mode, not in raw mode.
7121         (rmail-mime): Toggle off mime by displaying the message without
7122         mime processing.  (Bug#12305)
7124         * mail/rmail.el (rmail-retry-failure):
7125         Turn off mime processing first.  (Bug#12037)
7127         * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
7129 2012-09-17  Chong Yidong  <cyd@gnu.org>
7131         * shell.el (shell-file-name-chars, shell-file-name-quote-list)
7132         (shell-dynamic-complete-functions): Convert to defcustom.
7133         (shell-prompt-pattern, shell-completion-fignore): Doc fix.
7135         * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
7136         * comint.el (comint-prompt-read-only):
7137         * custom.el (defcustom):
7138         * hi-lock.el (hi-lock-mode):
7139         * ibuffer.el (ibuffer-formats):
7140         * ielm.el (ielm-prompt-read-only):
7141         * novice.el (disable-command):
7142         * saveplace.el (toggle-save-place):
7143         * speedbar.el (speedbar-supported-extension-expressions):
7144         * startup.el (auto-save-list-file-prefix, init-file-user)
7145         (after-init-hook, inhibit-startup-echo-area-message):
7146         * strokes.el (strokes-help):
7147         * time-stamp.el (time-stamp):
7148         * calendar/calendar.el (calendar, diary-file):
7149         * calendar/diary-lib.el (diary-mail-entries, diary)
7150         (diary-list-entries-hook):
7151         * calendar/holidays.el (holidays, calendar-holidays):
7152         * calendar/lunar.el (lunar-phases):
7153         * calendar/solar.el (sunrise-sunset):
7154         * emulation/edt.el (edt-load-keys):
7155         * emulation/viper.el (viper-mode):
7156         * eshell/em-alias.el (eshell-command-aliases-list):
7157         * eshell/esh-util.el (eshell-convert-numeric-arguments):
7158         * international/ogonek.el (ogonek-information):
7159         * net/tramp-cmds.el (tramp-bug):
7160         * net/quickurl.el (quickurl-reread-hook-postfix):
7161         * play/decipher.el (decipher-font-lock-keywords):
7162         * progmodes/cc-styles.el (c-set-style):
7163         * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
7164         * progmodes/inf-lisp.el (inferior-lisp-prompt):
7165         * progmodes/octave-mod.el (octave-mode):
7166         * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
7167         * progmodes/verilog-mode.el (verilog-read-defines):
7168         * textmodes/two-column.el (2C-mode): Likewise.
7170 2012-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7172         * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
7173         that holds many addresses.
7175 2012-09-16  Chong Yidong  <cyd@gnu.org>
7177         * align.el (align-areas): Call the indication function with
7178         positions instead of markers for arguments (Bug#12343).
7180         * files.el (parse-colon-path): Use split-string (Bug#12351).
7182         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7183         (display-buffer-function): Mark as obsolete.
7185         * progmodes/compile.el (compilation-parse-errors): Accept list
7186         values similar to font-lock-keywords (Bug#12136).
7187         Suggested by Oleksandr Manzyuk.
7188         (compilation-error-regexp-alist): Doc fix.
7190 2012-09-15  Glenn Morris  <rgm@gnu.org>
7192         * version.el (emacs-bzr-version-bzr): New function.
7193         (emacs-bzr-get-version): Add optional EXTERNAL argument.
7195         * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
7196         checkouts, check the parent dirstate matches the branch.
7197         Add "--tree" to "bzr revno" arguments.  Don't try to shorten the
7198         empty string.
7200         * version.el (emacs-bzr-version): Doc fix.
7201         (emacs-bzr-version-dirstate): New function.
7202         (emacs-bzr-get-version): For lightweight checkouts, if the parent
7203         is local try and check that it matches the branch.  If not, just
7204         use dirstate information.  (Bug#12441)
7206 2012-09-14  Juri Linkov  <juri@jurta.org>
7208         * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
7209         (Bug#12399)
7211 2012-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7213         * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
7215         * emacs-lisp/edebug.el: Miscellaneous cleanup.
7216         Remove obsolete byte-compiler hack that tried to silence some warnings.
7217         (edebug-submit-bug-report): Remove.
7218         (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
7219         Remove aliases, use the un-prefixed name instead.
7220         (edebug-pop-to-buffer): Consider other frames.
7221         (edebug-original-read):: Make it more obvious that it's always defined.
7222         (edebug--make-form-data-entry, edebug--form-data-name)
7223         (edebug--form-data-begin, edebug--form-data-end): Rename from the
7224         single-dashed name, and implement with cl-defstruct.
7225         (edebug-set-form-data-entry): Use the standard accessors.
7226         (edebug-make-top-form-data-entry): Use push.
7227         (edebug-no-match): Drop useless `funcall'.
7228         (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
7229         to functions.
7230         (defsubst, dont-compile, eval-when-compile, eval-and-compile)
7231         (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
7232         (with-syntax-table, push, pop, 1value, noreturn, defadvice)
7233         (easy-menu-define, with-custom-print): Remove redundant specs.
7234         (edebug-outside-overriding-local-map)
7235         (edebug-outside-overriding-terminal-local-map): Remove, unused.
7236         (edebug--display): Bind unread-command-events directly to nil rather
7237         than binding it to unread-command-events and later setting it to nil.
7238         (edebug--display): Kill edebug-eval-buffer here...
7239         (edebug--recursive-edit): ...rather than here.
7240         Bind standard-output and standard-input.
7241         (edebug-eval): Check cl-macroexpand-all is fboundp.
7242         (edebug-temp-display-freq-count): Fix last change.
7244         * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
7245         * subr.el (noreturn, 1value): Add `debug' spec.
7246         * emacs-lisp/advice.el: Require cl-lib.
7247         (ad-copy-tree): Remove, use copy-tree instead.
7248         (ad-dolist): Remove use dolist or cl-dolist instead.
7249         (ad-do-return): Remove, use cl-return instead.
7250         (defadvice): Add `debug' spec.
7252 2012-09-13  Juri Linkov  <juri@jurta.org>
7254         * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
7255         (Bug#12399)
7257 2012-09-13  Glenn Morris  <rgm@gnu.org>
7259         * calc/calc.el (math-compose-expr):
7260         * calc/calc-ext.el (math-compose-expr):
7261         * progmodes/cc-defs.el (cl-macroexpand-all):
7262         * progmodes/cc-langs.el (delete-duplicates, mapcan)
7263         (cl-macroexpand-all): Update declarations.
7265         * vc/vc.el: No need to require ediff.
7266         (ediff-load-version-control): Declare.
7267         (ediff-vc-internal): Fix declaration.
7268         (vc-version-ediff): Require ediff.
7270 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7272         Use a more backwards-compatible timer format (Bug#12430).
7273         * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
7274         being right after USECS, as that better supports old code that
7275         inadvisedly looked directly at the timer vector.
7277 2012-09-13  Kenichi Handa  <handa@gnu.org>
7279         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7280         ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
7281         `coding-priority' property of these language environment.
7283 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7285         Fix glitches caused by addition of psec to timers (Bug#12430).
7286         * image.el (image-animate-timer):
7287         * time.el (display-time-world-timer):
7288         Use timer--function and timer--args rather than raw access to
7289         timer vector.
7291 2012-09-13  Glenn Morris  <rgm@gnu.org>
7293         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7294         If not compiling a file, try using load-file-name.
7296 2012-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7298         * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
7299         Fix last change.
7300         (edebug-update-eval-list): Use `push'.
7302         * emacs-lisp/edebug.el: Use lexical-binding.
7303         Remove the "edebug-" prefix from non-dynamically-scoped variables.
7304         Mark unused args with underscore.
7305         (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
7306         (edebug-form-data): Use defvar-local.
7307         (edebug-make-before-and-after-form, edebug-make-after-form):
7308         Use backquote.
7309         (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
7310         Not dynamically scoped any more.
7311         (edebug--enter-trace): Add arguments `function' and `args'.
7312         Rename from edebug-enter-trace.
7313         (edebug-enter): Call it accordingly.  Bind edebug-function explicitly.
7314         (edebug--update-coverage): Add `after-index' and `value' args.
7315         Rename from edebug-update-coverage.
7316         (edebug-slow-after): Call it accordingly.
7317         (edebug--recursive-edit): Add arg `arg-mode'.  Rename from
7318         edebug-recursive-edit.
7319         (edebug--display): Call it accordingly.  Add args `value',
7320         `offset-index', and `arg-mode'.  Rename from edebug-display.
7321         (edebug-debugger, edebug): Call it accordingly.
7322         (edebug-eval-display-list): Use dolist.
7324 2012-09-12  Juri Linkov  <juri@jurta.org>
7326         * info.el (Info-search): Don't check for isearch-mode and
7327         isearch-regexp before let-binding search-spaces-regexp to
7328         Info-search-whitespace-regexp.
7329         (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7330         search-whitespace-regexp if isearch-lax-whitespace or
7331         isearch-regexp-lax-whitespace is non-nil.
7332         (Info-mode): Don't set local variable search-whitespace-regexp.
7333         http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7335 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7337         * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7338         (debugger-env-macro): Remove support for unread-command-char.
7340         * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7341         the temporary map re-appearing on emulation-mode-map-alists.
7343         * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7344         since 22.1.
7346         * ehelp.el (with-electric-help): Accept functions in
7347         electric-help-form-to-execute.
7348         (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7349         And replace unread-command-char -> unread-command-events.
7351 2012-09-12  Michael Albinus  <michael.albinus@gmx.de>
7353         Sync with Tramp 2.2.6.
7355         * net/tramp.el (tramp-accept-process-output): Don't use
7356         JUST-THIS-ONE in the XEmacs case.
7358         * net/trampver.el: Update release number.
7360 2012-09-12  Martin Rudalics  <rudalics@gmx.at>
7362         * emacs-lisp/debug.el (debugger-previous-window-height):
7363         New variable.
7364         (debug): When debugger-jumping-flag is non-nil try to restore
7365         height of debugger window.  (Bug#8789)
7367 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7369         * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7370         overriding-local-map and pre/post-command-hook here.
7371         (edebug-recursive-edit): Do it here instead (bug#12345).
7372         (edebug-outside-unread-command-char): Remove all uses of
7373         unread-command-char.
7375         * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7376         inhibit-debugger is bound instead.
7378 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7380         * subr.el (set-temporary-overlay-map): Add a docstring.
7381         (Bug#12346)
7383 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7385         * minibuffer.el (completion-table-subvert): Fix docstring.
7386         (Bug#12347)
7388 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7390         * help-fns.el (describe-variable): Fix typo.  (Bug#12346)
7392 2012-09-10  Michael R. Mauger  <mmaug@yahoo.com>
7394         * progmodes/sql.el: Version 3.1
7395         (sql-db2-escape-newlines): New variable.
7396         (sql-escape-newlines-filter): Use it.
7398 2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
7400         * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7402 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
7404         * vc/diff-mode.el (diff-mode-menu):
7405         Bind diff-remove-trailing-whitespace.
7407 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7409         * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7410         (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7411         (emacs-lisp-byte-code-mode): New functions.
7412         (eval-sexp-add-defvars): Don't skip defvars in column >0.
7413         (eval-defun-2): Remove bogus interactive spec.
7414         (lisp-indent-line): Remove redundant whole-exp code, now done in
7415         indent-according-to-mode.
7416         (save-match-data): Remove redundant indent data.
7418         * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7419         Use `declare'.
7421 2012-09-09  Juri Linkov  <juri@jurta.org>
7423         * replace.el (replace-regexp-lax-whitespace): New defcustom.
7424         (replace-lax-whitespace, query-replace-regexp)
7425         (query-replace-regexp-eval, replace-regexp): Doc fix.
7426         (perform-replace, replace-highlight): Let-bind
7427         isearch-lax-whitespace to replace-lax-whitespace and
7428         isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7430         * isearch.el (isearch-query-replace): Let-bind
7431         replace-lax-whitespace to isearch-lax-whitespace and
7432         replace-regexp-lax-whitespace to
7433         isearch-regexp-lax-whitespace.  (Bug#10885)
7435 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7437         * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7439 2012-09-09  Alan Mackenzie  <acm@muc.de>
7441         * progmodes/cc-engine.el (c-state-cache-init):
7442         Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7443         (c-record-parse-state-state):
7444         Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7446 2012-09-09  Andreas Schwab  <schwab@linux-m68k.org>
7448         * register.el (register-separator): Rename from
7449         separator-register.  All uses changed.  Doc fix.
7450         (register): Fix version.
7452 2012-09-09  Chong Yidong  <cyd@gnu.org>
7454         * replace.el (query-replace-map): Bind four new symbols for
7455         requesting window scrolling.
7457         * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7458         query-replace-map (Bug#8948).
7460         * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7462         * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7463         since they are now in query-replace-map.
7465         * window.el (scroll-other-window-down): Make the arg optional.
7467 2012-09-09  Chong Yidong  <cyd@gnu.org>
7469         * files.el (hack-local-variables-confirm): Use quit-window to kill
7470         the *Local Variables* buffer.
7472 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
7474         * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7475         not just expect to be at its beginning.  Adjust callees.
7476         Succeed when do-end block has no space before the pipe character.
7477         (ruby-brace-to-do-end): When the original block is one-liner,
7478         convert to multiline.  Reindent the result.
7480 2012-09-08  Jambunathan K  <kjambunathan@gmail.com>
7482         * register.el (register): New group.
7483         (separator-register): New user option.
7484         (increment-register): Route it to `append-to-register', if
7485         register contains text.  Implication is that `C-x r +' can now be
7486         used for appending to a text register (bug#12217).
7487         (append-to-register, prepend-to-register): Add separator based on
7488         `separator-register'.
7490 2012-09-08  Alan Mackenzie  <acm@muc.de>
7492         AWK Mode: make auto-newline work when there's "==" in the pattern.
7493         * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7494         correctly.
7495         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7496         Test more rigorously for "=" token.
7498 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
7500         * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7501         Only fail when reached LIMIT.
7503 2012-09-08  Chong Yidong  <cyd@gnu.org>
7505         * dired.el (dired-mode-map): Don't bind M-=.
7507         * dired-aux.el (dired-diff): Use backup file as default.
7509 2012-09-08  Drew Adams  <drew.adams@oracle.com>
7511         * subr.el (add-to-history): Fix delete usage (Bug#12314).
7513 2012-09-08  Chong Yidong  <cyd@gnu.org>
7515         * subr.el (syntax-after, syntax-class): Doc fix.
7517 2012-09-08  Martin Rudalics  <rudalics@gmx.at>
7519         * window.el (display-buffer-in-previous-window): New buffer
7520         display action function.
7522         * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7523         (debugger-previous-window): New variable.
7524         (debug): Rewrite using display-buffer-in-previous-window,
7525         quit-restore-window and debugger-bury-or-kill.  (Bug#8789)
7527 2012-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7529         * emacs-lisp/byte-run.el (defun): Tweak message.  Simplify code.
7531 2012-09-07  Matt McClure  <mlm@aya.yale.edu>  (tiny change)
7533         * progmodes/python.el (python-shell-send-string):
7534         When default-directory is remote, create temp file on remote
7535         filesystem.
7536         (python-shell-send-file): When file is remote, pass local view of
7537         file paths to remote Python interpreter.  (Bug#12340)
7539 2012-09-07  Chong Yidong  <cyd@gnu.org>
7541         * window.el (switch-to-buffer): Doc fix (Bug#12181).
7543         * files.el (after-find-file): Don't fail on a read-only buffer if
7544         require-final-newline is `visit' or `visit-save' (Bug#11156).
7546         * subr.el (read-char-choice): Allow quitting via ESC ESC.
7548         * userlock.el (ask-user-about-supersession-threat):
7549         Use read-char-choice (Bug#12093).
7551 2012-09-07  Chong Yidong  <cyd@gnu.org>
7553         * subr.el (buffer-narrowed-p): New function.
7555         * ses.el (ses-widen):
7556         * simple.el (count-words--buffer-message):
7557         * net/browse-url.el (browse-url-of-buffer): Use it.
7559         * simple.el (count-words-region): Don't signal an error if there
7560         is a non-nil prefix arg and the mark is not set.
7562         * help.el (describe-key-briefly): Allow the message to be seen
7563         when invoked from the minibuffer (Bug#7014).
7565 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
7567         * progmodes/ruby-mode.el (ruby-end-of-defun)
7568         (ruby-beginning-of-defun): Simplify, allow indentation before
7569         block beginning and end keywords.
7570         (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7571         (ruby-end-of-defun): Expect that the point is at the beginning of
7572         the defun.
7574 2012-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7576         * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7577         (bug#12367).
7578         (cl--make-usage-args): Strip _ from argument names.
7580 2012-09-06  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7582         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7583         obsolete alias speedbar-key-map.
7584         (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7585         (vhdl-index-menu-init): Don't use obsolete variable
7586         font-lock-maximum-size.
7588 2012-09-06  Chong Yidong  <cyd@gnu.org>
7590         * frame.el (window-system-version): Mark as obsolete.
7592         * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7593         of obsolete variable speedbar-key-map.
7595 2012-09-06  Juri Linkov  <juri@jurta.org>
7597         * replace.el (replace-lax-whitespace): New defcustom.
7598         (query-replace, query-replace-regexp, query-replace-regexp-eval)
7599         (replace-string, replace-regexp): Mention it in docstrings.
7600         (perform-replace, replace-highlight): Let-bind
7601         isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7602         to the values of replace-lax-whitespace and regexp-flag.
7603         Don't let-bind search-whitespace-regexp.  (Bug#10885)
7605         * isearch.el (isearch-query-replace): Let-bind
7606         replace-lax-whitespace instead of let-binding
7607         replace-search-function and replace-re-search-function.
7608         (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7609         and isearch-regexp-lax-whitespace to lazy-highlight variables.
7610         (isearch-toggle-symbol): Set isearch-regexp to nil
7611         in isearch-word mode (like in isearch-toggle-word).
7613 2012-09-06  Juri Linkov  <juri@jurta.org>
7615         * replace.el (replace-search-function)
7616         (replace-re-search-function): Set default values to nil.
7617         (perform-replace): Let-bind isearch-related variables based on
7618         replace-related values, call `isearch-search-fun' and let-bind
7619         the result to `search-function'.  Remove code that sets
7620         `search-function' and `search-string' separately for
7621         `delimited-flag'.
7622         (replace-highlight): Add new argument `delimited-flag' and
7623         rename other arguments to the names used in `perform-replace'.
7624         Let-bind `isearch-word' to the argument `delimited-flag'.
7625         (Bug#10885, bug#10887)
7627 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
7629         * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7630         ruby-beginning-of-indent, simplify, allow all keywords to have
7631         indentation before them.
7632         (ruby-beginning-of-indent): Adjust for above.  Search until the
7633         found point is not inside a string or comment.
7634         (ruby-font-lock-keywords): Allow symbols to start with "@"
7635         character, give them higher priority than variables.
7636         (ruby-syntax-propertize-function)
7637         (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7638         matchers.  Expression expansions are not comments when inside a
7639         string, and there comment syntax status is irrelevant.
7640         (ruby-match-expression-expansion): New function.  Check that
7641         expression expansion is inside a string, and it's not escaped.
7642         (ruby-font-lock-keywords): Use it.
7644 2012-09-05  Martin Rudalics  <rudalics@gmx.at>
7646         * help.el (temp-buffer-max-height): New default value.
7647         (temp-buffer-resize-frames): New option.
7648         (resize-temp-buffer-window): Optionally resize frame.
7650         * window.el (fit-frame-to-buffer-bottom-margin): New option.
7651         (fit-frame-to-buffer): New function.
7653 2012-09-05  Glenn Morris  <rgm@gnu.org>
7655         * emulation/cua-rect.el (cua--init-rectangles):
7656         * textmodes/picture.el (picture-mode-map):
7657         * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7658         like forward-char and backward-char.  (Bug#12317)
7660 2012-09-05  Leo Liu  <sdl.web@gmail.com>
7662         * progmodes/flymake.el (flymake-warning-re): New variable.
7663         (flymake-parse-line): Use it.
7665 2012-09-05  Glenn Morris  <rgm@gnu.org>
7667         * calendar/holidays.el (holiday-christian-holidays):
7668         Rename an entry.  (Bug#12289)
7670 2012-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7672         * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7673         (bug#12222).
7675 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7677         * loadup.el: Load macroexp.  Remove hack.
7678         * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7679         (macroexp--expand-all): Use it to get better warnings.
7680         (macroexp--backtrace, macroexp--trim-backtrace-frame)
7681         (internal-macroexpand-for-load): New functions.
7682         (macroexp--pending-eager-loads): New var.
7683         (emacs-startup-hook): New hack to replace one in loadup.el.
7684         * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7685         (cl--compiler-macro-cXXr): Move to top, before they can be used.
7686         (cl-psetf): Simplify.
7687         (cl-defstruct): Add indent rule.
7689 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
7691         * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7692         over `user-mail-address' for the SMTP MAIL FROM envelope.
7693         (smtpmail-via-smtp): Ditto.
7695 2012-09-04  Dmitry Gutov  <dgutov@yandex.ru>
7697         * progmodes/ruby-mode.el: Clean up keybindings.
7698         (ruby-mode-map): Don't bind ruby-electric-brace,
7699         ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7700         backward-kill-word, reindent-then-newline-and-indent.
7701         (ruby-mark-defun): Remove.
7702         (ruby-electric-brace): Remove.  Obsoleted by electric-indent-chars.
7703         (ruby-mode): Set local beginning-of-defun-function and
7704         end-of-defun-function values.
7706 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
7708         * window.el (temp-buffer-window-setup-hook)
7709         (temp-buffer-window-show-hook): New hooks.
7710         (temp-buffer-window-setup, temp-buffer-window-show)
7711         (with-temp-buffer-window): New functions.
7712         (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7713         (special-display-popup-frame): Make sure the window used shows BUFFER.
7715         * help.el (temp-buffer-resize-mode): Fix doc-string.
7716         (resize-temp-buffer-window): New optional argument WINDOW.
7718         * files.el (recover-file, save-buffers-kill-emacs):
7719         * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7721 2012-09-02  Michael Albinus  <michael.albinus@gmx.de>
7723         * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7724         remote definition of `default-directory', ensure we can connect.
7726 2012-09-02  Juri Linkov  <juri@jurta.org>
7728         Toggle whitespace matching mode with M-s SPC.
7729         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7731         * isearch.el (search-whitespace-regexp): Doc fix.
7732         Remove cons cell customization.
7733         (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7734         (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7735         New variables.
7736         (isearch-forward, isearch-forward-regexp): Doc fix.
7737         (isearch-toggle-lax-whitespace): New command.
7738         (search-forward-lax-whitespace, search-backward-lax-whitespace)
7739         (re-search-forward-lax-whitespace)
7740         (re-search-backward-lax-whitespace): New functions.
7741         (isearch-whitespace-regexp): Remove function.
7742         (isearch-query-replace): Let-bind replace-search-function and
7743         replace-re-search-function.
7744         (isearch-occur): Let-bind search-spaces-regexp according to the
7745         value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7746         (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7747         condition for C-q SPC.
7748         (isearch-search-fun-default): Use new functions mentioned above.
7749         (isearch-search-forward, isearch-search-backward): Remove functions.
7750         (isearch-search): Don't let-bind search-spaces-regexp.
7751         (isearch-lazy-highlight-space-regexp): Remove variable.
7752         (isearch-lazy-highlight-lax-whitespace)
7753         (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7754         (isearch-lazy-highlight-new-loop): Use them.
7755         (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7757 2012-09-02  Chong Yidong  <cyd@gnu.org>
7759         * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7761 2012-09-02  Glenn Morris  <rgm@gnu.org>
7763         * simple.el (undo): Tweak message in undo-only case.  (Bug#12283)
7765 2012-09-01  Glenn Morris  <rgm@gnu.org>
7767         * term.el: Tidy up menu definitions.
7768         (term-mode-map): Use easymenu for In/Out, Complete menus.
7769         (term-pager-break-map): Initialize in the defvar.
7770         (term-terminal-menu, term-signals-menu): Define with easymenu.
7771         (term-terminal-menu): Also show it in line-mode.  (Bug#11957)
7772         (term-pager-menu): New, extracted from term-process-pager.
7773         (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7774         (term-update-mode-line): Propertize line/char and page items.
7775         (term-process-pager): Move keymap initialization elsewhere.
7777 2012-09-01  Martin Rudalics  <rudalics@gmx.at>
7779         * window.el (switch-to-prev-buffer): Handle additional values of
7780         BURY-OR-KILL argument.  Don't switch in minibuffer window.
7781         (switch-to-next-buffer): Don't switch in minibuffer window.
7782         (quit-restore-window): New function based on quit-window.
7783         Handle additional values of former KILL argument.
7784         (quit-window): Call quit-restore-window with appropriate
7785         interpretation of KILL argument.
7786         (display-buffer-below-selected): New buffer display action
7787         function.
7789 2012-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7791         * minibuffer.el (completion-at-point-functions): Complete docstring
7792         (bug#12254).
7794 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
7796         Better seed support for (random).
7797         * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7798         * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7799         * play/mpuz.el, play/tetris.el, play/zone.el:
7800         * calc/calc-comb.el (math-init-random-base):
7801         * play/blackbox.el (bb-init-board):
7802         * play/life.el (life):
7803         * server.el (server-use-tcp):
7804         * type-break.el (type-break):
7805         Remove unnecessary call to (random t).
7806         * net/sasl.el (sasl-unique-id-function):
7807         Change (random t) to (random), now that the latter is more random.
7808         * play/life.el (life-initialized): Remove no-longer-needed var.
7810 2012-08-31  Alp Aker  <alp.tekin.aker@gmail.com>
7812         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7813         Consider frame's buffer predicate when choosing the buffer.
7814         (Bug#12081)
7816 2012-08-30  Richard Stallman  <rms@gnu.org>
7818         * simple.el (special-mode-map): Delete binding for `z'.
7820 2012-08-30  Andreas Schwab  <schwab@linux-m68k.org>
7822         * progmodes/compile.el (compilation-always-kill): Doc fix.
7824 2012-08-30  Chong Yidong  <cyd@gnu.org>
7826         * window.el (display-buffer-reuse-frames): Make the obsolescence
7827         message more informative.
7829 2012-08-30  Glenn Morris  <rgm@gnu.org>
7831         * paren.el (show-paren-delay):
7832         Add a :set function.  Doc fix.  (Bug#12297)
7834 2012-08-29  Martin Blais  <blais@furius.ca>  (tiny change)
7836         * progmodes/compile.el (compilation-always-kill): New var.
7837         (compilation-start): Use it.
7839 2012-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7841         * simple.el (read-only-mode): Move from files.el for bootstrapping.
7842         * files.el (read-only-mode): Move to simple.el.
7844         * files.el (read-only-mode): New minor mode.
7845         (toggle-read-only): Use it and mark obsolete.
7846         (find-file--read-only):
7847         * vc/vc.el (vc-next-action, vc-checkout):
7848         * vc/vc-cvs.el (vc-cvs-checkout):
7849         * obsolete/vc-mcvs.el (vc-mcvs-update):
7850         * ffap.el (ffap--toggle-read-only): Update callers.
7852 2012-08-29  Michael Albinus  <michael.albinus@gmx.de>
7854         * eshell/esh-ext.el (eshell-external-command): Do not examine
7855         remote shell scripts.
7856         See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
7858         * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
7859         "/usr/local/sbin".
7861 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7863         * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
7865 2012-08-28  Leo Liu  <sdl.web@gmail.com>
7867         * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
7868         completion-at-point.  (Bug#12220)
7870         * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
7872         * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
7874 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7876         * files.el (safe-local-eval-forms): Fix before-save-hook entry to
7877         be buffer-local; add delete-trailing-whitespace (bug#12259).
7879 2012-08-28  Jeremy Moore  <jmoore@ieee.org>  (tiny change)
7881         * progmodes/hideif.el (hif-compress-define-list):
7882         Fix typo.  (Bug#11951)
7884 2012-08-28  Dan Nicolaescu  <dann@gnu.org>
7886         * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
7887         buffer local setting.
7889         * net/rcirc.el (rcirc-split-message): Fix for buffer-local
7890         rcirc-encode-coding-system.
7892 2012-08-28  Leo Liu  <sdl.web@gmail.com>
7894         * net/rcirc.el (rcirc-split-message): New function.
7895         (rcirc-send-message): Use it.  (Bug#12051)
7897 2012-08-28  Juri Linkov  <juri@jurta.org>
7899         * info.el (Info-fontify-node): Hide empty lines at the end of
7900         the node.  (Bug#12272)
7902 2012-08-27  Drew Adams  <drew.adams@oracle.com>
7904         * dired.el (dired-pop-to-buffer): Make window start at beginning
7905         of buffer (Bug#12281).
7907 2012-08-26  Chong Yidong  <cyd@gnu.org>
7909         * window.el (special-display-regexps, special-display-frame-alist)
7910         (special-display-buffer-names, special-display-function)
7911         (display-buffer-reuse-frames): Mark as obsolete.
7913         * progmodes/compile.el: Don't use display-buffer-reuse-frames.
7915         * help.el (help-print-return-message): Don't treat
7916         display-buffer-reuse-frames specially.
7918 2012-08-26  Chong Yidong  <cyd@gnu.org>
7920         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
7921         New variable, replacing gdb-frame-parameters.
7922         (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
7923         (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
7924         (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
7925         (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
7926         (def-gdb-frame-for-buffer): Macro deleted.  It is easier to define
7927         the functions directly with gdb-display-buffer-other-frame-action.
7928         (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
7929         (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
7930         (gdb-display-stack-buffer, gdb-display-locals-buffer)
7931         (gdb-display-registers-buffer): Define directly.
7932         (def-gdb-display-buffer): Macro deleted.
7933         (gdb-display-buffer): Remove second and third args, callers don't
7934         use them.  Defer to the default display-buffer behavior, apart
7935         from making windows dedicated.
7936         (gdb-setup-windows): Don't call display-buffer unnecessarily.
7938         * progmodes/gud.el (gud-display-line): Just use display-buffer.
7940         * window.el (display-buffer-pop-up-frame): Handle a
7941         pop-up-frame-parameters alist entry.
7942         (display-buffer): Document it.
7944 2012-08-26  Chong Yidong  <cyd@gnu.org>
7946         * isearch.el (search-whitespace-regexp): Make string and nil
7947         values apply to both ordinary and regexp search.  Allow a cons
7948         cell value to distinguish between the two.
7949         (isearch-whitespace-regexp, isearch-search-forward)
7950         (isearch-search-backward): New functions.
7951         (isearch-occur, isearch-search-fun-default, isearch-search)
7952         (isearch-lazy-highlight-new-loop): Use them.
7953         (isearch-forward, isearch-forward-regexp): Doc fix.
7955 2012-08-26  Chong Yidong  <cyd@gnu.org>
7957         * faces.el (help-argument-name): Always inherit from italic
7958         (Bug#12213).
7960 2012-08-25  Martin Rudalics  <rudalics@gmx.at>
7962         * window.el (window--even-window-heights): Even heights when
7963         WINDOW and the selected window form a vertical combination.
7964         (display-buffer-use-some-window): Provide that window used gets
7965         sized back by quit-window.  (Bug#11880) and (Bug#12091)
7967 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
7969         Fix file time stamp problem with bzr and CVS (Bug#12001).
7970         * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
7971         in the file's time stamp, since the version control system loses
7972         that information.
7974 2012-08-22  Juri Linkov  <juri@jurta.org>
7976         * info.el (Info-fontify-node): Hide the suffix of the
7977         Info file name in the header line.  (Bug#12187)
7979 2012-08-22  Glenn Morris  <rgm@gnu.org>
7981         * calendar/cal-tex.el (cal-tex-weekly-common):
7982         Restore leading blank page.
7984 2012-08-22  Le Wang  <l26wang@gmail.com>
7986         * misc.el (forward-to-word, backward-to-word): Activate or extend
7987         the region under `shift-select-mode'.  (Bug#12231)
7989 2012-08-22  Bastien Guerry  <bzg@gnu.org>
7991         * progmodes/executable.el (executable-prefix): Set to "#!" instead
7992         of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details
7993         gives details on why the space is never needed.
7995 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
7997         * window.el (walk-window-tree, window-with-parameter):
7998         New optional argument MINIBUF to control whether these functions
7999         should run on the minibuffer window.
8000         (window-at-side-list): Don't operate on minibuffer window.
8001         (window-in-direction): Simplify and rewrite doc-string.
8002         (window--size-ignore): Rename to window--size-ignore-p.
8003         Update callers.
8004         (display-buffer-in-atom-window, window--major-non-side-window)
8005         (window--major-side-window, display-buffer-in-major-side-window)
8006         (delete-side-window, display-buffer-in-side-window):
8007         New functions.
8008         (window--side-check, window-deletable-p, delete-window)
8009         (delete-other-windows, split-window): Handle side windows and
8010         atomic windows appropriately.
8011         (window--display-buffer): Call display-buffer-record-window also
8012         when the window buffer did not change.
8014 2012-08-22  Christopher Schmidt  <christopher@ch.ristopher.com>
8016         * help-fns.el (help-fns--key-bindings):
8017         Abbreviate non-symbol remap targets.  (Bug#12174)
8019 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
8021         * dired.el (dired-mark-remembered): Don't clobber point.
8022         (Bug#11795)
8024 2012-08-22  Glenn Morris  <rgm@gnu.org>
8026         * progmodes/bug-reference.el (bug-reference): New custom group.
8027         (bug-reference-bug-regexp): Make it a defcustom.
8029 2012-08-22  Daiki Ueno  <ueno@unixuser.org>
8031         * progmodes/js.el (js-indent-level, js-expr-indent-offset)
8032         (js-paren-indent-offset, js-square-indent-offset)
8033         (js-curly-indent-offset): Add :safe (Bug#12257).
8035 2012-08-22  Edward O'Connor  <hober0@gmail.com>
8037         * json.el (json-key-format): Add error properties.
8038         (json-encode-key): New function.
8039         (json-encode-hash-table, json-encode-alist, json-encode-plist):
8040         Use json-encode-key.
8042 2012-08-22  Glenn Morris  <rgm@gnu.org>
8044         * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
8045         (cal-tex-leftday, cal-tex-rightday): Remove functions.
8046         (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
8047         Update for above change.
8049 2012-08-21  Andreas Schwab  <schwab@linux-m68k.org>
8051         * cus-face.el (custom-face-attributes): Fix customize type for the
8052         :underline attribute.  (Bug#11805)
8054 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
8056         * window.el (window-point-1, set-window-point-1): Remove.
8057         (window-in-direction, record-window-buffer)
8058         (set-window-buffer-start-and-point, split-window-below)
8059         (window--state-get-1, display-buffer-record-window):
8060         Replace calls to window-point-1 and set-window-point-1 by calls to
8061         window-point and set-window-point respectively.
8063 2012-08-21  Glenn Morris  <rgm@gnu.org>
8065         * calendar/cal-tex.el (cal-tex-weekly-common): New function.
8066         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
8067         Use it.
8069         * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
8070         (cal-tex-shortday): New function.
8071         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
8072         (cal-tex-cursor-filofax-daily): Use the above.
8074         * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
8075         New functions.
8076         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8077         (cal-tex-cursor-filofax-week): Use them.
8079         * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
8080         New constants.
8081         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8082         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
8084         * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
8085         (cal-tex-end-document): Don't rely on buffer name.
8087         * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
8088         Use cal-tex-vspace.
8089         (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
8090         (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
8091         (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
8092         Use cal-tex-arg.
8094         * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
8095         (cal-tex-cursor-week, cal-tex-cursor-week2)
8096         (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
8097         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8098         (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
8099         (cal-tex-insert-preamble, cal-tex-b-document)
8100         (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
8101         Improve cal-tex-cmd usage.
8103         * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
8104         (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
8105         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
8106         (cal-tex-weekly-paper): New function.
8107         (cal-tex-cursor-week, cal-tex-cursor-week2)
8108         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
8109         (cal-tex-cursor-day): Use it.
8111         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
8112         (cal-tex-cursor-filofax-week): Remove leading blank page.
8114         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8115         Add autoload cookie.  For now at least, don't use color, since
8116         no other cal-tex function does.
8118         * calendar/cal-tex.el (cal-tex-cursor-week-iso)
8119         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8120         (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
8122 2012-08-21  Juri Linkov  <juri@jurta.org>
8124         * info.el (Info-file-attributes): New variable.
8125         (info-insert-file-contents): Add file attributes to
8126         `Info-file-attributes'.  Clear the caches `Info-index-nodes' and
8127         `Info-toc-nodes' when previous modtime of the Info file is less
8128         than new modtime.
8129         (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
8130         of info.el.  (Bug#12230)
8132 2012-08-20  Glenn Morris  <rgm@gnu.org>
8134         * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
8135         * calendar/holidays.el (calendar-holiday-list):
8136         Report errors with display-warning rather than beep'n'sleep.
8138 2012-08-20  Michael Albinus  <michael.albinus@gmx.de>
8140         * net/tramp.el (tramp-accept-process-output): Accept only output
8141         from PROC.  Otherwise, process filters and sentinels might be
8142         confused.  (Bug#12145)
8144 2012-08-20  Chong Yidong  <cyd@gnu.org>
8146         * descr-text.el (describe-text-properties-1): Use overlays-in to
8147         report on empty overlays (Bug#3322).
8149 2012-08-20  Glenn Morris  <rgm@gnu.org>
8151         * mail/rmailout.el (rmail-output-read-file-name):
8152         Trap and report errors in rmail-output-file-alist elements.
8154         * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
8155         since most non-font-lock faces are not also variables).
8157 2012-08-20  Edward Reingold  <reingold@iit.edu>
8159         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8160         New function.  (Bug12160)
8162 2012-08-19  Glenn Morris  <rgm@gnu.org>
8164         * mail/rmailout.el (rmail-output-read-file-name):
8165         Fix previous change (when the alist is nil or does not match).
8167 2012-08-19  Chong Yidong  <cyd@gnu.org>
8169         * xml.el (xml-escape-string): Don't refer to xml-entity-alist
8170         (Bug#12228).
8172 2012-08-18  Chong Yidong  <cyd@gnu.org>
8174         * simple.el (yank-handled-properties): New defcustom.
8175         (yank-excluded-properties): Add font-lock-face and category.
8176         (yank): Doc fix.
8178         * subr.el (remove-yank-excluded-properties):
8179         Obey yank-handled-properties.  The special handling of font-lock-face
8180         and category is now done this way, instead of being hard-coded.
8181         (insert-for-yank-1): Remove font-lock-face handling.
8182         (yank-handle-font-lock-face-property)
8183         (yank-handle-category-property): New function.
8185 2012-08-17  Glenn Morris  <rgm@gnu.org>
8187         * mail/rmailout.el (rmail-output-read-file-name):
8188         Check rmail-output-file-alist against the full message body
8189         in the correct rmail buffer.  (Bug#12214)
8191 2012-08-17  Michael Albinus  <michael.albinus@gmx.de>
8193         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8194         Eliminate superfluous prompt.  (Bug#12203)
8196 2012-08-17  Chong Yidong  <cyd@gnu.org>
8198         * mouse.el (mouse-appearance-menu): If x-select-font returns a
8199         font spec, set the font directly (Bug#3228).
8201 2012-08-17  Martin Rudalics  <rudalics@gmx.at>
8203         * window.el (delete-window): Fix last fix.
8205 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
8207         * window.el (window-valid-p): Move to window.c.
8208         (window-child, window-child-count, window-last-child)
8209         (window-normalize-window, window-combined-p)
8210         (window-combinations, window-atom-root, window-min-size)
8211         (window-sizable, window-sizable-p, window-size-fixed-p)
8212         (window-min-delta, window-max-delta, window--resizable)
8213         (window--resizable-p, window-resizable, window-total-size)
8214         (window-full-height-p, window-full-width-p, window-body-size)
8215         (window-at-side-p, adjust-window-trailing-edge, maximize-window)
8216         (minimize-window, window-deletable-p, delete-window)
8217         (delete-other-windows, set-window-buffer-start-and-point)
8218         (next-buffer, previous-buffer, split-window, balance-windows-2)
8219         (set-window-text-height, window-buffer-height)
8220         (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
8221         (truncated-partial-width-window-p): Minor code adjustments.
8222         In doc-strings state whether the argument window has to denote a
8223         live, valid or any window.
8225 2012-08-16  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
8227         * progmodes/subword.el (subword-forward-function)
8228         (subword-backward-function, subword-forward-regexp)
8229         (subword-backward-regexp): New variables.
8230         (subword-forward, subword-forward-internal, subword-backward-internal):
8231         Use new variables, eg so that different "word" definitions
8232         can be easily used.  (Bug#11411)
8234 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8236         * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
8237         for composite selectors.
8238         * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
8239         operation just because we can't find a previous revision.
8241 2012-08-15  Chong Yidong  <cyd@gnu.org>
8243         * frame.el (set-frame-font): Accept font objects.
8245 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8247         * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
8249 2012-08-15  Wolfgang Jenkner  <wjenkner@inode.at>
8251         * man.el (Man-overstrike-face, Man-underline-face)
8252         (Man-reverse-face): Remove variables.
8253         (Man-overstrike, Man-underline, Man-reverse): New faces.
8254         (Man-fontify-manpage): Use them instead of the variables.
8255         (Man-cleanup-manpage): Comment change.
8256         (Man-ansi-color-map): New variable.
8257         (Man-fontify-manpage): Use it.
8258         Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
8260         Implement ANSI SGR parameters 22-27 (bug#12146).
8261         * ansi-color.el (ansi-colors): Doc fix.
8262         (ansi-color-context, ansi-color-context-region): Doc fix.
8263         (ansi-color--find-face): New function.
8264         (ansi-color-apply, ansi-color-apply-on-region): Use it.
8265         Rename the local variable `face' to `codes' since it is now a list of
8266         ansi codes.  Doc fix.
8267         (ansi-color-get-face): Remove.
8268         (ansi-color-parse-sequence): New function, derived from
8269         ansi-color-get-face.
8270         (ansi-color-apply-sequence): Use it.  Rewrite, and support ansi
8271         codes 22-27.
8273 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8275         * subr.el (read-passwd): Allow use from a minibuffer.
8277 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
8279         * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
8280         inside comments and strings as identifiers.
8282         * progmodes/gud.el (gud-tooltip-print-command): Quote the
8283         expression to evaluate.  This allows to evaluate expressions with
8284         embedded whitespace.
8285         (gud-tooltip-tips): Add a blank before the newline in the
8286         message-box text, for the benefit of message-box emulation on
8287         MS-Windows.
8289         * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
8290         messages from GDB, pop them up in a tooltip to give feedback to
8291         user.
8292         (gdb-tooltip-print-1): Quote the expression to evaluate.
8293         This allows to evaluate expressions with embedded whitespace.
8294         (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
8295         if the TTY name is nil or empty (which happens when communicating
8296         with the inferior via pipes, e.g. on MS-Windows).
8297         (gdb-internals): If GDB sends a "&\n" empty debugging message,
8298         don't send that to the GUD buffer.
8300 2012-08-14  Glenn Morris  <rgm@gnu.org>
8302         * emacs-lisp/bytecomp.el (byte-compile-setq-default):
8303         Optimize away setq-default with no args, as for setq.  (Bug#12195)
8305 2012-08-14  Chong Yidong  <cyd@gnu.org>
8307         * minibuffer.el (read-file-name): Doc fix (Bug#10881).
8309         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
8310         (Bug#12085).
8312 2012-08-14  Glenn Morris  <rgm@gnu.org>
8314         * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
8316 2012-08-14  Michael Albinus  <michael.albinus@gmx.de>
8318         * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8319         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8320         Use cached shell name.
8322 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
8324         * progmodes/python.el (python-shell-send-string):
8325         (python-shell-send-setup-code): Do not use `format' with `message'.
8327 2012-08-14  Dmitry Gutov  <dgutov@yandex.ru>
8329         * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8330         (ruby-percent-literal-beg-re): New constant.
8331         (ruby-syntax-general-delimiters-goto-beg): Rename to
8332         `ruby-syntax-enclosing-percent-literal', improve literal type check.
8333         (ruby-syntax-propertize-general-delimiters): Rename to
8334         `ruby-syntax-propertize-percent-literal', it's a shorter and more
8335         popular term.  Adjust comments everywhere.
8336         (ruby-syntax-propertize-percent-literal): Only propertize when not
8337         inside a simple string or comment.  When the literal is unclosed,
8338         leave the text after it unpropertized.
8339         (ruby-syntax-methods-before-regexp): New constant.
8340         (ruby-syntax-propertize-function): Use it to recognize regexps.
8341         Don't look at the text after regexp, just use the whitelist.
8343 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
8345         * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8346         non-nil always load the compiled file if it exists.  (Bug#12197)
8348 2012-08-14  Chong Yidong  <cyd@gnu.org>
8350         * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8351         (hi-lock-set-pattern): When deciding whether to use font lock or
8352         overlays, look at font-lock-mode instead of font-lock-fontified
8353         (Bug#12168).
8354         (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8355         (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8357 2012-08-14  Daiki Ueno  <ueno@unixuser.org>
8359         * subr.el (internal--after-with-selected-window): Fix typo
8360         (Bug#12193).
8362 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
8364         Use `completion-table-dynamic' for completion functions.
8365         * progmodes/python.el
8366         (python-shell-completion--do-completion-at-point)
8367         (python-shell-completion--get-completions):
8368         Remove functions.
8369         (python-shell-completion-complete-at-point): New function.
8370         (python-completion-complete-at-point): Use it.
8372 2012-08-13  Jambunathan K  <kjambunathan@gmail.com>
8374         * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8375         (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8377 2012-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8379         * subr.el (function-get): Refine `autoload' arg so it can also
8380         autoload functions for gv.el (bug#12191).
8381         * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8382         autoloads macros.
8384         * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8385         Prefer pcase-let over destructuring-bind.
8386         * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8387         Also, remove whitespace as we go, rather than after accumulating the
8388         various places.
8390         * subr.el (internal--before-with-selected-window)
8391         (internal--after-with-selected-window): Fix typo seleted->selected.
8392         (with-selected-window): Adjust callers.
8393         Reported by Dmitry Gutov <dgutov@yandex.ru>.
8395 2012-08-13  Bastien Guerry  <bzg@gnu.org>
8397         * window.el (special-display-popup-frame): Minor docstring
8398         enhancement.  (Bug#12172)
8400 2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
8402         * tar-mode.el (tar-header-data-end): Only ignore size for files of
8403         type 1-6.
8404         (tar-header-block-summarize, tar-get-descriptor): Handle pax
8405         extended headers.
8407         * files.el (hack-local-variables-filter): Remove useless eval.
8409 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
8411         * subr.el (with-selected-window): Fix last change.
8413 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8415         * subr.el (internal--before-with-seleted-window)
8416         (internal--after-with-seleted-window): New functions.
8417         (with-selected-window): Use them, to replace dependency on
8418         tty-top-frame.
8420 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
8422         * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8423         binding for `newline'.
8424         (ruby-move-to-block): When moving backward, stop at block opening,
8425         not indentation.
8426         * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8427         (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8428         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8429         `ruby-toggle-block'.
8431 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8433         * ibuffer.el (ibuffer-do-toggle-read-only):
8434         * dired.el (dired-toggle-read-only):
8435         * buff-menu.el (Buffer-menu-toggle-read-only):
8436         * bindings.el (mode-line-toggle-read-only):
8437         * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8439 2012-08-12  Andreas Schwab  <schwab@linux-m68k.org>
8441         * descr-text.el (describe-char): Put the overlays over the
8442         "displayed as" character.
8444 2012-08-12  Jay Belanger  <jay.p.belanger@gmail.com>
8446         * calc/calc-units.el (math-default-units-table): Give an
8447         initial value.
8448         (math-put-default-units): Add options to put composite units and
8449         unit systems in the default units table.
8450         (calc-convert-units): Send composite units to
8451         `math-put-default-units' when appropriate.
8453 2012-08-11  Glenn Morris  <rgm@gnu.org>
8455         * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8457         * tutorial.el (help-with-tutorial):
8458         * emacs-lisp/copyright.el (copyright-update-directory):
8459         * emacs-lisp/autoload.el (autoload-find-generated-file)
8460         (autoload-find-file): Disable local eval: (for insurance).
8462         * files.el (hack-local-variables-filter): If an eval: form is not
8463         known to be safe, and enable-local-variables is :safe, then ignore
8464         the form totally, as is done for non-eval forms.  (Bug#12155)
8465         This is CVE-2012-3479.
8467 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8469         * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8470         (rx-form): Simplify.
8472 2012-08-09  Dmitry Gutov  <dgutov@yandex.ru>
8474         * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8475         ?, _, and : are symbol constituents, ! is not (but kinda should be).
8476         (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8477         (ruby-syntax-propertize-function): Adjust for changes in
8478         `ruby-syntax-propertize-heredoc'.
8480 2012-08-09 Nobuyoshi Nakada  <nobu@ruby-lang.org>
8482         * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8483         binding (use `M-;' instead).
8484         (ruby-singleton-class-p): New function.
8485         (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8487 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8489         * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8491 2012-08-10  Chong Yidong  <cyd@gnu.org>
8493         * progmodes/python.el (python-shell-get-process-name): Don't mess
8494         with same-window-buffer-names.
8496         * eshell/eshell.el (eshell-add-to-window-buffer-names)
8497         (eshell-remove-from-window-buffer-names): Make obsolete.
8498         (eshell-buffer-name, eshell-unload-hook): Don't use them.
8499         (eshell): Just use pop-to-buffer-same-window instead.
8501 2012-08-10  Chong Yidong  <cyd@gnu.org>
8503         * bindings.el: Bind M-= back to count-words-region.
8505         * simple.el (count-words-region): Accept a prefix arg for acting
8506         on the entire buffer.
8507         (count-words--buffer-message): New helper function.
8509 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8511         * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8512         * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8513         (event-start, event-end): Use posn-at-point to return a more
8514         informative posn.
8515         (posnp): New function.
8516         * mouse.el (popup-menu-normalize-position): Use it.
8518 2012-08-10  Masatake YAMATO  <yamato@redhat.com>
8520         * mouse.el (popup-menu-normalize-position): New function.
8521         (popup-menu): Use `popup-menu-normalize-position' to normalize
8522         the form for POSITION argument.
8524         * term/x-win.el (x-menu-bar-open):
8525         Use the value returend from (posn-at-point) as position
8526         passed to `popup-menu'.
8528 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
8530         * calc/calccomp.el (math-compose-expr): Add extra argument
8531         indicating that parentheses should be put around products in
8532         denominators.  Give multiplication precedence over division during
8533         composition.
8535 2012-08-09  Chong Yidong  <cyd@gnu.org>
8537         * man.el (Man-switches, Man-sed-command, Man-awk-command)
8538         (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8539         (Man-untabify-command, manual-program): Convert to defcustom
8540         (Bug#10429).
8542         * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8544         * descr-text.el (describe-char): Don't insert extra newlines
8545         (Bug#10127).
8547         * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8548         (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8550         * align.el (align-region): Delete temporary markers (Bug#10047).
8551         Plus some code cleanups.
8553 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
8555         * progmodes/python.el (python-pdbtrack-tracked-buffer)
8556         (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8557         (python-shell-internal-last-output): Use make-local-variable
8558         instead of make-variable-buffer-local.
8560 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
8562         * progmodes/python.el: Enhancements to forward-sexp.
8563         (python-nav-forward-sexp): Rename from
8564         python-nav-forward-sexp-function.
8565         (python-nav--forward-sexp, python-nav--backward-sexp):
8566         New functions.
8568 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
8570         * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8571         modes and simplification modes.
8573 2012-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8575         * delsel.el (delete-selection-pre-hook): Don't propagate the
8576         file-supersession signals (bug#12161).
8578 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8580         * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8581         (cl-map-extents): Add compatibility aliases (bug#12135).
8583 2012-08-08  Michael Albinus  <michael.albinus@gmx.de>
8585         * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8586         tests by `ignore-error'.
8587         (tramp-find-shell): Open also a new shell, when cache is already
8588         set.  Reported by Carsten Bormann <cabo@tzi.org>.  (Bug#12148)
8590 2012-08-08  Juri Linkov  <juri@jurta.org>
8592         * bookmark.el: Add `defaults' property to the bookmark record.
8593         (bookmark-current-buffer): Doc fix.
8594         (bookmark-make-record): Add `defaults' property with default values
8595         to the bookmark record.
8596         (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8597         with `bookmark-insert-current-bookmark'.
8598         (bookmark-set): Get `defaults' property from the bookmark record
8599         and use it in `read-from-minibuffer'.
8600         (bookmark-insert-current-bookmark): Remove function.
8602         * info.el (Info-bookmark-make-record): Add `defaults' property
8603         with values of canonical Info node name, the current Info file
8604         name and the current Info node name.  (Bug#12107)
8606 2012-08-08  Juri Linkov  <juri@jurta.org>
8608         * files.el (basic-save-buffer): Use `buffer-name' as the default
8609         of `read-file-name' when buffer is not visiting a file (bug#12128).
8611 2012-08-08  Juri Linkov  <juri@jurta.org>
8613         * info.el (Info-isearch-search): Doc fix.
8614         (Info-search): Change search-failed message from "initial node" to
8615         "end of node" (bug#12078).
8616         (Info-isearch-search): Change `isearch-string-state' to
8617         `isearch--state-string'.
8619 2012-08-08  Glenn Morris  <rgm@gnu.org>
8621         * language/persian.el: Remove file.
8622         * language/misc-lang.el: Move unique part of persian.el here.
8623         * loadup.el: Remove language/persian.
8625 2012-08-08  Óscar Fuentes  <ofv@wanadoo.es>
8627         * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8629 2012-08-08  Fabián Ezequiel Gallina  <fgallina@cuca>
8631         * progmodes/python.el: Fix defsubst warning.
8632         (python-syntax-context) Rename from python-info-ppss-context.
8633         (python-syntax-context-type): Rename from
8634         python-info-ppss-context-type.
8635         (python-syntax-comment-or-string-p): Rename from
8636         python-info-ppss-comment-or-string-p.
8638 2012-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
8640         * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8642 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
8644         * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8645         a defcustom that is quoted with backquote.
8647         * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8648         Fix handling of interactive spec when the body uses return.
8649         (math-do-arg-check, math-define-function-body): Use backquote forms.
8650         * calc/calc-ext.el (math-defcache): Likewise.
8651         * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8652         * allout.el (allout-new-exposure): Likewise.
8653         * calc/calcalg2.el (math-tracing-integral): Likewise.
8654         * info.el (Info-last-menu-item): Likewise.
8655         * emulation/vip.el (vip-loop): Likewise.
8656         * textmodes/artist.el (artist-funcall): Likewise.
8657         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8658         Construct menu-item directly.
8660         * progmodes/autoconf.el (font-lock-syntactic-keywords):
8661         Don't declare.
8663 2012-08-07  Chong Yidong  <cyd@gnu.org>
8665         * simple.el (deactivate-mark): Preserve text properties when
8666         saving the primary selection (Bug#8384).
8668 2012-08-07  Kevin Ryde  <user42@zip.com.au>
8670         * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8671         (woman-parse-numeric-value): On a bad .IP line, issue a warning
8672         and continue processing (Bug#12110).
8674 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8676         * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8677         syntax-propertize-function (bug#10095).
8679 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8681         * help-fns.el (help-fns--key-bindings, help-fns--signature)
8682         (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8683         describe-function-1.
8684         (describe-function-1): Use them.  Move compiler macro after sig.
8685         (help-fns--compiler-macro): Use function-get.  Assume we're already in
8686         standard-output.  Adjust layout to new call order.
8688         * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8689         re-binding a symbol that has a symbol-macro (bug#12119).
8691 2012-08-06  Mohsen BANAN  <libre@mohsen.1.banan.byname.net>
8693         * language/persian.el: New file.  (Bug#11812)
8694         * loadup.el: Add language/persian.el.
8696 2012-08-06  Chong Yidong  <cyd@gnu.org>
8698         * window.el (window--maybe-raise-frame): New function.
8699         (window--display-buffer): Split off from here.
8700         (display-buffer-reuse-window, display-buffer-pop-up-frame)
8701         (display-buffer-pop-up-window, display-buffer-use-some-window):
8702         Obey an inhibit-switch-frame action alist entry.
8703         (display-buffer): Update doc.
8705         * replace.el (occur-after-change-function): Avoid losing focus by
8706         using the inhibit-switch-frame display parameter (Bug#12139).
8708 2012-08-06  Fabián Ezequiel Gallina  <fgallina@cuca>
8710         Make internal shell process buffer names start with space.
8711         * progmodes/python.el (python-shell-make-comint): Add optional
8712         argument INTERNAL.
8713         (run-python-internal): Use it.
8714         (python-shell-internal-get-or-create-process): Check for new
8715         internal buffer names.
8717 2012-08-06  Glenn Morris  <rgm@gnu.org>
8719         * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8720         Do less getting and setting of environment variables.
8722 2012-08-05  Chong Yidong  <cyd@gnu.org>
8724         * proced.el (proced): Add substitution string to docstring to
8725         trigger autoloading of the proced library on C-h f (Bug#1768).
8727         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8728         Don't show defvars which have no second argument (Bug#8638).
8730         * imenu.el (imenu-generic-expression): Move documentation here
8731         from imenu--generic-function.
8732         (imenu--generic-function): Refer to imenu-generic-expression.
8734 2012-08-05  Vegard Øye  <vegard_oye@hotmail.com>  (tiny change)
8736         * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8737         indentation declaration.
8738         (viper-loop): Add indentation declaration (Bug#7025).
8740 2012-08-05  Chong Yidong  <cyd@gnu.org>
8742         * help-fns.el (describe-variable): Add hyperlink for
8743         directory-local variables files.  Improve buffer-local and
8744         permanent-local reporting; suggested by MON KEY (Bug#6644).
8746         * help-mode.el (help-dir-local-var-def): New button type.
8748         * files.el (kill-buffer-hook): Provide a defvar.
8750 2012-08-05  Glenn Morris  <rgm@gnu.org>
8752         * eshell/esh-ext.el (eshell/addpath):
8753         Also update eshell-path-env.  (Bug#12013)
8755 2012-08-05  Chong Yidong  <cyd@gnu.org>
8757         * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8759         * fringe.el (fringe-styles): Add docstring.
8760         (fringe--check-mode): New function.
8761         (set-fringe-mode, set-fringe-style): Use it.
8762         (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8764         * files.el (set-auto-mode): Fix invalid setq call.
8766 2012-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8768         * isearch.el: Misc simplification; use defstruct.
8769         (isearch-mode-map): Dense maps now work like sparse ones.
8770         (isearch--state): New defstruct.
8771         (isearch-string-state, isearch-message-state, isearch-point-state)
8772         (isearch-success-state, isearch-forward-state)
8773         (isearch-other-end-state, isearch-word-state, isearch-error-state)
8774         (isearch-wrapped-state, isearch-barrier-state)
8775         (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8776         replaced by defstruct's accessors.
8777         (isearch--set-state): Rename from isearch-top-state and change
8778         calling convention.
8779         (isearch-push-state): Use new isearch--get-state.
8780         (isearch-toggle-word): Disable regexp when enabling word.
8781         (isearch-message-prefix): Remove unused arg _c-q-hack.
8782         (isearch-message-suffix): Remove unused arg _ellipsis.
8784 2012-08-04  Andreas Schwab  <schwab@linux-m68k.org>
8786         * simple.el (list-processes--refresh): For a server use :host or
8787         :local as the address.
8788         (list-processes): Doc fix.
8790 2012-08-04  Michal Nazarewicz  <mina86@mina86.com>
8792         * lisp/mpc.el: Support password in host argument.
8793         (mpc--proc-connect): Parse and use new password element.
8794         Set mpc-proc variable instead of returning process.
8795         (mpc-proc): Adjust accordingly.
8797 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
8799         * whitespace.el (whitespace-display-mappings): Use Unicode
8800         codepoints, instead of emacs-mule codepoints.  See
8801         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8802         for the details.
8804         * files.el (file-truename): Don't skip symlink-chasing part on
8805         windows-nt.  Incorporate the resolution of 8+3 short aliases on
8806         Windows into the loop that recursively chases symlinks.
8807         Compare directory and its parent case-insensitively on MS-Windows and
8808         MS-DOS.
8810 2012-08-03  Chong Yidong  <cyd@gnu.org>
8812         * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8814         * sort.el (sort-regexp-fields): Doc fix.
8816 2012-08-03  Tassilo Horn  <tsdh@gnu.org>
8818         * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8819         labels regex position point at the expected place.
8821 2012-08-03  MON KEY  <monkey@sandpframing.com>
8823         * net/imap.el (imap-interactive-login, imap-authenticate)
8824         (imap-mailbox-lsub, imap-mailbox-list)
8825         (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8826         (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8827         (imap-parse-response): Doc fix.
8829 2012-08-03  João Távora  <joaotavora@gmail.com>
8831         * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8832         if sexp scanning does not move point (Bug#5734).
8834 2012-08-02  Tassilo Horn  <tsdh@gnu.org>
8836         * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8837         Add listings, minted, and ctable packages.
8838         (reftex-label-alist-builtin): Move listings, minted, and ctable
8839         entries before LaTeX.
8840         (reftex-label-alist): Docfix.
8842 2012-08-02  Bastien Guerry  <bzg@gnu.org>
8844         * replace.el (occur): Fix docstring (bug#12122).
8846 2012-08-02  Glenn Morris  <rgm@gnu.org>
8848         * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
8850 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
8852         Obsolete alias inactivate-current-input-method-function (Bug#10150).
8853         * international/mule-cmds.el: Create
8854         inactivate-current-input-method-function as an obsolete alias for
8855         deactivate-current-input-method-function.  See Katsumi Yamaoka in
8856         <http://bugs.gnu.org/10150#46>.
8858 2012-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
8860         * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
8861         of nested `if's.
8863 2012-08-01  Glenn Morris  <rgm@gnu.org>
8865         * progmodes/autoconf.el (autoconf-definition-regexp):
8866         Add AH_TEMPLATE, adjust submatch numbering.
8867         (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
8868         (autoconf-current-defun-function): Update for above change.
8869         (autoconf-current-defun-function): First skip to end of current word.
8871 2012-08-01  Rupert Swarbrick  <rswarbrick@gmail.com>  (tiny change)
8873         * calendar/cal-html.el (cal-html-insert-agenda-days):
8874         Fix typo.  (Bug#12018)
8876 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
8878         Shell processes: enhancements to startup and CEDET compatibility.
8879         * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
8880         (python-shell-make-comint): accept-process-output at startup.
8881         (run-python-internal): Set inferior-python-mode-hook to nil.
8882         (python-shell-internal-get-or-create-process): call sit-for.
8883         (python-preoutput-result): Add obsolete alias.
8884         (python-shell-internal-send-string): Use it.
8885         (python-shell-send-setup-code): Remove call to
8886         accept-process-output.
8888 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
8890         * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
8891         (Bug#12108)
8893 2012-07-31  Jay Belanger  <jay.p.belanger@gmail.com>
8895         * calc-mode.el (calc-basic-simplification-mode): Rename from
8896         `calc-limited-simplification-mode'.
8897         (calc-alg-simplification-mode): New function.
8898         (calc-set-simplify-mode): Adjust message.
8900         * calc.el (calc-set-mode-line): Adjust mode line display for
8901         basic simplification mode.
8903         * calc-help.el (calc-m-prefix-help): Update help message.
8905         * calc-ext.el (calc-init-extensions): Add bindings and autoloads
8906         for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
8908 2012-07-31  Bastien Guerry  <bzg@gnu.org>
8910         * man.el (man): Fix comment.  (bug#12101)
8912 2012-07-31  Martin Rudalics  <rudalics@gmx.at>
8914         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
8915         Don't return a non-nil value when no suitable buffer was found.
8917 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
8919         * progmodes/python.el (run-python-internal): Disable font lock for
8920         internal shells.
8922 2012-07-30  Stefan Merten  <smerten@oekonux.de>
8924         * textmodes/rst.el: Silence `checkdoc-ispell'.
8925         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8926         (rst-official-version, rst-official-cvs-rev)
8927         (rst-package-emacs-version-alist): Update to upstream V1.3.1.
8928         (rst-mode-map): New key binding.
8930 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
8932         Update .PHONY listings in makefiles.
8933         * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
8934         autoloads, update-subdirs, updates, bzr-update, update-authors,
8935         compile-onefile, compile-calc, backup-compiled-files,
8936         compile-after-backup, compile-one-process, mh-autoloads,
8937         bootstrap-clean, distclean, maintainer-clean.
8939 2012-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
8941         * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
8942         (calc-set-mode-line): Don't display "AlgSimp ".
8944         * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
8945         (calc-lim-simplify-mode): New function.
8946         (calc-set-simplify-mode): Default to 'alg.
8947         (calc-default-simplify-mode): Make algebraic simplifications
8948         the default.
8950         * calc/calc-ext.el (calc-init-extensions): Remove binding for
8951         `calc-alg-simplify-mode'.  Add binding for `calc-lim-simplify-mode'.
8953         * calc/calc-help.el (calc-m-prefix-help): Change messages to
8954         indicate new simplification modes.
8956         * calc/README: Mention new default simplification mode.
8958         * calc/calc.el (math-normalize-error): New variable.
8959         (math-normalize): Set `math-normalize-error' to t
8960         when there's an error.
8962         * calc/calc-alg.el (math-simplify): Don't simplify when
8963         `math-normalize' returns an error.
8965 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
8967         * international/mule-cmds.el (set-locale-environment): Revert last
8968         change, since display-graphic-p returns nil when this function is
8969         called during startup.  Instead...
8971         * term/w32console.el (terminal-init-w32console): ...setup the
8972         keyboard and terminal encoding for TTY sessions here.  (Bug#12082)
8974 2012-07-29  Juri Linkov  <juri@jurta.org>
8976         * simple.el (goto-line): Don't display default line number in the
8977         prompt because it should be displayed by `read-number' (bug#9952).
8978         Add the current line number to the defaults of `goto-line' to
8979         allow its easier modification by users with `M-n' (bug#9201).
8981         * subr.el (read-number): Support multiple default values like in
8982         other minibuffer reading functions.  Replace `read' with
8983         `string-to-number' for consistency with `number-to-string'.
8985 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
8987         deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
8988         * emulation/viper-init.el (viper-deactivate-input-method-action):
8989         Rename from viper-inactivate-input-method-action.
8990         (viper-deactivate-input-method):
8991         Rename from viper-inactivate-input-method.
8992         * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
8993         * international/mule-cmds.el (deactivate-input-method):
8994         Rename from inactivate-input-method.
8995         Also run input-method-deactivate-hook.
8996         (deactivate-current-input-method-function):
8997         Rename from inactivate-current-input-method-function.
8998         (input-method-deactivate-hook): New hook.
8999         (input-method-inactivate-hook): Mark obsolete.
9000         (inactivate-input-method): Mark obsolete.
9002         * international/quail.el (quail-activate):
9003         Also run quail-deactivate-hook.
9004         (quail-deactivate): Rename from quail-inactivate.
9005         * international/robin.el (robin-activate):
9006         Also run robin-deactivate-hook.
9007         (robin-deactivate): Rename from robin-inactivate.
9009 2012-07-29  Chong Yidong  <cyd@gnu.org>
9011         * simple.el (indicate-copied-region): New function.
9012         (kill-ring-save): Split off from here.
9014         * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
9015         (kill-rectangle): Set deactivate-mark to t on read-only error.
9017         * register.el (copy-to-register, copy-rectangle-to-register):
9018         Deactivate the mark, and use indicate-copied-region (Bug#10056).
9019         (append-to-register, prepend-to-register): Call indicate-copied-region.
9021 2012-07-29  Juri Linkov  <juri@jurta.org>
9023         * simple.el (async-shell-command-buffer): New defcustom.
9024         (shell-command): Use it.  (Bug#4719)
9026 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
9028         * international/mule-cmds.el (set-locale-environment): In a
9029         console session on MS-Windows, set up keyboard and terminal
9030         encoding from the OEM codepage, not the ANSI codepage.
9031         (Bug#12055)
9033 2012-07-28  Chong Yidong  <cyd@gnu.org>
9035         * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
9036         gdb-get-location.
9038 2012-07-28  Leo Liu  <sdl.web@gmail.com>
9040         * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
9041         the alist (bug#12029).
9043 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
9045         * makefile.w32-in (custom-deps, finder-data, updates, compile)
9046         (compile-always, compile-first)
9047         ($(lisp)/calendar/cal-loaddefs.el)
9048         ($(lisp)/calendar/diary-loaddefs.el)
9049         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9050         ($(lisp)/net/tramp-loaddefs.el, bootstrap)
9051         ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
9052         instead of on update-subdirs.
9053         (bootstrap-clean): Delete $(lisp)/subdirs.el.
9055 2012-07-28  Chong Yidong  <cyd@gnu.org>
9057         * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
9058         directory if vc-deduce-backend returns nil (Bug#7350).
9060         * simple.el (delete-trailing-lines): New option.
9061         (delete-trailing-whitespace): Obey it (Bug#11879).
9063 2012-07-28  David Engster  <deng@randomsample.de>
9065         * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
9066         Explanation of new 'symbol-qnames feature in doc-strings.
9067         (xml-maybe-do-ns): Return expanded names as plain symbols if
9068         'symbol-qnames was provided in XML-NS argument (Bug#11916).
9069         (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
9071 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
9073         Consistent completion in inferior python with emacs -nw.
9074         * progmodes/python.el (inferior-python-mode): replace "<tab>"
9075         binding in inferior-python-mode-map with "\t".
9076         (python-shell-completion-complete-at-point)
9077         (python-completion-complete-at-point): Remove interactive spec.
9079 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
9081         * calc/calccomp.el (math-compose-expr): Undo previous change.
9083 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
9085         * progmodes/python.el (python-mode-map): Add keybinding for
9086         run-python.
9087         (python-shell-make-comint): Fix pop-to-buffer call.
9088         (run-python): Autoload.  New arg SHOW.
9089         (python-shell-get-or-create-process): Do not pop python process
9090         buffer.
9092 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
9094         * notifications.el (notifications-on-action-signal)
9095         (notifications-on-closed-signal): Use also the bus address for the map.
9096         (notifications-notify, notifications-close-notification)
9097         (notifications-get-capabilities): Add optional argument BUS.
9099 2012-07-27  Tassilo Horn  <tsdh@gnu.org>
9101         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
9102         Add support for the lstlisting and minted environments, and for the
9103         ctable macro.
9104         * textmodes/reftex.el (reftex-compile-variables): Also recognize
9105         labels written in keyvals syntax.
9107 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
9109         * calc/calccomp.el (math-compose-expr): Use parentheses when
9110         there is a product in the denominator of a fraction.
9112 2012-07-26  Eli Zaretskii  <eliz@gnu.org>
9114         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
9115         ($(lisp)/calendar/diary-loaddefs.el)
9116         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9117         ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
9118         Fixes failures in parallel bootstrap because subdirs.el is being
9119         rewritten while the autoload files are built at the same time,
9120         which needs to load subdirs.el.
9122 2012-07-26  Martin Rudalics  <rudalics@gmx.at>
9124         * mouse.el (popup-menu): Fix doc-string and re-indent code.
9125         (mouse-drag-line): Don't exit tracking when a switch-frame or
9126         switch-window event occurs (Bug#12006).
9128 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9130         * mouse.el (popup-menu): Fix last change.
9132 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9134         Autoload from Lisp with more care.  Follow aliases when looking for
9135         function properties.
9136         * subr.el (autoloadp): New function.
9137         (symbol-file): Use it.
9138         (function-get): New function.
9139         * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
9140         autoload-do-load.
9141         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
9142         (lisp-indent-function):
9143         * emacs-lisp/gv.el (gv-get):
9144         * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
9145         * emacs-lisp/byte-opt.el (byte-optimize-form):
9146         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9147         * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
9148         Use function-get.
9149         * emacs-lisp/cl.el: Don't propagate function properties any more.
9151         * speedbar.el (speedbar-add-localized-speedbar-support):
9152         * emacs-lisp/disass.el (disassemble-internal):
9153         * desktop.el (desktop-load-file):
9154         * help-fns.el (help-function-arglist, find-lisp-object-file-name)
9155         (describe-function-1):
9156         * emacs-lisp/find-func.el (find-function-noselect):
9157         * emacs-lisp/elp.el (elp-instrument-function):
9158         * emacs-lisp/advice.el (ad-has-proper-definition):
9159         * apropos.el (apropos-safe-documentation, apropos-macrop):
9160         * emacs-lisp/debug.el (debug-on-entry):
9161         * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
9162         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9163         * calc/calc.el (name): Use autoloadp & autoload-do-load.
9165 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
9167         * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
9168         function, not an obsolete variable (Bug#12046).
9170 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
9172         * faces.el (face-spec-reset-face): Fix last change.  (Bug#12042)
9174 2012-07-25  Christopher Schmidt  <christopher@ch.ristopher.com>
9176         * emacs-lisp/pp.el (pp-display-expression): Select old selected
9177         window only if it is still live (Bug#12034).
9179 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
9181         * subr.el (redirect-frame-focus): Add advertised calling
9182         convention (Bug#12030).
9184 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
9186         Prefer typical American spelling for "acknowledgment".
9187         * vc/add-log.el (change-log-acknowledgment): Rename from
9188         change-log-acknowledgement, with an alias for the old name.
9190 2012-07-25  Jay Belanger  <jay.p.belanger@gmail.com>
9192         * calc-alg.el (math-simplify-divide): Don't cross multiply
9193         in an equation when the lhs is a variable.
9195 2012-07-24  Julien Danjou  <julien@danjou.info>
9197         * net/netrc.el (netrc-find-service-number, netrc-store-data):
9198         Remove, unused.
9200 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
9202         * startup.el (command-line): Don't display an empty user name in
9203         the error message about non-existent home directory, when
9204         init-file-user was set to an empty string.  See
9205         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
9206         for the details and context.
9208 2012-07-22  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9210         * ses.el (ses-cell-formula-aset): New macro.
9211         (ses-cell-references-aset): New macro.
9212         (ses-cell-p): New function.
9213         (ses-rename-cell): Do no longer rely on complex operations like
9214         ses-cell-set-formula or ses-set-cell to change the cell and handle
9215         the undo at the same time, but rather use lower level new macros
9216         `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
9217         the undo directly.  Refresh the mode line.
9219 2012-07-21  Leo Liu  <sdl.web@gmail.com>
9221         * progmodes/cc-cmds.el (c-defun-name):
9222         Use match-string-no-properties instead for consistency.
9224 2012-07-20  Leo Liu  <sdl.web@gmail.com>
9226         * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
9227         (Bug#7879)
9229         * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
9231 2012-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9233         * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
9234         * progmodes/bug-reference.el, misearch.el: Provide themselves
9235         (bug#11915).
9237         * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
9238         of narrowed buffer (bug#11966).
9240 2012-07-20  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9242         * ses.el (ses-rename-cell): Set new name also in reference list of
9243         cells of which the renamed cell depends.
9245 2012-07-20  Masatake YAMATO  <yamato@redhat.com>
9247         * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
9248         to check whether menu-bar is shown or not.  If not shown,
9249         show the menu-bar as a popup menu instead of using tmm.
9250         * mouse.el (popup-menu): Accept `point' as `position' argument.
9252 2012-07-20  Dmitry Gutov  <dgutov@yandex.ru>
9254         * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
9255         up inside string symbol literal (bug#11923).
9257 2012-07-20  Eli Zaretskii  <eliz@gnu.org>
9259         * startup.el (fancy-startup-text): Read the whole tutorial, not
9260         just its first 256 bytes.  Prevents gibberish in display of the
9261         tutorial title.
9263 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
9265         Drop idle buffer compaction due to an absence of the
9266         proved efficiency.
9267         * compact.el: Remove.
9269 2012-07-19  Sam Steingold  <sds@gnu.org>
9271         * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
9272         vc-bzr-pull & vc-bzr-merge-branch.
9273         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
9274         (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
9275         for consistency with compilation-error-regexp-alist.
9276         * vc/vc-git.el (vc-git-error-regexp-alist): Add.
9277         (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
9278         * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
9279         (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
9281 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9283         * emacs-lisp/chart.el: Use lexical-binding.
9284         (chart-emacs-storage): Don't hardcode the list of entries.
9286 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
9288         Next round of tweaks caused by Fgarbage_collect changes.
9289         * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
9291 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
9293         Compact buffers when idle.
9294         * compact.el: New file.
9296 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9298         * subr.el (eventp): Presume that if it looks vaguely like an event,
9299         it's an event (bug#10190).
9301 2012-07-19  Fabián Ezequiel Gallina  <fgallina@cuca>
9303         Enhancements to ppss related code (thanks Stefan).
9304         * progmodes/python.el (python-indent-context)
9305         (python-indent-calculate-indentation, python-indent-dedent-line)
9306         (python-indent-electric-colon, python-nav-forward-block)
9307         (python-mode-abbrev-table)
9308         (python-info-assignment-continuation-line-p): Simplify checks
9309         for ppss context.
9310         (python-info-continuation-line-p): Cleanup.
9311         (python-info-ppss-context): Do not catch 'quote.
9312         (python-info-ppss-context-type)
9313         (python-info-ppss-comment-or-string-p): Simplify.
9315 2012-07-18  Fabián Ezequiel Gallina  <fgallina@cuca>
9317         * progmodes/python.el: Enhancements to eldoc support.
9318         (python-info-current-symbol): New function.
9319         (python-eldoc-at-point): Use python-info-current-symbol.
9320         (python-info-current-defun): Fix cornercase on first defun scan.
9321         (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9322         and signal error when no inferior python process is available.
9324 2012-07-18  Dmitry Gutov  <dgutov@yandex.ru>
9326         * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9327         assume it's always t.
9328         (vc-git-registered): Remove caching, the function is only called
9329         once.
9330         (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9332 2012-07-18  Chong Yidong  <cyd@gnu.org>
9334         * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9336         * simple.el (count-words): Report on narrowing (Bug#9959).
9338         * bindings.el: Bind M-= to count-words.
9340         * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9342 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
9344         * progmodes/sh-script.el (sh-imenu-generic-expression):
9345         Capture a function with `function' keyword and without parentheses
9346         like "function FOO" (bug#11856).
9348 2012-07-18  Tassilo Horn  <tassilo@member.fsf.org>
9350         * window.el (split-window-sensibly): Make WINDOW argument
9351         optional.
9353 2012-07-18  Chong Yidong  <cyd@gnu.org>
9355         * subr.el (keyboard-translate): Doc fix (Bug#7261).
9357         * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9358         and make C-x 8 RET exit isearch (Bug#11439).
9360         * international/iso-transl.el: Move isearch-mode-map key
9361         definitions to isearch.el.
9363 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9365         * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9366         (eieio-defclass): Use gv-define-setter when possible.
9368 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
9370         Reflect recent changes in Fgarbage_collect.
9371         * emacs-lisp/chart.el (chart-emacs-storage): Change to
9372         reflect new format of data returned by Fgarbage_collect.
9374 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9376         New utility functions + python-info-ppss-context fix (Bug#11910).
9377         * progmodes/python.el (python-info-beginning-of-block-statement-p)
9378         (python-info-ppss-comment-or-string-p): New functions.
9379         (python-info-ppss-context): Small fix for string check.
9381 2012-07-17  Juri Linkov  <juri@jurta.org>
9383         * dired-aux.el (dired-do-async-shell-command): Doc fix.
9384         (dired-do-async-shell-command): Don't add `*' at the end of the
9385         command (Bug#11815).
9386         (dired-do-shell-command): Doc fix.
9387         (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9388         Join the individual commands using either "&" or ";" as the
9389         separator depending on the values of these trailing characters.
9390         At the end re-add the trailing "&".  (Bug#10598)
9392         * simple.el (async-shell-command): Sync the interactive spec with
9393         `shell-command'.  Doc fix.
9394         (shell-command): Doc fix.
9396 2012-07-17  Juri Linkov  <juri@jurta.org>
9398         * descr-text.el (describe-char): Fix format args.  (Bug#10129)
9400 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9402         Final renames and doc fixes for movement commands (bug#11899).
9403         * progmodes/python.el (python-nav-beginning-of-statement):
9404         Rename from python-nav-statement-start.
9405         (python-nav-end-of-statement): Rename from
9406         python-nav-statement-end.
9407         (python-nav-beginning-of-block): Rename from
9408         python-nav-block-start.
9409         (python-nav-end-of-block): Rename from python-nav-block-end.
9411 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9413         * progmodes/python.el (python-shell-send-string-no-output):
9414         Allow accept-process-output to quit, keeping shell process ready for
9415         future interactions (Bug#11868).
9417 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9419         * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9421         * emacs-lisp/elint.el (elint-find-args-in-code):
9422         Use help-function-arglist, so as to handle lexical byte-code.
9424         * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9425         change (bug#11826).
9427 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9429         * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9430         Avoid spuriously marking the buffer as modified because of c-is-sws.
9432         * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9433         as not-a-comment (bug#11946).
9435         * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9436         for uninterned vars.
9438         * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9439         Use read-event since we don't really want to read chars but bytes.
9441         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9442         $$..$$ but also $..$ using regexps (bug#11953).
9443         Use tex-verbatim for \url and \path.
9444         (tex-font-lock-keywords): Define as defconst like the others.
9445         (tex-common-initialization): Don't use font-lock-syntax-table any more.
9447 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
9449         * international/mule-cmds.el (ucs-insert): Make it an obsolete
9450         alias for insert-char.
9452 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
9454         * progmodes/python.el: Simplified imenu implementation.
9455         (python-nav-jump-to-defun): Remove command.
9456         (python-mode-map): Use `imenu' instead.
9457         (python-nav-list-defun-positions-cache)
9458         (python-imenu-include-defun-type, python-imenu-make-tree)
9459         (python-imenu-subtree-root-label, python-imenu-index-alist):
9460         Remove vars.
9461         (python-nav-list-defun-positions, python-nav-read-defun)
9462         (python-imenu-tree-assoc, python-imenu-make-element-tree)
9463         (python-imenu-make-tree, python-imenu-create-index):
9464         Remove functions.
9465         (python-mode): Update to interact with imenu by setting
9466         `imenu-extract-index-name-function' only.
9468 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
9470         * progmodes/python.el: Enhancements to navigation commands.
9471         (python-nav-backward-sentence)
9472         (python-nav-forward-sentence): Remove.
9473         (python-nav-backward-statement, python-nav-forward-statement)
9474         (python-nav-statement-start, python-nav-statement-end)
9475         (python-nav-backward-block, python-nav-forward-block)
9476         (python-nav-block-start, python-nav-block-end)
9477         (python-nav-forward-sexp-function)
9478         (python-info-current-line-comment-p)
9479         (python-info-current-line-empty-p): New functions.
9480         (python-indent-context): Use `python-nav-statement-start'.
9482 2012-07-16  Michael Albinus  <michael.albinus@gmx.de>
9484         * eshell/em-ls.el (eshell/ls): Use `apply'.
9486         * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9487         multi-hops, instead of Tramp internals.
9489         * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9491         * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9492         when F1 and F2 are located on different hosts.
9494 2012-07-14  Chong Yidong  <cyd@gnu.org>
9496         * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9497         (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9498         (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9499         (xterm-mouse--read-event-sequence-1000)
9500         (xterm-mouse--read-event-sequence-1006): New functions.  For old
9501         mouse protocol, handle M-mouse-X events correctly.
9502         (xterm-mouse-event): New arg specifying mouse protocol.
9503         (turn-on-xterm-mouse-tracking-on-terminal)
9504         (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9505         sequence to toggle extended coordinates on newer XTerms.
9506         This appears to be harmless on terminals which do not support this.
9508 2012-07-14  Leo Liu  <sdl.web@gmail.com>
9510         Add fringe bitmap indicators for flymake.  (Bug#11253)
9511         * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9512         (flymake-make-overlay): New arg BITMAP.
9513         (flymake-error-bitmap, flymake-warning-bitmap)
9514         (flymake-fringe-indicator-position): New user variables.
9516         * fringe.el: New bitmap exclamation-mark.
9518 2012-07-14  Jan Djärv  <jan.h.d@swipnet.se>
9520         * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9521         also (Bug#7879).
9523 2012-07-14  Chong Yidong  <cyd@gnu.org>
9525         * electric.el (electric-pair-post-self-insert-function): Fix pair
9526         insertion in empty-region case (Bug#11520).
9528 2012-07-14  Chong Yidong  <cyd@gnu.org>
9530         * bindings.el: Consolidate ctl-x-r-map bindings.
9531         Bind copy-rectangle-as-kill to C-x r w.
9533         * rect.el, register.el: Move bindings to bindings.el.
9535 2012-07-14  Reuben Thomas  <rrt@sc3d.org>
9537         * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9539 2012-07-13  Andreas Schwab  <schwab@linux-m68k.org>
9541         * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
9543 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
9545         * bindings.el (top): Use `mapc' instead of `mapcar'.
9547         * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9549 2012-07-13  Michael Albinus  <michael.albinus@gmx.de>
9551         * progmodes/sql.el (sql-comint): Suppress the check for program on
9552         remote hosts.  Reported by Francis Devereux <francis@devrx.org>.
9553         (Bug#11908)
9555 2012-07-13  Chong Yidong  <cyd@gnu.org>
9557         * bindings.el: Assign a non-nil permanent-local property to
9558         per-buffer variables which lack a default value (Bug#11930).
9560         * help-fns.el (describe-variable): In the "automatically becomes
9561         local" notice, take note of permanent-local variables.
9563 2012-07-13  Chong Yidong  <cyd@gnu.org>
9565         * files.el (toggle-read-only): Doc fix and code cleanup.  New arg
9566         to allow printing the message when called from Lisp.
9568         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9569         Remove toggle-read-only.
9571         * bs.el (bs-toggle-readonly):
9572         * buff-menu.el (Buffer-menu-toggle-read-only):
9573         Remove with-no-warnings around toggle-read-only.
9575         * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9576         Remove with-no-warnings around toggle-read-only.
9577         (ffap-read-only, ffap-read-only-other-window)
9578         (ffap-read-only-other-frame): Callers changed.
9580         * help-mode.el: Don't require view package.
9581         (help-mode-finish): Set buffer-read-only instead of calling
9582         toggle-read-only.
9584         * bindings.el (mode-line-toggle-read-only):
9585         * dired.el (dired-toggle-read-only):
9586         * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9587         with non-nil second arg.
9589         * emacs-lisp/eieio-custom.el (eieio-customize-object):
9590         * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9591         directly.
9593 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
9595         * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9596         not incf.
9598 2012-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9600         More CL cleanups and reduction of use of cl.el.
9601         * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9602         * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9603         * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9604         * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9605         * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9606         * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9607         * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9608         * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9609         * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9610         * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9611         * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9612         * eshell/em-cmpl.el, eshell/em-banner.el:
9613         * calendar/parse-time.el: Use cl-lib.
9614         * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9615         * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9616         * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9617         * term/ns-win.el, term.el, shell.el, ps-samp.el:
9618         * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9619         * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9620         * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9621         * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9622         * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9623         * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9624         * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9625         * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9626         `lambda' rather than with `quote'.
9627         (eshell-do-opt): Adjust accordingly.
9628         (eshell-process-option): Simplify.
9629         * eshell/esh-var.el:
9630         * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9631         * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9632         (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9633         to `pcase--dontcare'.
9634         * emacs-lisp/cl.el (labels): Mark obsolete.
9635         (cl--letf, letf): Move to cl-lib.
9636         (cl--letf*, letf*): Remove.
9637         * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9638         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9639         (cl-progv): Rewrite.
9640         (cl--letf, cl-letf): Move from cl.el.
9641         (cl-letf*): New macro.
9642         * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9644 2012-07-11  Michael Albinus  <michael.albinus@gmx.de>
9646         * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9648 2012-07-11  Chong Yidong  <cyd@gnu.org>
9650         * vc/log-edit.el (log-edit-vc-backend): New variable.
9651         (log-edit): Doc fix.
9653         * vc/vc-dispatcher.el (vc-log-edit): New args.  Use PARAMS
9654         argument of log-edit to set up all local variables.
9655         (vc-start-logentry): New optional arg specifying VC backend.
9657         * vc/vc.el (vc-checkin): Use it.
9658         (vc-deduce-fileset): Handle Log Edit buffers.
9659         (vc-diff): Make first argument optional too.
9661         * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9663 2012-07-10  Michael Albinus  <michael.albinus@gmx.de>
9665         * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9666         command, just in case.  The function is not needed anymore.
9667         (eshell-external-command): Do not call `eshell-remote-command'.
9669 2012-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9671         Reduce use of (require 'cl).
9672         * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9673         * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9674         * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9675         * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9676         * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9677         * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9678         * battery.el, avoid.el, abbrev.el: Use cl-lib.
9679         * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9680         * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9681         * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9682         * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9683         * calculator.el, autorevert.el, apropos.el: Don't require CL.
9684         * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9685         (byte-compile-unfold-bcf, byte-compile-check-variable):
9686         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9687         (byte-compile-nilconstp):
9688         * emacs-lisp/autoload.el (make-autoload): Use pcase.
9689         * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9691         * emacs-lisp/gv.el (cond): Make it a valid place.
9692         (if): Simplify slightly.
9694         * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9695         (pcase--self-quoting-p): New function.
9696         (pcase--u1): Use it.
9698 2012-07-10  Glenn Morris  <rgm@gnu.org>
9700         * emacs-lisp/authors.el (authors-fixed-entries):
9701         (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9703 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
9705         Rename configure.in to configure.ac (Bug#11603).
9706         * emacs-lisp/authors.el (authors-canonical-file-name):
9707         * progmodes/autoconf.el (autoconf-mode):
9708         Prefer configure.ac to configure.in.
9710 2012-07-08  Chong Yidong  <cyd@gnu.org>
9712         * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9713         Implement the mouse-1-click-follows-link handling properly.
9715         * info.el (Info-link-keymap): Use follow-link mechanism for
9716         header-line links (Bug#374).
9718         * simple.el (deactivate-mark): Do not set the primary selection
9719         if another program has acquired it (Bug#11772).
9721 2012-07-07  Kevin Ryde  <user42@zip.com.au>
9723         * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9724         (woman-decode-region): Replace escaped-escapes without destroying
9725         bold or underline (Bug#11552).
9726         (woman2-process-escapes): Handle nofill regions (Bug#11591).
9728 2012-07-07  Chong Yidong  <cyd@gnu.org>
9730         * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9731         (interprogram-cut-function, interprogram-paste-function):
9732         Mention that we typically mean the clipboard.
9734 2012-07-06  Glenn Morris  <rgm@gnu.org>
9736         * kmacro.el (kmacro-call-macro): Restore repeat message.  (Bug#11817)
9738         * files.el (toggle-read-only): Restrict message to interactive use.
9740 2012-07-06  Michael Albinus  <michael.albinus@gmx.de>
9742         * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9744         * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9746 2012-07-06  Glenn Morris  <rgm@gnu.org>
9748         * Makefile.in (compile-one-process): Rename from "recompile".
9750         * Makefile.in (bzr-update): "compile" is the same as "recompile
9751         autoloads", but parallelizable, so use that instead.
9753 2012-07-06  Dmitry Gutov  <dgutov@yandex.ru>
9755         * window.el (quit-window): Always restore window height when
9756         it's saved in quit-restore parameter (Bug#11810).
9758 2012-07-06  Glenn Morris  <rgm@gnu.org>
9760         * simple.el (kill-whole-line): Doc tweak.
9762 2012-07-06  Eli Zaretskii  <eliz@gnu.org>
9764         * files.el (file-relative-name): Compare file names
9765         case-insensitively if on MS-Windows or MS-DOS, or if
9766         read-file-name-completion-ignore-case is non-nil.  Don't use
9767         case-fold-search for this purpose.  (Bug#11827)
9769 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
9771         * calendar/cal-dst.el (calendar-current-time-zone):
9772         Return calendar-current-time-zone-cache if non-nil.
9774 2012-07-17  Masatake YAMATO  <yamato@redhat.com>
9775 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
9777         * calendar/cal-dst.el (calendar-current-time-zone):
9778         Return calendar-current-time-zone-cache if non-nil.
9780 2012-07-06  Glenn Morris  <rgm@gnu.org>
9782         * Makefile.in (cvs-update): Remove old alias.
9784 2012-07-05  Michael Albinus  <michael.albinus@gmx.de>
9786         Sync with Tramp 2.2.6-pre.
9788         * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9789         compatible declaration.
9791         * net/tramp-cmds.el (tramp-append-tramp-buffers):
9792         Protect `list-load-path-shadows' call.
9794         * net/tramp-compat.el (top): Require packages, which aren't
9795         autoloaded anymore for XEmacs.  Protect call of
9796         `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9797         compiler.  Do not require tramp-util.el and tramp-vc.el anymore,
9798         it hurts at least for SXEmacs.
9799         (tramp-compat-temporary-file-directory): In XEmacs, there is no
9800         standard-value for `temporary-file-directory'.
9802         * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9803         Redirect stderr to /dev/null.
9804         (tramp-sh-handle-write-region): uid and gid can be floats.
9805         Reported by Russell Sim <russell.sim@gmail.com>.
9806         (tramp-sh-handle-vc-registered): Hide errors.
9807         (tramp-vc-file-name-handler): Use dummy results for `process-file'
9808         and `start-file-process'.
9809         (tramp-maybe-open-connection): Check also whether `non-essential'
9810         is bound.
9812 2012-07-04  Chong Yidong  <cyd@gnu.org>
9814         * xml.el (xml--parse-buffer): Use xml-syntax-table.
9815         (xml-parse-tag): Likewise, and avoid changing entity tables.
9816         (xml-syntax-table): Define from scratch, making sure not to give
9817         x2000 and other Unicode spaces whitespace syntax, since those are
9818         not spaces in XML.
9819         (xml-parse-fragment): Delete unused function.
9820         (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9821         (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9822         (xml-entity-ref, xml-pe-reference-re)
9823         (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9824         (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9825         (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9826         (xml-entity-value-re): Use syntax references in regexps where
9827         possible; no need to define inside a let-binding.
9828         (xml-parse-dtd): Use xml-pe-reference-re.
9829         (xml-entity-or-char-ref-re): New defconst.
9830         (xml-parse-string, xml-substitute-special): Use it.
9832 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9834         * files.el (locate-dominating-file): Allow `name' to be a predicate.
9835         (find-file--read-only): New function.
9836         (find-file-read-only, find-file-read-only-other-window)
9837         (find-file-read-only-other-frame): Use it.
9838         (insert-file-contents-literally): Don't `fset'.
9839         (get-free-disk-space): Use locate-dominating-file.
9841         * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
9842         function is already compiled.
9844         * xml.el (xml-name-regexp): Remove, redundant.  Use xml-name-re.
9846 2012-07-03  Michael Albinus  <michael.albinus@gmx.de>
9848         * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
9849         files on the same host.
9851 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
9853         * help-fns.el (describe-function-1): Only call
9854         help-fns--autoloaded-p when we have a file name.  (Bug#11848)
9856 2012-07-03  Chong Yidong  <cyd@gnu.org>
9858         * xml.el: Protect parser against XML bombs.
9859         (xml-entity-expansion-limit): New variable.
9860         (xml-parse-string, xml-substitute-special): Use it.
9861         (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
9863 2012-07-03  Glenn Morris  <rgm@gnu.org>
9865         * progmodes/bug-reference.el (bug-reference-bug-regexp):
9866         Allow linking to specific messages in debbugs reports (eg 123#5).
9868 2012-07-02  Chong Yidong  <cyd@gnu.org>
9870         * xml.el: Fix entity and character reference expansion, allowing
9871         them to expand into markup as per XML spec.
9872         (xml-default-ns): New variable.
9873         (xml-entity-alist): Use XML spec definitions for lt and amp.
9874         (xml-parse-region): Make first two arguments optional.
9875         Discard text properties.
9876         (xml-parse-tag-1): New function, spun off from xml-parse-tag.
9877         All callers changed.
9878         (xml-parse-tag): Call xml-parse-tag-1.  For backward
9879         compatibility, this function should not modify buffer contents.
9880         (xml-parse-tag-1): Fix opening-tag regexp.
9881         (xml-parse-string): Rewrite, handling entity and character
9882         references properly.
9883         (xml--entity-replacement-text): Signal an error if a parameter
9884         entity is undefined.
9886 2012-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9888         * comint.el (comint-output-filter): Filter out repeated prompts.
9890         * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
9891         and file-name-absolute-p.
9892         (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
9893         internal calls.
9895 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
9897         Spelling fixes.
9898         * emacs-lisp/bytecomp.el (byte-compile--reify-function):
9899         Rename from byte-compile--refiy-function.  All uses changed.
9901 2012-07-01  Chong Yidong  <cyd@gnu.org>
9903         * xml.el (xml--parse-buffer): New function.  Move most of
9904         xml-parse-region here.
9905         (xml-parse-region): Copy region into a temporary buffer, since
9906         parameter entity substitution requires changing buffer contents.
9907         Use xml--parse-buffer.
9908         (xml-parse-file): Use xml--parse-buffer.
9909         (xml-parse-dtd): Make parameter entity substitution work right.
9910         Use proper regexps for ELEMENT declarations (Bug#7172).
9912 2012-06-30  Glenn Morris  <rgm@gnu.org>
9914         * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
9916         * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
9917         Remove outdated and unnecessary dbus declarations.
9919 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
9921         * emacs-lisp/timer.el (timer-until): Subtract results of
9922         float-time, instead of taking float-time of the result of
9923         time-subtract, since float-time signals an error for negative time
9924         arguments.
9926 2012-06-30  Chong Yidong  <cyd@gnu.org>
9928         * xml.el (xml-*-re): Convert defvars into defconsts, and
9929         eval-and-compile them so eval-and-compile works on derivatives.
9930         (xml--entity-replacement-text): Use eval-and-comple.
9932 2012-06-30  Michael Albinus  <michael.albinus@gmx.de>
9934         * vc/vc-git.el (vc-git-registered): Use cache property
9935         `git-registered'.
9936         (vc-git-mode-line-string): Call `vc-working-revision' instead of
9937         `vc-git-working-revision' in order to benefit from the cache.
9938         (vc-git-root): Use cache property `git-root'.  (Bug#11757)
9940 2012-06-30  Dmitry Gutov  <dgutov@yandex.ru>
9942         * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
9943         removed (likely outside Emacs).  (Bug#11757)
9945 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9947         * emacs-lisp/cl-lib.el: Require macroexp.
9949 2012-06-30  Chong Yidong  <cyd@gnu.org>
9951         * xml.el: Implement XML parameter entities.
9952         (xml-parameter-entity-alist): New variable.
9953         (xml-parse-region, xml-parse-fragment): Preserve previous values
9954         of xml-entity-alist and xml-parameter-entity-alist, so that
9955         repeated calls on different documents do not change them.
9956         (xml-parse-tag): Fix doctype regexp.
9957         (xml--entity-replacement-text): New function.
9958         (xml-parse-dtd): Use it.  Don't handle system entities; doing that
9959         properly requires url retrieval which is unimplemented.
9960         (xml-escape-string): Doc fix.
9962 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9964         * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
9966 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
9968         * fringe.el (fringe-mode): Doc fix.
9970 2012-06-29  Michael Albinus  <michael.albinus@gmx.de>
9972         * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
9973         is non-nil.
9974         (ange-ftp-ignore-errors-if-non-essential): New defmacro.
9975         (ange-ftp-file-name-all-completions): Use it.  (Bug#11808)
9977 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
9979         * calendar/cal-dst.el (calendar-current-time-zone):
9980         Return calendar-current-time-zone-cache if non-nil.
9982 2012-06-29  Masatake YAMATO  <yamato@redhat.com>
9984         * progmodes/which-func.el (which-func-format):
9985         Add mouse-face.  (Bug#11698)
9987 2012-06-29  Leo Liu  <sdl.web@gmail.com>
9989         * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
9991 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9993         * minibuffer.el (minibuffer-confirm-exit-commands):
9994         Add completion-at-point (bug#11725).
9996 2012-06-29  Glenn Morris  <rgm@gnu.org>
9998         * progmodes/f90.el (f90-font-lock-keywords-2):
9999         Add some preprocessor elements.  (Bug#10499)
10001 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10003         * progmodes/cperl-mode.el (cperl-update-syntaxification):
10004         Use syntax-propertize (bug#11739).
10006 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
10008         * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
10010 2012-06-28  Julien Danjou  <julien@danjou.info>
10012         * term.el (term-handle-colors-array): Use a set of new faces to
10013         color the terminal.  Also uses :inverse-video property.
10014         (term-default-fg-color): Set to nil by default, deprecate in favor
10015         of `term-face'.
10016         (term-default-bg-color): Set to nil by default, deprecate in favor
10017         of `term-face'.
10018         (term-current-face): Use `term-face' by default.
10019         (term-bold-attribute): Variable deleted.
10021 2012-06-28  Glenn Morris  <rgm@gnu.org>
10023         * simple.el (completion-list-mode-finish):
10024         Don't use toggle-read-only.  (Since completion-list-mode has
10025         a special mode-class, it wasn't doing anything extra anyway.)
10027 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10029         Make inlining of other-mode interpreted functions work (bug#11799).
10030         * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
10031         (byte-compile): Use it to fix compilation of lexical-binding closures.
10032         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
10033         function, if needed.
10035 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10037         * help-mode.el (help-make-xrefs): Don't just withstand
10038         cyclic-variable-indirection but any error in documentation-property.
10040         * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
10041         memory use.
10042         * bindings.el (bindings--define-key): New function.
10043         * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
10044         * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
10045         * bindings.el: Use it to purecopy define-key bindings.
10047         * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
10049         * emacs-lisp/cl.el (flet): Mark obsolete.
10050         * emacs-lisp/cl-macs.el (cl-flet*): New macro.
10051         * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
10052         * progmodes/js.el (js-c-fill-paragraph):
10053         * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
10054         (ebrowse-switch-member-buffer-to-derived-class):
10055         * play/5x5.el (5x5-solver): Use cl-flet.
10057         * emacs-lisp/cl.el: Use lexical-binding.  Fix flet (bug#11780).
10058         (cl--symbol-function): New macro.
10059         (cl--letf, cl--letf*): Use it.
10061         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
10062         Strip "toggle-" if any.
10064 2012-06-27  Glenn Morris  <rgm@gnu.org>
10066         * info.el (Info-default-directory-list): Move here from paths.el.
10067         * paths.el: Remove file, which is now empty.
10068         * loadup.el: No longer load "paths".
10070         * custom.el (custom-initialize-delay): Doc fix.
10072         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
10073         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
10074         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
10075         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
10076         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
10077         * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
10078         * eshell/eshell.el (eshell-defgroup): Remove alias.
10080 2012-06-27  Chong Yidong  <cyd@gnu.org>
10082         * help.el (help-enable-auto-load): New variable.
10084         * help-fns.el (help-fns--autoloaded-p): New function.
10085         (describe-function-1): Refer to a function as "autoloaded" if it
10086         was autoloaded at any time in the past.  Perform autoloading if
10087         help-enable-auto-load is non-nil.
10089 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
10091         * makefile.w32-in (compile, compile-always): Depend on
10092         update-subdirs, not on subdirs.el.  Otherwise, several different
10093         sub-targets of 'bootstrap' running in parallel could
10094         simultaneously write to subdirs.el, producing a garbled file.
10096 2012-06-26  Sam Steingold  <sds@gnu.org>
10098         * files.el (file-name-base): New convenience function.
10099         * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
10100         * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
10101         * progmodes/cc-defs.el, progmodes/cperl-mode.el:
10102         * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
10103         * textmodes/ispell.el, textmodes/reftex-ref.el:
10104         * textmodes/tex-mode.el: Use it.
10105         Did not touch cedet and org because they are maintained elsewhere.
10107 2012-06-26  Martin Rudalics  <rudalics@gmx.at>
10109         * calendar/calendar.el (calendar-exit): Don't try to delete or
10110         iconify last frame.  See:
10111         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
10113 2012-06-25  Jim Diamond  <Jim.Diamond@AcadiaU.ca>  (tiny change)
10115         * server.el (server-process-filter): Remember dir in the
10116         process's `server-client-directory' properties.
10118 2012-06-24  Chong Yidong  <cyd@gnu.org>
10120         * xml.el (xml-parse-tag): Correctly handle comment embedded in
10121         non-tag text.
10123 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
10125         * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
10127 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10129         * help-fns.el (describe-variable): Don't croak when doc is not found.
10130         * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
10131         * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
10132         * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
10133         * emacs-lisp/smie.el (smie-next-sexp): CSE.
10134         * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
10135         ((lambda ..) ..).
10136         * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
10138 2012-06-23  Chong Yidong  <cyd@gnu.org>
10140         * info.el (Info-mouse-follow-link): Accept symbol values of
10141         link-args.  Select window; suggested by Gerhard Kahl (Bug#11672).
10142         (Info-fontify-node): Use Info-link-keymap for all navigation
10143         buttons, with link-args property to perform the desired action.
10144         (Info-link-keymap): Doc fix.
10145         (Info-next-link-keymap, Info-prev-link-keymap)
10146         (Info-up-link-keymap): Delete now-unused keymaps.
10148 2012-06-23  Chong Yidong  <cyd@gnu.org>
10150         * mouse.el (mouse-drag-track): Deactivate the mark before popping.
10152         * progmodes/python.el (python-skeleton-define): Mark abbrevs as
10153         system abbrevs.
10155         * ansi-color.el (ansi-color-apply-on-region): Doc fix.
10157 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10159         * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
10160         (bug#11719).
10162         * minibuffer.el (completion--twq-try): Try to fail more gracefully when
10163         the requote function doesn't work properly (bug#11714).
10165 2012-06-23  Glenn Morris  <rgm@gnu.org>
10167         * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
10169 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10171         Further GV/CL cleanups.
10172         * emacs-lisp/gv.el (gv-get): Autoload functions to find their
10173         gv-expander.
10174         (gv--defun-declaration): New function.
10175         (defun-declarations-alist): Use it.
10176         (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
10177         (gv-place): Autoload.
10178         * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
10179         original definition of dotimes and dolist.
10180         * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
10181         (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
10182         * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
10183         (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10184         (cl-ninth, cl-tenth): Move gv handler to the function's definition.
10185         * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
10186         to the function's definition.
10187         * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
10188         * window.el:
10189         * files.el:
10190         * faces.el:
10191         * env.el: Don't use CL.
10193 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10195         Support higher-resolution time stamps (Bug#9000).
10197         * calendar/time-date.el (with-decoded-time-value): New arg
10198         PICO-SYMBOL in VARLIST.  It's optional, for backward compatibility.
10199         (encode-time-value): New optional arg PICO.  New type 3.
10200         (time-to-seconds) [!float-time]: Support the new picoseconds
10201         component if it's used.
10202         (seconds-to-time, time-subtract, time-add):
10203         Support ps-resolution time stamps as well.
10205         * emacs-lisp/timer.el (timer): New component psecs.  All uses changed.
10206         (timerp): Timer vectors now have length 9, not 8.
10207         (timer--time): Support new-style (4-part) time stamps.
10208         (timer-next-integral-multiple-of-time): Time stamps now have
10209         picosecond resolution, so take a bit more care about rounding.
10210         (timer-relative-time, timer-inc-time): New optional arg psecs.
10211         (timer-set-time-with-usecs): Set psecs to 0.
10212         (timer--activate): Check psecs component, too.
10214         * proced.el (proced-time-lessp): Support ps-resolution stamps.
10216 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10218         * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
10219         Move the non-essential binding to the post/pre-command-hook where it is
10220         more obviously correct.
10222         * subr.el (read-passwd): Don't use a history at all.
10223         * savehist.el (savehist-save): Remove password saved accidentally
10224         because of the above bug.
10226 2012-06-22  Bastien Guerry  <bzg@gnu.org>
10228         * files.el (toggle-read-only): Display a message telling whether
10229         the buffer is read-only or not (bug#11726).
10231 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10233         * emacs-lisp/gv.el: New file.
10234         * subr.el (push, pop): Extend to generalized variables.
10235         * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
10236         * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
10237         * emacs-lisp/cl-macs.el: Require gv.  Use gv-define-setter,
10238         gv-define-simple-setter, and gv-define-expander.
10239         Remove setf-methods defined in gv.  Rename cl-setf -> setf.
10240         (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
10241         (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
10242         (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
10243         (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
10244         gv-letplace.
10245         (cl-defstruct): Don't define setf-method any more.
10246         * emacs-lisp/cl.el (flet): Don't autoload.
10247         (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
10248         (define-setf-expander, defsetf, define-modify-macro)
10249         (cl-struct-setf-expander): Move from cl-lib.el.
10250         * emacs-lisp/syntax.el:
10251         * emacs-lisp/ewoc.el:
10252         * emacs-lisp/smie.el:
10253         * emacs-lisp/cconv.el:
10254         * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
10255         (timer--time): Use gv-define-simple-setter.
10256         * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
10257         to avoid coding-system problems in subr.el.  Adjust all users.
10258         (macroexp--maxsize, macroexp-small-p): New functions.
10259         * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
10260         * scroll-bar.el (scroll-bar-mode):
10261         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
10262         (normal-erase-is-backspace-mode): Don't use the `eq' place.
10263         * winner.el (winner-configuration, winner-make-point-alist)
10264         (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
10265         * files.el (locate-file-completion-table): Avoid list*.
10267 2012-06-22  Chong Yidong  <cyd@gnu.org>
10269         * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
10270         (dired-create-files): Doc fix (Bug#11329).
10271         (dired-do-copy): Doc fix (Bug#11334).
10272         (dired-mark-read-string): Doc fix (Bug#11553).
10274         * dired.el (dired-recursive-copies, dired-recursive-deletes):
10275         Doc fix (Bug#11326).
10276         (dired-make-relative): Doc fix (Bug#11332).  Remove unused arg.
10277         (dired-dwim-target): Doc fix.
10279         * wdired.el (wdired-mode): Doc fix.
10281 2012-06-22  Glenn Morris  <rgm@gnu.org>
10283         * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
10284         (pcmpl-rpm-cache-stamp-file): New constant.
10285         (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
10286         (pcmpl-rpm-packages): Optionally cache list of packages.
10288         * pcmpl-rpm.el (pcmpl-rpm): New group.
10289         (pcmpl-rpm-query-options): New option.
10290         (pcmpl-rpm-packages): No need to inline it.
10291         Use pcmpl-rpm-query-options.
10293         * calendar/calendar.el (calendar-in-read-only-buffer):
10294         Avoid some needless mode changes.
10296 2012-06-21  Chong Yidong  <cyd@gnu.org>
10298         * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
10299         (desktop-path): Remove . from the default value (Bug#10977).
10300         (desktop-read): Use user-emacs-directory if desktop-path is nil.
10302 2012-06-20  Chong Yidong  <cyd@gnu.org>
10304         * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
10306 2012-06-20  David Röthlisberger  <david@rothlis.net>  (tiny change)
10308         * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
10309         (bug#11201).
10311 2012-06-20  Chong Yidong  <cyd@gnu.org>
10313         * term.el (term-window-width): Handle the case of a missing right
10314         fringe (Bug#8837).
10315         (term-check-size): Use window-text-height (Bug#5445).
10316         (term-mode): Use define-derived-mode.  Minor cleanups.
10317         Set font-lock-defaults (Bug#7692).
10318         (term-move-columns, term-insert-char, term-emulate-terminal)
10319         (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10321 2012-06-20  Michael Albinus  <michael.albinus@gmx.de>
10323         * net/ange-ftp.el (ange-ftp-get-passwd):
10324         Bind `enable-recursive-minibuffers'.
10325         (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10327 2012-06-19  David Röthlisberger  <david@rothlis.net>  (tiny change)
10329         * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10331 2012-06-19  Glenn Morris  <rgm@gnu.org>
10333         * progmodes/python.el (python-mode): Derive from prog-mode.
10335 2012-06-19  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
10337         * emulation/edt.el (edt-default-menu-bar-update-buffers)
10338         (edt-user-menu-bar-update-buffers): New functions.
10339         (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10341 2012-06-19  Chong Yidong  <cyd@gnu.org>
10343         * subr.el (with-selected-window): Preserve the selected window's
10344         terminal's top-frame (Bug#4702).
10346         * window.el (save-selected-window): Likewise.
10348 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10350         * progmodes/python.el (python-rx-constituents): Move backquote.
10351         (python-skeleton-define, python-define-auxiliary-skeleton):
10352         Use `declare'.
10354 2012-06-18  Michael Albinus  <michael.albinus@gmx.de>
10356         * minibuffer.el (read-file-name-default): Revert the patch from
10357         2012-06-17.
10359 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10361         * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10362         (pcase--u1, pcase--q1): Don't use apply-partially.
10364 2012-06-18  Glenn Morris  <rgm@gnu.org>
10366         * progmodes/python.el (python-proc, python-buffer)
10367         (python-send-receive, python-send-string): Fix obsolete versions.
10369 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
10371         * window.el (special-display-p): Completely remove stringp
10372         check.  Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10374 2012-06-17  Michael Albinus  <michael.albinus@gmx.de>
10376         * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10378         * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10380         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10381         * net/tramp-sh.el (tramp-maybe-open-connection):
10382         Throw if `non-essential' is non-nil.
10384 2012-06-17  Martin Rudalics  <rudalics@gmx.at>
10386         * window.el (special-display-p): Signal an error if BUFFER-NAME
10387         is not a string (Bug#11713).
10389 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
10391         * progmodes/python.el (python-info-beginning-of-backslash):
10392         Rename from python-info-beginning-of-backlash, as a spelling fix.
10394 2012-06-17  Chong Yidong  <cyd@gnu.org>
10396         * term.el (term-emulate-terminal): If term-check-size is called,
10397         move point to the process mark without resetting point (Bug#4635).
10399 2012-06-17  Glenn Morris  <rgm@gnu.org>
10401         * international/mule-cmds.el (mule-menu-keymap)
10402         (set-language-environment, set-locale-environment): Doc tweaks.
10404 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
10406         * cus-face.el (custom-face-attributes): Add wave-style underline
10407         attribute.
10408         * faces.el (set-face-attribute): Update docstring to describe
10409         wave-style underline attribute.
10411 2012-06-16  Chong Yidong  <cyd@gnu.org>
10413         * term/xterm.el (terminal-init-xterm): Discard input before
10414         querying background mode (Bug#10959).
10416 2012-06-16  Stefan Merten  <smerten@oekonux.de>
10418         * textmodes/rst.el: Added and corrected some comments.
10419         (rst-re-alist-def): Improve symbol syntax.
10420         (rst-mode-syntax-table): Correct syntax entries.
10421         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10422         (rst-official-version, rst-official-cvs-rev): Update version
10423         information.
10425 2012-06-15  Juanma Barranquero  <lekktu@gmail.com>
10427         * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10428         in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10430 2012-06-15  Fabián Ezequiel Gallina  <fgallina@cuca>
10432         * progmodes/python.el: New python.el merge.
10433         (python-guess-indent): Obsolete var.
10434         (python-indent-guess-indent-offset): New defcustom.
10435         (python-indent): Obsolete var.
10436         (python-indent-offset): New defcustom.
10437         (python-python-command, python-jython-command): Delete var.
10438         (python-shell-interpreter): New defcustom.
10439         (python-pdbtrack-do-tracking-p): Delete var.
10440         (python-pdbtrack-activate): New defcustom.
10441         (python-use-skeletons): Obsolete var.
10442         (python-skeleton-autoinsert): New defcustom.
10443         (inferior-python-filter-regexp, python-continuation-offset)
10444         (python-honour-comment-indentation, python-indent-string-contents)
10445         (python-jython-packages, python-mode-hook)
10446         (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10447         (python-shell-prompt-alist)
10448         (python-source-modes): Delete defcustoms.
10449         (python-check-buffer-name, python-eldoc-setup-code)
10450         (python-eldoc-string-code, python-ffap-setup-code)
10451         (python-ffap-string-code, python-fill-comment-function)
10452         (python-fill-decorator-function, python-fill-paren-function)
10453         (python-fill-string-function, python-imenu-include-defun-type)
10454         (python-imenu-make-tree, python-imenu-subtree-root-label)
10455         (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10456         (python-shell-compilation-regexp-alist)
10457         (python-shell-completion-module-string-code)
10458         (python-shell-completion-pdb-string-code)
10459         (python-shell-completion-setup-code)
10460         (python-shell-completion-string-code)
10461         (python-shell-enable-font-lock, python-shell-exec-path)
10462         (python-shell-extra-pythonpaths)
10463         (python-shell-internal-buffer-name, python-shell-interpreter-args)
10464         (python-shell-process-environment)
10465         (python-shell-prompt-block-regexp)
10466         (python-shell-prompt-output-regexp)
10467         (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10468         (python-shell-send-setup-max-wait, python-shell-setup-codes)
10469         (python-shell-virtualenv-path): New defcustoms.
10470         (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10471         (inferior-python-mode-syntax-table, python--prompt-regexp)
10472         (python-buffer, python-command python-python-command)
10473         (python-default-template, python-imports, python-indent-index)
10474         (python-indent-list, python-indent-list-length)
10475         (python-mode-running, python-pdbtrack-is-tracking-p)
10476         (python-preoutput-continuation, python-preoutput-leftover)
10477         (python-preoutput-result, python-preoutput-skip-next-prompt)
10478         (python-prev-dir/file, python-recursing)
10479         (python-saved-check-command, python-version-checked)
10480         (python-which-func-length-limit)
10481         (view-return-to-alist): Delete vars.
10482         (python-check-custom-command, python-dotty-syntax-table)
10483         (python-imenu-index-alist, python-indent-current-level)
10484         (python-indent-dedenters, python-indent-levels)
10485         (python-nav-beginning-of-defun-regexp)
10486         (python-nav-list-defun-positions-cache)
10487         (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10488         (python-shell-internal-buffer)
10489         (python-skeleton-available): New vars.
10490         (def-python-skeleton): Delete macro.
10491         (python-skeleton-define): New macro.
10492         (python-define-auxiliary-skeleton, python-rx): New macros.
10493         (python-insert-class): Delete command.
10494         (python-skeleton-class): New command.
10495         (python-insert-def): Delete command.
10496         (python-skeleton-def): New command.
10497         (python-insert-for): Delete command.
10498         (python-skeleton-for): New command.
10499         (python-insert-if): Delete command.
10500         (python-skeleton-if): New command.
10501         (python-insert-try/except, python-insert-try/finally): Delete commands.
10502         (python-skeleton-try): New command.
10503         (python-insert-while): Delete command.
10504         (python-skeleton-while): New command.
10505         (python-backspace): Delete command.
10506         (python-indent-dedent-line-backspace): New command.
10507         (python-electric-colon): Delete command.
10508         (python-indent-electric-colon): New command.
10509         (python-guess-indent): Delete command.
10510         (python-indent-guess-indent-offset): New command.
10511         (python-shift-left): Delete command.
10512         (python-indent-shift-left): New command.
10513         (python-shift-right): Delete command.
10514         (python-indent-shift-right): New command.
10515         (python-find-function): Delete command.
10516         (python-nav-jump-to-defun): New command.
10517         (python-next-statement): Delete command.
10518         (python-nav-forward-sentence): New command.
10519         (python-previous-statement): Delete command.
10520         (python-nav-backward-sentence): New command.
10521         (python-fill-paragraph): Delete command.
10522         (python-fill-paragraph-function): New command.
10523         (python-send-buffer): Delete command.
10524         (python-shell-send-buffer): New command.
10525         (python-send-defun): Delete command.
10526         (python-shell-send-defun): New command.
10527         (python-send-region, python-send-region-and-go): Delete commands.
10528         (python-shell-send-region)
10529         (python-shell-switch-to-shell): New commands.
10530         (python-send-string): Delete command.
10531         (python-shell-send-string): New command.
10532         (python-switch-to-python): Delete command.
10533         (python-shell-switch-to-shell): New command.
10534         (python-describe-symbol): Delete command.
10535         (python-eldoc-at-point): New command.
10536         (python--set-prompt-regexp, python-args-to-list)
10537         (python-after-info-look, python-check-version)
10538         (python-check-comint-prompt, python-find-imports)
10539         (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10540         (python-unload-function, python-expand-template)
10541         (python-maybe-jython, python-preoutput-filter)
10542         (python-pdbtrack-get-source-buffer)
10543         (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10544         (python-pdbtrack-toggle-stack-tracking)
10545         (python-pdbtrack-track-stack-file, python-initial-text)
10546         (python-first-word, python-comment-line-p, python-send-command)
10547         (python-setup-brm, python-sentinel, python-set-proc)
10548         (python-skip-out, python-input-filter, python-outdent-p)
10549         (python-outline-level, python-backslash-continuation-line-p)
10550         (python-end-of-block, python-end-of-statement, python-mark-block)
10551         (python-beginning-of-block, python-beginning-of-statement)
10552         (python-blank-line-p, python-beginning-of-string)
10553         (python-open-block-statement-p): Delete functions.
10554         (python-indent-line, python-indent-line-1): Delete functions.
10555         (python-indent-line): New function.
10556         (python-indentation-levels): Delete function.
10557         (python-indent-calculate-levels): New function.
10558         (python-proc): Delete function.
10559         (python-shell-get-process): New function.
10560         (python-send-receive): Delete function.
10561         (python-shell-send-string-no-output): New function.
10562         (python-module-path): Delete function.
10563         (python-ffap-module-path): New function.
10564         (python-completion-at-point)
10565         (python-symbol-completions): Delete functions.
10566         (python-completion-complete-at-point): New function.
10567         (python-load-file): Delete function.
10568         (python-shell-send-file): New function.
10569         (python-calculate-indentation): Delete function.
10570         (python-indent-calculate-indentation): New function.
10571         (python-skip-comments/blanks): Delete function.
10572         (python-util-forward-comment): New function.
10573         (python-continuation-line-p): Delete function.
10574         (python-info-continuation-line-p): New function.
10575         (python-which-func, python-current-defun): Delete function.
10576         (python-info-current-defun): New function.
10577         (python-beginning-of-defun): Delete function.
10578         (python-nav-beginning-of-defun): New function.
10579         (python-close-block-statement-p)
10580         (python-block-end-p): Delete function.
10581         (python-info-closing-block): New function.
10582         (python-comint-output-filter-function)
10583         (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10584         (python-fill-comment, python-fill-decorator, python-fill-paren)
10585         (python-fill-string, python-imenu-make-element-tree)
10586         (python-imenu-make-tree, python-imenu-tree-assoc)
10587         (python-indent-context, python-indent-dedent-line)
10588         (python-indent-line-function)
10589         (python-indent-post-self-insert-function)
10590         (python-indent-toggle-levels)
10591         (python-info-assignment-continuation-line-p)
10592         (python-info-beginning-of-backlash)
10593         (python-info-block-continuation-line-p)
10594         (python-info-closing-block-message)
10595         (python-info-line-ends-backslash-p)
10596         (python-info-looking-at-beginning-of-defun)
10597         (python-info-ppss-context, python-info-ppss-context-type)
10598         (python-nav-list-defun-positions, python-nav-read-defun)
10599         (python-nav-sentence-end, python-nav-sentence-start)
10600         (python-pdbtrack-comint-output-filter-function)
10601         (python-pdbtrack-set-tracked-buffer)
10602         (python-shell-calculate-exec-path)
10603         (python-shell-calculate-process-environment)
10604         (python-shell-completion--do-completion-at-point)
10605         (python-shell-completion--get-completions)
10606         (python-shell-completion-complete-at-point)
10607         (python-shell-completion-complete-or-indent)
10608         (python-shell-get-or-create-process)
10609         (python-shell-get-process-name)
10610         (python-shell-internal-get-or-create-process)
10611         (python-shell-internal-get-process-name)
10612         (python-shell-internal-send-string, python-shell-make-comint)
10613         (python-shell-parse-command, python-shell-send-setup-code)
10614         (python-skeleton-add-menu-items)
10615         (python-util-clone-local-variables, python-util-position)
10616         (run-python-internal, python-indentation-levels)
10617         (python-nav-beginning-of-defun)
10618         (python-completion-complete-at-point): New functions.
10619         (run-python): Change arguments.  New API requirements.
10621 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10623         * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10624         (bug#11649).
10626         * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10627         (macroexp--expand-all): Use it.
10629         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10630         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10631         Use `cl-function' instead.
10633 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
10635         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10636         Suggested by Stefan Monnier while discussing bug#11657.
10638 2012-06-14  Sam Steingold  <sds@gnu.org>
10640         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10642 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
10644         * play/doctor.el (doctor-doc): Remove parameter and use
10645         doctor-sent instead of sent.
10646         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
10648 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10650         * files.el: Require cl-lib.
10651         (file-name-non-special): Replace case -> cl-case.
10653         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10655         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10656         mapping from #' to function*.
10658 2012-06-13  Chong Yidong  <cyd@gnu.org>
10660         * mouse.el (mouse-drag-track): Do not set the mark if the user
10661         releases the mouse without selecting anything (Bug#11588).
10663 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10665         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10666         as well (bug#11646).
10668         * loadup.el: Count byte-code functions as well.
10670         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10671         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10673         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10674         (bug#11649).  Add cl-defun and cl-defmacro.
10676 2012-06-13  Drew Adams  <drew.adams@oracle.com>
10678         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10679         Fix last change.
10681 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
10683         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10684         Otherwise, it blocks in batch mode.
10686 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
10688         * help-mode.el (bookmark-make-record-default): Declare.
10690 2012-06-13  Chong Yidong  <cyd@gnu.org>
10692         * emacs-lisp/package.el (list-packages): Compute a list of
10693         packages that are newly-available since the last list-packages
10694         invocation.
10695         (package-menu--new-package-list): New var.
10696         (package-menu--generate, package-menu--print-info)
10697         (package-menu--status-predicate, package-menu-mark-install):
10698         Handle new status label "new".
10700 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10702         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10703         conversion to backquotes.
10705 2012-06-12  Chong Yidong  <cyd@gnu.org>
10707         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10708         Rename from gud-inhibit-global-bindings.
10710         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10712         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10713         hook from nxml-glyph-set-hook.
10715         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10716         declaration.
10718         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10720         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10721         Convert to defcustom.
10723 2012-06-12  Drew Adams  <drew.adams@oracle.com>
10725         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10726         New functions.
10727         (help-mode): Use them.
10729 2012-06-11  Glenn Morris  <rgm@gnu.org>
10731         * progmodes/fortran.el (fortran-font-lock-keywords-3):
10732         Use preprocessor face for directives.
10733         (fortran-directive-re): Doc fix.
10735 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10737         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10738         conversion to backquotes (bug#11652).
10740         Fix compiler-expansion of CL's cXXr functions (bug#11673).
10741         * emacs-lisp/cl-lib.el (cl--defalias): New function.
10742         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10743         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10744         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10745         (cl-ninth, cl-tenth): Mark them as inlinable.
10746         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10747         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10748         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10749         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10750         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10751         (cl-list*, cl-adjoin): Don't put an autoload manually.
10752         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10753         (cl--compiler-macro-list*): Add autoload cookie.
10754         (cl--compiler-macro-cXXr): New function.
10756         * help-fns.el (help-fns--compiler-macro): New function extracted from
10757         describe-function-1; follow aliases and use `compiler-macro' property.
10758         (describe-function-1): Use it.
10760 2012-06-11  Chong Yidong  <cyd@gnu.org>
10762         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10763         is uninstalled, if imagemagick is installed.
10765 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10767         * emacs-lisp/cl-lib.el: Use lexical-binding.
10768         (cl-map-extents, cl-maclisp-member): Remove.
10769         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10770         (cl--set-substring, cl--block-wrapper, cl--block-throw)
10771         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10772         * emacs-lisp/cl-extra.el: Use lexical-binding.
10773         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10774         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10775         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10776         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10777         * emacs-lisp/cl-seq.el: Use lexical-binding.
10778         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10779         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10780         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10781         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10782         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10783         CL's internals.
10785 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
10787         Sync with Tramp 2.2.6-pre.
10789         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10790         `print-length' and `print-level' to nil, in order to avoid
10791         truncation.  Reported by Christopher Schmidt
10792         <christopher@ristopher.com>.
10794         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10796         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10797         New defmacro.
10798         (tramp-compat-copy-directory): Add optional argument
10799         COPY-CONTENTS.  It is not handled yet.
10801         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10802         (tramp-ftp-file-name-p): Simplify.
10804         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10805         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10806         connection vector.
10808         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10809         (tramp-methods): Do not use `tramp-password-end-of-line'.
10810         (tramp-completion-function-alist-putty): Handle UNIX case.
10811         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10812         (tramp-do-file-attributes-with-stat)
10813         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10814         gid as real numbers.  They could run out of integer range on cygwin.
10815         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10816         (tramp-sh-handle-expand-file-name): Handle hops.
10817         (tramp-open-connection-setup-interactive-shell):
10818         Use `tramp-cleanup'.  Move check for busyboxes ...
10819         (tramp-find-shell): ... here.  Simplify implementation.
10820         Set "remote-shell" property also for alternative shells.
10821         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10822         If failing, a regular file would be written otherwise.
10823         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10824         (tramp-find-inline-encoding): Cache the coding commands in the
10825         process cache.  Apply test command on the remote side, if defined.
10826         (tramp-find-inline-compress): Cache the compress commands in the
10827         process cache.
10828         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10829         when requested.  Handle hops.
10830         (tramp-current-connection): New defvar.
10831         (tramp-maybe-open-connection): Use `tramp-cleanup'.
10832         Throw `suppress', if there was a failed connection shortly before.
10833         Handle user interrupt.  (Bug#10187)
10834         (tramp-get-inline-compress, tramp-get-inline-coding):
10835         Read connection properties from the process cache.
10837         * net/tramp-smb.el (tramp-smb-server-version)
10838         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
10839         New defconsts.
10840         (tramp-smb-prompt): Extend for powershell prompt.
10841         (tramp-smb-file-name-handler-alist): Add handlers for
10842         `process-file', `shell-command' and `start-file-process'.
10843         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
10844         (tramp-smb-winexe-shell-command-switch): New defcustoms.
10845         (tramp-smb-file-name-p): Simplify.
10846         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
10847         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
10848         (tramp-smb-shell-quote-argument): New defuns.
10849         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
10850         Implement using "tar".  By this, time-stamps are preserved.
10851         (tramp-smb-handle-copy-file): Handle also the case of directories.
10852         (tramp-smb-do-file-attributes-with-stat)
10853         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
10854         Use `tramp-get-connection-buffer').
10855         (tramp-smb-handle-rename-file): Use "rename", when source and
10856         target are on the same share.
10857         (tramp-smb-maybe-open-connection): Handle wrong passwords.
10858         Use `tramp-smb-server-version'.
10859         (tramp-smb-wait-for-output): Remove prompt.
10861         * net/tramp.el (top): Require 'cl.
10862         (tramp-methods, tramp-rsh-end-of-line):
10863         Remove `tramp-password-end-of-line' from docstring.
10864         (tramp-save-ad-hoc-proxies): New defcustom.
10865         (tramp-completion-function-alist): Adapt docstring.
10866         (tramp-default-password-end-of-line): Remove defcustom.
10867         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
10868         (tramp-user-regexp, tramp-file-name-regexp-unified)
10869         (tramp-file-name-regexp-url): Extend regexp by hop separator.
10870         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
10871         (tramp-remote-file-name-spec-regexp): New defconst.
10872         (tramp-file-name-structure): Extend structure for hops.
10873         (tramp-get-method-parameter): Move up.
10874         (tramp-file-name-p, tramp-dissect-file-name)
10875         (with-parsed-tramp-file-name): Handle hops.
10876         (tramp-file-name-hop): New defun.
10877         (tramp-make-tramp-file-name): New optional arg HOP.
10878         (tramp-message-show-progress-reporter-message): New defvar.
10879         (tramp-with-progress-reporter): Use it.  We cannot use
10880         `tramp-message-show-message' here, because this suppresses also
10881         error buffers.
10882         (tramp-error-with-buffer): Suppress buffer view, if
10883         `tramp-message-show-message' is nil.
10884         Use `tramp-get-connection-buffer'.
10885         (tramp-cleanup): New defun.
10886         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
10887         (tramp-file-name-handler): If `debug-on-error' is set, propagate
10888         an error unchanged.
10889         (tramp-completion-handle-file-name-all-completions): Handle hops.
10890         Fix an error when called from ido.
10891         (tramp-completion-dissect-file-name): Use better local variable
10892         name.  Add hop to the vector.
10893         (tramp-handle-insert-file-contents): Use progress-reporter for the
10894         whole scenario.
10895         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
10896         to `t'.
10897         (tramp-check-for-regexp): Simplify search.
10898         (tramp-enter-password): Remove it.  Move implementation ...
10899         (tramp-action-password): ... here.
10900         (tramp-mode-string-to-int, tramp-local-host-p)
10901         (tramp-make-tramp-temp-file, tramp-read-passwd)
10902         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
10903         Set tramp-autoload cookie.
10905         * net/trampver.el: Update release number.
10907 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10908             Michael Albinus  <michael.albinus@gmx.de>
10910         * net/tramp.el (tramp-set-completion-function): Fix docstring.
10911         (tramp-parse-group, tramp-parse-file)
10912         (tramp-parse-shostkeys-sknownhosts): New defuns.
10913         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
10914         (tramp-parse-shosts-group, tramp-parse-sconfig)
10915         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
10916         (tramp-parse-sknownhosts, tramp-parse-hosts)
10917         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
10918         Use them.
10919         (tramp-parse-passwd-group, tramp-parse-netrc-group)
10920         (tramp-parse-putty-group): Don't narrow.
10921         (tramp-parse-putty): Make a loop.
10922         (tramp-file-name-handler): Catch the `suppress' signal.
10924 2012-06-11  Chong Yidong  <cyd@gnu.org>
10926         * image.el (imagemagick-register-types): Put the ImageMagick entry
10927         at the end of image-type-file-name-regexps.
10929 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
10931         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
10932         (pcase, pcase-let*, pcase-dolist): Use them.
10934 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10936         * emacs-lisp/pcase.el (pcase--let*): New function.
10937         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
10938         (pcase--expand): Use macroexp-let².
10940 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10942         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
10943         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
10944         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
10945         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
10946         * emacs-lisp/derived.el: Use pcase instead of `cl'.
10947         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
10949 2012-06-10  Glenn Morris  <rgm@gnu.org>
10951         * mail/rmail.el (rmail-yank-current-message): Leave point at
10952         correct position.  (Bug#11660)
10954 2012-06-10  Chong Yidong  <cyd@gnu.org>
10956         * allout-widgets.el: Fix code header.
10958 2012-06-10  Chong Yidong  <cyd@gnu.org>
10960         * cus-edit.el (customize-changed-options-previous-release):
10961         Bump to 24.1.
10963 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
10965         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
10967 2012-06-09  Chong Yidong  <cyd@gnu.org>
10969         * ebuff-menu.el (electric-buffer-list): Preserve header line.
10971 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
10973         * window.el (special-display-popup-frame): Don't use
10974         window--display-buffer (Bug#11651).
10976 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
10978         Fix parallel builds: make sure loaddefs.el is not being written
10979         while Lisp files are compiled.
10980         (compile): Don't depend on 'mh-autoloads'.
10981         (compile-CMD, compile-SH): Depend on 'autoloads'.
10982         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
10984         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
10986 2012-06-09  Chong Yidong  <cyd@gnu.org>
10988         * face-remap.el (face-remap-add-relative, face-remap-set-base)
10989         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
10990         Doc fixes (Bug#11225).
10992 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
10994         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
10995         a function if there's a clear indication that it has a compiler-macro.
10996         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
10997         (macro-declarations-alist): Add arglist to declaration functions.
10998         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
10999         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
11000         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
11001         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
11002         Also add autoload to find the compiler macro.
11003         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
11004         (cl--compiler-macro-member, cl--compiler-macro-assoc)
11005         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
11006         (cl--compiler-macro-get): New functions, replacing calls to
11007         cl-define-compiler-macro.
11008         (cl-typep) [compiler-macro]: Use macroexp-let².
11010 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
11012         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
11013         string properly, fixes Bug#11473.
11015 2012-06-08  Chong Yidong  <cyd@gnu.org>
11017         * faces.el (set-face-attribute): Doc fix.
11018         (modify-face): Don't use :bold and :italic.
11019         (error, warning, success): Tweak definitions.
11021         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
11022         (custom-modified, custom-set, custom-changed, custom-themed)
11023         (custom-saved, custom-button, custom-button-mouse)
11024         (custom-button-pressed, custom-state, custom-comment-tag)
11025         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
11026         (custom-group-subtitle): Use new-style face specs.
11027         (custom-invalid-face, custom-rogue-face, custom-modified-face)
11028         (custom-set-face, custom-changed-face, custom-saved-face)
11029         (custom-button-face, custom-button-pressed-face)
11030         (custom-documentation-face, custom-state-face)
11031         (custom-comment-face, custom-comment-tag-face)
11032         (custom-variable-tag-face, custom-variable-button-face)
11033         (custom-face-tag-face, custom-group-tag-face-1)
11034         (custom-group-tag-face): Remove obsolete face alias.
11036         * epa.el (epa-validity-high, epa-validity-medium)
11037         (epa-validity-low, epa-mark, epa-field-name, epa-string)
11038         (epa-field-name, epa-field-body):
11039         * font-lock.el (font-lock-comment-face, font-lock-string-face)
11040         (font-lock-keyword-face, font-lock-builtin-face)
11041         (font-lock-function-name-face, font-lock-variable-name-face)
11042         (font-lock-type-face, font-lock-constant-face):
11043         * ido.el (ido-first-match, ido-only-match, ido-subdir)
11044         (ido-virtual, ido-indicator, ido-incomplete-regexp):
11045         * speedbar.el (speedbar-button-face, speedbar-file-face)
11046         (speedbar-directory-face, speedbar-tag-face)
11047         (speedbar-selected-face, speedbar-highlight-face)
11048         (speedbar-separator-face):
11049         * whitespace.el (whitespace-newline, whitespace-space)
11050         (whitespace-hspace, whitespace-tab, whitespace-trailing)
11051         (whitespace-line, whitespace-space-before-tab)
11052         (whitespace-space-after-tab, whitespace-indentation)
11053         (whitespace-empty):
11054         * emulation/cua-base.el (cua-global-mark):
11055         * eshell/em-prompt.el (eshell-prompt):
11056         * net/newst-plainview.el (newsticker-new-item-face)
11057         (newsticker-old-item-face, newsticker-immortal-item-face)
11058         (newsticker-obsolete-item-face, newsticker-date-face)
11059         (newsticker-statistics-face, newsticker-default-face):
11060         * net/newst-reader.el (newsticker-feed-face)
11061         (newsticker-extra-face, newsticker-enclosure-face):
11062         * net/newst-treeview.el (newsticker-treeview-face)
11063         (newsticker-treeview-new-face, newsticker-treeview-old-face)
11064         (newsticker-treeview-immortal-face)
11065         (newsticker-treeview-obsolete-face)
11066         (newsticker-treeview-selection-face):
11067         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
11068         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
11069         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
11070         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
11071         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
11072         (nxml-outline-active-indicator, nxml-outline-ellipsis):
11073         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
11074         (mpuz-text):
11075         * progmodes/vera-mode.el (vera-font-lock-number)
11076         (vera-font-lock-function, vera-font-lock-interface):
11077         * textmodes/table.el (table-cell): Use new-style face specs, and
11078         don't use the old :bold and :italic attributes.
11080         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
11081         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
11082         (ebrowse-member-class, ebrowse-progress): Likewise.
11083         (ebrowse-tree-mark-face, ebrowse-root-class-face)
11084         (ebrowse-file-name-face, ebrowse-default-face)
11085         (ebrowse-member-attribute-face, ebrowse-member-class-face)
11086         (ebrowse-progress-face): Remove obsolete faces.
11088         * progmodes/flymake.el (flymake-errline, flymake-warnline):
11089         Inherit from error and warning faces respectively.
11091         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
11092         Likewise.
11093         (flyspell-incorrect-face, flyspell-duplicate-face):
11094         Remove obsolete aliases.
11096 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
11098         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11099         Avoid infloop.
11101 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11103         * startup.el (argv, argi): Make lexically scoped.
11104         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
11105         * emacs-lisp/cl-macs.el: Use lexical-binding.
11106         Rename cl-bind-* to cl--bind-*.
11107         * files.el: Don't require `cl' since it doesn't use it.
11108         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
11110 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
11112         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
11113         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
11114         instead of calling external sort utility.
11115         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
11117 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
11119         * descr-text.el (describe-char): Mention how to insert the
11120         character, if the current input method doesn't support it.
11121         See the discussion in this thread for the details:
11122         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
11124 2012-06-08  Sam Steingold  <sds@gnu.org>
11126         * bindings.el (global-map): Bind XF86Forward to next-buffer and
11127         XF86Back to previous-buffer.
11128         (minibuffer-local-map): Bind them to next-history-element and
11129         previous-history-element respectively.
11130         * help-mode.el (help-mode-map): Bind them to help-go-forward and
11131         help-go-back respectively.
11132         * info.el (Info-mode-map): Bind them to Info-history-forward and
11133         Info-history-back respectively.
11134         These are the keys next to Up on the ThinkPad keyboard.
11136 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11138         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
11139         * emacs-lisp/cl-macs.el: Provide itself.
11140         (cl--labels-convert-cache): New var.
11141         (cl--labels-convert): New function.
11142         (cl-flet, cl-labels): New implementation with new semantics, relying on
11143         lexical-binding.
11144         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
11145         (cl-closure-vars, cl--function-convert-cache)
11146         (cl--function-convert): Move from cl-macs.el.
11147         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
11148         rename by removing the "cl-" prefix.
11149         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
11151 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11153         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
11154         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
11155         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
11156         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
11157         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
11158         (cl-hash-table-count): Add old compatibility aliases.
11160         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
11161         Use macroexpand-all-environment instead.
11162         (cl--old-macroexpand): New var.
11163         (cl--sm-macroexpand): New function.
11164         (cl-symbol-macrolet): Use it during macro expansion.
11165         (cl--function-convert-cache): New var.
11166         (cl--function-convert): New function, extracted from
11167         cl-macroexpand-all.
11168         (cl-lexical-let): Use it.
11170         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
11171         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
11172         (cl-member): Remove old alias.
11174         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
11175         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
11176         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
11177         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
11178         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
11179         (cl-macroexpand-cmacs): Remove var.
11180         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
11181         Use macroexpand-all instead.
11183 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11185         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
11186         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
11187         (macroexp-copyable-p): New functions and macros.
11188         * emacs-lisp/edebug.el (edebug-unwrap):
11189         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
11190         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
11191         (pcase--let*): Remove.
11192         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
11193         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
11194         macroexp-const-p instead.
11195         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
11197         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
11198         instead of "cl-" for internal definitions.  Use macroexp-const-p.
11199         (cl-old-bc-file-form): Remove var.
11200         (cl-const-exprs-p): Remove fun.
11201         (cl-labels, cl-macrolet): Use backquote.
11202         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
11203         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
11204         (cl-define-setf-expander): Rename from cl-define-setf-method.
11205         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
11207         * international/mule-cmds.el: Don't require CL.
11208         (view-hello-file): Don't use `letf'.
11210 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11212         * tmm.el (tmm-prompt): Use string-prefix-p.
11213         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
11214         (tmm-add-prompt): Use minibuffer-completion-help.
11215         (tmm-delete-map): Remove.
11217         * subr.el (kbd): Make it its own function.
11219 2012-06-07  Stefan Merten  <smerten@oekonux.de>
11221         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
11222         Silence compiler warnings.  Fix versions.
11223         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
11224         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
11225         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
11226         (rst-package-emacs-version-alist): Correct Emacs version to
11227         represent major merge with upstream.
11228         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
11230 2012-06-06  Glenn Morris  <rgm@gnu.org>
11232         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
11233         Only print environment variables if set.
11235 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11237         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
11238         (macroexp--cons): Rename from maybe-cons.
11239         (macroexp--accumulate): Rename from macroexp-accumulate.
11240         (macroexp--all-forms): Rename from macroexpand-all-forms.
11241         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
11242         (macroexp--expand-all): Rename from macroexpand-all-1.
11244 2012-06-06  Sam Steingold  <sds@gnu.org>
11246         * calendar/calendar.el (calendar-in-read-only-buffer):
11247         Call `special-mode' to enable the standard read-only keybindings.
11249 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11251         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
11252         with "loading" messages (bug#11635).
11254 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
11256         * files.el (enable-remote-dir-locals): New option.
11257         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
11259         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11260         Ensure, that the temp directory is local.
11262         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
11263         `temporary-file-directory'.
11265         * progmodes/python.el (python-send-region): Ensure, that the
11266         temporary file is created also in the remote case.
11268 2012-06-06  Glenn Morris  <rgm@gnu.org>
11270         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
11271         (vc-rcs-update-changelog): Use it.
11273         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
11275         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
11276         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
11277         (vc-sccs-diff): Replace use of the external vcdiff script.
11279 2012-06-05  Glenn Morris  <rgm@gnu.org>
11281         * ledit.el: Move to obsolete/.
11283 2012-06-05  Sam Steingold  <sds@gnu.org>
11285         * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
11286         patch (Bug#11140).
11288 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11290         * emacs-lisp/cust-print.el: Move to obsolete.
11292         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
11293         compiler-macro expansion.
11295         Add native compiler-macro support.
11296         * emacs-lisp/macroexp.el (macroexpand-all-1):
11297         Support compiler-macros directly.  Properly follow aliases and apply
11298         the compiler macros more thoroughly.
11299         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
11300         macroexpand now properly follows aliases.
11301         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
11302         (cl-compiler-macroexpand): Use new prop.
11303         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
11305         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
11307 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
11309         * window.el (get-lru-window, get-mru-window, get-largest-window):
11310         New argument NOT-SELECTED to avoid picking the selected window.
11311         (window--display-buffer-1, window--display-buffer-2): Replace by
11312         new function window--display-buffer
11313         (display-buffer-same-window, display-buffer-reuse-window)
11314         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11315         Use window--display-buffer.
11316         (display-buffer-use-some-window): Remove temporary dedication
11317         hack by calling get-lru-window and get-largest-window with
11318         NOT-SELECTED argument non-nil.  Call window--display-buffer.
11320 2012-06-05  Glenn Morris  <rgm@gnu.org>
11322         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11323         Replace external vcdiff script.
11325 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11327         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11329 2012-06-04  Chong Yidong  <cyd@gnu.org>
11331         * image.el (imagemagick-types-inhibit): Revert last change.
11332         Add INFO and M.
11333         (imagemagick-enabled-types): Remove CIN and EPS*.
11335 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11337         * emacs-lisp/cl-lib.el: Rename from cl.el.
11338         * emacs-lisp/cl.el: New compatibility file.
11339         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11340         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11341         to obey the "cl-" prefix.
11342         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11344 2012-06-03  Glenn Morris  <rgm@gnu.org>
11346         * emacs-lisp/authors.el (authors-aliases): Addition.
11348         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11349         Fix :version.
11351 2012-06-03  Stefan Merten  <smerten@oekonux.de>
11353         * textmodes/rst.el: Add comments.
11354         (rst-transition, rst-adornment): New faces.
11355         (rst-adornment-faces-alist): Make default safe to reevaluate.
11356         Fixes
11357         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11358         Improve customization tags.
11359         (rst-define-level-faces): Clarify meaning.
11361 2012-06-03  Chong Yidong  <cyd@gnu.org>
11363         * progmodes/compile.el (compilation-mode-line-fail)
11364         (compilation-mode-line-run, compilation-mode-line-exit):
11365         New faces.
11366         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11368 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
11370         * progmodes/which-func.el (which-func-update-ediff-windows):
11371         New function.  Use it in ediff-select-hook (Bug#11478).
11373 2012-06-03  Chong Yidong  <cyd@gnu.org>
11375         * bindings.el: Remove explicit help text from format-mode-line.
11376         It is now supplied by mode-line-default-help-echo.
11377         (mode-line-front-space, mode-line-end-spaces)
11378         (mode-line-misc-info): New variables.
11379         (mode-line-modes, mode-line-position): Move the default value to
11380         the variable definition.
11381         (mode-line-default-help-echo): New defcustom.
11382         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11383         (mode-line-modified-help-echo): New functions.
11384         (mode-line-mule-info, mode-line-modified): Use them.
11385         (mode-line-eol-desc, propertized-buffer-identification):
11386         Consistency fixes for help text.
11387         (mode-line-coding-system-map): Allow using mouse-3 to invoke
11388         set-buffer-file-coding-system (Bug#289).
11389         (mode-line-mule-info-help-echo): Update help text.
11391 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11393         * simple.el (execute-extended-command): Set real-this-command
11394         (bug#11506).
11396 2012-06-02  Chong Yidong  <cyd@gnu.org>
11398         Remove incorrect uses of "modeline" in comments, docstrings, and
11399         function/variable names (Bug#10329).
11401         * cus-edit.el (mode-line):
11402         * dframe.el (dframe-mouse-hscroll):
11403         * emacs-lisp/re-builder.el:
11404         * emacs-lisp/easy-mmode.el (define-minor-mode):
11405         * frame.el (set-frame-name):
11406         * help.el (lookup-minor-mode-from-indicator):
11407         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11408         * progmodes/cc-cmds.el (c-toggle-auto-newline)
11409         (c-toggle-hungry-state):
11410         * progmodes/antlr-mode.el (antlr-language-alist):
11411         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11412         * progmodes/vhdl-mode.el (vhdl-mode):
11413         * progmodes/which-func.el (which-func, which-func-cleanup-function):
11414         * term/ns-win.el (ns-face-at-pos):
11415         * term/sup-mouse.el (sup-mouse-report):
11416         * textmodes/flyspell.el (flyspell-mode-line-string):
11417         * textmodes/ispell.el (ispell-highlight-face):
11418         * textmodes/reftex-global.el:
11419         * vc/vc-arch.el (vc-arch-mode-line-string):
11420         * vc/vc-cvs.el (vc-cvs-mode-line-string):
11421         * vc/vc-git.el (vc-git-mode-line-string):
11422         * vc/vc-hooks.el (vc-display-status)
11423         (vc-default-mode-line-string):
11424         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11426         * ansi-color.el (ansi-color-faces-vector): Change default faces.
11428         * dired.el (dired-sort-set-mode-line): Rename from
11429         dired-sort-set-modeline.  All callers changed.
11431         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11432         eshell-status-in-modeline.
11434         * foldout.el (foldout-mode-line-string): Rename from
11435         foldout-modeline-string.  All callers changed.
11436         (foldout-update-mode-line): Rename from foldout-update-modeline.
11438         * subr.el (redraw-modeline): Make into obsolete alias.
11440         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11441         timeclock-modeline-display.  Make old name an alias.
11442         (timeclock-update-mode-line): Likewise.  All callers changed.
11443         (timeclock-mode-line-display): No need to check before using
11444         add-hook.
11445         (timeclock-relative, timeclock-day-over-hook)
11446         (timeclock-use-elapsed, timeclock-mode-string)
11447         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11449         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11450         crisp-mode-modeline-string.
11452         * play/solitaire.el (solitaire-build-mode-line): Rename from
11453         solitaire-build-modeline.  All callers changed.
11455         * play/zone.el (zone-hiding-mode-line): Rename from
11456         zone-hiding-modeline.  All callers changed.
11457         (zone): Remove unusued `modeline-hidden-level' property.
11459         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11460         xscheme-modeline-initialize.  All callers changed.
11462         * strokes.el (strokes-lighter): Rename from
11463         strokes-modeline-string.
11465         * textmodes/sgml-mode.el (html-face-tag-alist)
11466         (html-tag-face-alist): Use mode-line face instead of obsolete
11467         alias modeline.
11469 2012-06-02  Stefan Merten  <smerten@oekonux.de>
11471         * textmodes/rst.el: Always require `cl'.
11472         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11474 2012-06-02  Chong Yidong  <cyd@gnu.org>
11476         * image.el (imagemagick-enabled-types): Rename from
11477         imagemagick-types-enable.  Add many more types.
11478         (imagemagick-types-inhibit): Change default to nil.
11479         (imagemagick-filter-types): Caller changed.
11481 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11483         * emacs-lisp/cl-macs.el: Use backquotes.
11484         (cl-transform-function-property): Use eval-and-compile rather than
11485         abusing `require'.
11486         (defstruct): Use declare-function instead of with-no-warnings.
11488         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11489         (byte-compile-output-docform): Re-add the print-circle bindings.
11490         (byte-compile-fix-header): Use #$ just because it's shorter.
11491         (byte-compile-output-file-form): Remove defun/defmacro.
11493 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
11495         * simple.el (choose-completion): Remove now obsolete binding for
11496         owindow.
11498 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
11500         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11501         in order to avoid "Stack overflow in regexp matcher".
11503 2012-05-31  Glenn Morris  <rgm@gnu.org>
11505         * image.el: For clarity, call imagemagick-register-types at
11506         top-level, rather than relying on a custom :initialize.
11507         (imagemagick-types-enable): New option.  (Bug#11557)
11508         (imagemagick-filter-types): New function.  (Bug#7406)
11509         (imagemagick-register-types): Use imagemagick-filter-types.
11510         If disabling support, remove elements altogether rather
11511         than using an impossible regexp.
11512         (imagemagick-types-inhibit): Give it the default init function.
11514 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11516         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11517         Handle arbitrary file name lengths (Bug#11585).
11519 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
11521         * desktop.el (desktop-read): Clear previous and next buffers for
11522         all windows and bury *Messages* buffer (bug#11556).
11524 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11526         Add `declare' for `defun'.  Align `defmacro's with it.
11527         * emacs-lisp/easy-mmode.el (define-minor-mode)
11528         (define-globalized-minor-mode): Don't autoload the var definitions.
11529         * emacs-lisp/byte-run.el: Use lexical-binding.
11530         (defun-declarations-alist, macro-declarations-alist): New vars.
11531         (defmacro, defun): Use them.
11532         (make-obsolete, define-obsolete-function-alias)
11533         (make-obsolete-variable, define-obsolete-variable-alias):
11534         Use `declare'.
11535         (macro-declaration-function): Mark obsolete.
11536         * emacs-lisp/autoload.el: Use lexical-binding.
11537         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
11539 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11541         * textmodes/ispell.el (ispell-with-no-warnings):
11542         Define as a macro.
11543         (ispell-kill-ispell, ispell-change-dictionary):
11544         Use `called-interactively-p' for Emacs instead of obsolete
11545         `interactive-p'.
11547 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11549         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11550         (macro-declaration-function): Move var from C code.
11551         (macro-declaration-function): Define function with defalias.
11552         * emacs-lisp/macroexp.el (macroexpand-all-1):
11553         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11554         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11555         defun/defmacro any more.
11556         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11557         Provide fallback for unknown arglist.
11558         (byte-compile-arglist-warn): Change calling convention.
11559         (byte-compile-output-file-form): Move print-vars binding.
11560         (byte-compile-output-docform): Simplify accordingly.
11561         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11562         (byte-compile-defmacro-declaration): Remove.
11563         (byte-compile-file-form-defmumble): Generalize to defalias.
11564         (byte-compile-output-as-comment): Return byte-positions.
11565         Simplify callers accordingly.
11566         (byte-compile-lambda): Use `assert'.
11567         (byte-compile-defun, byte-compile-defmacro): Remove.
11568         (byte-compile-file-form-defalias):
11569         Use byte-compile-file-form-defmumble.
11570         (byte-compile-defalias-warn): Remove.
11572 2012-05-29  Stefan Merten  <smerten@oekonux.de>
11574         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11575         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
11577         (rst-mode-abbrev-table): Merge definition.
11578         (rst-mode): Make sure `font-lock-defaults' is buffer local.
11579         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11581 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
11583         * calendar/icalendar.el
11584         (icalendar-export-region): Export UID properly.
11586 2012-05-29  Leo Liu  <sdl.web@gmail.com>
11587         * calendar/icalendar.el (icalendar-import-format):
11588         Add `icalendar-import-format-uid' (Bug#11525).
11589         (icalendar-import-format-uid): New.
11590         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11591         Export UID.
11593 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11595         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11596         different alternative patterns.
11597         (pcase-codegen): Be more careful to preserve identity.
11598         (pcase--u1): Don't forget to mark vars as used.
11600         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11601         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11602         (byte-compile-from-buffer): ...rather than here.
11604         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11605         functions from byte-compile-function-environment.
11607 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
11609         * window.el (window-deletable-p): Avoid deleting the root window
11610         of a frame with an active minibuffer.
11612 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
11614         * simple.el (choose-completion): Use quit-window (Bug#11567).
11616 2012-05-29  Chong Yidong  <cyd@gnu.org>
11618         * whitespace.el (whitespace-cleanup): Fix usage of
11619         whitespace-empty-at-bob-regexp (Bug#11492).
11621 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11623         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11624         revert (Bug#11488).
11626 2012-05-29  Juri Linkov  <juri@jurta.org>
11628         * isearch.el (isearch-mode-map): Bind `M-s _' to
11629         `isearch-toggle-symbol'.  Bind `M-s c' to
11630         `isearch-toggle-case-fold'.
11631         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11632         (isearch-forward): Add `M-s _' to the docstring.
11633         (isearch-forward-symbol, isearch-toggle-case-fold)
11634         (isearch-symbol-regexp): New functions.  (Bug#11381)
11636 2012-05-29  Juri Linkov  <juri@jurta.org>
11638         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
11639         (isearch-occur, isearch-search-and-update): If `isearch-word' is
11640         a function, call it to get the regexp.
11641         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11642         property `isearch-message-prefix' instead of the string "word ".
11643         (isearch-search-fun-default): For the case of `isearch-word',
11644         return a lambda that calls re-search-forward/re-search-backward
11645         with a regexp returned by `word-search-regexp' or by the function
11646         in `isearch-word'.
11648 2012-05-29  Juri Linkov  <juri@jurta.org>
11650         * isearch.el (isearch-search-fun-default): New function.
11651         (isearch-search-fun): Move default part to the new function
11652         `isearch-search-fun-default'.
11653         (isearch-search-fun-function): Set the default value to
11654         `isearch-search-fun-default'.  (Bug#11381)
11656         * comint.el (comint-history-isearch-end):
11657         Use `isearch-search-fun-default'.
11658         (comint-history-isearch-search): Use `isearch-search-fun-default'
11659         and remove spacial case for `isearch-word'.
11660         (comint-history-isearch-wrap): Remove spacial case for
11661         `isearch-word'.
11663         * hexl.el (hexl-isearch-search-function):
11664         Use `isearch-search-fun-default'.
11666         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11667         Use `word-search-regexp' for `isearch-word'.
11669         * misearch.el (multi-isearch-search-fun):
11670         Use `isearch-search-fun-default'.
11672         * simple.el (minibuffer-history-isearch-search):
11673         Use `isearch-search-fun-default' and remove spacial case for
11674         `isearch-word'.
11675         (minibuffer-history-isearch-wrap): Remove spacial case for
11676         `isearch-word'.
11678         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11679         Remove spacial case for `isearch-word'.
11680         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11682 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11684         Decrease XEmacs incompatibilities.
11685         * textmodes/flyspell.el (flyspell-check-pre-word-p):
11686         Use `string-match'.
11687         (flyspell-delete-region-overlays): Use alternative definition for
11688         XEmacs.
11689         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11690         (flyspell-word): Use `process-kill-without-query' if XEmacs.
11691         (flyspell-mode-on): Use `interactive-p' if XEmacs.
11692         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11693         `define-obsolete-face-alias' under XEmacs, but old method.
11695         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11696         `with-no-warnings' definition or Emacs alias.
11697         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11698         (ispell-word): Do not use `region-p' if XEmacs.
11700 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11702         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11703         Check for `ispell-dictionary-base-alist' instead of full
11704         `ispell-dictionary-alist'.
11705         (ispell-init-process): Show spellchecker when starting new Ispell
11706         process.
11708 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11710         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11711         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11713 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
11715         * version.el (motif-version-string, gtk-version-string)
11716         (ns-version-string): Declare.
11718 2012-05-27  Juri Linkov  <juri@jurta.org>
11720         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11721         after the `eval-defun-1' specialcaseing
11722         like in `edebug-eval-defun' (bug#10181).
11724         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11725         like in `eval-defun-1'.
11727 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
11729         * mail/sendmail.el (mail-yank-region):
11730         Recognize rmail-yank-current-message in addition to insert-buffer.
11731         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11732         a *mail* buffer created through rmail-start-mail with sendmail as
11733         mail-user-agent.
11735 2012-05-27  Chong Yidong  <cyd@gnu.org>
11737         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11738         Default to 256 (Bug#11267).
11740         * help.el (describe-mode): Doc fix.
11742 2012-05-26  Glenn Morris  <rgm@gnu.org>
11744         * w32-fns.el (w32-init-info): Remove.
11745         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11747         * info.el (info-initialize): For self-contained NS builds, put the
11748         included info/ directory at the front.  (Bug#2791)
11750         * paths.el (Info-default-directory-list): Make it a defcustom,
11751         mainly so that we can use custom-initialize-delay.
11753 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11755         * subr.el (buffer-has-markers-at): Mark obsolete.
11757         * subr.el (lambda): Use declare.
11759         * emacs-lisp/lisp-mode.el (lambda):
11760         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11762 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11764         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
11766 2012-05-26  Glenn Morris  <rgm@gnu.org>
11768         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11770 2012-05-25  Glenn Morris  <rgm@gnu.org>
11772         * paths.el: Remove no-byte-compile.
11773         * loadup.el: No need to load paths.el uncompiled.
11775         * image.el (imagemagick-types-inhibit): Doc fix.
11777         * version.el: Remove no-byte-compile and associated formatting.
11778         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
11779         is ancient code from when there was an "inc-vers.el".
11781 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11783         * progmodes/gdb-mi.el: Minor style changes.
11784         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11785         Turn into minor modes.
11786         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11787         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11788         (gdb-shell): Remove unneeded let-binding.
11789         (gdb-get-many-fields): Eliminate O(n²) behavior.
11791 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
11793         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11794         platforms that don't link in fontset.c.
11796 2012-05-25  Juri Linkov  <juri@jurta.org>
11798         Use the same diff color scheme as in modern VCSes (bug#10181).
11800         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11801         to avoid confusion with `diff-added' that now uses green colors.
11802         (diff-removed): Use shades of red.
11803         (diff-added): Use shades of green.
11804         (diff-changed): Leave just the yellow color.
11805         (diff-use-changed-face): New variable.
11806         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11807         how to highlight context diff changes.
11808         (diff-refine-change): Use shades of yellow.
11809         (diff-refine-removed): New face that uses shades of red.
11810         (diff-refine-added): New face that uses shades of green.
11811         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11812         `diff-refine-removed' in the call to `smerge-refine-subst'
11813         depending on the value of `diff-use-changed-face'.
11815         * vc/smerge-mode.el (smerge-mine): Use shades of red.
11816         (smerge-other): Use shades of green.
11817         (smerge-base): Use shades of yellow.
11818         (smerge-refined-change): Empty face.
11819         (smerge-refined-removed): New face that uses shades of red.
11820         (smerge-refined-added): New face that uses shades of green.
11821         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
11822         args `props-r' and `props-a', and use them.  Doc fix.
11823         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11824         on its value use different faces `smerge-refined-change',
11825         `smerge-refined-removed', `smerge-refined-added' in the call to
11826         `smerge-refine-subst'.
11828         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11829         Add face condition `min-colors 88' with shades of red.
11830         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11831         `min-colors 88' with shades of green.
11832         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11833         `min-colors 88' with shades of yellow.
11835 2012-05-24  Glenn Morris  <rgm@gnu.org>
11837         * paths.el (prune-directory-list, remote-shell-program): Move to...
11838         * files.el (prune-directory-list, remote-shell-program): ...here.
11839         For the latter, delay initialization, prefer ssh, just search PATH.
11841         * paths.el (term-file-prefix): Move to faces.el (the only user).
11842         * faces.el (term-file-prefix): Move here, make it a defcustom.
11844         * paths.el (news-directory, news-path, news-inews-program):
11845         Move to gnus/nnspool.el.
11847         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
11849         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
11850         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
11851         Make the latter a defcustom, with a delayed initialization.
11853         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
11854         These were deleted from Gnus itself late 2010.
11856 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
11858         * progmodes/which-func.el (which-func-ff-hook):
11859         Check against user-error, not error.
11861         * emacs-lisp/edebug.el (top): Do not load or set up loading of
11862         cl-specs.el, which no longer exists.
11864 2012-05-22  Glenn Morris  <rgm@gnu.org>
11866         * info.el (info-emacs-bug): New command.
11867         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
11868         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
11870 2012-05-21  Glenn Morris  <rgm@gnu.org>
11872         * makefile.w32-in (update-subdirs-SH):
11873         * Makefile.in (update-subdirs): Update for moved update-subdirs.
11875 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11877         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
11879         * progmodes/compile.el (compilation-error-regexp-alist-alist):
11880         Simplify Maven regexp, and make sure the file can't start with a space
11881         (bug#11517).
11883 2012-05-21  Glenn Morris  <rgm@gnu.org>
11885         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11886         Scrap superfluous subshells.
11888 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11890         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
11891         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
11893 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
11895         * calc/calc.el (calc-ensure-consistent-units): New variable.
11897         * calc/calc-units.el (math-consistent-units-p)
11898         (math-check-unit-consistency): New functions.
11899         (calc-quick-units, calc-convert-units):
11900         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
11901         is non-nil.
11902         (calc-extract-units): Fix typo.
11904 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11906         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
11908         * textmodes/flyspell.el: Commenting style, plus code simplifications.
11909         (flyspell-default-deplacement-commands): Don't spell check after
11910         repeated window/frame switches (e.g. triggered by mouse-movement).
11911         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
11912         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
11913         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
11914         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
11915         Remove unused vars.
11916         (flyspell-get-casechars, flyspell-get-not-casechars):
11917         Simplify; Don't bother removing a ] just to add it back.
11918         * textmodes/ispell.el (ispell-program-name): Use executable-find.
11920 2012-05-18  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11922         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
11923         New functions.
11924         (math-function-table): Add support for more C functions.
11926 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11928         * textmodes/flyspell.el (flyspell-check-pre-word-p)
11929         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11930         Protect delay handling for otherchars against empty otherchars.
11932 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11934         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
11935         their respective macro declarations.
11936         * skeleton.el (define-skeleton):
11937         * progmodes/compile.el (define-compilation-mode):
11938         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
11939         (define-ibuffer-filter):
11940         * emacs-lisp/generic.el (define-generic-mode):
11941         * emacs-lisp/easy-mmode.el (define-minor-mode)
11942         (define-globalized-minor-mode):
11943         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
11944         * emacs-lisp/byte-run.el (defsubst):
11945         * custom.el (deftheme): Add doc-string metadata.
11947 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11949         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
11951 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11953         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
11955         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
11956         * emacs-lisp/cl-macs.el: Idem.
11957         * emacs-lisp/cl-specs.el: Remove.
11959 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11961         Minor renaming of internal CL functions and variables.
11962         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
11963         (cl--position): Rename from cl-position.
11964         (cl--delete-duplicates): Rename from cl-delete-duplicates.
11965         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
11966         (cl--random-state): Rename from *random-state*.
11968 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11970         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
11971         parens around the arg list (bug#11499).
11973 2012-05-17  Juri Linkov  <juri@jurta.org>
11975         * isearch.el (word-search-regexp, word-search-backward)
11976         (word-search-forward, word-search-backward-lax)
11977         (word-search-forward-lax): Move functions from search.c
11978         (bug#10145, bug#11381).
11980 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11982         * textmodes/flyspell.el (flyspell-check-pre-word-p)
11983         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11984         Delay for otherchars as for normal word components.
11986 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11988         * minibuffer.el (completion--sifn-requote): Fix last change.
11989         (minibuffer-local-must-match-filename-map):
11990         Move define-obsolete-variable-alias before its var.
11992 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11994         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
11996         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
11997         behavior.
11998         (completion--string-equal-p): New function.
11999         (completion--twq-all): Use it to get better assertion failure data.
12001         Only handle ".." and '..' quoting in shell-mode (bug#11466).
12002         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
12003         (shell--requote-argument): New functions.
12004         (shell-completion-vars): Use them.
12005         (shell--parse-pcomplete-arguments): Rename from
12006         shell-parse-pcomplete-arguments.
12007         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
12008         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
12009         Obey comint-file-name-quote-list.
12011         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
12012         (smie-indent-keyword): Use it.
12014 2012-05-14  Stefan Merten  <smerten@oekonux.de>
12016         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
12018 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12020         * net/rlogin.el (rlogin-mode-map): Fix last change.
12022 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
12024         * mail/smtpmail.el (smtpmail-send-command): Send the command and
12025         the following \r\n using a single `process-send-string', since the
12026         Lotus SMTP server refuses to accept any commands if they are sent
12027         with two `process-send-string's (Bug#11444).
12029 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12031         * shell.el (shell-parse-pcomplete-arguments):
12032         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
12034 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
12036         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
12037         (image-transform-scale, image-transform-right-angle-fudge): New vars.
12038         (image-transform-width, image-transform-fit-width): New functions.
12039         (image-transform-properties): Use them.
12040         (image-transform-check-size): New function.
12041         (image-toggle-display-image): Use it (for testing).
12042         (image-transform-set-rotation): Reduce angle mod 360.
12043         Delete obsolete comment.
12045 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
12047         * image-mode.el: Fix scaling (bug#11399).
12048         (image-transform-resize): Doc fix.
12049         (image-transform-properties): Default scale is 1 and height should
12050         be an integer.
12052 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
12054         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
12055         than hard-coding `car', to fix misbehavior when moving forward.
12057 2012-05-13  Chong Yidong  <cyd@gnu.org>
12059         * emacs-lisp/tabulated-list.el (tabulated-list-format)
12060         (tabulated-list-entries, tabulated-list-padding)
12061         (tabulated-list-sort-key): Make permanent-local.
12063         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
12064         (electric-buffer-list): Put electric buffer menu
12065         command descriptions in this docstring, instead of the docstring
12066         of electric-buffer-menu-mode.  Code cleanups.
12067         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
12068         Electric-buffer-menu-mode.
12069         (electric-buffer-update-highlight): Minor code cleanup.
12071 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
12073         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
12074         (Bug#11447)
12076 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12078         Move define-obsolete-variable-alias before the var's definition.
12079         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
12080         * tooltip.el (tooltip-hook):
12081         * textmodes/reftex-toc.el (reftex-toc-map):
12082         * textmodes/reftex-sel.el (reftex-select-label-map)
12083         (reftex-select-bib-map):
12084         * textmodes/reftex-index.el (reftex-index-map)
12085         (reftex-index-phrases-map):
12086         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
12087         * progmodes/meta-mode.el (meta-mode-map):
12088         * novice.el (disabled-command-hook):
12089         * loadhist.el (unload-hook-features-list):
12090         * frame.el (blink-cursor):
12091         * files.el (find-file-not-found-hooks, write-file-hooks)
12092         (write-contents-hooks):
12093         * emulation/tpu-edt.el (GOLD-map):
12094         * emacs-lock.el (emacs-lock-from-exiting):
12095         * emacs-lisp/generic.el (generic-font-lock-defaults):
12096         * emacs-lisp/chart.el (chart-map):
12097         * dos-fns.el (register-name-alist):
12098         * dired-x.el (dired-omit-files-p):
12099         * desktop.el (desktop-enable):
12100         * cus-edit.el (custom-mode-hook):
12101         * buff-menu.el (buffer-menu-mode-hook):
12102         * bookmark.el (bookmark-read-annotation-text-func)
12103         (bookmark-exit-hooks):
12104         * allout.el (allout-mode-deactivate-hook)
12105         (allout-exposure-change-hook, allout-structure-added-hook)
12106         (allout-structure-deleted-hook, allout-structure-shifted-hook):
12107         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
12108         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
12109         comes before the corresponding variable's definition.
12111 2012-05-12  Chong Yidong  <cyd@gnu.org>
12113         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
12114         (Buffer-menu-mouse-select): Restore function (Bug#11459).
12115         (Buffer-menu-mode-map): Bind it.
12116         (Buffer-menu--pretty-name): Add a mouse-face property.
12118 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12120         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
12121         (prolog-upper-case-string, prolog-lower-case-string)
12122         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
12123         (prolog-use-smie, prolog-smie-grammar): New vars.
12124         (prolog-smie-forward-token, prolog-smie-backward-token)
12125         (prolog-smie-rules): New funs.
12126         (prolog-comment-indent): Remove.
12127         (prolog-mode-variables): Use default comment indentation instead.
12128         Setup SMIE.
12129         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
12130         (prolog-mode): Don't call them any more.
12131         (prolog-electric-colon, prolog-electric-dash)
12132         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
12134         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
12136         * minibuffer.el (completion--twq-all): Again, allow case differences.
12138         * term.el: Move keymap initialization code to be more idiomatic.
12139         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
12140         (term-terminal-menu): Move initialization into declaration.
12141         (term-escape-char): Let the user set it in her .emacs.
12143         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
12144         Provide SMIE-based indentation (not enabled by default yet).
12145         (sh-mode-map): Don't bind electric keys.
12146         Use electric-pair-mode instead of skeleton-pair.
12147         (sh-assignment-regexp): Fit within 80 columns.
12148         (sh-indent-supported): Specify actual shell name instead of boolean.
12149         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
12150         (sh-maybe-here-document): Use it.  Make obsolete.
12151         (sh-electric-here-document-mode) New minor mode.
12152         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
12153         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
12154         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
12155         (sh-smie-rc-grammar, sh-use-smie): New vars.
12156         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
12157         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
12158         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
12159         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
12160         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
12161         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
12162         (sh-set-shell): Use smie-setup if requested.
12164         * term.el (term-set-escape-char): Properly set term-escape-char.
12165         See http://stackoverflow.com/questions/10524656.
12167 2012-05-10  Chong Yidong  <cyd@gnu.org>
12169         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
12170         Use url-generic-parse-url, and handle host names and Windows
12171         filenames properly.
12172         (ffap-url-unwrap-remote): Use url-generic-parse-url.
12173         (ffap-url-unwrap-remote): Accept list values, specifying a list of
12174         URL schemes to work on.
12175         (ffap--toggle-read-only): New function.
12176         (ffap-read-only, ffap-read-only-other-window)
12177         (ffap-read-only-other-frame): Use it.
12178         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
12179         necessary for ffap-url-unwrap-remote.
12181 2012-05-10  Dave Abrahams  <dave@boostpro.com>
12183         * cus-start.el (create-lockfiles): Add it.
12185 2012-05-09  Chong Yidong  <cyd@gnu.org>
12187         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
12188         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
12190 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12192         * shell.el (shell-completion-vars): Fix last change (bug#11348).
12194 2012-05-09  Chong Yidong  <cyd@gnu.org>
12196         * ansi-color.el (ansi-color-process-output): Check for validity of
12197         comint-last-output-start before using it.  This avoids a bad
12198         interaction with gdb-mi's input/output buffer.
12200 2012-05-09  Glenn Morris  <rgm@gnu.org>
12202         * files.el (dir-locals-read-from-file):
12203         Mention dir-locals in any error message.
12205 2012-05-09  Chong Yidong  <cyd@gnu.org>
12207         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
12208         package (Bug#11410).
12210         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
12211         variables into description.
12213 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12215         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
12216         shell-delimiter-argument-list (bug#11348).
12217         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
12219 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
12221         * textmodes/rst.el: Silence byte-compiler warnings.
12222         (rst-re-alist, rst-reset-section-caches): Move around.
12223         (rst-re): Use `characterp', not `char-valid-p'.
12224         (font-lock-beg, font-lock-end): Declare.
12226         * progmodes/idlw-shell.el (specs): Remove reference to deleted
12227         variable `idlwave-shell-activate-alt-keybindings' and simplify.
12229         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
12231 2012-05-08  Glenn Morris  <rgm@gnu.org>
12233         * files.el (auto-mode-alist): Treat ".make" like ".mk".
12235 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12237         * vc/log-edit.el: Add GNU coding standards highlighting.
12238         (log-edit-font-lock-gnu-style)
12239         (log-edit-font-lock-gnu-keywords): New vars.
12240         (log-edit-font-lock-keywords): New fun.
12241         (log-edit-mode): Don't fold case in font-lock.
12242         (log-edit-font-lock-keywords): Do not assume case-folding.
12244         * imenu.el: Misc cleanup.  Make docstrings out of comments.
12245         Use lexical-binding.
12246         (imenu--index-alist, imenu--last-menubar-index-alist)
12247         (imenu-menubar-modified-tick): Use defvar-local.
12248         (imenu--split-menu): Remove unused var.
12249         (imenu--cleanup-seen): Declare as global.
12250         (imenu--cleanup): Use dolist.
12252         * subr.el (defvar-local): Add debug spec and doc-string position.
12254 2012-05-08  Glenn Morris  <rgm@gnu.org>
12256         * language/burmese.el, language/cham.el, language/czech.el:
12257         * language/english.el, language/georgian.el, language/greek.el:
12258         * language/japanese.el, language/khmer.el, language/korean.el:
12259         * language/lao.el, language/misc-lang.el, language/romanian.el:
12260         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
12261         * language/thai.el, language/utf-8-lang.el:
12262         Remove no-byte-compile setting.
12264         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
12266 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12268         * progmodes/make-mode.el (makefile-browse):
12269         Remove unnecessary interactive.  (Bug#11324)
12271 2012-05-07  Glenn Morris  <rgm@gnu.org>
12273         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
12275         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
12277 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12279         * loadup.el: Preload newcomment.el.
12280         * newcomment.el: Move autoload-only code to toplevel.
12282         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
12283         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12284         Handle new :right-align column property.
12285         (tabulated-list-print-col): Idem, plus use `display' text-property to
12286         try and preserve alignment for variable pitch fonts.
12288 2012-05-07  Chong Yidong  <cyd@gnu.org>
12290         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
12291         (tabulated-list-use-header-line): New var.
12292         (tabulated-list-init-header): Use it.
12293         (tabulated-list-print-fake-header): New function.
12294         (tabulated-list-print): Use it.
12295         (tabulated-list-sort-button-map): Add non-header-line commands.
12296         (tabulated-list-init-header): Add column name property to basic
12297         labels as well.
12298         (tabulated-list-col-sort): Handle non-header-line button case.
12299         (tabulated-list--sort-by-column-name): Fix a corner case.
12301         * buff-menu.el (list-buffers--refresh):
12302         Handle Buffer-menu-use-header-line.
12304 2012-05-06  Chong Yidong  <cyd@gnu.org>
12306         * buff-menu.el: Convert to Tabulated List mode.
12307         (Buffer-menu-buffer+size-width): Make obsolete.
12308         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
12309         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
12310         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
12311         documentation into docstring of buffer-menu.
12312         (Buffer-menu-toggle-files-only): Add an informative message.
12313         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
12314         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
12315         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
12316         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12317         (Buffer-menu-execute, Buffer-menu-select)
12318         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12319         (Buffer-menu-bury): Use Tabulated List machinery.
12320         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12321         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12322         Delete.
12323         (list-buffers--refresh): New function.
12324         (list-buffers-noselect): Use it.
12325         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12326         (Buffer-menu--pretty-file-name): New helper functions.
12328         * loadup.el: Preload tabulated-list.
12330         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12331         tabulated-list-sort-column.
12332         (tabulated-list-init-header): Add the initial aligning space even
12333         if tabulated-list-padding is zero.
12335 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
12337         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12338         whose cdr is not a cons cell correctly (bug#11038).
12340 2012-05-06  Chong Yidong  <cyd@gnu.org>
12342         * emacs-lisp/tabulated-list.el (tabulated-list-format):
12343         Accept additional plist in column descriptors.
12344         (tabulated-list-init-header): Obey it.
12345         (tabulated-list-get-entry): New function.
12346         (tabulated-list-put-tag): Use it.  Use string-width instead of
12347         length.
12348         (tabulated-list--column-number): New function.
12349         (tabulated-list-print): Use it.
12350         (tabulated-list-print-col): New function.
12351         Set `tabulated-list-column-name' property on each column's text.
12352         (tabulated-list-print-entry): Use it.
12353         (tabulated-list-delete-entry, tabulated-list-set-col):
12354         New functions.
12355         (tabulated-list-sort-column): New command (Bug#11337).
12357         * buff-menu.el (list-buffers): Move C-x C-b binding from
12358         buff-menu.el to bindings.el.
12360         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12361         :advertised-binding feature.
12363 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
12365         * progmodes/compile.el (compilation-internal-error-properties):
12366         Calculate start position correctly when end-col is set but
12367         end-line is not (Bug#11382).
12369 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
12371         * man.el (Man-unindent): Use text-property-default-nonsticky to
12372         prevent untabify from inheriting face properties (Bug#11408).
12374 2012-05-05  Stefan Merten  <smerten@oekonux.de>
12376         * textmodes/rst.el: Major merge with upstream development up to
12377         Docutils SVN r7399 / rst.el V1.2.1.
12379         Clarify maintainership and authors.
12381         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12382         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12383         (rst-official-version, rst-official-cvs-rev, rst-version)
12384         (rst-package-emacs-version-alist): New functions and variables
12385         for version information.
12387         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12388         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12389         (rst-mode-syntax-table, rst-mode): New and corrected functions
12390         and variables representing reStructuredText features.
12392         (rst-re): New function for reStructuredText regexes.  Use in
12393         many places.
12395         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12396         (rst-mode-map): Rebind keys.
12398         (rst-mode-lazy, rst-font-lock-keywords)
12399         (rst-font-lock-extend-region)
12400         (rst-font-lock-extend-region-internal)
12401         (rst-font-lock-extend-region-extend)
12402         (rst-font-lock-find-unindented-line-limit)
12403         (rst-font-lock-find-unindented-line-match)
12404         (rst-adornment-level, rst-font-lock-adornment-level)
12405         (rst-font-lock-adornment-match)
12406         (rst-font-lock-handle-adornment-pre-match-form)
12407         (rst-font-lock-handle-adornment-matcher): Major revision of
12408         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
12410         (rst-preferred-adornments, rst-adjust-hook)
12411         (rst-new-adornment-down, rst-preferred-bullets)
12412         (rst-preferred-bullets, rst-indent, rst-indent-width)
12413         (rst-indent-field, rst-indent-literal-normal)
12414         (rst-indent-literal-minimized, rst-indent-comment): Change,
12415         extend and improve customization.
12417         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12418         (rst-normalize-cursor-position, rst-get-decoration)
12419         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12420         (rst-rstrip, rst-toc-insert-find-delete-contents)
12421         (rst-shift-fill-region, rst-compute-bullet-tabs)
12422         (rst-debug-print-tabs, rst-debug-mark-found)
12423         (rst-shift-region-guts, rst-shift-region-right)
12424         (rst-shift-region-left, rst-use-char-classes)
12425         (rst-font-lock-keywords-function)
12426         (rst-font-lock-indentation-point)
12427         (rst-font-lock-find-unindented-line-begin)
12428         (rst-font-lock-find-unindented-line-end)
12429         (rst-font-lock-find-unindented-line)
12430         (rst-font-lock-adornment-point, rst-font-lock-level)
12431         (rst-adornment-level-alist): Remove functions and variables.
12433         (rst-compare-adornments, rst-get-adornment-match)
12434         (rst-suggest-new-adornment, rst-get-adornments-around)
12435         (rst-adornment-complete-p, rst-get-next-adornment)
12436         (rst-adjust-adornment, rst-display-adornments-hierarchy)
12437         (rst-straighten-adornments): Standardize function names to
12438         use "adornment" instead of "decoration".  Correct callers.
12439         Similar standardizing in many places.
12441         (rst-update-section, rst-adjust, rst-promote-region)
12442         (rst-enumerate-region, rst-bullet-list-region)
12443         (rst-repeat-last-character): Correct use of `interactive'.
12445         (rst-classify-adornment, rst-find-all-adornments)
12446         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12447         (rst-find-leftmost-column, rst-repeat-last-character):
12448         Refactor functions.
12450         (rst-find-title-line, rst-reset-section-caches)
12451         (rst-get-adornments-around, rst-adjust-adornment-work)
12452         (rst-arabic-to-roman, rst-roman-to-arabic)
12453         (rst-insert-list-pos, rst-insert-list-new-item)
12454         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12455         New functions.
12457         (rst-all-sections, rst-section-hierarchy)
12458         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12459         New variables.
12461         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12462         configuration instead of only buffer.  Change where necessary.
12464         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12465         (rst-shift-region, rst-adaptive-fill): New functions for
12466         indentation and filling.
12468         (rst-comment-line-break, rst-comment-indent)
12469         (rst-comment-insert-comment, rst-comment-region)
12470         (rst-uncomment-region): New functions for handling comments.
12472         (rst-compile): Quote shell arguments.
12474         (rst-compile-pdf-preview, rst-compile-slides-preview):
12475         Delete temporary files after use.
12477 2012-05-05  Glenn Morris  <rgm@gnu.org>
12479         * calendar/cal-html.el: Optionally include holidays in the output.
12480         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12481         (cal-html-holidays): New option.
12482         (cal-html-css-default): Add holiday entry.
12483         (holiday-in-range): Autoload it.
12484         (cal-html-htmlify-entry): Add optional class argument.
12485         (cal-html-htmlify-list): Add optional holidays argument.
12486         (cal-html-insert-agenda-days): Include holidays in the output.
12487         (cal-html-one-month): Maybe include holidays.
12489         * calendar/holidays.el (holiday-in-range):
12490         Move here from cal-tex-list-holidays.
12491         * calendar/cal-tex.el (cal-tex-list-holidays):
12492         Make it an obsolete alias for holiday-in-range.  Update all callers.
12494 2012-05-05  Chong Yidong  <cyd@gnu.org>
12496         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12497         Nextstep.
12499 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
12501         * files.el (file-auto-mode-skip): New var.
12502         (set-auto-mode-1): Use it.
12504 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12506         * repeat.el: Use lexical-binding.
12507         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12508         (repeat-undo-count): Remove.
12509         (repeat):
12510         * progmodes/octave-mod.el (octave-abbrev-start):
12511         * progmodes/f90.el (f90-abbrev-start):
12512         * face-remap.el (text-scale-adjust):
12513         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12515         * emacs-lisp/pcase.el (pcase--let*): New function.
12516         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12517         a bit more.
12518         (pcase--split-pred): Be more clever about ruling out overlap between
12519         a predicate and some constant pattern.
12520         (pcase--q1): Use `null' instead of (eq foo nil).
12522         * subr.el (setq-local, defvar-local): New macros.
12523         (kbd): Redefine as an alias.
12524         (with-selected-window): Leave unrelated frames alone.
12525         (set-temporary-overlay-map): New function.
12527 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12529         * subr.el (user-error): New function.
12530         * window.el (switch-to-buffer):
12531         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12532         (smerge-match-conflict):
12533         * simple.el (previous-matching-history-element)
12534         (next-matching-history-element, goto-history-element, undo-more)
12535         (undo-start):
12536         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12537         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12538         (next-file, tags-loop-scan, list-tags, complete-tag):
12539         * progmodes/compile.el (compilation-loop):
12540         * mouse.el (mouse-minibuffer-check):
12541         * man.el (Man-bgproc-sentinel, Man-goto-page):
12542         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12543         (Info-history-forward, Info-follow-reference, Info-menu)
12544         (Info-extract-menu-item, Info-extract-menu-counting)
12545         (Info-forward-node, Info-backward-node, Info-next-menu-item)
12546         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12547         (Info-next-reference, Info-prev-reference, Info-index)
12548         (Info-index-next, Info-follow-nearest-node)
12549         (Info-copy-current-node-name):
12550         * imenu.el (imenu--make-index-alist)
12551         (imenu-default-create-index-function, imenu-add-to-menubar):
12552         * files.el (basic-save-buffer, recover-file):
12553         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12554         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12555         (checkdoc-message-text, checkdoc-defun):
12556         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12557         * cus-edit.el (customize-changed-options, customize-rogue)
12558         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12559         (custom-variable-mark-to-reset-standard)
12560         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12561         (custom-file):
12562         * completion.el (check-completion-length):
12563         * comint.el (comint-search-arg)
12564         (comint-previous-matching-input-string-position)
12565         (comint-previous-matching-input)
12566         (comint-replace-by-expanded-history-before-point, comint-send-input)
12567         (comint-copy-old-input, comint-backward-matching-input)
12568         (comint-goto-process-mark, comint-set-process-mark):
12569         * calendar/calendar.el (calendar-cursor-to-date): Use it.
12570         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12572 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12574         * dabbrev.el (dabbrev--ignore-case-p): New function.
12575         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12576         Use it.
12578         * files.el (automount-dir-prefix): Mark as obsolete.
12580 2012-05-04  Glenn Morris  <rgm@gnu.org>
12582         * patcomp.el, play/bruce.el: Move to obsolete/.
12584 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
12586         Fix minor Y10k bugs.
12587         * arc-mode.el (archive-unixdate):
12588         * autoinsert.el (auto-insert-alist):
12589         * calc/calc-forms.el (math-this-year):
12590         * emacs-lisp/copyright.el (copyright-current-year)
12591         (copyright-update-year, copyright):
12592         * tar-mode.el (tar-clip-time-string):
12593         * time.el (display-time-update):
12594         Don't assume years have 4 digits.
12596 2012-05-04  Chong Yidong  <cyd@gnu.org>
12598         * dos-w32.el (file-name-buffer-file-type-alist)
12599         (direct-print-region-use-command-dot-com):
12600         * ffap.el (ffap-menu-regexp):
12601         * find-file.el (ff-special-constructs):
12602         * follow.el (follow-debug):
12603         * forms.el (forms--debug):
12604         * iswitchb.el (iswitchb-all-frames):
12605         * ido.el (ido-all-frames):
12606         * emacs-lisp/timer.el (timer-max-repeats):
12607         * mail/feedmail.el (feedmail-mail-send-hook)
12608         (feedmail-mail-send-hook-queued):
12609         * mail/footnote.el (footnote-signature-separator):
12610         * mail/mailabbrev.el (mail-alias-separator-string)
12611         (mail-abbrev-mode-regexp):
12612         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12613         * progmodes/idlwave.el (idlwave-libinfo-file)
12614         (idlwave-default-completion-case-is-down)
12615         (idlwave-library-routines): Convert defvars to defcustoms.
12617         * mail/rmail.el (rmail-decode-mime-charset):
12618         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12619         (idlwave-shell-fix-inserted-breaks)
12620         (idlwave-shell-activate-alt-keybindings)
12621         (idlwave-shell-use-breakpoint-glyph):
12622         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12624 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12626         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12628 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
12630         * progmodes/verilog-mode.el (font-lock-keywords):
12631         Fix mis-highligting auto.  Reported by Craig Barner.
12632         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12633         defines from global name space.  Reported by Dan Dever.
12634         (verilog-auto-reset, verilog-auto-reset-widths)
12635         (verilog-auto-tieoff): Support using unbased numbers for
12636         AUTORESET and AUTOTIEOFF.
12637         (verilog-submit-bug-report): Update variable list.
12638         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12639         parenthesis from not matching.  Reported by Michael Rytting.
12640         (verilog-auto-template-lint): Fix hash error when linting modules
12641         with no used templates.
12642         (verilog-warn, verilog-warn-error)
12643         (verilog-warn-fatal): When non-interactive report multiple
12644         warnings before exiting.  Suggested by Brad Dobbie.
12645         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12646         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12647         to report unused template errors.  Reported by Brad Dobbie.
12648         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12649         nets, bug438.  Reported by Vns Blore.
12650         (verilog-auto-inout-module, verilog-auto-reg)
12651         (verilog-read-decls, verilog-read-sub-decls-sig)
12652         (verilog-signals-edit-wire-reg, verilog-signals-with):
12653         Fix passing of Verilog data types in ANSI input/output ports
12654         such as "output logic" into the AUTOs.  Special case "wire" and
12655         "reg" for backwards compatibility presuming Verilog 2001.
12656         (verilog-auto-ascii-enum): Add "auto enum" as alias.
12657         (verilog-preprocess): Fix replication of preprocess output.
12658         Reported by Brad Dobbie.
12659         (verilog-auto-inst-interfaced-ports):
12660         Create verilog-auto-inst-interfaced-ports, bug429.
12661         Reported by Julian Gorfajn.
12662         (verilog-after-save-font-hook)
12663         (verilog-before-save-font-hook): New variable.
12664         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12665         (verilog-save-font-mods): Wrap disabling fontification, reported
12666         by David Rogoff.
12667         (verilog-do-indent, verilog-pretty-declarations-auto)
12668         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12669         Reported by Pierre-David Pfister.
12670         (verilog-set-auto-endcomments): Fix endtask auto comments outside
12671         of class declarations, bug292.  Reported by Kevin Heilman.
12672         (verilog-read-decls): Fix 'parameter type' not appearing in
12673         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
12674         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12675         AUTOINPUTs, bug411.  Reported by Jonathan Greenlaw.
12676         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12677         Reported by David Kravitz.
12679 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
12681         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12682         assignment with tests in ifs and for loops.
12683         (verilog-extended-complete-re, verilog-complete-reg): Change so
12684         that DPI inport functions don't look like fuction declarations.
12685         (verilog-pretty-expr): Don't line up assignment
12686         operations to the test and increment in if and for loops
12687         (verilog-extended-complete-re, verilog-complete-reg): Change so
12688         that DPI inport functions don't look like fuction declarations.
12690 2012-05-03  Kenichi Handa  <handa@m17n.org>
12692         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12693         decoding, and show a warning message without signaling an error
12694         (Bug#11282).
12696 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12698         * emacs-lisp/bytecomp.el
12699         (byte-compile-file-form-custom-declare-variable): Compile all elements,
12700         since cconv.el might have introduced :fun-body, internal-make-closure,
12701         and friends for bytecomp to handle (bug#11391).
12702         * custom.el (defcustom): Avoid ((λ ..) ..).
12704 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12706         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12708 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
12710         * notifications.el (dbus-debug):
12711         * term/linux.el (gpm-mouse-enable):
12712         * term/screen.el (xterm-register-default-colors): Declare.
12714 2012-05-02  Chong Yidong  <cyd@gnu.org>
12716         * cus-start.el (gc-cons-percentage, exec-suffixes)
12717         (dos-display-scancodes, dos-hyper-key, dos-super-key)
12718         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12719         (make-cursor-line-fully-visible, void-text-area-pointer)
12720         (font-list-limit): Add customization data.
12722         * allout.el (allout-exposure-change-functions)
12723         (allout-structure-added-functions)
12724         (allout-structure-deleted-functions)
12725         (allout-structure-shifted-functions): Rename abnormal hooks from
12726         *-hook, and convert to defcustoms.
12727         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12728         Convert to defcustoms.
12729         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12731         * allout-widgets.el: Hook callers changed.
12733 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
12735         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12736         the yanked message in preference to the default value of
12737         buffer-file-coding-system.
12739 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
12741         * window.el (display-buffer--action-function-custom-type):
12742         Fix entry.
12744 2012-05-02  Alan Mackenzie  <acm@muc.de>
12746         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12748 2012-05-01  Glenn Morris  <rgm@gnu.org>
12750         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12752         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
12754         * cus-edit.el (custom-variable-documentation): Simplify with format.
12756 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12757             Stefan Monnier  <monnier@iro.umontreal.ca>
12759         * simple.el (suggest-key-bindings, execute-extended-command):
12760         Move from keyboard.c.
12762 2012-05-01  Chong Yidong  <cyd@gnu.org>
12764         * follow.el: Eliminate advice.
12765         (set-process-filter, process-filter, sit-for): Advice deleted.
12766         (follow-mode-off-hook): Obsolete hook removed.
12767         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12768         Vars deleted.
12769         (follow-auto): Use a :set function.
12770         (follow-mode): Rewritten.  Don't advise process filters.
12771         (follow-switch-to-current-buffer-all, follow-scroll-up)
12772         (follow-scroll-down): Assume follow-mode is bound.
12773         (follow-comint-scroll-to-bottom)
12774         (follow-align-compilation-windows): New functions.
12775         (follow--window-sorter): New function.
12776         (follow-all-followers): Use it to explicitly sort windows by their
12777         positions; don't make assumptions about next-window order.
12778         (follow-windows-start-end, follow-delete-other-windows-and-split)
12779         (follow-calc-win-start): Doc fix.
12780         (follow-windows-aligned-p, follow-select-if-visible): Don't call
12781         vertical-motion unnecessarily.
12782         (follow-adjust-window): New function.
12783         (follow-post-command-hook): Use it.
12784         (follow-call-set-process-filter, follow-call-process-filter)
12785         (follow-intercept-process-output, follow-tidy-process-filter-alist)
12786         (follow-stop-intercept-process-output, follow-generic-filter):
12787         Functions deleted.
12788         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12789         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12790         New functions, replacing advice on scroll-bar-* commands.
12791         (follow-mwheel-scroll): New function (Bug#4112).
12793         * comint.el (comint-adjust-point): New function.
12794         (comint-postoutput-scroll-to-bottom): Use it.
12795         Call follow-comint-scroll-to-bottom for Follow mode buffers.
12797 2012-05-01  Glenn Morris  <rgm@gnu.org>
12799         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12800         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12801         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12802         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12803         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12804         Remove no-byte-compile setting.
12806 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12808         * minibuffer.el (completion-table-with-quoting): Fix compatibility
12809         all-completions code to not return a number in the last cdr.
12811 2012-04-30  Leo Liu  <sdl.web@gmail.com>
12813         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12814         read-only error.
12816 2012-04-29  Chong Yidong  <cyd@gnu.org>
12818         * follow.el (follow-calc-win-end): Rewrite to handle partial
12819         screen lines correctly (Bug#8390).
12820         (follow-avoid-tail-recenter): Minor cleanup.
12822 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12824         Avoid the obsolete `assoc' package.
12825         * speedbar.el (speedbar-refresh): Avoid adelete.
12826         (speedbar-file-lists): Simplify and avoid aput.
12827         * man.el (Man--sections, Man--refpages): New vars, replacing
12828         Man-sections-alist and Man-refpages-alist.
12829         (Man-build-section-alist, Man-build-references-alist):
12830         Use them; avoid aput.
12831         (Man--last-section, Man--last-refpage): New vars.
12832         (Man-follow-manual-reference): Use them.
12833         Use the `default' arg of completing-read.
12834         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
12836 2012-04-27  Chong Yidong  <cyd@gnu.org>
12838         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
12840         * startup.el (x-apply-session-resources): New function.
12842         * term/ns-win.el (ns-initialize-window-system):
12843         * term/w32-win.el (w32-initialize-window-system):
12844         * term/x-win.el (x-initialize-window-system): Use it to properly
12845         set menu-bar-mode and other vars from X resources, even if the
12846         initial frame is not a window-system frame (Bug#2299).
12848         * subr.el (read-key): Avoid running filter function when setting
12849         up temporary tool bar entries (Bug#9922).
12851 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
12853         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
12854         (Bug#11344)
12856 2012-04-27  Chong Yidong  <cyd@gnu.org>
12858         * select.el (xselect--encode-string): New function, split from
12859         xselect-convert-to-string.
12860         (xselect-convert-to-string): Use it.
12861         (xselect-convert-to-filename, xselect-convert-to-os)
12862         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
12863         returned strings are properly encoded (Bug#11315).
12865 2012-04-27  Chong Yidong  <cyd@gnu.org>
12867         * simple.el (delete-active-region): Move to killing custom group.
12869 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
12871         * progmodes/which-func.el (which-func-current): Quote %
12872         characters for mode-line processing.
12874 2012-04-27  Chong Yidong  <cyd@gnu.org>
12876         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
12877         reaching eob (Bug#11286).
12879 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
12881         * progmodes/gdb-mi.el (gdb-control-level): New variable.
12882         (gdb): Make it buffer-local and init to zero.
12883         (gdb-control-commands-regexp): New variable.
12884         (gdb-send): Don't wrap in "-interpreter-exec console" if
12885         gdb-control-level is positive.  Increment gdb-control-level
12886         whenever the command matches gdb-control-commands-regexp, and
12887         decrement it each time the command is "end".  (Bug#11279)
12889 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
12891         * window.el (adjust-window-trailing-edge, enlarge-window)
12892         (shrink-window, window-resize):
12893         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
12894         windows (Bug#11276).
12896 2012-04-27  Chong Yidong  <cyd@gnu.org>
12898         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
12899         fix "missing prefix" warning.  All callers changed.
12901 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12903         * emacs-lisp/assoc.el: Move to obsolete/.
12905 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12907         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
12909         * term/ns-win.el (ns-define-service):
12910         * progmodes/pascal.el (pascal-goto-defun):
12911         * progmodes/js.el (js--read-tab):
12912         * progmodes/etags.el (tags-lazy-completion-table):
12913         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
12914         * emacs-lisp/ewoc.el (ewoc--wrap):
12915         * emacs-lisp/assoc.el (aput, adelete, amake):
12916         * doc-view.el (doc-view-convert-current-doc):
12917         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
12919 2012-04-26  Chong Yidong  <cyd@gnu.org>
12921         * image.el (image-type-from-buffer): Only return supported image
12922         type (Bug#9045).
12924         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
12925         value, for symmetry with diff-end-of-hunk.
12926         (diff-split-hunk, diff-find-source-location)
12927         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
12928         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
12929         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
12930         compute the relevant hunk or file properly (Bug#6005).
12931         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
12933 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12935         * vc/vc-mtn.el:
12936         * vc/vc-hg.el:
12937         * vc/vc-git.el:
12938         * vc/vc-dir.el:
12939         * vc/vc-cvs.el:
12940         * vc/vc-bzr.el:
12941         * vc/vc-arch.el:
12942         * vc/vc.el: Replace lexical-let by lexical-binding.
12943         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
12944         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
12945         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
12947 2012-04-26  Chong Yidong  <cyd@gnu.org>
12949         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
12950         (diff-mode-shared-map): Bind it to / and [remap undo].
12952         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
12953         (ediff-window-setup-function): Use it as the default, to set up
12954         windows based on whether the current frame is graphical (Bug#2138).
12955         (ediff-choose-window-setup-function-automatically): Make obsolete.
12957         * vc/ediff-init.el: Always define ediff-pixel-width/height.
12959 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12961         * ffap.el: Remove old code for obsolete package.
12962         (ffap-complete-as-file-p): Remove.
12964         Use completion-table-with-quoting for comint and pcomplete.
12965         * comint.el (comint--unquote&requote-argument)
12966         (comint--unquote-argument, comint--requote-argument): New functions.
12967         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
12968         (comint-quote-filename): Use regexp-opt-charset.
12969         (comint--common-suffix, comint--common-quoted-suffix)
12970         (comint--table-subvert): Remove.
12971         (comint-unquote-function, comint-requote-function): New vars.
12972         (comint--complete-file-name-data): Use them with
12973         completion-table-with-quoting.
12974         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
12975         * pcomplete.el (pcomplete-arg-quote-list)
12976         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
12977         (pcomplete-unquote-argument-function): Default to non-nil.
12978         (pcomplete-unquote-argument): Simplify.
12979         (pcomplete--common-quoted-suffix): Remove.
12980         (pcomplete-requote-argument-function): New var.
12981         (pcomplete--common-suffix): New function.
12982         (pcomplete-completions-at-point): Use completion-table-with-quoting
12983         and completion-table-subvert.
12985         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
12986         (minibuffer--double-dollars): Preserve properties.
12987         (completion--sifn-requote): New function.
12988         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
12990         * minibuffer.el: Add support for completion of quoted/escaped data.
12991         (completion-table-with-quoting, completion-table-subvert): New funs.
12992         (completion--twq-try, completion--twq-all): New functions.
12993         (completion--nth-completion): New function.
12994         (completion-try-completion, completion-all-completions): Use it.
12996 2012-04-25  Leo Liu  <sdl.web@gmail.com>
12998         * progmodes/python.el (python-pdbtrack-get-source-buffer):
12999         Use compilation-message if available to find real filename.
13001 2012-04-25  Chong Yidong  <cyd@gnu.org>
13003         * vc/diff-mode.el (diff-setup-whitespace): New function.
13004         (diff-mode): Use it.
13006         * vc/diff.el (diff-sentinel):
13007         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
13008         Whitespace mode variables based on diff style (Bug#8612).
13010 2012-04-25  Leo Liu  <sdl.web@gmail.com>
13012         * progmodes/python.el (python-send-region): Add suffix .py to the
13013         temp file.
13015         * files.el (auto-mode-alist): Use javascript-mode instead.
13017 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
13019         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
13021         * net/soap-client.el (soap-resolve-references-for-sequence-type)
13022         (soap-resolve-references-for-array-type): Hack to prevent self
13023         references, see Bug#9.
13024         (soap-parse-envelope): Report the contents of the 'detail' node
13025         when receiving a fault reply.
13026         (soap-parse-envelope): Report the contents of the entire 'detail' node.
13028         * net/soap-inspect.el (soap-sample-value-for-simple-type)
13029         (soap-inspect-simple-type): New function.
13031         * net/soap-client.el (soap-simple-type): New struct.
13032         (soap-default-xsd-types, soap-default-soapenc-types)
13033         (soap-decode-basic-type, soap-encode-basic-type):
13034         support unsignedInt and double basic types.
13035         (soap-resolve-references-for-simple-type)
13036         (soap-parse-simple-type, soap-encode-simple-type): New function.
13037         (soap-parse-schema): Parse xsd:simpleType declarations.
13039         * net/soap-client.el (soap-default-xsd-types)
13040         (soap-default-soapenc-types): Add integer, byte and anyURI types.
13041         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
13042         the local name of "soapenc:Array".
13043         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
13044         decoding integer, byte and anyURI xsd types.
13046 2012-04-25  Chong Yidong  <cyd@gnu.org>
13048         * cus-edit.el (custom-buffer-create-internal): Update header text.
13050 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
13052         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
13053         settings on 'system-type', not on 'window-system'.  On MS-Windows,
13054         set interactive-mode on in GDB.
13056 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13058         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
13059         (ruby-syntax-propertize-regexp): Remove.
13060         (ruby-syntax-propertize-function): Split regexp into chunks.
13061         Match following code directly.
13063 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
13065         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
13066         (ruby-syntax-propertize-regexp): New function.
13067         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
13068         by a special keyword.
13070         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
13071         (ruby-syntax-general-delimiters-goto-beg)
13072         (ruby-syntax-propertize-general-delimiters): New functions.
13073         (ruby-syntax-propertize-function): Use them to handle GDL.
13074         (ruby-font-lock-keywords): Move old handling of GDL...
13075         (ruby-font-lock-syntactic-keywords): .. to here.
13076         (ruby-calculate-indent): Adjust indentation for GDL.
13078 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
13080         * notifications.el (top): Remove unneeded declarations.
13081         (notifications-specification-version): Change to "1.2".
13082         (notifications-interface, notifications-notify-method)
13083         (notifications-close-notification-method): Fix docstring.
13084         (notifications-get-capabilities-method): New defconst.
13085         (notifications-notify): Add :action-items, :resident and
13086         :transient hints.  Change "image_data" to "image-data" and
13087         "image_path" to "image-path".
13088         (notifications-get-capabilities): New defun.
13090 2012-04-24  Leo Liu  <sdl.web@gmail.com>
13092         * progmodes/python.el: Move hideshow setup to the end.
13094 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
13096         * window.el (handle-select-window): Clear echo area since this is
13097         no more done by read_char (Bug#11304).
13099 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13101         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
13102         and `/ M' to filter-derived-mode.
13103         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
13104         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
13105         (ibuffer-mark-by-mode): Use default rather than initial-input.
13106         (ibuffer-filter-by-derived-mode): Autoload and require-match.
13108 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
13110         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
13111         (ibuffer-filter-by-derived-mode): New filter.
13112         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
13114 2012-04-23  Andreas Politz  <politza@fh-trier.de>
13116         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
13118 2012-04-23  Chong Yidong  <cyd@gnu.org>
13120         * cus-edit.el (customize-apropos, customize-apropos-options):
13121         Disable matching of non-option variables (Bug#11176).
13122         (customize-option, customize-option-other-window)
13123         (customize-changed-options): Doc fix.
13124         (customize-apropos-options, customize-apropos-faces)
13125         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
13127         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
13128         Fix word list splitting (Bug#11132).
13129         (apropos-symbol, apropos-keybinding, apropos-label)
13130         (apropos-property, apropos-function-button)
13131         (apropos-variable-button, apropos-misc-button): New faces.
13132         (apropos-symbol-face, apropos-keybinding-face)
13133         (apropos-label-face, apropos-property-face, apropos-match-face):
13134         Variables removed (Bug#8396).
13135         (apropos-library-button, apropos-format-plist, apropos-print)
13136         (apropos-print-doc, apropos-describe-plist): Callers changed.
13138 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
13140         * net/xesam.el (xesam-mode-map): Use let-bound map in
13141         initialization.  (Bug#11292)
13143 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13145         Preserve ispell session localwords when switching back to
13146         original buffer.
13148         * textmodes/ispell.el (ispell-buffer-session-localwords):
13149         New buffer-local variable to hold buffer session localwords.
13150         (ispell-kill-ispell): Add option 'clear to delete session
13151         localwords.
13152         (ispell-command-loop, ispell-change-dictionary)
13153         (ispell-buffer-local-words): Preserve session localwords when
13154         needed.
13156         * textmodes/flyspell.el (flyspell-process-localwords)
13157         (flyspell-do-correct): Preserve session localwords when needed.
13159 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13161         * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
13162         using obsolete `translation-table-for-input'.
13163         (ispell-word, ispell-process-line, ispell-complete-word):
13164         Use plain `insert' instead of removed `ispell-insert-word'.
13166 2012-04-22  Chong Yidong  <cyd@gnu.org>
13168         * cus-edit.el (custom-variable-menu)
13169         (custom-variable-reset-saved, custom-face-menu)
13170         (custom-face-reset-saved): If there is no saved value, make the
13171         "reset-saved" operation bring back the default (Bug#9509).
13172         (custom-face-state): Properly detect themed faces.
13174         * faces.el (face-spec-set): Stop supporting deprecated form of
13175         third arg.
13177 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
13179         Move functions from C to Lisp.  Make non-blocking method calls
13180         the default.  Implement further D-Bus standard interfaces.
13182         * net/dbus.el (dbus-message-internal): Declare function.
13183         Remove unneeded function declarations.
13184         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
13185         (dbus-message-type-method-return, dbus-message-type-error)
13186         (dbus-message-type-signal): Declare variables.  Remove local
13187         definitions.
13188         (dbus-interface-dbus, dbus-interface-peer)
13189         (dbus-interface-introspectable, dbus-interface-properties)
13190         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
13191         Adapt docstring.
13192         (dbus-interface-objectmanager): New defconst.
13193         (dbus-call-method, dbus-call-method-asynchronously)
13194         (dbus-send-signal, dbus-method-return-internal)
13195         (dbus-method-error-internal, dbus-register-service)
13196         (dbus-register-signal, dbus-register-method): New defuns, moved
13197         from dbusbind.c
13198         (dbus-call-method-handler, dbus-setenv)
13199         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
13200         New defuns.
13201         (dbus-call-method-non-blocking): Make it an obsolete function.
13202         (dbus-unregister-object, dbus-unregister-service)
13203         (dbus-handle-event, dbus-register-property)
13204         (dbus-property-handler): Obey the new structure of
13205         `bus-registered-objects'.
13206         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
13207         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
13208         Use `dbus-call-method'.
13210 2012-04-22  Chong Yidong  <cyd@gnu.org>
13212         * cus-edit.el (custom-commands, custom-reset-menu)
13213         (Custom-reset-standard): Tweak labels.
13214         (custom-reset-button-menu): Change default to t.
13215         (custom-buffer-create-internal): For the custom-reset-button-menu
13216         case, put the revert button first.
13217         (custom-group-subtitle): New face.
13218         (custom-group-value-create): Align docstring to a specific column.
13220         * wid-edit.el (widget-documentation-link-add): Don't handle
13221         indentation in this function.
13222         (widget-documentation-string-indent-to): New function.
13223         (widget-documentation-string-value-create): Use it.
13225         * autorevert.el (auto-revert):
13226         * epg-config.el (epg):
13227         * ibuffer.el (ibuffer):
13228         * mpc.el (mpc):
13229         * ses.el (ses):
13230         * eshell/eshell.el (eshell):
13231         * net/ange-ftp.el (ange-ftp):
13232         * progmodes/ebnf2ps.el (postscript):
13233         * progmodes/flymake.el (flymake):
13234         * progmodes/prolog.el (prolog):
13235         * progmodes/verilog-mode.el (verilog-mode):
13236         * progmodes/which-func.el (which-func):
13237         * term/xterm.el (xterm):
13238         * textmodes/picture.el (picture):
13239         * textmodes/tildify.el (tildify):
13240         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
13241         customization buffers.
13243 2012-04-22  Alan Mackenzie  <acm@muc.de>
13245         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13246         Adding a ) can hide the resulting (..) from searches.  Fix it.
13247         Bound the backward search to the position of the existing (.
13249 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
13251         * progmodes/verilog-mode.el (verilog-mode): Check whether
13252         which-func-modes is t before adding verilog-mode.
13253         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
13255 2012-04-21  Leo Liu  <sdl.web@gmail.com>
13257         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
13259 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
13261         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
13262         filling of the last column of a table (Bug#5635).
13263         (woman-find-next-control-line): New arg, specifying an additional
13264         regexp component for the control line.
13265         (woman2-roff-buffer): Use it.
13266         (woman-break-table): New function.
13267         (woman2-TS): Use it.
13269 2012-04-21  Chong Yidong  <cyd@gnu.org>
13271         * woman.el (woman-set-buffer-display-table, woman-decode-region)
13272         (woman-horizontal-escapes, woman-negative-vertical-space)
13273         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
13274         (WoMan-warn-ignored): Use ?\s instead of ?\ .
13276 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13278         * minibuffer.el (completion-file-name-table): Complete user names.
13280 2012-04-20  Leo Liu  <sdl.web@gmail.com>
13282         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
13283         and pcase-let*.
13285 2012-04-20  Chong Yidong  <cyd@gnu.org>
13287         * server.el (server-execute): Respect initial-buffer-choice if it
13288         is a string and there are no files to open (Bug#2825).
13289         (server-create-window-system-frame, server-create-tty-frame):
13290         Don't switch buffers here.
13291         (server-process-filter): Only try to open a window system frame if
13292         compiled with graphical support (Bug#8314).
13294 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
13296         * battery.el (battery-echo-area-format): Display remaining time
13297         for sysfs backend too (Bug#11269).
13298         (battery-linux-sysfs): Fix conditional for the charge.
13300 2012-04-20  Chong Yidong  <cyd@gnu.org>
13302         * progmodes/gdb-mi.el (gdb): Revert previous change.
13303         (gdb-inferior-io--init-proc): New function.
13304         (gdb-init-1): Use it.
13305         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
13306         responsible for allocating a new pty and hooking it to gdb when
13307         the old pty gets an EIO due to process exit.
13308         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
13309         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
13310         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
13312 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
13314         * window.el (window-min-size, window-sizable, window-min-delta)
13315         (window-max-delta, window--resizable, window-resizable)
13316         (window-total-size, window-full-height-p, window-full-width-p)
13317         (window-in-direction, window--resize-mini-window, window-resize)
13318         (window--resize-child-windows-normal)
13319         (window--resize-child-windows, window--resize-siblings)
13320         (window--resize-this-window, adjust-window-trailing-edge)
13321         (enlarge-window, shrink-window): Doc fixes.
13323 2012-04-20  Chong Yidong  <cyd@gnu.org>
13325         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13326         New function to call delete-process on the gdb-inferior buffer's pty.
13327         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13328         pty process (Bug#11273).
13329         (gdb-update): New arg to suppress talking to the gdb process.
13330         (gdb-done-or-error): Use it.
13331         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13332         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13333         sentinel not being called.
13335         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13337         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13339 2012-04-20  Glenn Morris  <rgm@gnu.org>
13341         * net/network-stream.el (open-network-stream): Doc fix.
13343 2012-04-20  Chong Yidong  <cyd@gnu.org>
13345         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13347 2012-04-20  Alan Mackenzie  <acm@muc.de>
13349         Ensure searching for keywords is case sensitive.
13351         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13352         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13353         (c-defun-name, c-mark-function, c-cpp-define-name)
13354         (c-comment-indent, c-scan-conditionals, c-indent-defun)
13355         (c-context-line-break): Bind case-fold-search to nil.
13357         * progmodes/cc-mode.el (c-font-lock-fontify-region):
13358         Bind case-fold-search to nil.
13360 2012-04-20  Chong Yidong  <cyd@gnu.org>
13362         * mail/sendmail.el (mail-bury): Call return action with the right
13363         Rmail buffer (Bug#11242).
13365         * server.el (server-process-filter): Handle corner case where both
13366         tty and nowait options are present (Bug#11102).
13368 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
13370         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13371         (top level): Put into the executable the ident-style '$Id:' tag on
13372         windows-nt as well.
13374 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13376         * electric.el (electric-indent-post-self-insert-function): Check that
13377         electric-indent-mode is enabled in current buffer.
13379 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
13381         * imenu.el (imenu-progress-message): Restore; it is "used" in
13382         erc/erc-imenu.el and net/snmp-mode.el.
13384 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
13386         * avoid.el (mouse-avoidance-mode): Mark unused arg.
13387         (mouse-avoidance-nudge-mouse): Remove unused binding.
13389         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13391         * descr-text.el (describe-char):
13392         * progmodes/python.el (python-describe-symbol):
13393         Don't call `toggle-read-only', set `buffer-read-only'.
13395         * imenu.el (imenu-default-goto-function): Mark unused args.
13396         (imenu-progress-message): Remove obsolete macro; all callers changed.
13398         * subr.el (keymap-canonicalize): Remove unused binding.
13399         (read-passwd): Mark unused arg.
13401         * tutorial.el (tutorial--display-changes): Remove unused binding.
13402         (tutorial--save-tutorial-to): Remove unused variable.
13404         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13405         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13406         (package-generate-autoloads, package-menu--generate)
13407         (package-menu--find-upgrades): Remove unused bindings.
13409         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13410         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
13411         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13412         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13413         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13414         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13415         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13416         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13417         (cua-delete-char-rectangle): Mark unused args.
13418         (cua-align-rectangle): Remove unused binding.
13420         * mail/rmail.el (compilation--message->loc)
13421         (epa--find-coding-system-for-mime-charset): Declare.
13423         * net/dbus.el (dbus-register-service): Declare.
13424         (dbus-name-owner-changed-handler): Remove unused binding.
13426         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13427         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13428         (nxml-scan-backward-within): Mark unused arg.
13429         (nxml-dynamic-markup-word): Remove unused binding.
13431         * mouse.el (mouse-menu-major-mode-map):
13432         * emacs-lisp/authors.el (authors-scan-change-log)
13433         (authors-add-to-author-list):
13434         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13435         * emacs-lisp/smie.el (smie-auto-fill):
13436         * mail/sendmail.el (mail-bury):
13437         * mail/unrmail.el (unrmail):
13438         * net/tls.el (open-tls-stream):
13439         * textmodes/picture.el (picture-mouse-set-point):
13440         Remove unused bindings.
13442 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
13444         * net/tramp.el (tramp-action-password): Let-bind
13445         `enable-recursive-minibuffers' to t.
13447 2012-04-18  Sam Steingold  <sds@gnu.org>
13449         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13450         instead of 'string to accommodate values like [f11].
13451         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13452         * progmodes/gdb-mi.el: Likewise.
13454 2012-04-18  Leo Liu  <sdl.web@gmail.com>
13456         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13457         current buffer.
13458         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13459         LOCAL is nil.
13461 2012-04-18  Chong Yidong  <cyd@gnu.org>
13463         * simple.el (line-move): Use forward-line if in batch mode
13464         (Bug#11053).
13466 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
13468         * files.el (after-find-file): Do not try to add a final newline if
13469         the buffer is read-only (Bug#11156).
13471 2012-04-17  Richard Stallman  <rms@gnu.org>
13473         * mail/rmail.el (rmail-start-mail):
13474         Pass (rmail-mail-return...) for the return-action.
13475         Pass (rmail-yank-current-message...) for the yank-action.
13476         (rmail-yank-current-message): New function.
13477         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13478         (rmail-reply): Likewise.
13479         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13481         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13482         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
13483         buffer, not newbuf.
13485 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
13487         * server.el (server-ensure-safe-dir): Simplify.
13489 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13491         * emacs-lisp/smie.el: Provide smarter auto-filling.
13492         (smie-auto-fill): New function.
13493         (smie-setup): Use it.
13495         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13497 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
13499         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13500         (comment-indent): Use it.
13502 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
13504         * ses.el: The overall change is to add cell renaming, that is
13505         setting fancy names for cell symbols other than name matching
13506         "\\`[A-Z]+[0-9]+\\'" regexp .
13507         (ses-localvars): Add ses--renamed-cell-symb-list.
13508         (ses-create-cell-variable): New defun.
13509         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13510         (ses-relocate-formula): Relocate formulas only for cells the
13511         symbols of which are not renamed, i.e. symbols whose names do not
13512         match regexp "\\`[A-Z]+[0-9]+\\'".
13513         (ses-relocate-all): Relocate values only for cells the symbols of
13514         which are not renamed.
13515         (ses-load): Create cells variables as the (ses-cell ...) are read,
13516         in order to check row col consistency with cell symbol name only
13517         for cells that are not renamed.
13518         (ses-replace-name-in-formula): New defun.
13519         (ses-rename-cell): New defun.
13521 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
13523         * progmodes/perl-mode.el (perl-indent-parens-as-block):
13524         New option (bug#11118).
13525         (perl-calculate-indent): Respect it.
13527 2012-04-17  Glenn Morris  <rgm@gnu.org>
13529         * dired-aux.el (dired-mark-read-string): Doc fix.
13531 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
13533         * dired-aux.el (dired-mark-read-string): Offer optional completion.
13534         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
13536 2012-04-17  Glenn Morris  <rgm@gnu.org>
13538         * mouse.el (mouse-drag-track):
13539         * speedbar.el (speedbar-frame-mode):
13540         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13542 2012-04-16  Leo Liu  <sdl.web@gmail.com>
13544         * progmodes/python.el: Trivial cleanup.
13546 2012-04-16  Glenn Morris  <rgm@gnu.org>
13548         * vc/vc.el (vc-string-prefix-p):
13549         * vc/pcvs-util.el (cvs-string-prefix-p):
13550         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13551         * mpc.el (mpc-string-prefix-p):
13552         Make all of these into obsolete aliases for string-prefix-p.
13553         Update callers.
13554         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13556         * textmodes/two-column.el: Move custom options to the start.
13557         (frame-width): Remove compat definition.
13558         (2C-associate-buffer, 2C-dissociate):
13559         Use with-current-buffer rather than save-excursion.
13560         (2C-dissociate): Force a mode-line update.
13561         (2C-autoscroll): Use ignore-errors.
13563         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13564         Autoload trivia.
13566         * emacs-lisp/cl-extra.el (*random-state*):
13567         Remove unnecessary declaration.
13569         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13571         * play/cookie1.el (cookie-snarf):
13572         Give an explicit error if input file cannot be read.
13574         * play/yow.el (yow-file): Use expand-file-name rather than concat.
13576         * progmodes/perl-mode.el (c-macro-expand):
13577         Remove unnecessary autoload (it is in loaddefs.el).
13579         * textmodes/picture.el (picture-desired-column)
13580         (picture-update-desired-column): Convert comments to doc-strings.
13581         (picture-substitute): Remove function.
13582         (picture-mode-map): Initialize in the defvar.
13584         * woman.el: Remove eval-after-load for tar-mode.
13585         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13586         (woman-tar-extract-file): Autoload it.
13588         * frame.el (automatic-hscrolling): Make this alias obsolete.
13590 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13592         * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13593         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13594         (ispell-dictionary-base-alist): Revert to original XEmacs
13595         friendly version for default.  [:alpha:] will be added in
13596         `ispell-set-spellchecker-params' if needed.
13598 2012-04-16  Chong Yidong  <cyd@gnu.org>
13600         * image.el (imagemagick--file-regexp): New variable.
13601         (imagemagick-register-types): Use it.
13602         (imagemagick-types-inhibit): Add :set function.  Allow new value
13603         of t to inhibit all types.
13605         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13606         so we can preload it.
13608         * loadup.el (fboundp): Preload regexp-opt, needed by
13609         imagemagick-register-types.
13611 2012-04-15  Chong Yidong  <cyd@gnu.org>
13613         * frame.el (scrolling): Remove nearly unused customization group.
13615         * scroll-all.el (scroll-all-mode): Move to windows group.
13617 2012-04-15  Chong Yidong  <cyd@gnu.org>
13619         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13621 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13623         Avoid the use of ((lambda ...) ...) in lexical-binding code.
13624         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13626 2012-04-15  Glenn Morris  <rgm@gnu.org>
13628         * simple.el (process-file-side-effects): Doc fix.
13630 2012-04-15  Glenn Morris  <rgm@gnu.org>
13632         * international/mule-cmds.el (set-language-environment): Doc fix.
13634 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
13636         * server.el (server-auth-key, server-generate-key): Doc fixes.
13637         (server-get-auth-key): Doc fix.  Use `string-match-p'.
13638         (server-start): Reflow docstring.
13640 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
13642         * server.el (server-generate-key): `called-interactively-p'
13643         requires a parameter.
13645 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
13647         * server.el (server-auth-key): New variable.
13648         (server-generate-key, server-get-auth-key): New function.
13649         (server-start): Use the new variable and functions to allow
13650         setting a permanent server key (bug#9423).
13652 2012-04-14  Leo Liu  <sdl.web@gmail.com>
13654         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13656 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
13658         Spelling fixes.
13659         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13660         Emacs uses American spelling.
13662 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
13664         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13665         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
13666         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13667         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
13669 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13671         * progmodes/which-func.el (which-func-modes): Change default.
13673 2012-04-14  Kim F. Storm  <storm@cua.dk>
13675         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13676         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13678 2012-04-14  Chong Yidong  <cyd@gnu.org>
13680         * custom.el (custom-theme-set-variables): Doc fix.
13682 2012-04-14  Glenn Morris  <rgm@gnu.org>
13684         * international/mule.el (set-auto-coding-for-load): Doc fix.
13686 2012-04-14  Alan Mackenzie  <acm@muc.de>
13688         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13689         imenu work again for Objective C Mode.  Correct the *-index values,
13690         these having been disturbed by a previous change in 2011-08.
13692         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13693         Correct two search limits.
13695 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13697         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13699 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
13701         * international/characters.el: Fix sorting.
13703 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13705         * international/characters.el: Add more missing Latin case pairs.
13707 2012-04-14  Glenn Morris  <rgm@gnu.org>
13709         * files.el (dir-locals-set-class-variables): Doc fix.
13711 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13713         * international/characters.el: Add set-case-syntax-pair call for
13714         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13715         counterpart.  (Bug#11209)
13717         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
13719 2012-04-14  Glenn Morris  <rgm@gnu.org>
13721         * calendar/holidays.el (calendar-check-holidays): Doc fix.
13723 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13725         * textmodes/ispell.el (ispell-dictionary-base-alist):
13726         Add data for Hebrew.
13728 2012-04-14  Chong Yidong  <cyd@gnu.org>
13730         * net/rcirc.el (rcirc-cmd-quit):
13731         Revert 2012-03-18 change (Bug#11192).
13733 2012-04-14  Glenn Morris  <rgm@gnu.org>
13735         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13737 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13739         * minibuffer.el (completion-in-region-mode-map):
13740         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
13742 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
13744         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13746 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
13748         * minibuffer.el (minibuffer-local-filename-syntax): New variable
13749         to allow `C-M-f' and `C-M-b' to move to the nearest path
13750         separator (bug#9511).
13752 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
13754         * avoid.el: Require cl when compiling.  And also move the
13755         `provide' to the end.
13757 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13759         * avoid.el (mouse-avoidance-banish-position): New variable.
13760         (mouse-avoidance-banish-destination): Use it (bug#10165).
13762 2012-04-13  Leo Liu  <sdl.web@gmail.com>
13764         * progmodes/which-func.el (which-func-modes): Add objc-mode.
13766 2012-04-13  Ken Brown  <kbrown@cornell.edu>
13768         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13769         this is no longer needed now that cygstart understands file:// URLs.
13770         (browse-url-filename-alist): For the same reason, don't modify
13771         file:// URLs on Cygwin.
13773 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13775         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13776         the region on shift if the binding is already shifted (bug#11221).
13778 2012-04-12  Glenn Morris  <rgm@gnu.org>
13780         * mail/mailpost.el: Move to obsolete/.
13782 2012-04-12  Drew Adams  <drew.adams@oracle.com>
13784         * imenu.el (imenu--generic-function): Ignore invisible definitions
13785         (bug#10123).
13787 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
13789         * hexl.el (hexl-bits): New variable.
13790         (hexl-options): Mention the variable in the doc string.
13791         (hexl-rulerise, hexl-line-displen): New functions.
13792         (hexl-mode): Mention the new variable.
13793         (hexl-mode, hexl-current-address, hexl-current-address):
13794         Use the displen.
13795         (hexl-ascii-start-column): New function.
13796         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13797         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13799 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13801         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13802         '("-i" ENCODING), in 2 separate command-line arguments, to specify
13803         the encoding, as expected by hunspell.
13805 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13807         * battery.el (battery--linux-sysfs-regexp): New const.
13808         (battery-status-function): Use it.  Remove yeeloong special case.
13809         (battery-yeeloong-sysfs): Remove.
13810         (battery-echo-area-format): Remove yeeloong special case.
13812 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13814         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13815         Reported by Noah Friedman.
13817         * subr.el (read-passwd): Use read-string.
13819 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13821         * vcursor.el (vcursor-move): Increase the priority of the overlay
13822         (bug#9663).
13824 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
13826         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13827         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13829 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
13831         * textmodes/artist.el (artist-mode): Convert artist-mode to use
13832         define-minor-mode (bug#10760).
13834 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
13836         * progmodes/grep.el (rgrep): Tweak the find command line so
13837         that directories matching `grep-find-ignored-files' won't be
13838         pruned (bug#10351).
13840 2012-04-11  Chong Yidong  <cyd@gnu.org>
13842         * startup.el (command-line): Remove support for long-obsolete
13843         variable font-lock-face-attributes.
13845 2012-04-11  Glenn Morris  <rgm@gnu.org>
13847         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
13849 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13851         * window.el (window--state-get-1): Obey window-point-insertion-type.
13853 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
13855         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
13856         to previous function when point is on the first character of a
13857         function.  Take care of that in `narrow-to-defun' (bug#6157).
13859 2012-04-11  Glenn Morris  <rgm@gnu.org>
13861         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
13862         not just file-errors.
13864         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
13865         (vc-bzr-sha1): Use internal sha1.
13867 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13869         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
13871 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
13873         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
13874         that start in the middle of the line (bug#10496).
13876 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
13878         * battery.el (battery-linux-proc-acpi): Only one battery is
13879         discharged at a time, but that seems to confuse battery.el when
13880         computing `rate-type' for the battery not being discharged
13881         (bug#10332).
13883 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13885         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
13887         * international/quail.el: Use dolist and simplify.
13888         (quail-define-package, quail-update-keyboard-layout)
13889         (quail-define-rules): Use dolist.
13890         (quail-insert-kbd-layout, quail-get-translation): CSE.
13892         * tmm.el: Use dolist, remove left over hook.
13893         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
13894         Use dolist.
13895         (calendar-load-hook): Don't mess with it.
13897         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
13898         Use derived-mode-p.  Run the diff asynchronously.
13900 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13902         * obsolete/mouse-sel.el: Add an Obsolete-since header.
13904 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
13906         * misc.el: Display absolute path of loaded DLLs (bug#10424).
13907         (list-dynamic-libraries--loaded): New function.
13908         (list-dynamic-libraries--refresh): Use it.
13910 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
13912         * progmodes/python.el (python-fill-paragraph):
13913         Make python-fill-region in a multiline string work when font-lock is
13914         disabled (bug#7018).
13916 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
13918         * language/european.el (cp775): Add oem/legacy (en)coding on
13919         DOS/MS Windows for the Baltic languages.  There are still plenty
13920         of texts written in this encoding/codepage (bug#6519).
13922 2012-04-10  Glenn Morris  <rgm@gnu.org>
13924         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
13925         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
13927 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
13929         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
13930         next-line "n" and previous-line "p" in order to make recentf more
13931         consistent with ibuffer, dired or org-mode (bug#9387).
13933 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13935         * image.el (put-image): Return the overlay created instead of the
13936         optional input string (bug#7834).  Note that this may break code
13937         that is (for some reason or other) depending on `put-image'
13938         returning the string.
13940         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
13942         * simple.el (zap-to-char): Allow zapping using input methods
13943         (bug#1580).
13945         * textmodes/fill.el (fill-region): Leave point and mark where they
13946         were before filling (bug#5399).
13948 2012-04-09  Glenn Morris  <rgm@gnu.org>
13950         * version.el (emacs-bzr-get-version):
13951         Handle lightweight checkouts of local branches.
13953 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
13955         * international/characters.el: Recover lost case pairs.  (Bug#11209)
13957 2012-04-09  Chong Yidong  <cyd@gnu.org>
13959         * custom.el (custom-variable-p): Return nil for non-symbol
13960         arguments instead of signaling an error.
13961         (user-variable-p): Obsolete alias for custom-variable-p.
13963         * apropos.el (apropos-variable):
13964         * files-x.el (read-file-local-variable):
13965         * simple.el (set-variable):
13966         * woman.el (woman-mini-help):
13967         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
13969 2012-04-09  Glenn Morris  <rgm@gnu.org>
13971         * startup.el (normal-top-level): Don't look for leim-list.el
13972         in places where it will not be found.  (Bug#910)
13974         * international/mule-cmds.el (set-default-coding-systems):
13975         * files.el (normal-mode):
13976         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
13977         This function was removed with ucs-tables.el in 2008.
13979 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
13981         * textmodes/ispell.el (ispell-check-version): For hunspell, set
13982         ispell-encoding8-command to "-i", without a trailing space.
13983         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
13984         separate command-line arguments, to specify the encoding, since
13985         that's how hunspell expects it.
13987 2012-04-08  Glenn Morris  <rgm@gnu.org>
13989         * loadup.el: Load bindings before cus-start.
13990         This reduces somewhat the number of "rogue" settings in emacs -Q.
13992 2012-04-07  Glenn Morris  <rgm@gnu.org>
13994         * version.el (emacs-bzr-get-version): New function.
13995         (emacs-bzr-version): New variable.
13996         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
13997         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
13999 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
14001         * international/uni-bidi.el, international/uni-category.el:
14002         * international/uni-combining.el, international/uni-decimal.el:
14003         * international/uni-decomposition.el, international/uni-digit.el:
14004         * international/uni-lowercase.el, international/uni-mirrored.el:
14005         * international/uni-name.el, international/uni-numeric.el:
14006         * international/uni-titlecase.el, international/uni-uppercase.el:
14007         Update for Unicode 6.1.
14009 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
14011         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
14013 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14015         * window.el (shrink-window): Mention the `window-min-height'
14016         variable in the doc string.
14018 2012-04-05  Bastien Guerry  <bzg@altern.org>
14020         * color.el (color-lighten-name): Fix typo.
14022 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14024         * server.el (server--on-display-p): New function.
14025         (server--on-display-p): Use it.
14027 2012-04-04  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
14029         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
14030         (bug#11145).
14032 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14034         * comint.el (comint--common-quoted-suffix): Check string boundary
14035         before comparing (bug#11158).
14036         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
14038 2012-04-04  Chong Yidong  <cyd@gnu.org>
14040         * minibuffer.el (completion-extra-properties): Doc fix.
14042         * subr.el (delayed-warnings-hook): Doc fix.
14044 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
14046         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
14047         selection (Bug#11159).
14048         (epa-insert-keys): Inform that the default public key will be
14049         exported if no key is selected.
14051 2012-04-04  Richard Stallman  <rms@gnu.org>
14053         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
14055 2012-04-03  Chong Yidong  <cyd@gnu.org>
14057         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
14058         mail-insert-file, not its obsolete alias mail-attach-file.
14060 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
14062         * notifications.el (notifications-notify): Fix docstring.
14064 2012-04-02  Glenn Morris  <rgm@gnu.org>
14066         * emacs-lisp/authors.el (authors-aliases): Another addition.
14068 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
14070         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
14071         `tramp-compat-call-process' instead of `tramp-local-call-process'.
14072         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
14074 2012-04-01  Chong Yidong  <cyd@gnu.org>
14076         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
14077         Handle root directory properly.
14078         (copy-directory): Caller changed.
14080         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14081         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
14083 2012-03-31  Glenn Morris  <rgm@gnu.org>
14085         * term/xterm.el (xterm-extra-capabilities): Doc fix.
14087         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
14089         * calendar/calendar.el (calendar-window-list)
14090         (calendar-hide-window): Restore.  (Bug#11140)
14091         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
14093         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
14095 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14097         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14098         Check if file is a symlink (Bug#10489).
14100         * files.el (copy-directory): Likewise.
14102 2012-03-30  Chong Yidong  <cyd@gnu.org>
14104         * image.el (imagemagick-types-inhibit)
14105         (imagemagick-register-types): Doc fix.
14107 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
14109         * textmodes/ispell.el (ispell-get-extended-character-mode):
14110         Disable extended-char-mode for hunspell.  hunspell does not support it
14111         and treats ~word as ordinary words in pipe mode.
14113 2012-03-30  Glenn Morris  <rgm@gnu.org>
14115         * tutorial.el (help-with-tutorial): Ensure local variables don't
14116         happen to make the buffer read-only.  (Bug#11127)
14118 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14120         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
14121         (perl-calculate-indent): Return `noindent' in strings.
14123 2012-03-28  Sam Steingold  <sds@gnu.org>
14125         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
14126         instead of the broken adhockery which does not prevent calendar
14127         buffers from being displayed at random after exit.
14128         (calendar-window-list, calendar-hide-window): Remove the broken
14129         adhockery.
14131 2012-03-28  Glenn Morris  <rgm@gnu.org>
14133         * replace.el (query-replace-map): Doc fix.
14135 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
14137         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
14138         contents.  (Bug#11109)
14140 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14142         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
14143         (bug#11077).
14144         (avl-tree--check, avl-tree--check-node): New funs.
14146 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
14148         * window.el (switch-to-visible-buffer): New option.
14149         (switch-to-prev-buffer, switch-to-next-buffer):
14150         Observe switch-to-visible-buffer.  Make sure that checking for a window
14151         showing a buffer already is done on the same frame.
14153 2012-03-27  Glenn Morris  <rgm@gnu.org>
14155         * startup.el (mail-host-address): Doc fix.
14157 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14159         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
14160         than 197 variables.
14162 2012-03-26  Ami Fischman  <ami@fischman.org>
14164         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
14166 2012-03-26  Glenn Morris  <rgm@gnu.org>
14168         * files.el (save-buffers-kill-emacs): Doc fix.
14170         * startup.el (normal-top-level, command-line, command-line-1):
14171         Give them doc strings.
14173 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
14175         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
14176         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
14178 2012-03-25  Chong Yidong  <cyd@gnu.org>
14180         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
14181         theme if it was previously enabled before (Bug#11031).
14183         * cus-theme.el (custom-theme-write-faces): Retrieve current face
14184         spec with custom-face-get-current-spec if its :shown-value is not
14185         determined yet (Bug#9337).
14186         (customize-create-theme, custom-theme-revert): Doc fixes.
14188         * button.el (button-at): Minor addition to docstring.
14190 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
14192         * vc/vc.el (vc-merge): Fix a prompt.
14194 2012-03-24  Chong Yidong  <cyd@gnu.org>
14196         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
14197         point (Bug#9623).
14199         * button.el (button-at): Minor addition to docstring.
14201 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14203         * newcomment.el (comment-choose-indent): No space after BOL.
14205 2012-03-22  Sam Steingold  <sds@gnu.org>
14207         * window.el (switch-to-prev-buffer): Revert last patch because the
14208         bug turned out to be an advertised feature (Elisp manual 28.14).
14210 2012-03-22  Glenn Morris  <rgm@gnu.org>
14212         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
14213         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
14215 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14217         * net/network-stream.el (network-stream-open-starttls): Make error
14218         message under Windows be less misleading.
14220 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
14222         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
14223         understands (bug#9942).
14225 2012-03-22  Chong Yidong  <cyd@gnu.org>
14227         * simple.el (end-of-visible-line): Handle return value of
14228         next-single-property-change properly (Bug#9371).
14230 2012-03-22  Kenichi Handa  <handa@m17n.org>
14232         * international/quail.el (quail-insert-kbd-layout): Fix previous
14233         change.  To avoid unwanted bidi reordering, use
14234         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
14236 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
14238         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
14239         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
14240         (ruby-beginning-of-indent): Be more careful with the difference
14241         between word-boundary and symbol boundary.
14242         (ruby-mode-syntax-table): Make : a symbol constituent.
14244 2012-03-21  Andreas Politz  <politza@fh-trier.de>
14246         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
14248 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14250         * progmodes/etags.el (tags-completion-at-point-function):
14251         Improve last fix.
14253         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
14255 2012-03-21  Sam Steingold  <sds@gnu.org>
14257         * progmodes/etags.el (tags-completion-at-point-function):
14258         Avoid the error when point is inside the pattern.
14260 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
14262         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
14263         line (Bug#10855).
14265 2012-03-21  Drew Adams  <drew.adams@oracle.com>
14267         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
14269 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
14271         * ido.el (ido-set-current-directory, ido-read-internal)
14272         (ido-choose-completion-string, ido-completion-help): Handle nil
14273         value of ido-completion-buffer (Bug#11008).
14275 2012-03-21  Sam Steingold  <sds@gnu.org>
14277         * window.el (switch-to-prev-buffer): Do not switch to a visible
14278         window previous buffer, just like with the frame previous buffers.
14280 2012-03-21  Chong Yidong  <cyd@gnu.org>
14282         * faces.el (make-face, make-empty-face, copy-face):
14283         * face-remap.el (face-remap-add-relative, face-remap-set-base):
14284         Doc fixes.
14286 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14288         * wid-edit.el (widget-complete-field): Remove (bug#11051).
14289         (widget-complete): Remove broken use of it.
14291 2012-03-20  Chong Yidong  <cyd@gnu.org>
14293         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14294         Use string-width and truncate-string-width to handle arbitrary
14295         characters.
14297 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
14299         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
14300         to draw rectangles, not squares.  (Regression introduced by revno
14301         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
14303 2012-03-18  Chong Yidong  <cyd@gnu.org>
14305         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
14306         it is not yet defined (for temacs).
14308 2012-03-18  Leo Liu  <sdl.web@gmail.com>
14310         * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
14311         prefix.
14313 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
14315         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
14316         (ispell-choices-win-default-height, ispell-silently-savep)
14317         (ispell-dictionary-alist, ispell-encoding8-command)
14318         (ispell-check-version, ispell-aspell-find-dictionary)
14319         (ispell-valid-dictionary-list, ispell-words-keyword)
14320         (ispell-get-word, ispell-internal-change-dictionary)
14321         (ispell-region, ispell-skip-region-list)
14322         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14323         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14324         (ispell-message-text-end, ispell-message)
14325         (ispell-buffer-local-parsing): Doc fix.
14327 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
14329         * htmlfontify.el: Add support for code block fontification for ODT
14330         export (Bug #9914).
14331         (hfy-optimisations): Define new option
14332         `body-text-only'
14333         (hfy-fontify-buffer): Honor above setting.
14334         (hfy-begin-span, hfy-end-span): New routines factored out form
14335         `hfy-fontify-buffer'.
14336         (hfy-begin-span-handler, hfy-end-span-handler): New variables
14337         that permit insertion of custom tags.
14338         (hfy-fontify-buffer): Use above handlers.
14339         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14340         (hfy-face-to-css): Re-defined to be a variable.
14341         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
14342         over multiple runs.  This is made possible by having the caller let
14343         bind a special variable `hfy-user-sheet-assoc'.
14344         (htmlfontify-string): New defun.
14345         (hfy-compile-face-map): Make sure that the last char in the
14346         buffer is correctly fontified.
14347         (hfy-face-resolve-face): Whitespace only change.
14349 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
14351         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14352         message more clear.
14354 2012-03-16  Leo Liu  <sdl.web@gmail.com>
14356         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14358 2012-03-16  Alan Mackenzie  <acm@muc.de>
14360         Further optimize the handling of large macros.
14362         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14363         limit to a call of `c-literal-limits'.
14364         (c-determine-+ve-limit): New function.
14365         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14366         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14367         In CASE 5B, restrict a search limit to 500.
14368         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14370         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14371         Restrict macro bounds to +-500 from after-change's BEG END.
14373 2012-03-16  Leo Liu  <sdl.web@gmail.com>
14375         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14377 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
14379         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14380         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
14382 2012-03-16  Glenn Morris  <rgm@gnu.org>
14384         * view.el (view-buffer, view-buffer-other-window)
14385         (view-buffer-other-frame): Doc fixes re special mode-class.
14387         * subr.el (eval-after-load): If named feature is provided not from
14388         a file, run after-load forms.  (Bug#10946)
14390         * calendar/calendar.el (calendar-insert-at-column):
14391         Handle non-unit-width characters a bit better.  (Bug#10978)
14393 2012-03-15  Chong Yidong  <cyd@gnu.org>
14395         * emacs-lisp/ring.el (ring-extend): New function.
14396         (ring-insert+extend): Extend the ring correctly (Bug#11019).
14398         * comint.el (comint-read-input-ring)
14399         (comint-add-to-input-history): Grow comint-input-ring lazily.
14401 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14403         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14404         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14406         * imenu.el: Fix multiple inheritance breakage (bug#9199).
14407         (imenu-add-to-menubar): Don't add a redundant index.
14408         (imenu-update-menubar): Handle a dynamically composed keymap.
14410 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14412         * mail/sendmail.el (mail-encode-header):
14413         Bind rfc2047-encode-encoded-words to nil.
14415 2012-03-13  Glenn Morris  <rgm@gnu.org>
14417         * calendar/calendar.el (calendar-string-spread):
14418         Handle non-unit-width characters a bit better.  (Bug#10978)
14420 2012-03-13  Leo Liu  <sdl.web@gmail.com>
14422         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14423         directory and file as argument (Bug#10822).
14425 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
14427         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14428         For dynamically generated code, follow $PC.
14429         (gdb-disassembly-handler-custom): Handle no function name case.
14431 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
14433         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14434         * emulation/ws-mode.el (ws-query-replace):
14435         * sort.el (sort-regexp-fields):
14436         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
14438 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14440         * dabbrev.el: Fix cycle completion order (bug#10963).
14441         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14442         (dabbrev-completion): Don't use an obarray; provide
14443         a cycle-sort-function.
14445 2012-03-12  Leo Liu  <sdl.web@gmail.com>
14447         * simple.el (kill-new): Use equal-including-properties for comparison.
14448         (kill-do-not-save-duplicates): Doc fix.
14450 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14452         * dabbrev.el: Fix cycle completion (bug#10963).
14453         Use lexical binding and wrap to 80 columns.
14454         (dabbrev-completion): Delay computing the list of completions.
14456 2012-03-12  Kenichi Handa  <handa@m17n.org>
14458         * international/quail.el (quail-insert-kbd-layout): Surround each
14459         row by LRO and PDF instead of inserting many LRMs.  Pad the left
14460         and right of each non-spacing marks.  Insert invisible space
14461         between lower and upper characters to prevent composition.
14463 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14465         * minibuffer.el (minibuffer-complete): Don't get confused when the
14466         function is run twice via different commands (bug#10958).
14467         (complete-with-action): Fix docstring.
14469 2012-03-12  Chong Yidong  <cyd@gnu.org>
14471         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14472         (nxml-completion-at-point-function): New function.
14473         (nxml-mode): Use it.
14474         (nxml-bind-meta-tab-to-complete-flag): Default to t.
14476         * emacs-lisp/package.el (package-unpack, package-unpack-single):
14477         Load generated autoloads file before byte compiling (Bug#10970).
14478         (package--make-autoloads-and-compile): New helper fun.
14480 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
14482         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14484 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
14486         * autorevert.el (auto-revert-handler): Ensure, that
14487         file-readable-p is applied only for local files or in
14488         auto-revert-tail-mode.
14490 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
14492         * server.el (server-eval-at): Handle non-tcp connections.
14493         Decode result string.
14495         * server.el (server-msg-size): New constant.
14496         (server-reply-print): New function.
14497         (server-eval-and-print): Use it.
14498         (server-eval-at): Use server-quote-arg and server-unquote-arg.
14499         Handle -print-nonl.
14501 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
14503         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14504         (Bug#10987).
14506 2012-03-11  Chong Yidong  <cyd@gnu.org>
14508         * simple.el (goto-line): Doc fix (Bug#9938).
14510         * subr.el (save-window-excursion): Doc fix (Bug#9979).
14512         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14513         when finished (Bug#10963).
14515 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
14517         * window.el (split-window-below): Fix bug in case where
14518         split-window-keep-point is nil (Bug#10971).
14520 2012-03-11  Juri Linkov  <juri@jurta.org>
14522         * replace.el (replace-highlight): Set isearch-word to nil
14523         unconditionally.  (Bug#10887)
14525 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
14527         * net/mairix.el (mairix-replace-invalid-chars): Rename from
14528         mairix-replace-illegal-chars; all callers changed.  Don't remove
14529         ^, ~, and = characters: they are meaningful in mairix search specs.
14530         (mairix-widget-create-query): Add usage information about mairix
14531         search forms: negating words, searching for substrings, etc.
14533 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
14535         * international/fontset.el (font-encoding-alist): Add an entry for
14536         ksx1001 (Bug#5667).
14538 2012-03-10  Richard Stallman  <rms@gnu.org>
14540         * mail/sendmail.el (mail-encode-header):
14541         Set rfc2047-encode-encoded-words.
14543         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14545         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14546         view buffer means not swapped.
14547         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14548         (rmail-write-region-annotate): Error if real text has disappeared.
14550         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14552 2012-03-10  Chong Yidong  <cyd@gnu.org>
14554         * emulation/cua-rect.el (cua--init-rectangles):
14555         * emulation/cua-base.el (cua--init-keymaps):
14556         Add delete-forward-char to remappings (Bug#9666).
14558 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
14560         * speedbar.el (speedbar-unhighlight-one-tag-line):
14561         Avoid unhighlighting due to frame switching (Bug#10275).
14563 2012-03-10  Chong Yidong  <cyd@gnu.org>
14565         * minibuffer.el (completion-in-region, completion-help-at-point):
14566         Give the completion field overlay a high priority (Bug#6830).
14568         * dired.el (dired-goto-file): Recognize absolute file name
14569         listings (Bug#7126).
14570         (dired-goto-file-1): New helper function.
14571         (dired-toggle-read-only): Inhibit warnings.
14573 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
14575         * net/dbus.el (dbus-property-handler): Return empty array if
14576         there are no properties.
14578 2012-03-09  Leo Liu  <sdl.web@gmail.com>
14580         * savehist.el (savehist-printable): Stricter check for string
14581         value (Bug#10937).
14583 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
14585         * mail/smtpmail.el (smtpmail-send-it):
14586         Bind coding-system-for-write to *-unix, so that FCC files are kept in
14587         valid mbox format.
14589 2012-03-09  Glenn Morris  <rgm@gnu.org>
14591         * files.el (dir-locals-find-file):
14592         Don't check result is regular, readable.
14593         (dir-locals-read-from-file): Demote errors.
14595 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
14597         * international/quail.el (quail-insert-kbd-layout):
14598         Insert invisible LRM characters before each character in a keyboard
14599         layout cell, to prevent their reordering by bidi display engine.
14600         For details, see the discussion in
14601         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14603 2012-03-08  Alan Mackenzie  <acm@muc.de>
14605         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14606         the starting position; make it extend the marked region when
14607         invoked repeatedly - all under appropriate circumstances.
14608         Fixes bugs #5525, #10906.
14610 2012-03-08  Glenn Morris  <rgm@gnu.org>
14612         * files.el (locate-dominating-file, dir-locals-find-file):
14613         Undo 2012-03-06 change.
14615 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
14617         * international/quail.el (quail-help):
14618         Force bidi-paragraph-direction be left-to-right.  See discussion in
14619         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14620         for the reason.
14622 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
14624         Avoid superfluous registering of signals.  (Bug#10807)
14626         * notifications.el (notifications-on-action-object)
14627         (notifications-on-close-object): New defvars.
14628         (notifications-on-action-signal, notifications-on-closed-signal):
14629         Unregister the signal if not needed any longer.
14630         (notifications-notify): Register `notifications-action-signal' or
14631         `notifications-closed-signal', if :on-action or :on-close has been
14632         passed as argument.
14634 2012-03-07  Chong Yidong  <cyd@gnu.org>
14636         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14637         non-X platforms.
14639 2012-03-06  Glenn Morris  <rgm@gnu.org>
14641         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14642         (x-disown-selection-internal, x-get-selection-internal):
14643         Doc fix (add arglist signatures).  (Bug#10783)
14645 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
14647         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14648         Handle breakpoints with no "type".
14650 2012-03-06  Glenn Morris  <rgm@gnu.org>
14652         * files.el (locate-dominating-file): Add optional predicate argument.
14653         (dir-locals-find-file): Make use of above change.
14655 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
14657         * info.el (Info-insert-dir): Also try "dir.gz".
14659 2012-03-06  Glenn Morris  <rgm@gnu.org>
14661         * files.el (dir-locals-find-file):
14662         Ignore non-readable or non-regular files.  (Bug#10928)
14664         * files.el (locate-dominating-file): Doc fix.
14666 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
14668         * calendar/calendar.el (calendar-set-mode-line):
14669         `getenv' returns a string.  (Bug#10951)
14671 2012-03-05  Leo Liu  <sdl.web@gmail.com>
14673         * simple.el (backward-delete-char-untabify): Constrain point to
14674         field (Bug#10939).
14676         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14678 2012-03-05  Chong Yidong  <cyd@gnu.org>
14680         * simple.el (count-words): If called from Lisp, return the word
14681         count, for symmetry with `count-lines'.  Arglist changed.
14682         (count-words--message): Args changed.  Consolidate counting code
14683         from count-words and count-words-region.
14684         (count-words-region): Caller changed.
14685         (count-lines-region): Make it an obsolete alias.
14687 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
14689         * saveplace.el (save-place-to-alist)
14690         (save-place-ignore-files-regexp): Allow value nil to disable this
14691         feature.
14693 2012-03-04  Chong Yidong  <cyd@gnu.org>
14695         * faces.el (face-spec-reset-face): For the default face, reset the
14696         attributes to default values (Bug#10748).
14698 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14700         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14701         previous patch: Check `message-send-mail-function', and not the
14702         default function (bug#10897).
14704 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
14706         * notifications.el (notifications-on-action-signal)
14707         (notifications-on-closed-signal): Check for unique service name of
14708         incoming event.  Fix error in removing entry.
14709         (top): Register for signals with wildcard service name.
14710         (notifications-notify): Use daemon unique service name for map entries.
14712 2012-03-04  Chong Yidong  <cyd@gnu.org>
14714         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14716 2012-03-04  Glenn Morris  <rgm@gnu.org>
14718         * abbrev.el (copy-abbrev-table, abbrev-table-p)
14719         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14720         (expand-abbrev, define-abbrev-table): Doc fixes.
14722 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14724         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14725         `message-default-send-mail-function' and not `send-mail-function'
14726         when doing the prompting for `sendmail-query-once' before sending
14727         in Message buffers (bug#10897).
14729         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14730         This is inconsistent with all the other stream functions, which leave
14731         the setting up to the higher levels (if so wanted) (bug#10931).
14733 2012-03-02  Alan Mackenzie  <acm@muc.de>
14735         Depessimize the handling of very large macros.
14737         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14738         (c-macro-cache-syntactic): New variables to implement a one
14739         element macro cache.
14740         (c-invalidate-macro-cache): New function.
14741         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14742         Adapt to use the new cache.
14743         (c-state-safe-place): Use better the cache of safe positions.
14744         (c-state-semi-nonlit-pos-cache)
14745         (c-state-semi-nonlit-pos-cache-limit):
14746         New variables for...
14747         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
14748         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14749         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14750         Use c-state-semi-safe-place.
14752         * progmodes/cc-langs.el (c-get-state-before-change-functions):
14753         Add c-invalidate-macro-cache to the C, C++, Obj entries.
14755 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
14757         * jka-compr.el (jka-compr-call-process):
14758         Apply `file-accessible-directory-p' only when the default directory is
14759         not remote.
14761 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
14763         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
14764         access of FILE2, if FILE1 does not exist.
14766         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14767         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14769         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14770         Add "PAGER=" to `process-environment'.
14772 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
14774         * progmodes/sql.el: Bug fix
14775         (sql-get-login-ext): Save login values in globals.
14776         (sql-get-login): Use new version of `sql-get-login-ext'.
14777         (sql-interactive-mode): Set global `sql-connection' to nil.
14778         (sql-connect): Set global values for connection.
14779         (sql-product-interactive): Save global values as buffer local.
14781 2012-02-29  Leo Liu  <sdl.web@gmail.com>
14783         * abbrev.el (define-abbrevs): Reset sys to nil.
14785 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14787         * files.el (file-equal-p): Rename from `files-equal-p'.
14788         Return nil when one or both files don't exist.
14789         (file-subdir-of-p): Now only top directory must exists,
14790         return nil if it doesn't.
14791         (copy-directory): No need to test with `file-subdir-of-p' after
14792         creating dir.
14793         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14794         to `file-equal-p'.
14796 2012-02-28  Glenn Morris  <rgm@gnu.org>
14798         * shell.el (shell-mode):
14799         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14800         * play/landmark.el (landmark-font-lock-face-O):
14801         * play/handwrite.el (handwrite):
14802         * play/gomoku.el (gomoku-O):
14803         * net/browse-url.el (browse-url-browser-display):
14804         * international/mule.el (define-charset):
14805         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14806         * filesets.el (filesets-find-file-delay):
14807         * eshell/em-xtra.el (eshell-xtra):
14808         * eshell/em-unix.el (eshell-grep):
14809         * emulation/viper.el (viper-mode):
14810         * emacs-lisp/regexp-opt.el (regexp-opt-group):
14811         * emacs-lisp/easymenu.el (easy-menu-define):
14812         * calendar/timeclock.el (timeclock-use-display-time):
14813         * bs.el (bs-mode):
14814         * bookmark.el (bookmark-save-flag):
14815         Doc fix (standardize possessive apostrophe usage).
14817 2012-02-27  Chong Yidong  <cyd@gnu.org>
14819         * emulation/viper-cmd.el (viper-intercept-ESC-key):
14820         Fix key-binding lookup for ESC key (Bug#9146).
14822         * font-lock.el (font-lock-specified-p): Rename from
14823         font-lock-spec-present.  Callers changed.
14825 2012-02-27  Daniel Hackney  <dan@haxney.org>
14827         * emacs-lisp/package.el (package-compute-transaction):
14828         Handle holding a package version to t in package-load-list.
14830 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
14832         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14833         (tramp-get-inode, tramp-get-device): Use cached values.
14835 2012-02-26  Alan Mackenzie  <acm@muc.de>
14837         Check there is a font-lock specification before doing initial
14838         fontification.
14840         * font-core.el (font-lock-mode): Move the conditional from
14841         :after-hook to font-lock-initial-fontify.
14842         (font-lock-default-function): Move the check for a specification
14843         to font-lock-spec-present.
14845         * font-lock.el (font-lock-initial-fontify): Call ...
14846         (font-lock-spec-present): New function.
14848 2012-02-26  Jim Blandy  <jimb@red-bean.com>
14850         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
14851         (gdb-send): Apply it to the operand of the '-interpreter-exec
14852         console' command, so that we can pass arguments with (say) quotes
14853         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
14855 2012-02-26  Chong Yidong  <cyd@gnu.org>
14857         * help-fns.el (describe-function-1): Clarify description of
14858         remapping (Bug#10844).
14860         * files.el (files-equal-p): Doc fix.
14861         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
14862         and quit the loop once a mismatch is found.
14864 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
14866         * bs.el (bs--show-with-configuration): Don't throw an error
14867         if the window cannot be split; otherwise, subsequent calls to
14868         bs-show fail, restoring a stale window config.  (Bug#10882)
14870 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
14872         * term/ns-win.el (global-map): Bind ns-drag-file to
14873         ns-find-file (Bug#5855, Bug#10050).
14875 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
14877         * calendar/parse-time.el (parse-time-string): Allow extractor to
14878         return nil.
14880 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
14882         * net/tramp.el (tramp-file-name-for-operation):
14883         Add `files-equal-p' and `file-subdir-of-p'.
14885         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14886         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14887         Add COPY-CONTENTS argument.
14889 2012-02-25  Chong Yidong  <cyd@gnu.org>
14891         Add custom groups for VC backends, for consistency with vc-bzr.
14893         * vc/vc-arch.el (vc-arch):
14894         * vc/vc-cvs.el (vc-cvs):
14895         * vc/vc-git.el (vc-git):
14896         * vc/vc-hg.el (vc-hg):
14897         * vc/vc-mtn.el (vc-mtn):
14898         * vc/vc-rcs.el (vc-rcs):
14899         * vc/vc-sccs.el (vc-sccs):
14900         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
14901         All relevant defcustoms reassigned.
14903 2012-02-25  Chong Yidong  <cyd@gnu.org>
14905         * newcomment.el (comment-styles): Add autoload (Bug#10868).
14907         * term/x-win.el (x-initialize-window-system): Reduce default for
14908         x-selection-timeout to 5 seconds (Bug#8869).
14910 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14912         * files.el (files-equal-p, file-subdir-of-p): New functions.
14913         (copy-directory): Error when trying to copy a directory on itself.
14914         Add missing copy-contents arg to tramp handler.
14915         * dired-aux.el (dired-copy-file-recursive): Same.
14916         (dired-create-files): Modify destination when source is equal to
14917         dest when copying files.
14918         Return also when dest is a subdir of source.  (Bug#10489)
14920 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
14922         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
14923         (Bug#10874)
14925 2012-02-23  Alan Mackenzie  <acm@muc.de>
14927         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
14928         parameter "after-hook:" to allow the expansion to run code after
14929         the execution of the mode hooks.
14931         * font-lock.el (font-lock-initial-fontify): New function extracted
14932         from font-lock-mode-internal.
14934         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
14935         :after-hook.
14937 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14939         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
14940         (completion--cache-all-sorted-completions): New function.
14941         (completion-all-sorted-completions): Use it.
14942         (completion--do-completion, minibuffer-force-complete):
14943         Use it to re-instate the flush hook.
14945         * icomplete.el (icomplete-completions): Replace last fix with a better
14946         one (bug#10850).
14948 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
14950         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
14951         when it might call us back infinitely (bug#10797).
14953 2012-02-23  Glenn Morris  <rgm@gnu.org>
14955         * minibuffer.el (completion-category-overrides): Doc fix.
14957 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14959         * minibuffer.el (completion-table-with-context): Fix inf-loop.
14960         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
14962 2012-02-23  Glenn Morris  <rgm@gnu.org>
14964         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
14965         (authors-obsolete-files-regexps, authors-ignored-files)
14966         (authors-ambiguous-files, authors-renamed-files-alist):
14967         Add more entries.
14969 2012-02-23  Juri Linkov  <juri@jurta.org>
14971         * isearch.el (isearch-occur): Sync interactive spec with occur's
14972         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
14974         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
14976 2012-02-22  Juri Linkov  <juri@jurta.org>
14978         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
14979         (ucs-insert): Doc fix.  Check for hex digits in the string.
14980         Don't display `nil' in the error message.  (Bug#10857)
14982 2012-02-22  Alan Mackenzie  <acm@muc.de>
14984         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
14986 2012-02-22  Glenn Morris  <rgm@gnu.org>
14988         * ffap.el (ffap-c-path):
14989         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
14991 2012-02-22  Chong Yidong  <cyd@gnu.org>
14993         * custom.el (load-theme): Doc fix.
14995 2012-02-22  Glenn Morris  <rgm@gnu.org>
14997         * dired-x.el (dired-guess-shell-alist-default):
14998         Remove escape sequences from nroff output.  (Bug#172)
15000 2012-02-21  Glenn Morris  <rgm@gnu.org>
15002         * vc/emerge.el (emerge-defvar-local):
15003         Set `permanent-local' property rather than unused `preserved'.
15005         * textmodes/picture.el (picture-delete-char): New alias.
15006         (picture-mode-map): Use it.  (Bug#10860)
15007         (picture-mode): Doc fix.
15009 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
15011         * newcomment.el (uncomment-region-default): Remove unused binding.
15013 2012-02-21  Glenn Morris  <rgm@gnu.org>
15015         * textmodes/picture.el (picture-motion, picture-motion-reverse)
15016         (picture-self-insert, picture-tab-chars): Doc fix.
15017         (picture-mode-map): Fix C-a, C-e.
15019 2012-02-20  Glenn Morris  <rgm@gnu.org>
15021         * emacs-lisp/authors.el (authors-aliases): Add another entry.
15023 2012-02-20  Leo Liu  <sdl.web@gmail.com>
15025         * icomplete.el (icomplete-completions): Check FROM arg before
15026         passing to substring (Bug#10850).
15028 2012-02-19  Chong Yidong  <cyd@gnu.org>
15030         * comint.el: Require ansi-color.
15031         (comint-output-filter-functions): Add ansi-color-process-output.
15033         * ansi-color.el: Don't set comint-output-filter-functions; it is
15034         now in the initial value defined in comint.el.
15035         (ansi-color-apply-face-function): New variable.
15036         (ansi-color-apply-on-region): Use it.
15037         (ansi-color-apply-overlay-face): New function.
15039         * shell.el (shell): No need to require ansi-color.
15040         (shell-mode): Use ansi-color-apply-face-function to highlight
15041         color escapes using font-lock-face property (Bug#10835).
15043 2012-02-19  Chong Yidong  <cyd@gnu.org>
15045         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
15046         mode-line formats (Bug#10839).
15048 2012-02-18  Glenn Morris  <rgm@gnu.org>
15050         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
15052         * mail/undigest.el (unforward-rmail-message): Doc fix.
15054         * saveplace.el (save-place-ignore-files-regexp): Add :version.
15056 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
15058         * international/characters.el (script-list): Sync with the latest
15059         Unicode Character Database.
15061 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
15063         * international/titdic-cnv.el: Remove duplicate coding tag.
15064         * language/cham.el: Likewise.
15065         * language/tai-viet.el: Likewise.
15067 2012-02-18  Glenn Morris  <rgm@gnu.org>
15069         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
15070         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
15071         (calendar-bahai-all-holidays-flag, calendar-other-dates):
15072         * calendar/diary-lib.el (diary-abbreviated-year-flag):
15073         * calendar/holidays.el (holiday-bahai-holidays)
15074         (calendar-holidays, list-holidays):
15075         Use utf-8 Bahá'í in doc-strings, menus, etc.
15077 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
15079         * saveplace.el (save-place-ignore-files-regexp): New variable
15080         allowing for excluding files from saving their location of point.
15081         The default value matches the temporary commit message editing
15082         files from Git, SVN, Bazaar, and Mercurial.
15083         (save-place-to-alist): Use it.
15085 2012-02-17  Lawrence Mitchell  <wence@gmx.li>
15086             Stefan Monnier  <monnier@iro.umontreal.ca>
15088         * newcomment.el (uncomment-region-default): Don't leave extra space
15089         when an arg is provided (bug#8150).
15091 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
15093         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
15095 2012-02-17  Glenn Morris  <rgm@gnu.org>
15097         * net/socks.el: Require network-stream.  (Bug#10599)
15099 2012-02-17  Kenichi Handa  <handa@m17n.org>
15101         * international/charprop.el:
15102         * international/uni-name.el:
15103         * international/uni-old-name.el:
15104         * international/uni-comment.el: Regenerate.
15106 2012-02-16  Glenn Morris  <rgm@gnu.org>
15108         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
15109         Interactively in calendar buffer, give an error if not on a date.
15111 2012-02-15  Glenn Morris  <rgm@gnu.org>
15113         * shell.el (shell-delimiter-argument-list):
15114         Revert 2011-02-17 change.  (Bug#8027)
15116 2012-02-15  Chong Yidong  <cyd@gnu.org>
15118         * minibuffer.el (completion-at-point-functions): Doc fix.
15120         * custom.el (defcustom): Doc fix; note use of defvar.
15122 2012-02-15  Glenn Morris  <rgm@gnu.org>
15124         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
15125         Doc fixes.
15127 2012-02-14  Glenn Morris  <rgm@gnu.org>
15129         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
15131 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
15133         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
15134         way the ports list is computed.
15135         (smtpmail-query-smtp-server): Prompt the user for a port number if
15136         we can't connect to any of the standard ports (bug#10810).
15138 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
15140         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
15142 2012-02-13  Glenn Morris  <rgm@gnu.org>
15144         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
15146 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
15148         * net/gnutls.el (gnutls-trustfiles): New variable.
15149         (gnutls-negotiate): Use it.
15151 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
15153         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
15154         does its stuff if Gnus is running.
15156 2012-02-13  Alan Mackenzie  <acm@muc.de>
15158         Fix a loop in c-set-fl-decl-start.
15160         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
15161         c-backward-syntactic-ws actually moves backwards.
15163 2012-02-13  Leo Liu  <sdl.web@gmail.com>
15165         * net/rcirc.el (rcirc-markup-attributes): Move point to the
15166         beginning so that all \C-o chars are removed.
15168 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
15170         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
15172 2012-02-12  Alan Mackenzie  <acm@muc.de>
15174         Fix infinite loop with long macros.
15175         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
15177 2012-02-12  Chong Yidong  <cyd@gnu.org>
15179         * window.el (display-buffer): Doc fix (Bug#10785).
15181 2012-02-12  Glenn Morris  <rgm@gnu.org>
15183         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15184         (x-disown-selection-internal, x-get-selection-internal):
15185         Sync docs with the xselect.c versions.
15187         * allout-widgets.el: Add missing license notice.
15189 2012-02-11  Glenn Morris  <rgm@gnu.org>
15191         * select.el (x-get-selection-internal, x-own-selection-internal)
15192         (x-disown-selection-internal):
15193         * x-dnd.el (x-get-selection-internal): Update declarations.
15195         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
15197         * window.el (window-sides-slots):
15198         * tool-bar.el (tool-bar-position):
15199         * term/xterm.el (xterm-extra-capabilities):
15200         * ses.el (ses-self-reference-early-detection):
15201         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
15202         (verilog-auto-wire-type)
15203         (verilog-auto-delete-trailing-whitespace)
15204         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
15205         (verilog-auto-tieoff-declaration):
15206         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
15207         (sql-oracle-statement-starters, sql-oracle-scan-on):
15208         * progmodes/prolog.el (prolog-align-comments-flag)
15209         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
15210         (prolog-left-indent-regexp, prolog-paren-indent-p)
15211         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
15212         (prolog-types, prolog-mode-specificators)
15213         (prolog-determinism-specificators, prolog-directives)
15214         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
15215         (prolog-electric-dot-flag)
15216         (prolog-electric-dot-full-predicate-template)
15217         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
15218         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
15219         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
15220         (prolog-program-switches, prolog-prompt-regexp)
15221         (prolog-debug-on-string, prolog-debug-off-string)
15222         (prolog-trace-on-string, prolog-trace-off-string)
15223         (prolog-zip-on-string, prolog-zip-off-string)
15224         (prolog-use-standard-consult-compile-method-flag)
15225         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
15226         (prolog-imenu-max-lines, prolog-info-predicate-index)
15227         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
15228         (prolog-char-quote-workaround):
15229         * progmodes/cc-vars.el (c-defun-tactic):
15230         * net/tramp.el (tramp-encoding-command-interactive)
15231         (tramp-local-end-of-line):
15232         * net/soap-client.el (soap-client):
15233         * net/netrc.el (netrc-file):
15234         * net/gnutls.el (gnutls):
15235         * minibuffer.el (completion-category-overrides)
15236         (completion-cycle-threshold)
15237         (completion-pcm-complete-word-inserts-delimiters):
15238         * man.el (Man-name-local-regexp):
15239         * mail/feedmail.el (feedmail-display-full-frame):
15240         * international/characters.el (glyphless-char-display-control):
15241         * eshell/em-ls.el (eshell-ls-date-format):
15242         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
15243         (lisp-lambda-list-keyword-parameter-indentation)
15244         (lisp-lambda-list-keyword-parameter-alignment):
15245         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
15246         * dired-x.el (dired-omit-verbose):
15247         * cus-theme.el (custom-theme-allow-multiple-selections):
15248         * calc/calc.el (calc-highlight-selections-with-faces)
15249         (calc-lu-field-reference, calc-lu-power-reference)
15250         (calc-note-threshold):
15251         * battery.el (battery-mode-line-limit):
15252         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15253         (archive-7z-update):
15254         * allout.el (allout-prefixed-keybindings)
15255         (allout-unprefixed-keybindings)
15256         (allout-inhibit-auto-fill-on-headline)
15257         (allout-flattened-numbering-abbreviation):
15258         * allout-widgets.el (allout-widgets-auto-activation)
15259         (allout-widgets-icons-dark-subdir)
15260         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
15261         (allout-widgets-theme-dark-background)
15262         (allout-widgets-theme-light-background)
15263         (allout-widgets-item-image-properties-emacs)
15264         (allout-widgets-item-image-properties-xemacs)
15265         (allout-widgets-run-unit-tests-on-load)
15266         (allout-widgets-time-decoration-activity)
15267         (allout-widgets-hook-error-post-time)
15268         (allout-widgets-track-decoration):
15269         Add missing :version tags to new defcustoms and defgroups.
15271         * progmodes/sql.el (sql-ansi-statement-starters)
15272         (sql-oracle-statement-starters): Add custom type.
15274         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
15275         (prolog-system-version): Give it a type.
15277 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
15279         * term/pc-win.el (x-select-text, x-selection-owner-p)
15280         (x-own-selection-internal, x-disown-selection-internal)
15281         (x-get-selection-internal): Sync doc strings and argument lists
15282         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
15284 2012-02-11  Leo Liu  <sdl.web@gmail.com>
15286         * progmodes/python.el (python-end-of-statement): Fix infinite
15287         loop.  (Bug#10788)
15289 2012-02-10  Glenn Morris  <rgm@gnu.org>
15291         * international/mule-cmds.el (unify-8859-on-encoding-mode)
15292         (unify-8859-on-decoding-mode): Properly mark as obsolete.
15294 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
15296         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
15297         about SMTP before checking the From header.
15299         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
15300         into own function for reuse by emacsbug.el.
15302 2012-02-10  Leo Liu  <sdl.web@gmail.com>
15304         * subr.el (condition-case-unless-debug): Rename from
15305         condition-case-no-debug.  All callers changed.
15306         (with-demoted-errors): Fix caller.
15308         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
15309         * nxml/rng-valid.el (rng-do-some-validation):
15310         * emacs-lisp/package.el (package-refresh-contents)
15311         (package-menu-execute):
15312         * desktop.el (desktop-create-buffer):
15313         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
15315 2012-02-10  Glenn Morris  <rgm@gnu.org>
15317         * textmodes/bibtex.el:
15318         Add missing :version tags for new/changed defcustoms.
15320         * files.el (remote-file-name-inhibit-cache): Doc fixes.
15322 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
15324         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15325         (smtpmail-via-smtp): Use it, or fall back on the From address.
15326         (smtpmail-send-it): Ditto.
15328 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15330         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15331         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
15332         (byte-compile-tmp-var): New const.
15333         (byte-compile-defvar): Use it to minimize .elc size.
15334         Just use `defvar' rather than simulate it (bug#10761).
15336 2012-02-09  Glenn Morris  <rgm@gnu.org>
15338         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
15340         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15341         Add :version tags.
15343         * progmodes/compile.el (compilation-error-screen-columns)
15344         (compilation-first-column, compilation-filter-start): Doc fixes.
15346         * vc/log-view.el (log-view-toggle-entry-display):
15347         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15349         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15350         (report-emacs-bug-can-use-xdg-email):
15351         (report-emacs-bug-insert-to-mailer): Doc fixes.
15352         (report-emacs-bug): Message fix.
15354         * net/browse-url.el (browse-url-can-use-xdg-open)
15355         (browse-url-xdg-open): Doc fixes.
15357         * electric.el (electric-indent-mode, electric-pair-mode)
15358         (electric-layout-rules, electric-layout-mode): Doc fixes.
15359         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15361 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
15363         * server.el (server-unselect-display): Don't inadvertently kill
15364         the current buffer.  (Bug#10729)
15366 2012-02-08  Glenn Morris  <rgm@gnu.org>
15368         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15369         (sql-list-table): Doc fixes.
15371         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15372         Comment out (does nothing).
15374         * completion.el (dynamic-completion-mode):
15375         * dirtrack.el (dirtrack-debug-mode):
15376         * electric.el (electric-layout-mode):
15377         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15378         * face-remap.el (text-scale-mode, buffer-face-mode):
15379         * iimage.el (iimage-mode):
15380         * image-mode.el (image-transform-mode):
15381         * minibuffer.el (completion-in-region-mode):
15382         * scroll-lock.el (scroll-lock-mode):
15383         * simple.el (next-error-follow-minor-mode):
15384         * tar-mode.el (tar-subfile-mode):
15385         * tooltip.el (tooltip-mode):
15386         * vcursor.el (vcursor-use-vcursor-map):
15387         * wid-browse.el (widget-minor-mode):
15388         * emulation/tpu-edt.el (tpu-edt-mode):
15389         * emulation/tpu-extras.el (tpu-cursor-free-mode):
15390         * international/iso-ascii.el (iso-ascii-mode):
15391         * language/thai-util.el (thai-word-mode):
15392         * mail/supercite.el (sc-minor-mode):
15393         * net/goto-addr.el (goto-address-mode):
15394         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15395         * progmodes/cwarn.el (cwarn-mode):
15396         * progmodes/flymake.el (flymake-mode):
15397         * progmodes/glasses.el (glasses-mode):
15398         * progmodes/hideshow.el (hs-minor-mode):
15399         * progmodes/pascal.el (pascal-outline-mode):
15400         * textmodes/enriched.el (enriched-mode):
15401         * vc/smerge-mode.el (smerge-mode):
15402         Doc fixes (minor mode argument).
15404 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
15406         * ls-lisp.el (ls-lisp-sanitize): New function.
15407         (ls-lisp-insert-directory): Use it to fix or remove any elements
15408         in file-alist with missing attributes.  (Bug#4673)
15410 2012-02-07  Alan Mackenzie  <acm@muc.de>
15412         Fix spurious recognition of c-in-knr-argdecl.
15414         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15415         putative K&R region.
15417 2012-02-07  Alan Mackenzie  <acm@muc.de>
15419         * progmodes/cc-engine.el (c-forward-objc-directive):
15420         Prevent looping in "#pragma mark @implementation".
15422 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
15424         * notifications.el (notifications-on-closed-signal): Make `reason'
15425         optional.  (Bug#10744)
15427 2012-02-07  Glenn Morris  <rgm@gnu.org>
15429         * emacs-lisp/easy-mmode.el (define-minor-mode):
15430         Doc fixes for the macro and the mode it defines.
15432         * image.el (imagemagick-types-inhibit): Doc fix.
15434         * cus-start.el (imagemagick-render-type): Add it.
15436 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
15438         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15439         Set the default at load time, too, so that `font-lock-fontify-buffer'
15440         can be called without setting up the entire mode first.  This fixes
15441         a bug in `mm-inline-text' with C MIME parts.
15443 2012-02-06  Chong Yidong  <cyd@gnu.org>
15445         * simple.el (list-processes--refresh): Delete exited processes
15446         (Bug#8094).
15448         * comint.el (comint-next-prompt): next-single-char-property-change
15449         and prev-single-char-property-change never return nil (Bug#8657).
15451         * custom.el (defcustom): Doc fix (Bug#9711).
15453 2012-02-05  Chong Yidong  <cyd@gnu.org>
15455         * cus-edit.el (custom-variable-reset-backup): Quote the value
15456         before storing it in the customized-value property (Bug#6712).
15457         (custom-display): Add a customization type tag.
15458         (custom-buffer-create-internal): Improve tooltip message.
15460         * wid-edit.el (widget-field-value-get): New optional arg to
15461         suppress trailing whitespace truncation.
15462         (character): Use it (Bug#2689).
15464 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
15466         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15467         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15469 2012-02-05  Chong Yidong  <cyd@gnu.org>
15471         * cus-edit.el (custom-variable-value-create): For mismatched
15472         types, show the current value (Bug#7600).
15474         * custom.el (defcustom): Doc fix.
15476 2012-02-05  Glenn Morris  <rgm@gnu.org>
15478         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15480 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
15482         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15483         (pp-buffer): Use `ignore-errors', `looking-at-p'.
15484         (pp-last-sexp): Use `looking-at-p'.
15486 2012-02-04  Glenn Morris  <rgm@gnu.org>
15488         * files.el (revert-buffer):
15489         Doc fix (mention revert-buffer-in-progress-p).
15491         * emacs-lisp/ert-x.el (ert-simulate-command):
15492         Check deferred-action-list (which is obsolete) is bound.
15494         * subr.el (with-wrapper-hook): Doc fixes.
15496         * simple.el (filter-buffer-substring-functions)
15497         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15499 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
15501         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15502         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
15504 2012-02-04  Leo Liu  <sdl.web@gmail.com>
15506         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15508 2012-02-04  Glenn Morris  <rgm@gnu.org>
15510         * image.el (image-extension-data): Add obsolete alias.
15512         * isearch.el (isearch-update): Doc fix.
15514         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15516         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15518 2012-02-03  Glenn Morris  <rgm@gnu.org>
15520         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
15521         (image-animate-timeout): Doc fix.
15523         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15525 2012-02-02  Glenn Morris  <rgm@gnu.org>
15527         * server.el (server-auth-dir): Doc fix.
15528         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
15530         * subr.el (run-mode-hooks): Doc fix.
15532 2012-02-02  Juri Linkov  <juri@jurta.org>
15534         * image-mode.el (image-toggle-display-image): Remove tautological
15535         `major-mode' from the `derived-mode-p' test.
15537 2012-02-02  Kenichi Handa  <handa@m17n.org>
15539         * composite.el (compose-region): Cancel previous change.
15541 2012-02-02  Kenichi Handa  <handa@m17n.org>
15543         * composite.el (compose-region, compose-string): Signal error for
15544         a null string component (Bug#6988).
15546 2012-02-01  Chong Yidong  <cyd@gnu.org>
15548         * view.el (view-buffer-other-window, view-buffer-other-frame):
15549         Handle special modes like view-buffer (Bug#10650).
15550         (view-buffer): Simplify.
15552         * frame.el (set-frame-font): Tweak meaning of third argument.
15554         * dynamic-setting.el (font-setting-change-default-font):
15555         Use set-frame-font (Bug#9982).
15557 2012-02-01  Glenn Morris  <rgm@gnu.org>
15559         * progmodes/compile.el (compilation-internal-error-properties):
15560         Respect compilation-first-column in the "*compilation*" buffer.
15562         * emacs-lisp/easy-mmode.el (define-minor-mode):
15563         Relax :variable's test for a named function.
15565 2012-01-31  Alan Mackenzie  <acm@muc.de>
15567         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15568         off by one error.
15570 2012-01-31  Chong Yidong  <cyd@gnu.org>
15572         * frame.el (set-frame-font): New arg ALL-FRAMES.
15574         * menu-bar.el (menu-set-font): Use set-frame-font.
15576         * faces.el (face-spec-reset-face): Don't apply unspecified
15577         attribute values to the default face.
15579 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
15581         * progmodes/cwarn.el (cwarn): Remove dead link.
15582         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15583         Remove * from defcustom docstrings.
15584         (turn-on-cwarn-mode): Make obsolete.
15585         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15586         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15588 2012-01-31  Glenn Morris  <rgm@gnu.org>
15590         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15591         Fix :variable handling of mode a symbol not equal to modefun.
15592         Allow named functions to be used as the cdr of :variable.
15594 2012-01-30  Glenn Morris  <rgm@gnu.org>
15596         * emacs-lisp/authors.el (authors-fixed-entries):
15597         Remove reference to deleted file rnewspost.el.
15599 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
15601         * window.el (window-with-parameter): Remove unused variable `windows'.
15602         (window--side-check): Remove unused variable `code'.
15603         (window--resize-siblings): Remove unused variable `first'.
15604         (adjust-window-trailing-edge): Remove unused variable `failed'.
15605         (window-deletable-p, window--delete): Remove unused variable `buffer'.
15606         Use `let', not `let*'.
15607         (balance-windows-2): Remove unused variable `found'.
15608         (window--state-put-2): Remove unused variable `splits'.
15609         (window-state-put): Remove unused variable `selected'.
15610         (same-window-p): Use `string-match-p'.
15611         (display-buffer-assq-regexp): Remove unused variable `value'.
15612         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15613         Mark argument ALIST as ignored.
15614         (pop-to-buffer): Remove unused variable `old-window'.
15616 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
15618         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15619         and .lzma compressed files.
15621 2012-01-29  Chong Yidong  <cyd@gnu.org>
15623         * frame.el (window-system-default-frame-alist): Doc fix.
15625         * dynamic-setting.el (font-setting-change-default-font): Don't
15626         change the default face if SET-FONT argument is non-nil (Bug#9982).
15628 2012-01-29  Samuel Bronson  <naesten@gmail.com>
15630         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15632 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
15634         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15635         breakpoints in files outside current directory (Bug#6098).
15637 2012-01-29  Chong Yidong  <cyd@gnu.org>
15639         * progmodes/python.el: Require ansi-color at top-level.
15641         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15642         Define and use in Emacs Lisp mode (Bug#9360).
15643         (lisp-mode-abbrev-table): Add doc.
15644         (lisp-mode-variables): Don't set local-abbrev-table.
15645         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15647 2012-01-28  Roland Winkler  <winkler@gnu.org>
15649         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15651 2012-01-28  Roland Winkler  <winkler@gnu.org>
15653         * textmodes/bibtex.el (bibtex-entry-alist): New function.
15654         (bibtex-set-dialect): Use it.  Either set global values of
15655         dialect-dependent variables or bind these variables buffer-locally
15656         (Bug#10254).
15657         (bibtex-mode): Call bibtex-set-dialect via
15658         hack-local-variables-hook.
15659         (bibtex-dialect): Update docstring.
15660         Add safe-local-variable predicate.
15661         (bibtex-entry-alist, bibtex-field-alist): Initialize via
15662         bibtex-set-dialect.
15663         (bibtex-mode-map): Define menu for each dialect.
15664         (bibtex-entry): Fix docstring.
15666 2012-01-28  Chong Yidong  <cyd@gnu.org>
15668         * eshell/esh-arg.el (eshell-quote-argument): New function.
15670         * eshell/esh-ext.el (eshell-invoke-batch-file):
15671         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15672         first arg to eshell-parse-command (Bug#10523).
15674 2012-01-28  Drew Adams  <drew.adams@oracle.com>
15676         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15677         `default-directory' is non-nil.
15679 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
15681         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15682         line that displays system-configuration-options.  (Bug#9924)
15684 2012-01-28  Drew Adams  <drew.adams@oracle.com>
15686         * descr-text.el (describe-char): Show information about POS, in
15687         addition to information about the character at POS.  Improve and
15688         update the doc string.  Change "code point" to "code point in
15689         charset", to avoid confusion with the character's Unicode code
15690         point shown above that.  (Bug#10129)
15692 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
15694         * descr-text.el (describe-char): Show the raw character, not only
15695         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
15696         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15697         for the reasons.
15699 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
15701         * emacs-lisp/package.el (package-install):
15702         Run package-refresh-contents if there is no archive yet (Bug#9798).
15704 2012-01-28  Chong Yidong  <cyd@gnu.org>
15706         * emacs-lisp/package.el (package-maybe-load-descriptor):
15707         New function, split from package-maybe-load-descriptor.
15708         (package-maybe-load-descriptor): Use it.
15709         (package-download-transaction): Fully load required packages
15710         inside the loop, so that `require' calls work (Bug#10593).
15711         (package-install): No need to call package-initialize now.
15713 2012-01-28  Chong Yidong  <cyd@gnu.org>
15715         * simple.el (deactivate-mark): Doc fix (Bug#8614).
15717         * tooltip.el (tooltip-mode): Doc fix.
15718         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15720         * frame.el (set-cursor-color): Doc fix (Bug#352).
15722         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15723         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15725         * cus-edit.el (custom-buffer-create-internal): Fix search button
15726         action (Bug#10542).
15727         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15729 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
15731         * dired.el (dired-mark-files-regexp):
15732         Include any subdirectory components.  (Bug#10445)
15734 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
15736         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15737         Handle [host]:port syntax.  (Bug#10533)
15739 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
15741         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15743 2012-01-26  Glenn Morris  <rgm@gnu.org>
15745         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15746         * term.el (term-raw-escape-map): Use Control-X-prefix.
15747         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
15749 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
15751         * window.el (window-state-get, window--state-get-1): Don't deal
15752         with fixed-sizeness of windows.  Simplify code.
15754 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
15756         * window.el (window--state-get-1, window--state-put-2):
15757         Don't save and restore the mark.
15759 2012-01-25  Chong Yidong  <cyd@gnu.org>
15761         * custom.el (custom-variable-p): Doc fix.
15763 2012-01-25  Glenn Morris  <rgm@gnu.org>
15765         * dired.el (dired-goto-file): Handle some of the more common
15766         characters that `ls -b' escapes.  (Bug#10596)
15768         * progmodes/compile.el (compilation-next-error-function):
15769         Respect compilation-first-column in the "*compilation*" buffer.
15770         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
15772         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
15774 2012-01-24  Glenn Morris  <rgm@gnu.org>
15776         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
15778 2012-01-24  Julien Danjou  <julien@danjou.info>
15780         * color.el (color-rgb-to-hsl): Fix value computing.
15781         (color-hue-to-rgb): New function.
15782         (color-hsl-to-rgb): New function.
15783         (color-clamp, color-saturate-hsl, color-saturate-name)
15784         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15785         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15787 2012-01-24  Glenn Morris  <rgm@gnu.org>
15789         * vc/vc-rcs.el (vc-rcs-create-tag):
15790         * vc/vc-sccs.el (vc-sccs-create-tag):
15791         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
15793 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
15795         * eshell/esh-util.el (eshell-read-hosts-file):
15796         Skip comment lines.  (Bug#10549)
15798         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
15800 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
15802         * subr.el (display-delayed-warnings): Doc fix.
15803         (collapse-delayed-warnings): New function to collapse identical
15804         adjacent warnings.
15805         (delayed-warnings-hook): Add it.
15807 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
15809         * net/tramp.el (tramp-action-login): Set connection property "login-as".
15811         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15812         (tramp-default-user-alist): Don't add "pscp".
15813         (tramp-do-copy-or-rename-file-out-of-band): Use connection
15814         property "login-as", if set.  (Bug#10530)
15816 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
15818         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15819         "plink1" and "psftp".  (Bug#10530)
15821 2012-01-21  Kenichi Handa  <handa@m17n.org>
15823         * international/mule-cmds.el (prefer-coding-system): Show a
15824         warning message if the default value of file-name-coding-system
15825         was not changed.
15827 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
15829         * windmove.el (windmove-reference-loc):
15830         Fix windmove-reference-loc miscalculation.
15832 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
15834         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15835         default unit.
15837 2012-01-21  Glenn Morris  <rgm@gnu.org>
15839         * international/mule.el (auto-coding-alist): Add .tbz.
15841         * files.el (local-enable-local-variables): Doc fix.
15842         (inhibit-local-variables-regexps): Rename from
15843         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
15844         Doc fix.  Add some extensions from auto-coding-alist.
15845         (inhibit-local-variables-suffixes):
15846         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
15847         (inhibit-local-variables-p):
15848         New function, extracted from set-auto-mode-1.
15849         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
15850         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
15851         (hack-local-variables): Doc fix.  Make the mode-only case
15852         respect enable-local-variables and friends.
15853         Respect inhibit-local-variables-regexps for file-locals, but
15854         not for directory-locals.
15855         (set-visited-file-name):
15856         Take account of inhibit-local-variables-regexps.
15857         Whether it applies may change as the file name is changed.
15858         * jka-cmpr-hook.el (jka-compr-install):
15859         * jka-compr.el (jka-compr-uninstall):
15860         Update for inhibit-first-line-modes-suffixes name change.
15862 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
15864         * help-macro.el (make-help-screen): Temporarily restore original
15865         binding for minor-mode-map-alist (Bug#10454).
15867 2012-01-19  Julien Danjou  <julien@danjou.info>
15869         * color.el (color-name-to-rgb): Use the white color to find the max
15870         color component value and return correctly computed values.
15871         (color-name-to-rgb): Add missing float conversion for max value.
15873 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
15875         * window.el (window--state-get-1, window-state-get): Do not use
15876         special state value for window-persistent-parameters.
15877         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
15878         (window--state-put-2): Reset all window parameters to nil before
15879         assigning values of persistent parameters.
15881 2012-01-18  Alan Mackenzie  <acm@muc.de>
15883         Eliminate sluggishness and hangs in fontification of "semicolon
15884         deserts".
15886         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
15887         Change value 10000 -> 3000.
15888         (c-state-safe-place): Reformulate so it doesn't stack up an
15889         infinite number of wrong entries in c-state-nonlit-pos-cache.
15890         (c-determine-limit-get-base, c-determine-limit): New functions to
15891         determine backward search limits disregarding literals.
15892         (c-find-decl-spots): Amend commenting.
15893         (c-cheap-inside-bracelist-p): New function which detects "={".
15895         * progmodes/cc-fonts.el
15896         (c-make-font-lock-BO-decl-search-function): Give a limit to a
15897         backward search.
15898         (c-font-lock-declarations): Fix an occurrence of point being
15899         undefined.  Check additionally for point being in a bracelist or
15900         near a macro invocation without a semicolon so as to avoid a
15901         fruitless time consuming search for a declarator.  Give a more
15902         precise search limit for declarators using the new
15903         c-determine-limit.
15905 2012-01-18  Glenn Morris  <rgm@gnu.org>
15907         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
15908         (set-auto-mode): Doc fixes.
15910 2012-01-17  Glenn Morris  <rgm@gnu.org>
15912         * isearch.el (search-nonincremental-instead): Fix doc typo.
15914         * dired.el (dired-insert-directory): Handle newlines in directory name.
15915         (dired-build-subdir-alist): Unescape newlines in directory name.
15917 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
15919         * net/tramp.el (tramp-local-end-of-line): New defcustom.
15920         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
15921         (tramp-action-terminal): Use it.  (Bug#10530)
15923 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15925         * minibuffer.el (completion--replace): Strip properties (bug#10062).
15927 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
15929         * window.el (window-state-ignored-parameters): Remove variable.
15930         (window--state-get-1): Rename argument MARKERS to IGNORE.
15931         Handle persistent window parameters.  Make copy of clone-of
15932         parameter only if requested.  (Bug#10348)
15933         (window--state-put-2): Install a window parameter only if it has
15934         a non-nil value or an existing parameter shall be overwritten.
15936 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
15938         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
15940 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
15942         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
15943         don't pass the (nil) value of `upnode' to string-match.
15945 2012-01-14  Chong Yidong  <cyd@gnu.org>
15947         * startup.el (command-line): Fix X resource class for cursorColor.
15948         Fix values recognized by the cursorBlink resource.
15950 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
15952         * epg.el (epg--make-temp-file): Avoid permission race condition
15953         when running on old Emacs versions (bug#10403).
15955 2012-01-14  Glenn Morris  <rgm@gnu.org>
15957         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
15959 2012-01-13  Alan Mackenzie  <acm@muc.de>
15961         Fix filling for when filladapt mode is enabled.
15963         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
15964         c-mask-paragraph, pass in `fill-paragraph' rather than
15965         `fill-region-as-paragraph'.  (This is a reversion of a previous
15966         change.)
15967         * progmodes/cc-mode.el (c-basic-common-init):
15968         Make fill-paragraph-handle-comment buffer local and set it to nil.
15970 2012-01-13  Glenn Morris  <rgm@gnu.org>
15972         * dired.el (dired-switches-escape-p): New function.
15973         (dired-insert-directory): Use dired-switches-escape-p.
15974         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
15976         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
15978 2012-01-12  Glenn Morris  <rgm@gnu.org>
15980         * mail/sendmail.el (mail-mode): Update paragraph-separate for
15981         changes in adaptive-fill-regexp.  (Bug#10276)
15983 2012-01-11  Alan Mackenzie  <acm@muc.de>
15985         Fix Emacs bug #10463 - put `widen's around the critical spots.
15987         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
15988         widen around each invocation of c-state-pp-to-literal.  Remove an
15989         unused let variable.
15991 2012-01-11  Glenn Morris  <rgm@gnu.org>
15993         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
15994         Doc fix.
15996 2012-01-10  Chong Yidong  <cyd@gnu.org>
15998         * net/network-stream.el (network-stream-open-starttls):
15999         Avoid emitting a confusing error message when the server gives a bad
16000         response to the capability command.
16002 2012-01-10  Glenn Morris  <rgm@gnu.org>
16004         * mail/unrmail.el (unrmail): Tweak previous change.
16006 2012-01-09  Chong Yidong  <cyd@gnu.org>
16008         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
16010 2012-01-08  Alan Mackenzie  <acm@muc.de>
16012         Optimize font locking in long enum definitions.
16014         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
16015         arm to a cond form to handle enums.
16016         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
16017         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
16019 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
16021         * files.el (move-file-to-trash): Preserve default file modes on error.
16022         (Bug#10401)
16024 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16026         * faces.el (set-face-attribute): Clarify the meaning of the nil
16027         frame (bug#10294).
16029         * subr.el (with-selected-frame): Mention that the selected frame
16030         is restored (bug#9980).
16032         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
16033         (bug#9759).
16035         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
16036         (password-read): Don't autoload unused function.
16038 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
16040         * progmodes/which-func.el (which-func-mode): Turn into a
16041         non-interactive function and mark as obsolete (bug#10428).
16043 2012-01-06  Chong Yidong  <cyd@gnu.org>
16045         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
16046         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
16047         functions, along with 1 and -1.
16049 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
16051         * time.el (display-time-load-average)
16052         (display-time-default-load-average): Doc fixes.  See the thread
16053         starting at
16054         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
16055         for the details.
16057 2012-01-06  Glenn Morris  <rgm@gnu.org>
16059         * mail/unrmail.el (unrmail): Give an explicit error if the input file
16060         has no messages.  (Bug#10377)
16062         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
16063         than Info-edit.  (Bug#10385)
16065         * time.el (display-time-load-average, display-time-next-load-average):
16066         Doc fixes.
16068         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
16069         local setting of buffer-read-only to the input buffer.  (Bug#10419)
16071         * calendar/calendar.el (calendar-mode):
16072         Locally set scroll-margin to 0.  (Bug#10379)
16074 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
16076         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
16078 2012-01-05  Glenn Morris  <rgm@gnu.org>
16080         * eshell/em-unix.el (diff-no-select): Autoload it.
16081         (eshell/diff): Use diff-no-select.  (Bug#10420)
16083 2012-01-05  Chong Yidong  <cyd@gnu.org>
16085         * shell.el (shell-dynamic-complete-functions): Revert last change.
16086         (shell-command-completion-function): New function.
16087         (shell-completion-vars): Use it to implement
16088         shell-completion-execonly (Bug#10417).
16090         * custom.el (enable-theme): Don't set custom-safe-themes.
16092         * cus-theme.el (custom-theme-merge-theme):
16093         Ignore custom-enabled-themes and custom-safe-themes.
16095 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
16097         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
16098         first prompt in `sql-interacive-mode'.
16099         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
16100         keywords.
16101         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
16102         (sql-product-interactive): Bug fix: Set `sql-buffer' in
16103         context of original buffer.  Invoke `sql-login-hook'.
16105 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
16107         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
16108         letters in cite-prefix.
16110 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16112         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
16114 2012-01-03  Chong Yidong  <cyd@gnu.org>
16116         * shell.el (shell-dynamic-complete-functions):
16117         Put pcomplete-completions-at-point, so as to try
16118         comint-filename-completion first (Bug#10417).
16120 2012-01-02  Richard Stallman  <rms@gnu.org>
16122         * battery.el (battery-status-function):
16123         Detect when to use battery-yeeloong-sysfs.
16124         (battery-echo-area-format): Add string for Yeeloong.
16125         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
16126         (battery-yeeloong-sysfs): New function.
16128 2012-01-02  Chong Yidong  <cyd@gnu.org>
16130         * dirtrack.el (dirtrack-list): Eliminate unused third element.
16131         (dirtrack): Merge code for handling relative filenames in prompt
16132         from shell-dir-cookie-watcher.
16133         (dirtrack-debug-message): New arg to avoid excess format calls.
16135         * shell.el (shell-dir-cookie-re): Variable deleted.
16136         (shell-dir-cookie-watcher): Function deleted.
16137         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
16138         with dirtrack-mode.
16140 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
16142         * term/w32-win.el (dynamic-library-alist) <gnutls>:
16143         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
16144         libgnutls-26.dll.
16146 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
16148         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
16150 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
16152         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
16153         headers of non-MIME messages, when rmail-enable-mime is non-nil.
16155 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
16157         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
16158         also for alternative shells.
16159         (tramp-open-connection-setup-interactive-shell): Check, whether
16160         the shell is a busybox.
16161         (tramp-send-command): Don't suppress multiple prompts for
16162         busyboxes, it hurts.
16164 2011-12-28  Chong Yidong  <cyd@gnu.org>
16166         * progmodes/gdb-mi.el (gdb-get-source-file-list)
16167         (gdb-get-source-file): Move mode line update to
16168         gdb-get-source-file (Bug#10087).
16170 2011-12-25  Chong Yidong  <cyd@gnu.org>
16172         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
16173         gud-gdb-marker-filter without taking it as an argument.
16174         (gud-gdb-run-command-fetch-lines): Caller changed.
16175         (gud-gdb-completion-function): New variable.
16176         (gud-gdb-completion-at-point): Use it.
16177         (gud-gdb-completions-1): Split from gud-gdb-completions.
16179         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
16180         function as separate arguments.
16181         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
16182         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
16183         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
16184         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
16185         (gdb-stopped, def-gdb-auto-update-trigger)
16186         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
16187         (gdb-get-changed-registers, gdb-get-main-selected-frame):
16188         Callers changed.
16189         (gud-gdbmi-completions): New function.
16190         (gdb): Use it for generating the completion table.
16192 2011-12-24  Alan Mackenzie  <acm@muc.de>
16194         Introduce a mechanism to widen the region used in context font
16195         locking.  Use this to protect declarations from losing their contexts.
16197         * progmodes/cc-langs.el (c-before-font-lock-functions):
16198         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
16199         (c-before-context-fontification-functions): New defvar, a list of
16200         functions to be run just before context (etc.) font locking.
16202         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
16203         New, functionality extracted from
16204         c-neutralize-syntax-in-and-mark-CPP.
16205         (c-in-after-change-fontification): New variable.
16206         (c-after-change): Set c-in-after-change-fontification.
16207         (c-set-fl-decl-start): Rejig its interface, so it can be called
16208         from both after-change and context fontifying.
16209         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
16210         New functions.
16211         (c-standard-font-lock-fontify-region-function): New variable.
16212         (c-font-lock-fontify-region): New function.
16214 2011-12-24  Juri Linkov  <juri@jurta.org>
16216         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
16217         (Bug#10348)
16219 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
16221         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
16222         existence of source file.  (Bug#10325)
16224 2011-12-23  Alan Mackenzie  <acm@muc.de>
16226         Fix unstable fontification inside templates.
16228         * progmodes/cc-langs.el (c-before-font-lock-functions):
16229         Newly created from the singular version.  The (c c++ objc) entry now
16230         additionally has c-set-fl-decl-start.  The other languages (apart
16231         from AWK) have that as a single entry.
16233         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16234         The functionality for "local" declarations has been extracted to
16235         c-set-fl-decl-start.
16237         * progmodes/cc-mode.el (c-common-init, c-after-change):
16238         Changes due to pluralisation of c-before-font-lock-functions.
16239         (c-set-fl-decl-start): New function, extracted from
16240         c-font-lock-enclosing-decls and enhanced.
16242 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
16244         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
16246 2011-12-22  Juri Linkov  <juri@jurta.org>
16248         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
16250 2011-12-22  Chong Yidong  <cyd@gnu.org>
16252         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
16254 2011-12-21  Drew Adams  <drew.adams@oracle.com>
16256         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
16258 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
16260         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
16262 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16264         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
16265         highlighting and support.  Fix up comments for capitalization.
16266         (cfengine-mode-debug): New var.
16267         (cfengine3-mode): Change the modeline indicator to "CFE3".
16268         (cfengine3-font-lock-keywords): Improve defun highlighting.
16269         (cfengine2-actions): Rename from `cfengine-actions'.
16270         (cfengine2-font-lock-keywords): Rename from
16271         `cfengine-font-lock-keywords'.
16272         (cfengine2-imenu-expression): Rename from
16273         `cfengine-imenu-expression'.
16274         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
16275         (cfengine2-beginning-of-defun): Rename from
16276         `cfengine-beginning-of-defun'.
16277         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
16278         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
16279         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
16280         modeline indicator to "CFE2".
16281         (cfengine-mode): Defalias to `cfengine-auto-mode'.
16282         (cfengine-mode-abbrevs): Mark obsolete.
16284 2011-12-21  Chong Yidong  <cyd@gnu.org>
16286         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
16287         filename argument.
16289 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
16291         * window.el (window-normalize-buffer-to-display): Remove.
16292         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
16294 2011-12-19  Chong Yidong  <cyd@gnu.org>
16296         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
16297         Don't signal an error in a predicate function; return non-nil.
16298         (vc-dir-mark-file): Move the error here.
16299         (vc-dir-mark-unmark): If acting on the region, keep going if one
16300         of the entries cannot be marked/unmarked.
16301         (vc-dir-mark-all-files): If current entry is a directory, mark
16302         only child files, as documented.
16304 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
16306         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
16307         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
16308         addition.
16310 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
16312         * term/ns-win.el (ns-get-selection-internal)
16313         (ns-store-selection-internal): Declare.
16314         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
16315         Declare as obsolete.
16316         (ns-get-pasteboard, ns-paste-secondary):
16317         Use ns-get-selection-internal.
16318         (ns-set-pasteboard, ns-copy-including-secondary):
16319         Use ns-store-selection-internal.
16321 2011-12-17  Chong Yidong  <cyd@gnu.org>
16323         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16324         (vc-deduce-fileset): Doc fix.
16326 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
16328         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16330 2011-12-13  Sam Steingold  <sds@gnu.org>
16332         * man.el (Man-getpage-in-background): When running under a
16333         window-system, ignore $MANWIDTH and $COLUMNS.
16335 2011-12-15  Kenichi Handa  <handa@m17n.org>
16337         * language/ethio-util.el: Change coding tag to utf-8-emacs.
16338         (setup-ethiopic-environment-internal): Comment out key-binding for
16339         ethio-toggle-punctuation.
16341 2011-12-13  Alan Mackenzie  <acm@muc.de>
16343         Add the switch statement to AWK Mode.
16345         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16346         "default" to the keywords regexp.
16348         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16349         expression as the rest.
16350         (c-nonlabel-token-key): Allow string literals for AWK.
16351         Refactor for the other modes.
16353         Large brace-block initialisation makes CC Mode slow: Fix.
16354         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16355         routines.  Limit backward searching in c-font-lock-enclosing.decl.
16357         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16358         pp-state and literal type in addition to the limits.
16359         (c-state-safe-place): New defun, extracted from c-state-literal-at.
16360         (c-state-literal-at): Use the above new defun.
16361         (c-slow-in-literal, c-fast-in-literal): Remove.
16362         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16364         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16365         being in a literal.  Add a limit for backward searching.
16367         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16368         c-slow-in-literal.
16370 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
16372         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16374 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
16376         * window.el (delete-other-windows): Use correct frame in call to
16377         window-with-parameter.
16379 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
16381         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16382         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16383         (makefile-gmake-statements, makefile-makepp-statements):
16384         Use it and add new makepp keywords.
16385         (makefile-makepp-font-lock-keywords): Add new patterns.
16386         (makefile-match-function-end): Match new [...] and [[...]].
16388 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
16390         * ses.el (ses-call-printer-return, ses-cell-property-get)
16391         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16392         (ses-create-cell-variable, ses-reset-header-string)
16393         (ses-cell-set-formula, ses-repair-cell-reference-all)
16394         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16395         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16396         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16397         (ses-aset-with-undo, ses-load, ses-truncate-cell)
16398         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16399         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16400         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16401         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16402         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16403         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16404         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16405         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16407 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
16409         * ses.el: The overall change is to add cell renaming, that is
16410         setting fancy names for cell symbols other than name matching
16411         "\\`[A-Z]+[0-9]+\\'" regexp .
16412         (ses-create-cell-variable): New defun.
16413         (ses-relocate-formula): Relocate formulas only for cells the
16414         symbols of which are not renamed, i.e. symbols whose names do not
16415         match regexp "\\`[A-Z]+[0-9]+\\'".
16416         (ses-relocate-all): Relocate values only for cells the symbols of
16417         which are not renamed.
16418         (ses-load): Create cells variables as the (ses-cell ...) are read,
16419         in order to check row col consistency with cell symbol name only
16420         for cells that are not renamed.
16421         (ses-replace-name-in-formula): New defun.
16422         (ses-rename-cell): New defun.
16424 2011-12-11  Chong Yidong  <cyd@gnu.org>
16426         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16427         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16429 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
16431         * window.el (other-window): Fix docstring.
16433 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
16435         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16436         `from' or `to' address before taking its substring.
16437         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16438         encoded name is chopped in the middle of the encoded string, and
16439         thus displayed encoded.
16441 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
16443         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16445 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
16447         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
16448         to use texinfo-update-node and commands that call it if the
16449         Texinfo file uses @node lines without next/prev/up pointers.
16450         Correct outdated description about texinfo-master-menu.
16451         (texinfo-all-menus-update, texinfo-master-menu)
16452         (texinfo-update-node, texinfo-every-node-update)
16453         (texinfo-multiple-files-update): Doc fix.  Warn against updating
16454         all the @node lines.
16455         (texinfo-master-menu): Only call texinfo-update-node if the prefix
16456         argument is numeric.  Explain better in the doc string what the
16457         function really does.
16458         (texinfo-insert-master-menu-list): Improve the error message
16459         displayed if there's no menu in the Top node.
16460         (Bug#2975)  See also this thread:
16461         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16463 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
16465         * speedbar.el (speedbar-supported-extension-expressions):
16466         Add .adb and .ads, commonly used for Ada source code (bug#10256).
16468 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
16470         * printing.el (pr-mode-alist):
16471         * simple.el (filter-buffer-substring-functions)
16472         (completion-list-insert-choice-function):
16473         * window.el (window-with-parameter, window-atom-root)
16474         (window-sides-slots, window-size-fixed, window-min-delta)
16475         (window-max-delta, window--resize-mini-window)
16476         (window--resize-child-windows-normal, window-tree)
16477         (delete-other-windows, quit-window, split-window)
16478         (display-buffer-record-window, special-display-buffer-names)
16479         (special-display-regexps, special-display-popup-frame)
16480         (same-window-p, split-window-sensibly)
16481         (display-buffer-overriding-action, display-buffer-alist)
16482         (display-buffer-base-action, display-buffer, switch-to-buffer)
16483         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16484         (fit-window-to-buffer, recenter-positions)
16485         (mouse-autoselect-window-state, mouse-autoselect-window-select):
16486         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16487         and remove unneeded backslashes in docstrings.
16489 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16491         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16493         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16494         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16495         end in ".mk".
16496         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16497         when reading the makefile (bug#10116).
16499 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16501         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16502         (bug#10116).
16504 2011-12-06  Glenn Morris  <rgm@gnu.org>
16506         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16508 2011-12-06  Chong Yidong  <cyd@gnu.org>
16510         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16512 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
16514         * textmodes/table.el (table-shorten-cell): Fix typo.
16516 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
16518         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16520 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
16522         * descr-text.el (describe-char): Fix display of strong
16523         right-to-left characters and directional embeddings and overrides.
16525         * simple.el (what-cursor-position): Fix display of codepoints of
16526         strong right-to-left characters.
16528 2011-12-05  Chong Yidong  <cyd@gnu.org>
16530         * faces.el (read-color): Doc fix.
16532 2011-12-05  Glenn Morris  <rgm@gnu.org>
16534         * align.el (align--set-marker): Add doc-string.
16535         Don't try to move something that is not a marker.  (Bug#10216)
16537 2011-12-04  Glenn Morris  <rgm@gnu.org>
16539         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16540         overly zealous deletion of trailing whitespace.
16542 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
16544         * server.el (server-delete-client): On Windows, do not try to delete
16545         the only terminal.
16546         (server-process-filter): On Windows, treat requests for a tty frame as
16547         if they were for a GUI frame if the running server is in GUI mode.
16549 2011-12-03  Glenn Morris  <rgm@gnu.org>
16551         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
16553 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16555         * electric.el: Streamline electric-indent's hook.
16556         (electric-indent-chars): Revert to simple list.
16557         (electric-indent-functions): New var.
16558         (electric-indent-post-self-insert-function): Use it.
16560         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16561         there's no inferior buffer (bug#10196).
16562         (prolog-consult-compile): Don't use toggle-read-only.
16564 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
16566         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16567         interrupt.  (Bug#10187)
16569 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16571         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16572         (bug#9160).
16574         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16575         (bug#10191).
16577 2011-12-02  Juri Linkov  <juri@jurta.org>
16579         * info.el (Info-search): Display "end of manual" when Isearch
16580         reaches the end of single-file Info manual.  (Bug#9918)
16582 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
16584         * isearch.el (isearch-message-prefix): Run the input method part
16585         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
16587 2011-12-02  Juri Linkov  <juri@jurta.org>
16589         * isearch.el (isearch-occur): Use `word-search-regexp' for
16590         `isearch-word'.
16591         (isearch-search-and-update): Add condition for `isearch-word' and
16592         call `word-search-regexp'.  (Bug#10145)
16594 2011-12-01  Glenn Morris  <rgm@gnu.org>
16596         * eshell/em-hist.el (eshell-hist-initialize):
16597         Handle eshell-history-size nil and HISTSIZE set or unset.
16598         (eshell-history-file-name, eshell-history-size): Fix custom type.
16600 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16602         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16604 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
16606         * progmodes/verilog-mode.el (verilog-pretty-expr):
16607         Rework verilog-pretty-expr to handle new assignment operators in system
16608         verilog, such as += *= and the like.
16609         (verilog-assignment-operator-re): Regular expression to find the
16610         assigment operator in a verilog assignment.
16611         (verilog-assignment-operation-re): Regular expression to find an
16612         assignment statement for pretty-expr.
16613         (verilog-in-attribute-p): Query returns true if point is in an
16614         attribute context; used to skip these for expression line up from
16615         pretty-expr.
16616         (verilog-in-parameter-p): Query returns true if point is in an
16617         parameter definition context; used to skip these for expression
16618         line up from pretty-expr.
16619         (verilog-in-parenthesis-p): Query returns true if point is in a
16620         parenthetical expression, specifically ( ) but not [ ] or { };
16621         used by pretty-expr.
16622         (verilog-just-one-space): If there is no space, don't add one.
16623         (verilog-get-lineup-indent-2): Specifically skip just attribute
16624         contexts for expression lineup, rather than skipping all
16625         parenthetical expressions.
16626         (verilog-calculate-indent): Fix comment, and fix indent.
16627         (verilog-do-indent): Indent declarations in lists (suggested by
16628         Joachim Lechner).
16629         (verilog-mode-abbrev-table): Populate abbrev mode with the various
16630         skeleton items.
16631         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16632         by Alain Mellan).
16634 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
16636         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16637         parameters with embedded comments.  Reported by Ray Stevens.
16638         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16639         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16640         Reported by Tim Holt.
16641         (verilog-auto): Fix AUTOing a upper module then AUTOing module
16642         instantiated by upper module causing wrong expansion until AUTOed a
16643         second time.  Reported by K C Buckenmaier.
16644         (verilog-diff-auto): Fix showing .* as a difference when
16645         `verilog-auto-star-save' off.  Reported by Dan Dever.
16646         (verilog-auto-reset, verilog-read-always-signals)
16647         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16648         temporary signals in reset list if
16649         verilog-auto-reset-blocking-in-non is nil, and match assignment
16650         style to each signal's assignment type, bug381.
16651         Reported by Thomas Esposito.
16652         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16653         (verilog-uvm-statement-re): Support UVM indentation and
16654         highlighting, with old OVM keywords only.
16655         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16656         Support AUTOTIEOFF creating non-wire data types.
16657         Suggested by Jonathan Greenlaw.
16658         (verilog-auto-insert-lisp, verilog-delete-to-paren)
16659         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16660         (verilog-inject-sense, verilog-read-inst-pins)
16661         (verilog-read-sub-decls, verilog-read-sub-decls-line):
16662         Fix mismatching parenthesis inside commented out code when deleting
16663         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
16664         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16665         non-numeric vector width.  Reported by Alex Reed.
16666         (verilog-auto-ascii-enum): Add "onehot" option to work around not
16667         detecting signals with parameter widths.  Reported by Alex Reed.
16668         (verilog-auto-delete-trailing-whitespace):
16669         With `verilog-auto-delete-trailing-whitespace' remove trailing
16670         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
16671         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16672         Fix verilog-scan-cache corruption when running user AUTO expansion
16673         hooks that call indentation routines.
16674         (verilog-simplify-range-expression): Fix typo ignoring lower case
16675         identifiers.
16676         (verilog-delete-auto): Fix delete-autos to also remove user created
16677         automatics, as long as they start with AUTO.
16678         (verilog-batch-diff-auto, verilog-diff-auto)
16679         (verilog-diff-function): Add `verilog-diff-auto' and bind to
16680         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
16681         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16682         (verilog-in-paren-quick, verilog-re-search-backward-quick)
16683         (verilog-re-search-forward-quick, verilog-syntax-ppss):
16684         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16685         is disabled and its cache will get corrupt, causing AUTOS not to
16686         expand.  Instead use only -quick functions.
16687         (verilog-scan-region): Fix scanning over escaped quotes.
16688         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16689         (verilog-re-search-backward-quick)
16690         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16691         related functions now ignore strings, to fix misparsing of strings
16692         with magic comments embedded in them.
16693         (verilog-read-auto-template):
16694         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16695         Reported by Brad Dobbie.
16696         (verilog-read-auto-template):
16697         Fix 'verilog-auto-inst-template-numbers' with comments.
16698         Reported by Brad Dobbie.
16699         (verilog-auto-inst, verilog-auto-inst-param)
16700         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16701         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
16702         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16703         debugging templates without merge conflicts, bug357.
16704         Reported by Brad Dobbie.
16705         (verilog-read-auto-template):
16706         Fix verilog-auto-inst-template-numbers with multiple templates.
16707         Reported by Brad Dobbie.
16708         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16709         abbrevs so user won't be asked to save.
16710         (verilog-read-auto-lisp-present): Fix to start at beginning of
16711         buffer in case called outside of verilog-auto.
16712         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16713         to "X-2".  Reported by Matthew Myers.
16714         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16715         all inputs from module templates.  Reported by Leith Johnson.
16716         (verilog-module-inside-filename-p): Fix locating programs as with
16717         modules.
16718         (verilog-auto-inst-port): Fix vl-width expressions when using
16719         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
16720         (verilog-decls-get-regs, verilog-decls-get-signals,
16721         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16722         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16723         verilog-read-decls): Combine reg and wire structures into one var
16724         structure to represent SystemVerilog concepts.
16725         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16726         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16727         (verilog-auto-wire-type, verilog-insert-definition):
16728         Add verilog-auto-wire-type and AUTOLOGIC to support using
16729         SystemVerilog "logic" keyword instead of "wire"/"reg".
16730         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16731         to declares outputs that also have assignments (presumably in an
16732         ifdef or generate if so there's not a driver conflict).
16733         Reported by Matthew Myers.
16734         (verilog-auto-declare-nettype, verilog-insert-definition):
16735         Add verilog-auto-declare-nettype to fix declarations using
16736         `default_nettype none.  Reported by Julian Gorfajn.
16737         (verilog-read-always-signals-recurse, verilog-read-decls)
16738         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16739         malformed end statement, bug325.  Reported by Joshua Wise and
16740         Andrew Drake.
16741         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16742         (verilog-inst-comment-re): Fix not deleting Interfaced comment
16743         when expanding .* in interfaces, bug320.
16744         Reported by Pierre-David Pfister.
16745         (verilog-read-module-name): Fix import statements between module
16746         name and open parenthesis, bug317.
16747         Reported by Pierre-David Pfister.
16748         (verilog-simplify-range-expression): Fix simplification of
16749         multiplications inside AUTOWIRE connections, bug303.
16750         (verilog-auto-inst-port): Support parameter expansion in
16751         multidimensional arrays.
16752         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16753         after "assert property".  Reported by Julian Gorfajn.
16754         (verilog-simplify-range-expression): Fix "couldn't merge" errors
16755         with multiplication, bug303.
16756         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16757         Reported by Jan Frode Lonnum.
16759 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
16761         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16762         (hfy-shell-file-name, hfy-shell):
16763         * international/fontset.el (x-decompose-font-name): Fix typos.
16765 2011-11-29  Ken Brown  <kbrown@cornell.edu>
16767         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16768         (gdb-version): Remove defvar.
16769         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16770         (gdb-gud-context-command, gdb-non-stop-handler)
16771         (gdb-current-context-command, gdb-stopped): Use it.
16772         (gdb-init-1): Enable pretty printing here.
16773         (gdb-non-stop-handler): Don't enable pretty-printing here.
16774         Check to see if the target supports non-stop mode; if not, turn off
16775         non-stop mode.  Use the following.
16776         (gdb-check-target-async): New defun.
16777         (gud-watch, gdb-stopped): Fix whitespace.
16778         (gdb-get-source-file): Don't try to display the source file if
16779         `gdb-main-file' is nil.
16781 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16783         * align.el: Try to generate fewer markers (bug#10047).
16784         (align--set-marker): New macro.
16785         (align-region): Use it.
16787 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16789         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16791 2011-11-29  Chong Yidong  <cyd@gnu.org>
16793         * indent.el (indent-for-tab-command, indent-according-to-mode):
16794         Doc fix.
16795         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
16797 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
16799         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16800         aware of remote file names.  (Bug#10124)
16802 2011-11-29  Chong Yidong  <cyd@gnu.org>
16804         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16806 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16808         * files.el (find-file): Don't use force-same-window (bug#10144).
16809         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16810         use pop-to-buffer if the selected window can't be used.
16811         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16813 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
16815         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16816         special-mode-map.
16818 2011-11-28  Chong Yidong  <cyd@gnu.org>
16820         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16822 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
16824         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16825           gdb-get-source-file-list on gdb-create-source-file-list.
16827 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
16829         * whitespace.el (whitespace-newline): Use a different foreground
16830         color for 16-color light-background displays.
16832 2011-11-24  Chong Yidong  <cyd@gnu.org>
16834         * window.el (display-buffer--special-action): Doc fix.
16836 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
16838         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
16839         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
16840         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
16841         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
16842         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
16843         (avl-tree-stack-first):
16844         * emacs-lisp/cconv.el (cconv--analyse-use):
16845         * net/gnutls.el (gnutls-negotiate): Fix typos.
16847 2011-11-24  Glenn Morris  <rgm@gnu.org>
16849         * lpr.el (lpr-windows-system, lpr-lp-system):
16850         * mail/binhex.el (binhex-begin-line):
16851         * progmodes/grep.el (grep-history, grep-find-history):
16852         * textmodes/flyspell.el:
16853         * vc/pcvs-defs.el (cvs-global-menu):
16854         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
16855         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
16856         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
16858         * net/tls.el: Fix case of "GnuTLS".
16860         * paths.el (rmail-file-name): Format doc-string for make-docfile.
16862         * version.el (emacs-build-system): Give it a doc-string.
16864 2011-11-24  Juri Linkov  <juri@jurta.org>
16866         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
16868 2011-11-24  Glenn Morris  <rgm@gnu.org>
16870         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
16871         if called on a non-mime message just toggle the headers.  (Bug#8006)
16873 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
16875         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
16876         (allout-lead-with-comment-string, allout-structure-deleted-hook)
16877         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
16878         (allout-rebullet-heading, allout-open-sibtopic)
16879         (allout-toggle-current-subtree-encryption)
16880         (allout-toggle-subtree-encryption, allout-encrypt-string)
16881         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
16882         (allout-distinctive-bullets-string, allout-auto-activation):
16883         * window.el (window-normalize-buffer-to-display):
16884         * progmodes/verilog-mode.el (verilog-batch-indent):
16885         * textmodes/bibtex.el (bibtex-field-braces-opt)
16886         (bibtex-field-strings-opt):
16887         * vc/cvs-status.el (cvs-tree-merge):
16888         Fix typos.
16890 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
16892         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
16893         `non-essential' to t, in order to avoid remote connections.
16895 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
16897         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16898         On MS-DOS and MS-Windows, compare with loaddefs.el
16899         case-insensitively.
16901 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
16903         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
16905 2011-11-23  Glenn Morris  <rgm@gnu.org>
16907         * paths.el (rmail-file-name): Reformat the doc-string so that it
16908         is picked up.
16910         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
16911         (rmail-auto-file): Ignore case in the "special" field names,
16912         as mail-fetch-field does for all others.
16914         * mail/rmail.el (rmail-forward):
16915         * mail/rmailkwd.el (rmail-set-label):
16916         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
16917         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
16919         * mail/rmail.el (rmail-current-message): Doc fix.
16921         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
16923 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16925         * server.el (server-eval-and-print): Allow C-g (bug#6585).
16927 2011-11-22  Glenn Morris  <rgm@gnu.org>
16929         * mail/rmailmm.el (test-rmail-mime-handler)
16930         (test-rmail-mime-bulk-handler)
16931         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
16933 2011-11-21  Juri Linkov  <juri@jurta.org>
16935         * calc/calc.el (calc-read-key-sequence):
16936         Let-bind `input-method-function' to nil.  (Bug#10018)
16938 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16940         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
16941         Tell the caller that the next line needs recomputation, even
16942         though it doesn't start a sexp (bug#10094).
16944 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16946         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
16948 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16950         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16951         Use force-same-window.
16953 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
16955         * descr-text.el (describe-char-unicode-data):
16956         * json.el (json-string-escape):
16957         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
16958         (Footnote-unicode, Footnote-style-p):
16959         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
16961 2011-11-20  Chong Yidong  <cyd@gnu.org>
16963         * window.el (replace-buffer-in-windows): Restore interactive spec.
16965 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16967         * electric.el (electric-indent-mode): Fix last change (too optimistic).
16969         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
16970         (byte-compile-global-not-obsolete-vars): New var.
16971         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
16972         Use it.
16973         (byte-compile-warn-obsolete): Align text with the one in *Help*.
16975 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
16977         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
16978         * progmodes/pascal.el (electric-pascal-equal):
16979         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
16980         * xml.el (xml-substitute-special): Fix typos.
16982 2011-11-20  Glenn Morris  <rgm@gnu.org>
16984         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
16985         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
16986         Doc fixes.
16987         (rmail-decode-mime-charset): Mark as obsolete.
16989         * mail/rmailsum.el (rmail-message-regexp-p-1):
16990         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
16991         Before using mime functions, check they are set.  (Bug#10077)
16993 2011-11-19  Juri Linkov  <juri@jurta.org>
16995         * info.el (Info-finder-find-node): Use `package--builtins' instead
16996         of `package-alist'.  Use node names formed by the pattern "Keyword "
16997         and the keyword name.
16999 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
17001         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
17003 2011-11-19  Juri Linkov  <juri@jurta.org>
17005         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
17006         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
17007         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
17008         `old-history', `old-history-forward'.  Add let-binding
17009         `window-selected'.  Remove calls to `kill-buffer',
17010         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
17011         before calling `Info-find-node', so `Info-find-node-2' will reread
17012         the Info file.  Restore window positions only when `window-selected'
17013         is non-nil.
17015 2011-11-19  Juri Linkov  <juri@jurta.org>
17017         * isearch.el (isearch-lazy-highlight-new-loop):
17018         Remove condition `(not isearch-error)'.  (Bug#9918)
17020         * misearch.el (multi-isearch-search-fun): Add condition
17021         `(not bound)' to ignore lazy-highlighting search.
17022         Add the search-failed message "end of multi" when the end of
17023         multi-sequence is reached.  Uncapitalize the search-failed
17024         message "Repeat for next buffer".
17026         * info.el (Info-search): Add the search-failed message
17027         "end of the manual" when the end of the manual is reached
17028         in Isearch mode.
17030 2011-11-19  Juri Linkov  <juri@jurta.org>
17032         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
17033         Use non-destructive `remove' instead of `delete' because
17034         `Info-history-list' stored to `Info-isearch-initial-history-list' in
17035         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
17037 2011-11-19  Juri Linkov  <juri@jurta.org>
17039         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
17040         to nil instead of binding `search-ring' and `regexp-search-ring'.
17041         (Bug#9185)
17043 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
17045         * simple.el (line-move): Force movement by logical lines for any
17046         hscrolled window, not only when auto-hscroll-mode is on.
17047         (line-move-visual): Update doc string to that effect.  (Bug#10076)
17049 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
17051         * language/european.el (macintosh): Define as alias for mac-roman.
17053 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
17055         * mail/rmailmm.el (rmail-mime-display-header)
17056         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
17057         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
17058         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
17059         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
17060         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
17061         of a raw aref.
17062         (rmail-mime-entity-segment): To get past the tagline, move forward
17063         2 more lines, to account for the 2 empty lines that precede and
17064         follow the line with the buttons.
17065         (rmail-mime-update-tagline): Move one more line, to get past the
17066         empty line that follows the buttons in the tagline.  (Bug#9520)
17068 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
17070         * window.el (window-max-delta-1, window-min-delta-1)
17071         (window-min-size-1, window-state-get-1, window-state-put-1)
17072         (window-state-put-2): Use "window--" prefix.
17074 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17076         * emacs-lisp/smie.el: Improve warnings and conflict detection.
17077         (smie-warning-count): New var.
17078         (smie-set-prec2tab): Use it.
17079         (smie-bnf->prec2): Improve warnings.  Add docstring.
17080         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
17081         (smie-bnf--set-class): New function.
17082         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
17083         corner case.
17085         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
17086         (compilation-error-properties, compilation-move-to-column):
17087         Handle compilation-first-column while in the target buffer.
17089         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
17090         Don't hardcode point-min==1.
17092         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
17093         (eshell-rewrite-for-command): Remove workaround.
17094         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
17095         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
17096         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
17098         * files-x.el (modify-file-local-variable): Obey commenting conventions.
17100 2011-11-17  Glenn Morris  <rgm@gnu.org>
17102         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
17103         Ignore buffer-local generated-autoload-file if it is the same
17104         as the global value.  (Bug#10049)
17106 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
17108         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
17109         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
17110         (reftex-toc-previous-heading, reftex-toc-max-level)
17111         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
17112         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
17113         (reftex-toc-do-promote, reftex-toc-promote-prepare)
17114         (reftex-toc-promote-action, reftex-toc-extract-section-number)
17115         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
17116         (reftex-toc-rename-label, reftex-toc-visit-location)
17117         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
17118         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
17119         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
17120         leaving "*toc*" only for references to the buffer.
17122 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
17124         * window.el (window-resize, delete-window, split-window):
17125         Replace window-splits by window-combination-resize.
17126         * cus-start.el (window-splits): Replace by window-combination-resize.
17128 2011-11-17  Glenn Morris  <rgm@gnu.org>
17130         * progmodes/sh-script.el (sh-font-lock-keywords-var):
17131         Make bash entry derive from sh entry, not shell entry.
17133 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
17135         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
17136         local file name.
17138 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
17140         * menu-bar.el (menu-bar-file-menu):
17141         * printing.el (pr-ps-utility):
17142         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
17143         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
17144         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
17145         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
17146         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
17147         (icalendar--convert-cyclic-to-ical)
17148         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
17149         (icalendar--convert-ical-to-diary)
17150         (icalendar--convert-recurring-to-diary)
17151         (icalendar--convert-non-recurring-all-day-to-diary)
17152         (icalendar-import-format-sample):
17153         * progmodes/idlw-shell.el (idlwave-shell-mode):
17154         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
17155         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
17156         (vhdl-ps-print-init): Fix typos.
17158 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
17160         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
17161         FSF and collapse date sequence, obscure author/maintainer email address
17162         better, remove extra version line, track relocation of author's webpage.
17164         * progmodes/python.el (python-pdbtrack-input-prompt)
17165         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
17166         regular python pdb prompts.  Adjustments shamelessly taken exactly as
17167         suggested in EmacsWiki page (tiny change):
17168         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
17170 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
17172         * expand.el (expand-pos, expand-index, expand-point):
17173         Remove redundant info from docstring.
17174         (expand-add-abbrevs): Doc fix.
17175         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
17176         (expand-sample-perl-mode-expand-list): Fix typos.
17178         * net/dbus.el (dbus-event-member-name):
17179         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
17180         * term/pc-win.el (msdos-create-frame-with-faces):
17181         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
17183 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
17185         * window.el (split-window, window-state-get-1)
17186         (window-state-put-1, window-state-put-2): Rename occurrences of
17187         window-nest to window-combination-limit.
17188         * cus-start.el (window-nest): Rename to window-combination-limit.
17190 2011-11-16  Chong Yidong  <cyd@gnu.org>
17192         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
17193         regexp (Bug#10033).
17195 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17197         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
17198         `completing-read' will remove *Completions* and will preserve
17199         current-buffer for us.
17200         (tmm-add-prompt): Users of *Completions* will always (re)set its
17201         major mode.
17202         (tmm-old-comp-map): Remove.
17204 2011-11-16  Glenn Morris  <rgm@gnu.org>
17206         * mail/rmailedit.el: Require rmailmm when compiling.
17207         (rmail-old-mime-state): New declaration.
17208         (rmail-edit-current-message): If editing a mime message,
17209         edit the "raw" message from the mbox buffer.
17210         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
17212 2011-11-15  Glenn Morris  <rgm@gnu.org>
17214         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
17215         which wasn't being used.  Add optional arg to force given state.
17216         (rmail-mime): Add optional arg to force given state.
17218 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
17220         * allout.el (allout-encryption-plaintext-sanitization-regexps):
17221         * frame.el (display-mm-dimensions-alist):
17222         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
17223         (outline-move-subtree-down):
17224         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
17225         (newsticker--treeview-do-get-node):
17226         * net/quickurl.el (quickurl-list-buffer-name):
17227         * progmodes/dcl-mode.el (dcl-mode):
17228         * progmodes/gdb-mi.el (gdb-mapcar*):
17229         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
17231 2011-11-15  Glenn Morris  <rgm@gnu.org>
17233         * mail/rmail.el (rmail-file-coding-system): It's only ever used
17234         in a boolean sense, so just make it a boolean, and fix the doc.
17235         (rmail-show-mime-function, rmail-mime-feature)
17236         (rmail-require-mime-maybe): Doc fixes.
17237         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
17239         * mail/rmailmm.el (rmail-show-mime): Doc fix.
17241 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
17243         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
17244         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
17245         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
17246         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
17248 2011-11-15  Glenn Morris  <rgm@gnu.org>
17250         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
17251         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
17252         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
17253         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
17254         (rmail-mime, rmail-show-mime): Doc fixes.
17256         * term/ns-win.el (mode-line-frame-identification):
17257         Leave it alone.  (Bug#10051)
17259         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
17261         * mail/rmailout.el (rmail-output-to-rmail-buffer):
17262         Handle empty buffers.  (Bug#9978)
17264 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
17266         * international/mule.el (define-charset):
17267         * mail/rmailmm.el (rmail-mime-find-header-encoding):
17268         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
17269         * progmodes/verilog-mode.el (verilog-backward-token):
17270         * textmodes/ispell.el (lookup-words):
17271         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
17273 2011-11-14  Glenn Morris  <rgm@gnu.org>
17275         * progmodes/executable.el
17276         (executable-make-buffer-file-executable-if-script-p):
17277         Handle file-modes returning nil.
17279         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
17280         message - not necessary, and causes problems.  (Bug#9831)
17282         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
17284         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
17286         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
17287         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
17288         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
17290 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
17292         * window.el (window-resize, delete-window): Use window-splits
17293         variable instead of function.
17294         (window-state-get-1, window-state-put-2, window-state-put):
17295         Don't deal with windows' splits status.
17297 2011-11-12  Glenn Morris  <rgm@gnu.org>
17299         * apropos.el (apropos-do-all, apropos-library, apropos-value)
17300         (apropos-documentation): Doc fixes.
17302 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
17304         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
17305         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
17307 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17309         * electric.el (electric-indent-post-self-insert-function): Make it
17310         possible for a char to only indent in some circumstances.
17311         (electric-indent-mode): Simplify.
17313 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
17315         * window.el (windows-with-parameter): Remove unused function.
17316         (windows-at-side): Rename to window-at-side-list.
17317         (window-check, window-atom-check, window-atom-check-1)
17318         (window-side-check, window-size-ignore, window-size-fixed-1)
17319         (window-in-direction-2): Prefix with "window--".
17320         (window-tree-1): Rename to window--subtree, fix doc-string.
17322 2011-11-11  Glenn Morris  <rgm@gnu.org>
17324         * subr.el (eval-after-load): If FILE is already loaded,
17325         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
17327 2011-11-10  Glenn Morris  <rgm@gnu.org>
17329         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17330         Call svn via vc-svn-command rather than vc-do-command.
17331         (vc-svn-command): Add --non-interactive.  (Bug#9993)
17332         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17334         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17335         Add toggle-read-only.  (Bug#7292)
17336         * files.el (toggle-read-only): Mention that it should only
17337         be used interactively.  (Bug#10006)
17339 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
17341         * progmodes/compile.el (compilation-error-regexp-alist-alist):
17342         Adjust regexp for OCaml warnings.
17344         * electric.el (electric-pair-post-self-insert-function): Let user
17345         turn it off buffer-locally (bug#9932).
17347         * progmodes/python.el (python-beginning-of-statement):
17348         Rewrite (bug#2703).
17350         * progmodes/compile.el: Better handle TABs (bug#9749).
17351         (compilation-internal-error-properties)
17352         (compilation-next-error-function): Obey the target buffer's
17353         compilation-error-screen-columns.
17355 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
17357         * progmodes/meta-mode.el: Remove obsolete comments.
17358         (meta-right-comment-regexp, meta-ignore-comment-regexp):
17359         Fix typos in docstrings.
17361 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
17363         * window.el (window-size-fixed-p): Rewrite doc-string.
17364         (window-resizable-p): Rename to window--resizable-p.  Update callers.
17365         (window--resizable): New function.  Make all callers of
17366         window-resizable call window--resizable instead.
17367         (window-resizable): Rewrite in terms of window--resizable.
17369 2011-11-08  Glenn Morris  <rgm@gnu.org>
17371         * progmodes/delphi.el (delphi-mode-syntax-table):
17372         Let define-derived-mode define a proper syntax table.  (Bug#9994)
17374 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17376         * window.el: Stay away from defsubst.
17377         (window-list-no-nils): Remove.
17378         (window-state-get-1, window-state-get): Use backquote instead.
17380 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
17382         * emacs-lisp/find-func.el (find-function-read):
17383         Fix incorrect use of default argument in `completing-read'.
17385 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
17387         * window.el (display-buffer-function, special-display-function):
17388         Mention display-buffer-record-window but do not mention
17389         help-setup parameter in doc-strings.
17390         (window-min-delta): Fix doc-string typo.
17392 2011-11-08  Chong Yidong  <cyd@gnu.org>
17394         * window.el (window-total-height, window-total-width): Doc fix.
17395         (window-body-size): Move from C.
17396         (window-body-height, window-body-width): Move to C.
17398 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17400         * window.el: Make special-display like display-buffer-alist (bug#9532).
17401         (display-buffer--special-action): New function, morphed
17402         from display-buffer--special.
17403         (display-buffer): Use it to handle special-display-buffers at higher
17404         priority (just after display-buffer-alist).
17405         (display-buffer-fallback-action, display-buffer--other-frame-action)
17406         (pop-to-buffer-same-window): Remove display-buffer--special.
17408 2011-11-07  Glenn Morris  <rgm@gnu.org>
17410         * calendar/cal-menu.el (cal-menu-set-date-title):
17411         Do nothing if not in a calendar.  (Bug#9976)
17413 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
17415         * files.el (find-file): Always use selected-window.
17417 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
17419         * window.el (window-combinations): Make WINDOW argument
17420         mandatory.  Rewrite doc-string.
17421         (walk-window-subtree, window-atom-check, window-min-delta)
17422         (window-max-delta, window--resize-this-window)
17423         (window--resize-root-window-vertically, window-tree)
17424         (balance-windows, window-state-put): Rewrite doc-strings as to
17425         not mention the term "subwindow".
17426         (window--resize-subwindows-skip-p): Rename to
17427         window--resize-child-windows-skip-p.
17428         (window--resize-subwindows-normal): Rename to
17429         window--resize-child-windows-normal.
17430         (window--resize-subwindows): Rename to
17431         window--resize-child-windows.
17432         (window-or-subwindow-p): Rename to window--in-subtree-p.
17434 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
17436         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17437         Ensure that mbox format messages end in two newlines (Bug#9974).
17439 2011-11-06  Chong Yidong  <cyd@gnu.org>
17441         * window.el (window-combination-p): Function deleted; its
17442         side-effect is not used in any existing code.
17443         (window-combinations, window-combined-p): Call window-*-child
17444         directly.
17446 2011-11-05  Chong Yidong  <cyd@gnu.org>
17448         * window.el (window-valid-p): Rename from window-any-p.
17449         (window-size-ignore, window-state-get): Callers changed.
17450         (window-normalize-window): Rename from window-normalize-any-window.
17451         New arg LIVE-ONLY, replacing window-normalize-live-window.
17452         (window-normalize-live-window): Delete.
17453         (window-combination-p, window-combined-p, window-combinations)
17454         (walk-window-subtree, window-atom-root, window-min-size)
17455         (window-sizable, window-sizable-p, window-size-fixed-p)
17456         (window-min-delta, window-max-delta, window-resizable)
17457         (window-resizable-p, window-full-height-p, window-full-width-p)
17458         (window-current-scroll-bars, window-point-1, set-window-point-1)
17459         (window-at-side-p, window-in-direction, window-resize)
17460         (adjust-window-trailing-edge, maximize-window, minimize-window)
17461         (window-deletable-p, delete-window, delete-other-windows)
17462         (record-window-buffer, unrecord-window-buffer)
17463         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17464         (quit-window, split-window, window-state-put)
17465         (set-window-text-height, fit-window-to-buffer)
17466         (shrink-window-if-larger-than-buffer): Callers changed.
17468 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
17470         * mail/rmail.el (rmail-simplified-subject): Decode subject with
17471         rfc2047-decode-string.
17472         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17473         warnings.
17475         * window.el (window-body-height, window-body-width): Mention in
17476         the doc string that the return values are in frame's canonical
17477         units.  (Bug#9949)
17479 2011-11-03  Alan Mackenzie  <acm@muc.de>
17481         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17482         change in cc-engine.el.
17484 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
17486         * window.el (switch-to-buffer): Use `force-same-window' interactively.
17488 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
17490         * window.el (quit-window): Call unrecord-window-buffer after
17491         showing another buffer in the window.  (Bug#9937)
17492         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17494 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
17496         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17497         Accept status with more than 9 shelves.  (Bug#9935)
17498         Reported by Colin D Bennett <colin@gibibit.com>.
17500 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
17502         * help.el (with-help-window): Don't reference
17503         temp-buffer-show-specifiers in doc-string.
17505 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
17507         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17508         menu-item.
17510 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
17512         * whitespace.el: New version 13.2.2.
17513         (whitespace-newline-mode): Disable properly.  Reported by Sarah
17514         <EmacsWiki>.
17516 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
17518         * net/newst-treeview.el: Remove "Time-stamp".
17519         (newsticker--group-manage-orphan-feeds): Do not call
17520         newsticker--treeview-tree-update.
17521         (newsticker-treeview-update, newsticker-treeview):
17522         Call newsticker--treeview-tree-update if necessary.
17524 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
17526         * window.el (window-iso-combination-p, window-iso-combined-p)
17527         (window-iso-combinations): Remove "iso-" infix.
17528         Suggested by Chong Yidong.
17529         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17530         (window-max-delta-1, window-resize, window--resize-siblings)
17531         (window--resize-this-window, adjust-window-trailing-edge)
17532         (split-window, balance-windows-1)
17533         (shrink-window-if-larger-than-buffer):
17534         * calendar/calendar.el (calendar-generate-window):
17535         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17537 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
17539         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17540         in place (bug#9907).
17541         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17542         (eshell-rewrite-if-command, eshell-rewrite-for-command)
17543         (eshell-structure-basic-command, eshell-rewrite-while-command)
17544         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17545         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17546         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17547         (eshell-do-pipelines-synchronously, eshell-eval-command):
17548         Use backquotes and prefer setq to set.
17549         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17550         (eshell-macrop): Use functionp.
17551         (eshell-do-eval): Handle multiple expressions in `while' body.
17553 2011-10-30  Chong Yidong  <cyd@gnu.org>
17555         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17556         instead of set-mark (Bug#9810).
17558 2011-10-30  Chong Yidong  <cyd@gnu.org>
17560         * window.el (split-window-below, split-window-right): Rename from
17561         split-window-above-each-other and split-window-side-by-side
17562         respectively.  All callers changed.
17563         (split-window-sensibly, split-window-sensibly): Use them.
17564         (split-window-keep-point): Doc fix.
17566         * isearch.el: Add isearch-scroll property to split-window-below
17567         and split-window-right.
17569         * follow.el (follow-mode):
17570         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17571         * progmodes/ada-xref.el (ada-gdb-application):
17572         * emulation/vip.el (vip-buffer-in-two-windows):
17573         * image-dired.el (image-dired-dired-with-window-configuration):
17574         * dired-x.el (dired-do-find-marked-files):
17575         * dired.el (dired-pop-to-buffer):
17576         * bs.el (bs--show-with-configuration):
17577         * vc/emerge.el (emerge-setup-windows):
17578         * textmodes/two-column.el (2C-two-columns):
17579         * textmodes/reftex-toc.el (reftex-toc):
17580         * progmodes/gdb-mi.el (gdb-setup-windows):
17581         * progmodes/fortran.el (fortran-window-create):
17582         * net/newst-treeview.el (newsticker--treeview-window-init):
17583         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17584         * emulation/tpu-edt.el (tpu-gold-map):
17585         * emulation/crisp.el (crisp-mode-map):
17586         * calendar/calendar.el (calendar-basic-setup): Callers changed.
17588 2011-10-29  Chong Yidong  <cyd@gnu.org>
17590         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17592         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17594         * textmodes/flyspell.el (flyspell-word): Fix char offset for
17595         forged Ispell output (Bug#7904).
17597         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17599 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17601         * doc-view.el: Avoid ugly errors about not finding nil.
17602         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17603         (doc-view-dvipdf-program, doc-view-unoconv-program)
17604         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17605         Avoid nil or absolute file name as default value.
17606         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17608 2011-10-28  Alan Mackenzie  <acm@muc.de>
17610         * progmodes/cc-defs.el (c-version): -> 5.32.2.
17612 2011-10-28  Alan Mackenzie  <acm@muc.de>
17614         Amend the handling of c-beginning/end-of-defun in nested declaration
17615         scopes.
17617         * progmodes/cc-vars.el (c-defun-tactic): Move here from
17618         cc-langs.el.  Change it to a defcustom.
17620         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17621         cc-vars.el.
17623         * progmodes/cc-engine.el (c-beginning-of-statement-1):
17624         Prevent "class foo : bar" being spuriously recognized as a label.
17626         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17627         Add parameter `inclusive' (to include enclosing braces in the region).
17628         (c-widen-to-enclosing-decl-scope): New function.
17629         (c-while-widening-to-decl-block): New macro.
17630         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17631         outward for defun boundaries, and correspondingly change symbol
17632         `respect-enclosure' to `go-outward'.
17633         (c-declaration-limits): Change algorithm to report only the "innermost"
17634         defun's boundaries.
17636 2011-10-28  Deniz Dogan  <deniz@dogan.se>
17638         * net/rcirc.el (rcirc-mode): Use hard newlines.
17640 2011-10-28  Alan Mackenzie  <acm@muc.de>
17642         Amend to indent and fontify macros "which include their own semicolon"
17643         correctly, using the "virtual semicolon" mechanism.
17645         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17647         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17648         Recode to scan one line at a time rather than having \n and \r
17649         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17650         (c-forward-label): Amend for virtual semicolons.
17651         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17653         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17654         of the new C macros.
17656         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17657         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17658         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17659         (c-opt-cpp-macro-define): Make into a full language variable.
17660         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17661         AWK Mode (including \n, \r) removed, no longer needed.
17663         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17664         Invoke c-make-macro-with-semi-re.
17666         * progmodes/cc-vars.el (c-macro-with-semi-re):
17667         (c-macro-names-with-semicolon): New variables.
17668         (c-make-macro-with-semi-re): New function.
17670 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17672         * vc/log-edit.el: Fill empty field rather than adding new one.
17673         (log-edit-add-field): New function.
17674         (log-edit-insert-changelog): Use it.
17676 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
17678         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17680 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17682         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17683         (gdb--check-interpreter): New function.
17684         (gdb): Use it.
17686 2011-10-27  Glenn Morris  <rgm@gnu.org>
17688         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17689         (least-positive-float, least-negative-float)
17690         (least-positive-normalized-float, least-negative-normalized-float)
17691         (float-epsilon, float-negative-epsilon):
17692         Remove unnecessary declarations.
17694         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17695         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17696         (least-positive-float, least-negative-float)
17697         (least-positive-normalized-float, least-negative-normalized-float)
17698         (float-epsilon, float-negative-epsilon): Add doc-strings,
17699         based on those in cl.texi.
17701         * files.el (set-visited-file-name): If the major-mode changed,
17702         reload the local variables.  (Bug#9796)
17704 2011-10-27  Chong Yidong  <cyd@gnu.org>
17706         * subr.el (change-major-mode-after-body-hook): New hook.
17707         (run-mode-hooks): Run it.
17709         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17710         Use change-major-mode-before-body-hook.
17712         * simple.el (fundamental-mode):
17713         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17714         change introducing fundamental-mode-hook.
17716 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
17718         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17720 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
17722         * ido.el (ido-file-name-all-completions-1): Do not require
17723         tramp.el explicitly.  (Bug#7583)
17725 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17727         * progmodes/octave-mod.el:
17728         * progmodes/octave-inf.el: Update maintainer.
17730 2011-10-26  Chong Yidong  <cyd@gnu.org>
17732         * subr.el (with-wrapper-hook): Rewrite doc.
17734 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
17736         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17737         filenames "/method:foo:".  (Bug#9793)
17739 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17741         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17742         (bug#9865).
17744 2011-10-24  Glenn Morris  <rgm@gnu.org>
17746         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
17748 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
17750         * notifications.el: Add the requirement of a running D-Bus session
17751         bus to the Commentary.
17753 2011-10-24  Juri Linkov  <juri@jurta.org>
17755         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17756         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17757         (Bug#9364)
17759 2011-10-24  Juri Linkov  <juri@jurta.org>
17761         * info.el (Info-following-node-name-re): Add newline to the list
17762         of allowed characters for leading space.  (Bug#9824)
17764 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
17766         * progmodes/octave-inf.el (inferior-octave-mode-map):
17767         Fix C-c C-h binding.
17768         * progmodes/octave-mod.el (octave-help): Remove.
17770 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
17772         Sync with Tramp 2.2.3.
17774         * net/tramp-cache.el (top): Pacify byte-compiler using
17775         `init-file-user' and `site-run-file'.
17777         * net/trampver.el: Update release number.
17779 2011-10-23  Chong Yidong  <cyd@gnu.org>
17781         * files.el (toggle-read-only): Remove obsolete comment about
17782         version control.
17784         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17785         for toggle-read-only.  Note that this hasn't called vc-next-action
17786         since 2008-05-02, though it wasn't documented at the time.
17788         * vc/ediff-init.el (ediff-toggle-read-only-function):
17789         Use toggle-read-only.
17791 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
17793         Fix bug #9560, sporadic wrong indentation; improve instrumentation
17794         of c-parse-state.
17796         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17797         correct faulty logical expression.
17798         (c-parse-state-state, c-record-parse-state-state):
17799         (c-replay-parse-state-state): New defvar/defuns.
17800         (c-debug-parse-state): Use new functions.
17802 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
17804         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17805         last fix.  Use window-in-direction correctly.
17807 2011-10-21  Chong Yidong  <cyd@gnu.org>
17809         * progmodes/idlwave.el (idlwave-mode):
17810         * progmodes/vera-mode.el (vera-mode): No need to set
17811         require-final-newline; that's done in prog-mode.
17812         Suggested by Stefan Monnier.
17814 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
17816         * mouse.el (mouse-drag-window-above)
17817         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17818         (mouse-drag-mode-line-1, mouse-drag-header-line)
17819         (mouse-drag-vertical-line-rightward-window): Remove.
17820         (mouse-drag-line): New function.
17821         (mouse-drag-mode-line, mouse-drag-header-line)
17822         (mouse-drag-vertical-line): Call mouse-drag-line.
17823         * window.el (window-at-side-p, windows-at-side): New functions.
17825 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
17827         * tar-mode.el (tar-grind-file-mode):
17828         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
17830 2011-10-21  Chong Yidong  <cyd@gnu.org>
17832         * progmodes/idlwave.el (idlwave-mode):
17833         * progmodes/vera-mode.el (vera-mode):
17834         Use mode-require-final-newline.
17836 2011-10-20  Glenn Morris  <rgm@gnu.org>
17838         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
17840 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
17842         * emulation/cua-base.el (cua-set-mark): Fix case of string.
17844 2011-10-20  Chong Yidong  <cyd@gnu.org>
17846         * emulation/cua-base.el (cua-mode):
17847         * mail/footnote.el (footnote-mode):
17848         * mail/mailabbrev.el (mail-abbrevs-mode):
17849         * net/xesam.el (xesam-minor-mode):
17850         * progmodes/bug-reference.el (bug-reference-mode):
17851         * progmodes/cap-words.el (capitalized-words-mode):
17852         * progmodes/compile.el (compilation-minor-mode)
17853         (compilation-shell-minor-mode):
17854         * progmodes/gud.el (gud-tooltip-mode):
17855         * progmodes/hideif.el (hide-ifdef-mode):
17856         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
17857         * progmodes/subword.el (subword-mode):
17858         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
17859         * progmodes/which-func.el (which-function-mode):
17860         * term/tvi970.el (tvi970-set-keypad-mode):
17861         * term/vt100.el (vt100-wide-mode):
17862         * textmodes/flyspell.el (flyspell-mode):
17863         * textmodes/ispell.el (ispell-minor-mode):
17864         * textmodes/nroff-mode.el (nroff-electric-mode):
17865         * textmodes/paragraphs.el (use-hard-newlines):
17866         * textmodes/refill.el (refill-mode):
17867         * textmodes/reftex.el (reftex-mode):
17868         * textmodes/rst.el (rst-minor-mode):
17869         * textmodes/sgml-mode.el (html-autoview-mode)
17870         (sgml-electric-tag-pair-mode):
17871         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
17872         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
17873         * emulation/crisp.el (crisp-mode):
17874         * emacs-lisp/eldoc.el (eldoc-mode):
17875         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
17876         minor mode behavior.
17878 2011-10-19  Juri Linkov  <juri@jurta.org>
17880         * descr-text.el (describe-char): Add #x2010 and #x2011 to
17881         the list of hard-coded chars with escape-glyph face.
17883 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17885         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
17887 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
17889         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
17890         running process.
17892 2011-10-19  Glenn Morris  <rgm@gnu.org>
17894         * vc/vc-bzr.el (vc-bzr-after-dir-status):
17895         Ignore ignored files.  (Bug#9726)
17897 2011-10-19  Chong Yidong  <cyd@gnu.org>
17899         Doc fix for minor modes, stating that an omitted argument enables
17900         the mode unconditionally when called from Lisp.
17902         * abbrev.el (abbrev-mode):
17903         * allout.el (allout-mode):
17904         * autoinsert.el (auto-insert-mode):
17905         * autoarg.el (autoarg-mode, autoarg-kp-mode):
17906         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17907         (global-auto-revert-mode):
17908         * battery.el (display-battery-mode):
17909         * composite.el (global-auto-composition-mode)
17910         (auto-composition-mode):
17911         * delsel.el (delete-selection-mode):
17912         * desktop.el (desktop-save-mode):
17913         * dired-x.el (dired-omit-mode):
17914         * dirtrack.el (dirtrack-mode):
17915         * doc-view.el (doc-view-minor-mode):
17916         * double.el (double-mode):
17917         * electric.el (electric-indent-mode, electric-pair-mode):
17918         * emacs-lock.el (emacs-lock-mode):
17919         * epa-hook.el (auto-encryption-mode):
17920         * follow.el (follow-mode):
17921         * font-core.el (font-lock-mode):
17922         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
17923         * help.el (temp-buffer-resize-mode):
17924         * hilit-chg.el (highlight-changes-mode)
17925         (highlight-changes-visible-mode):
17926         * hi-lock.el (hi-lock-mode):
17927         * hl-line.el (hl-line-mode, global-hl-line-mode):
17928         * icomplete.el (icomplete-mode):
17929         * ido.el (ido-everywhere):
17930         * image-file.el (auto-image-file-mode):
17931         * image-mode.el (image-minor-mode):
17932         * iswitchb.el (iswitchb-mode):
17933         * jka-cmpr-hook.el (auto-compression-mode):
17934         * linum.el (linum-mode):
17935         * longlines.el (longlines-mode):
17936         * master.el (master-mode):
17937         * mb-depth.el (minibuffer-depth-indicate-mode):
17938         * menu-bar.el (menu-bar-mode):
17939         * minibuf-eldef.el (minibuffer-electric-default-mode):
17940         * mouse-sel.el (mouse-sel-mode):
17941         * msb.el (msb-mode):
17942         * mwheel.el (mouse-wheel-mode):
17943         * outline.el (outline-minor-mode):
17944         * paren.el (show-paren-mode):
17945         * recentf.el (recentf-mode):
17946         * reveal.el (reveal-mode, global-reveal-mode):
17947         * rfn-eshadow.el (file-name-shadow-mode):
17948         * ruler-mode.el (ruler-mode):
17949         * savehist.el (savehist-mode):
17950         * scroll-all.el (scroll-all-mode):
17951         * scroll-bar.el (scroll-bar-mode):
17952         * server.el (server-mode):
17953         * shell.el (shell-dirtrack-mode):
17954         * simple.el (auto-fill-mode, transient-mark-mode)
17955         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
17956         (line-number-mode, column-number-mode, size-indication-mode)
17957         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
17958         * strokes.el (strokes-mode):
17959         * time.el (display-time-mode):
17960         * t-mouse.el (gpm-mouse-mode):
17961         * tool-bar.el (tool-bar-mode):
17962         * tooltip.el (tooltip-mode):
17963         * type-break.el (type-break-mode-line-message-mode)
17964         (type-break-query-mode):
17965         * view.el (view-mode):
17966         * whitespace.el (whitespace-mode, whitespace-newline-mode)
17967         (global-whitespace-mode, global-whitespace-newline-mode):
17968         * xt-mouse.el (xterm-mouse-mode): Doc fix.
17970         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17971         Fix autogenerated docstring.
17973 2011-10-19  Juri Linkov  <juri@jurta.org>
17975         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
17976         by checking environment variables "DESKTOP_SESSION" and
17977         "XDG_CURRENT_DESKTOP".  (Bug#9779)
17979 2011-10-19  Juri Linkov  <juri@jurta.org>
17981         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
17982         (browse-url-chromium-program, browse-url-chromium-arguments):
17983         New defcustoms.
17984         (browse-url-default-browser): Check for `browse-url-chromium' and
17985         call `browse-url-chromium-program'.
17986         (browse-url-chromium): New command.  (Bug#9779)
17988 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
17990         * facemenu.el (list-colors-duplicates): On Windows, detect more
17991         duplicates by assuming that only colors matching "^System" are
17992         special "system colors".  (Bug#9722)
17994 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17996         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
17997         to distinguish the author from the committer.
17999 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
18001         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
18003 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
18005         * international/mule.el (sgml-html-meta-auto-coding-function):
18006         Add support for detecting encoding in HTML5 specified only as
18007         <meta charset="UTF-8">.  Implementation just makes http-equiv and
18008         content-type parts from HTML4 encoding string optional.  (Bug#9716)
18010 2011-10-18  Glenn Morris  <rgm@gnu.org>
18012         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
18014 2011-10-18  Chong Yidong  <cyd@gnu.org>
18016         * faces.el (cursor): Doc fix.
18018 2011-10-17  Chong Yidong  <cyd@gnu.org>
18020         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
18022 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
18024         * dirtrack.el (dirtrack): Support shell buffers with path
18025         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
18027 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
18029         * json.el: Bump version to 1.3 and note change in History.
18030         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
18032 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
18034         * comint.el (comint-insert-input, comint-send-input)
18035         (comint-get-old-input-default, comint-backward-matching-input)
18036         (comint-next-prompt): Use nil instead of `input' for field property of
18037         past user input (bug#114).
18039         * minibuffer.el (completion--replace): Inherit surrounding properties
18040         (bug#114).
18041         (minibuffer-complete-and-exit): Use it.
18043         * comint.el (comint--table-subvert): Quote the all-completions output
18044         (bug#9160).
18046 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
18048         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
18050         * menu-bar.el (menu-bar-file-menu): Add entry for making new
18051         window on right of selected.  (Bug#9350) Reword other window
18052         entries and separate them from frame entries.
18054 2011-10-15  Glenn Morris  <rgm@gnu.org>
18056         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
18057         Doc fixes.
18059 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
18061         * net/network-stream.el (network-stream-open-starttls):
18062         Improve detection of failure due to lack of TLS support.
18064         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
18065         putting the input text in front and in bold.
18067 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
18069         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
18071         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
18072         empty buffer.
18074         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
18075         unread-command-events rather than pushing yet-another event.
18077 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
18079         * mail/sendmail.el (sendmail-query-once): Improve the wording of
18080         the explanation of the possible choices.  Make the options passed
18081         to completing-read shorter.
18083 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
18085         * textmodes/flyspell.el (flyspell-large-region): Make sure
18086         extended character mode is used if defined (Bug#1339).
18088 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
18090         * simple.el (what-cursor-position): Fix the display of the
18091         character info for LRE, LRO, RLE, and RLO characters by appending
18092         an invisible PDF.
18094 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18096         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
18097         even in case of error; add debug spec; simplify data flow.
18098         (with-timeout-handler): Remove.
18100 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
18102         Fix Bug#6019, Bug#9315.
18104         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
18105         complete `buffer-file-name', the local file name part could look
18106         remotely (for example on VMS).
18108         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
18109         `tramp-run-real-handler'.
18110         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
18111         already quoted by '"'.
18113         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
18114         Let `file-name-handler-alist' be nil, the local file name part
18115         could look remotely (for example on VMS).
18117 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18119         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
18120         from here...
18121         (flyspell-post-command-hook): ...to here.
18123 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18125         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
18126         if not needed.
18127         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
18128         using completion.  Protect against "slow" callers.
18129         Remove the "message hack".
18131 2011-10-11  Juri Linkov  <juri@jurta.org>
18133         * isearch.el (isearch-lazy-highlight-word): New variable.
18134         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
18135         Use it.  (Bug#9727)
18137 2011-10-11  Glenn Morris  <rgm@gnu.org>
18139         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
18140         like f90-previous-statement does.
18142 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18144         * eshell/eshell.el (eshell-command): History should be saved
18145         only in interactive use, to avoid error.
18147 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18149         * minibuffer.el (completion-file-name-table): Fix last change,
18150         i.e. ignore normal errors but not the other ones.
18152 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
18154         * window.el (special-display-buffer-names)
18155         (special-display-regexps): Remove some remnants of earlier
18156         changes from doc-strings.
18157         (quit-windows-on): New function.
18159         * vc/vc.el (vc-revert, vc-rollback):
18160         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
18161         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
18162         (Bug#6183) (Bug#7074) (Bug#7447)
18164 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
18166         * window.el (frame-auto-hide-function): Add version tag.
18167         (Bug#9699)
18169 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
18171         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
18172         condition.
18174 2011-10-09  Leo Liu  <sdl.web@gmail.com>
18176         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
18177         (Bug#9701)
18179 2011-10-08  Glenn Morris  <rgm@gnu.org>
18181         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
18182         before the first code statement zero indent.  (Bug#9690)
18184 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
18186         * simple.el (count-words-region): Always count in the region.
18187         Report the number of lines and characters too.
18188         (count-words): New command, which counts in the buffer if the
18189         region is inactive, as count-words-region used to.
18190         (count-words--message): New function.  Handle plurals.
18191         (count-lines-region): Make it an alias for count-words-region.
18193         * bindings.el (esc-map): Replace count-lines-region with
18194         count-words-region.
18196 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
18198         * window.el (window--delete): Delete dedicated frame
18199         unconditionally when argument KILL is non-nil.  (Bug#9699)
18200         (switch-to-buffer): Fix doc-string typo.
18202 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18204         * eshell/eshell.el (eshell-command): Avoid using hooks.
18206 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
18208         * bindings.el ([M-left],[M-right]): Bind to left-word and
18209         right-word respectively.
18211 2011-10-07  Glenn Morris  <rgm@gnu.org>
18213         * cus-start.el (debug-on-quit): Fix custom type.
18215 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18217         * subr.el (define-key-after): Clarify that the function is not
18218         useful for non-menu keymaps.
18220         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
18222 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18224         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
18225         in current minibuffer (Fix bug with recursive minibuffers).
18227 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
18229         * progmodes/gdb-mi.el (gdb): Doc fix.
18231 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
18233         * window.el (frame-auto-hide-function): New option replacing
18234         frame-auto-delete.  Suggested by Stefan Monnier.
18235         (window--delete): Call frame-auto-hide-function instead of
18236         investigating frame-auto-delete.
18237         (window-point-1, set-window-point-1): New functions.
18238         (window-in-direction, record-window-buffer, window-state-get-1)
18239         (display-buffer-record-window): Use window-point-1 instead of
18240         window-point.
18241         (set-window-buffer-start-and-point): Use set-window-point-1.
18243 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18245         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
18247 2011-10-05  Glenn Morris  <rgm@gnu.org>
18249         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
18250         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
18252 2011-10-05  Leo Liu  <sdl.web@gmail.com>
18254         * subr.el (read-char-choice): Fix argument to buffer-live-p which
18255         works with buffer object.
18257 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18259         * mpc.el (mpc-tool-bar-map): Add labels.
18261 2011-10-04  Glenn Morris  <rgm@gnu.org>
18263         * calendar/holidays.el (calendar-check-holidays): Doc fix.
18265 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
18267         * window.el (window--delete): New function.
18268         (frame-auto-delete): Resuscitate option.
18269         (bury-buffer, replace-buffer-in-windows)
18270         (quit-window): Rewrite using window--delete.
18271         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18272         Pass display-buffer-mark-dedicated to window--display-buffer-2
18273         (Bug#9639).
18275 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18277         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
18278         returns a list (bug#9554).  Add remote file name completion.
18279         * comint.el (comint--table-subvert): Curry and get quote&unquote
18280         functions as arguments.
18281         (comint--complete-file-name-data): Adjust call accordingly.
18282         * pcomplete.el (pcomplete--table-subvert): Remove.
18283         (pcomplete-completions-at-point): Use comint--table-subvert instead.
18285         * minibuffer.el (completion-table-case-fold): Use currying.
18286         (completion--styles-type, completion--cycling-threshold-type):
18287         New constants.
18288         (completion-styles, completion-category-overrides)
18289         (completion-cycle-threshold): Use them.
18290         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
18291         completion-table-case-fold.
18293 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
18295         * minibuffer.el (completion-category-overrides): Fix type of styles
18296         and add more user friendly tags (bug#9660).
18298 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18300         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
18301         (mule-input-method-string): New widget.
18302         (default-input-method, language-info-custom-alist): Use it.
18304 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18306         * pcomplete.el: Require comint.
18307         (pcomplete--common-suffix): Remove.
18308         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
18309         (pcomplete--table-subvert): Sync with comint--table-subvert.
18310         (pcomplete--entries): Use comint-completion-file-name-table.
18311         * comint.el (comint-unquote-filename): Simplify.
18312         (comint-completion-file-name-table): New function (bug#9616).
18313         (comint--complete-file-name-data): Use it.
18315         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
18316         (pcmpl-gnu-tar-buffer): Remove.
18317         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18318         around.  Make sure pcomplete-suffix-list is only changed temporarily.
18319         Don't look inside the tar's file if it's too large.
18321 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
18323         * cus-edit.el (custom-mode-map):
18324         * epa.el (epa-key-list-mode-map):
18325         * man.el (Man-mode-map):
18326         * startup.el (splash-screen-keymap):
18327         * simple.el (special-mode-map): Use scroll-up-command and
18328         scroll-down-command.
18330         * progmodes/idlw-help.el (idlwave-help-mode-map):
18331         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18332         * net/newst-plainview.el (newsticker-mode-map):
18333         * emulation/ws-mode.el (wordstar-mode-map):
18334         * emulation/vi.el (vi-com-map):
18335         * calc/calc-graph.el (calc-graph-show-dumb):
18336         * term/sun.el (terminal-init-sun):
18337         * term/ns-win.el (global-map):
18338         * progmodes/grep.el (grep-mode-map):
18339         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18340         * mail/rmail.el (rmail-mode-map):
18341         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18343         * custom.el (custom-safe-themes, load-theme): Treat value of t for
18344         custom-safe-themes as special.
18346 2011-10-01  Julien Danjou  <julien@danjou.info>
18348         * notifications.el (notifications-notify): Fix docstring.
18350 2011-10-01  Per Starbäck  <per@starback.se>
18352         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
18354 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
18356         * startup.el (command-line-1): Fix last fix by inserting
18357         initial-scratch-message into *scratch* before displaying it.
18358         (Bug#9605) and (Bug#9636)
18360 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
18362         * simple.el (line-move): If auto-hscroll-mode is disabled and the
18363         window is hscrolled, move by logical lines.  (Bug#9607)
18364         (line-move-visual): Update the doc string to the above effect.
18366 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
18368         * window.el (display-buffer-record-window): When WINDOW is the
18369         selected window use `point' instead of `window-point'.  (Bug#9626)
18371         * startup.el (command-line-1): Use insert-before-markers when
18372         inserting initial-scratch-message.  (Bug#9605)
18374         * help.el (help-window): Remove variable.
18376 2011-09-29  Glenn Morris  <rgm@gnu.org>
18378         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18380 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
18382         * descr-text.el (describe-char-categories): Accept category
18383         descriptions more than one line long.
18385 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18387         * simple.el (delete-trailing-whitespace): Fix last change.
18389         * progmodes/perl-mode.el (perl-syntax-propertize-function):
18390         Don't confuse "y => 3" as the beginning of a `y' operation.
18392         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18393         object has more than 4 slots (bug#9613).
18395 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
18397         * subr.el (with-output-to-temp-buffer):
18398         * net/quickurl.el (quickurl, quickurl-browse-url):
18399         Fix typos in docstrings.
18401 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
18403         * minibuffer.el (completion-styles)
18404         (completion-category-overrides): Cross reference each other in doc
18405         strings.
18407 2011-09-27  Glenn Morris  <rgm@gnu.org>
18409         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18410         to split-string.  (Bug#9606)
18412 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18414         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18415         (bug#9615).
18417 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
18419         * emacs-lisp/package.el (list-packages): Fix echo area message.
18421 2011-09-27  Leo Liu  <sdl.web@gmail.com>
18423         * ido.el (ido-read-internal): Accept cons cell HIST arg.
18425 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
18427         * net/dbus.el (dbus-unregister-object): Don't release services for
18428         registered signals.  (Bug#9581)
18430 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
18432         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18433         function that picks between cfengine 2 and 3 support
18434         automatically.  Update docs accordingly.
18436 2011-09-22  Kenichi Handa  <handa@m17n.org>
18438         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18439         ZERO.
18440         (indian-itrans-v5-table-for-tamil): New variable.
18441         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18443 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
18445         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18446         that's true if the current command involved collapsing of text.
18447         It's reset to false at the beginning of the next command.
18448         (allout-post-command-business): Move the cursor to the beginning
18449         of entry if the cursor is hidden and collapsing activity just
18450         happened.
18452 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
18454         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18455         tracking (Bug#9541).
18457 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
18459         * net/newst-reader.el (newsticker-html-renderer)
18460         (newsticker-show-news): Automatically load html rendering package
18461         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
18462         because w3m-fill-column is let-bound" and the error "Symbol's value
18463         as variable is void: w3m-fill-column".
18465 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
18467         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18468         Release services only if they are defined.  (Bug#9581)
18470 2011-09-23  Richard Stallman  <rms@gnu.org>
18472         * textmodes/paragraphs.el (forward-sentence): For backwards case,
18473         distinguish start of paragraph from start of its text.
18475         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18477         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18478         (rmail-generate-viewer-buffer): Put that hook on view buffer.
18479         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18481 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
18483         * international/mule-diag.el (mule-diag): Insert a newline after
18484         each fontset description.
18486 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18488         * simple.el (delete-trailing-whitespace):
18489         Document last change; simplify.
18491 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
18493         * simple.el (delete-trailing-whitespace): Also delete
18494         extra newlines at the end of the buffer.
18496         * textmodes/picture.el: Make motion commands obey shift-select-mode.
18497         (picture-newline): Use forward-line so as to ignore fields.
18499 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18501         * subr.el (with-wrapper-hook): Fix edebug spec.
18503 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18505         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18506         (bug#4538).
18508 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
18510         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18511         Fix nasty bug using wrong cached values.
18513 2011-09-23  Alan Mackenzie  <acm@muc.de>
18515         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18517 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
18519         * window.el (pop-to-buffer): Ensure right window is selected if we
18520         chose another frame.
18522 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
18524         * simple.el (what-cursor-position): Use get-char-property-change
18525         and next-single-char-property-change, to be able to show display
18526         properties that come from overlays as well as text properties.
18528 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
18530         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18532         * cmuscheme.el (run-scheme, switch-to-scheme):
18533         * cus-edit.el (customize-group, custom-buffer-create)
18534         (customize-browse):
18535         * info.el (info):
18536         * shell.el (shell):
18537         * mail/sendmail.el (mail):
18538         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18540 2011-09-22  Richard Stallman  <rms@gnu.org>
18542         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18543         move back only to line beg, don't move back over blank lines.
18545 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
18547         * files.el (copy-directory): Set directory attributes only in case
18548         they could be retrieved from the source directory.  (Bug#9565)
18550 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
18552         * progmodes/hideshow.el (hs-looking-at-block-start-p)
18553         (hs-find-block-beginning, hs-hide-level-recursive):
18554         Ignore strings as well as comments.  (Bug#9502)
18556 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
18558         * progmodes/sql.el (sql-comint-postgres):
18559         Convert port number to a string.  (Bug#9566)
18561 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
18563         * window.el (quit-window): Undedicate window when switching to
18564         previous buffer.  Reported by Thierry Volpiatto
18565         <thierry.volpiatto@gmail.com>.
18566         (special-display-popup-frame): When popping up a new frame reset
18567         its previous buffers to nil.  Simplify code.
18569 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
18571         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18572         and process filter, as done also in `shell-command'.
18574 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
18576         * window.el (set-window-buffer-start-and-point):
18577         Call set-window-start with NOFORCE argument t.
18578         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18579         (quit-window): Reword doc-string.  Handle new format of
18580         quit-restore parameter.  Don't delete window if it has a
18581         previous buffer we can show instead of the present one.
18582         (display-buffer-record-window): Rewrite using a new format for
18583         the quit-restore window parameter
18584         (special-display-popup-frame, display-buffer-same-window)
18585         (display-buffer-reuse-window, display-buffer-pop-up-frame)
18586         (display-buffer-pop-up-window, display-buffer-use-some-window):
18587         Adapt symbol passed to display-buffer-record-window.
18588         * help.el (help-window-setup): Handle new format of quit-restore
18589         parameter.
18591 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18593         * faces.el (face-list): Fix docstring (bug#9564).
18595         * window.el (display-buffer--action-function-custom-type):
18596         Don't include internal functions in the Custom interface.
18598 2011-09-20  Juri Linkov  <juri@jurta.org>
18600         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18601         (Info-forward-node, Info-backward-node, Info-next-preorder)
18602         (Info-last-preorder): Use it.  (Bug#9528)
18604 2011-09-20  Juri Linkov  <juri@jurta.org>
18606         * info.el (Info-last-preorder): Visit last menu item only when
18607         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18609 2011-09-20  Julien Danjou  <julien@danjou.info>
18611         * password-cache.el (password-cache-remove): Remove entries even if the
18612         value is nil, so that password with a nil value (negative caching) is
18613         possible to invalidate.
18615 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
18617         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18618         all whitespace around breakpoint.  (Bug#9553)
18619         (f90-find-breakpoint): Only break at whitespace inside a comment.
18621 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18623         * minibuffer.el (completion-file-name-table): Keep track of errors.
18624         (completion-table-with-predicate): Handle the case where pred1 is nil.
18625         * pcomplete.el (pcomplete-completions-at-point): Simplify.
18627 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18629         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18630         (debugger-return-value): Signal an error if the debugging context does
18631         not await any return value.
18633         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18634         * image-mode.el (image-toggle-display-text)
18635         (image-toggle-display-image): Stay away from evil `intangible'.
18637 2011-09-19  Leo Liu  <sdl.web@gmail.com>
18639         * replace.el (occur-revert-arguments): Make it permanent-local.
18640         (occur-mode): Don't call font-lock-defontify.
18642 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
18644         * net/ldap.el (ldap-search-internal): Don't push empty search
18645         result (Bug#9508).
18647 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18649         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18651 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
18653         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18654         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18656 2011-09-18  Juri Linkov  <juri@jurta.org>
18658         * buff-menu.el (Buffer-menu-mode-map):
18659         * dired.el (dired-mode-map):
18660         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18661         (lisp-interaction-mode-map):
18662         * emacs-lisp/package.el (package-menu-mode-map):
18663         * epa.el (epa-key-list-mode-map):
18664         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18665         (menu-bar-options-menu):
18666         * outline.el (outline-mode-menu-bar-map):
18667         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18668         * vc/vc-dir.el (vc-dir-menu-map):
18669         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18670         Capitalize non-function content words in menu item strings.
18672         * dired.el (dired-mode-map): Add menu item for
18673         `image-dired-dired-toggle-marked-thumbs'.
18675 2011-09-18  Juri Linkov  <juri@jurta.org>
18677         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18678         to `isearch-case-fold-search' and restore its original value
18679         after the `isearch-mode' call.
18681 2011-09-18  Juri Linkov  <juri@jurta.org>
18683         * progmodes/grep.el (grep-process-setup): Don't check code for 1
18684         because `zgrep' returns 1 for successful matches (bug#9226).
18686 2011-09-18  Juri Linkov  <juri@jurta.org>
18688         * info.el (Info-extract-menu-node-name): Check the second match
18689         for empty string (second test-case of bug#9528).
18690         (Info-last-preorder): Let-bind `Info-history' to nil to not add
18691         intermediate nodes to the history (first test-case of bug#9528).
18693 2011-09-18  Juri Linkov  <juri@jurta.org>
18695         * info.el (Info-mode-syntax-table): New variable.
18696         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18698 2011-09-18  Juri Linkov  <juri@jurta.org>
18700         * info.el (Info-file-supports-index-cookies):
18701         Increment line-beginning-position's arg from 3 to 4 because makeinfo
18702         outputs one more line for long file names (bug#4142).
18704 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
18706         * newcomment.el (comment-normalize-vars): If prompting for
18707         comment-start, set comment-start-skip too (Bug#8424).
18709 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
18711         * icomplete.el: Fix previous fix of Bug#5849.
18712         (icomplete-mode): Don't set completion-show-inline-help.
18713         (icomplete-minibuffer-setup): Set completion-show-inline-help
18714         locally during icompletion.
18716 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
18718         * woman.el (woman2-process-escapes): Don't delete unrecognized
18719         escapes (Bug#7843).
18721         * files.el (inhibit-first-line-modes-regexps): Add image files.
18722         (hack-local-variables-prop-line): Return nil for malformed
18723         prop-lines (Bug#9044).
18725 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
18727         * net/tramp.el (top): Don't require 'shell.
18728         (tramp-methods): Fix docstring.
18729         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18730         Return complete remote file name.  Handle "smb" case.
18731         Use `tramp-tmpdir', if defined for the respective method.
18732         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18734         * net/tramp-compat.el (top): Require 'shell.
18736         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18737         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18738         `tramp-current-host'.
18739         (tramp-get-remote-tmpdir): Remove.
18741         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18742         `tramp-tmpdir' entries.
18743         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18744         (tramp-smb-handle-file-attributes): Ignore errors.
18745         (tramp-smb-wait-for-output): Check also for process end.
18747 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18749         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18750         when sending QUIT (bug#9312).
18752 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
18754         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18755         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18756         occur-mode-display-occurrence.
18757         (occur-edit-mode): Add usage message.
18758         (occur-cease-edit): New command.
18759         (occur-after-change-function): Use text properties to find the
18760         position of the prefix text.
18761         (occur-engine): Set stickiness of prefix text properties.
18763 2011-09-17  Glenn Morris  <rgm@gnu.org>
18765         * progmodes/etags.el (complete-tag):
18766         Fix call to completion-in-region.  (Bug#9526)
18768 2011-09-17  Juri Linkov  <juri@jurta.org>
18770         * textmodes/ispell.el (ispell-word): Add to the error message
18771         the word, ispell program name and current dictionary (bug#9121).
18772         (ispell-tex-arg-end): Capitalize "error" in the error message.
18774 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
18776         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18777         check.  (Bug#4251)
18779 2011-09-17  Juri Linkov  <juri@jurta.org>
18781         * window.el (window-safe-min-height, window-safe-min-width):
18782         Fix typos (followup to bug#9522).
18784 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
18786         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18788 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
18790         * simple.el (line-move): If goal-column is set, move by logical
18791         lines, not by display lines.  (Bug#971)
18792         (next-line, previous-line, goal-column, line-move-visual): Doc fix
18793         to reflect the above change.
18795 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
18797         * image.el (imagemagick-register-types): Use regexp-opt.
18799 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
18801         * window.el (display-buffer-base-action): Rename from
18802         display-buffer-default-action.  Make default value empty.
18803         (display-buffer-overriding-action): Convert to defvar.
18804         (display-buffer-fallback-action): New var.
18806 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
18808         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18809         declaration.
18810         (package--add-to-archive-contents): If there is a duplicate entry
18811         with an older version, remove it.
18812         (package-menu-mark-delete, package-menu-mark-install)
18813         (package-menu-mark-unmark): Make unused args optional.
18814         (package-menu-mark-obsolete-for-deletion):
18815         Use package-menu-get-status instead of a regexp search.
18816         (package-menu-get-status): Use tabulated-list-entry.
18817         (package-menu-mark-upgrades): New command.
18818         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
18819         (package-menu-execute): Do installation before deletion.
18820         (package-menu-refresh, package-menu-execute): Use derived-mode-p
18821         instead of checking major-mode.
18822         (package-menu--find-upgrades): New function.
18824 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18826         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18827         passwords in the log buffer.
18828         (smtpmail-process-filter): Update the process marker so that the
18829         "broken by peer" status message is inserted in the right place.
18831 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
18833         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18834         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18835         bibtex-completion-at-point-function.
18836         (bibtex-completion-at-point-function): Use them.
18838         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
18840         * mpc.el (mpc-constraints-tag-lookup): New function.
18841         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
18842         also to browser "album|playlist".
18844 2011-09-14  Juri Linkov  <juri@jurta.org>
18846         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
18847         (isearch-edit-string): Use length of `isearch-string' when
18848         `isearch-fail-pos' returns nil.
18849         (isearch-message): Remove duplicate code and call
18850         `isearch-fail-pos' with arg `t'.
18852 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
18854         * replace.el (occur-mode-goto-occurrence): Don't force using other
18855         window (Bug#9499).
18857         * dired-aux.el (dired-do-chmod): Don't provide initial input.
18859 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
18861         * window.el (display-buffer-window): Remove.
18862         (display-buffer-record-window): Use help-setup window parameter
18863         instead of variable display-buffer-window.
18864         (display-buffer-function, special-display-buffer-names)
18865         (special-display-function): Mention help-setup parameter instead
18866         of display-buffer-window in doc-string.
18867         * help.el (help-window-setup): New argument help-window.
18868         Use help-window-setup parameter instead of display-buffer-window.
18869         Reword some messages.
18870         (with-help-window): Pass window used for displaying the buffer
18871         to help-window-setup.  Don't set display-buffer-window.
18873 2011-09-13  Glenn Morris  <rgm@gnu.org>
18875         * emacs-lisp/debug.el (debugger-make-xrefs):
18876         Preserve point.  (Bug#9462)
18878 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
18880         * window.el (window-deletable-p): Use next-frame.
18882 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
18884         * window.el (window-auto-delete): Remove.
18885         (window-deletable-p): Remove argument FORCE.  Don't deal with
18886         dedication and previous buffers.
18887         (switch-to-prev-buffer): Don't delete window.
18888         (delete-windows-on): Delete a window's frame if and only if the
18889         window is dedicated.
18890         (replace-buffer-in-windows): Delete buffer's window or frame if
18891         and only if window is dedicated.
18892         (quit-window): Handle quit-restore as before last change.
18893         (bury-buffer): Delete window only if window-deletable-p returns t.
18895 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
18897         * window.el (window-deletable-p): Never delete the last frame on a
18898         given terminal.
18900 2011-09-13  Glenn Morris  <rgm@gnu.org>
18902         * help.el (describe-key-briefly): Copy previous standard-output change.
18904 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
18906         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
18908 2011-09-13  Glenn Morris  <rgm@gnu.org>
18910         * emacs-lisp/lisp-mode.el (lisp-indent-function):
18911         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
18913 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
18915         * dired-aux.el (dired-mark-read-string): Don't return default
18916         value on empty input (Bug#9361).
18917         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
18918         Omit initial minibuffer contents.
18919         (dired-do-chmod): Signal an error on empty input.
18920         (dired-mark-read-string): Don't return default on empty input.
18922         * files.el (file-modes-symbolic-to-number): Doc fix.
18924 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18926         * international/mule-cmds.el (ucs-completions): Remove.
18927         (read-char-by-name): Use complete-with-action instead; add metadata.
18929 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
18931         * window.el (display-buffer--action-function-custom-type)
18932         (display-buffer--action-custom-type): New vars.
18933         (display-buffer-alist, display-buffer-default-action)
18934         (display-buffer-overriding-action): Add defcustom types.
18936         * frame.el (delete-other-frames): Doc fix (Bug#276).
18938 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18940         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
18942 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
18944         Change modes that used same-window-* vars to use switch-to-buffer.
18946         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
18947         Use switch-to-buffer.
18949         * cus-edit.el (customize-group, custom-buffer-create)
18950         (customize-browse, custom-buffer-create-other-window):
18951         Use switch-to-buffer or switch-to-buffer-other-window.
18953         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
18954         (Info-prev, Info-up, Info-speedbar-goto-node)
18955         (info-display-manual): Use switch-to-buffer.
18956         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
18958         * mail/sendmail.el (mail): Use switch-to-buffer.
18959         (mail-recover): Use switch-to-buffer-other-window.
18961         * cmuscheme.el (run-scheme, switch-to-scheme):
18962         * ielm.el (ielm):
18963         * shell.el (shell):
18964         * net/rlogin.el (rlogin):
18965         * net/telnet.el (telnet, rsh):
18966         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
18968 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
18970         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
18972 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18974         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
18975         so don't mention it (bug#9301).
18976         (dired-sort-toggle-or-edit): Clarify string further.
18978         * faces.el (face-spec-set-match-display): Make `(type graphic)'
18979         match `x', `w32' and `ns', like the manual says (bug#9029).
18981         * subr.el (eval-after-load): Doc string clarification (bug#9125).
18982         (process-kill-buffer-query-function): Mention the buffer name in
18983         the query.
18985         * image-mode.el (image-next-line): The line parameter is mandatory
18986         (bug#9258).
18988         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
18989         which can be useful (bug#9301).
18991         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
18993         * subr.el (match-string): Mention that the current buffer should
18994         be the same as the search was done in (bug#9282).
18996         * facemenu.el: Disable the remove-* commands if the mark isn't
18997         active (bug#9162).
18999 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
19001         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
19002         of display-buffer.
19003         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
19005         * replace.el (occur-mode-goto-occurrence)
19006         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
19007         and display-buffer.
19009         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
19010         display-buffer.
19012         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
19013         special-display and same-window variables.
19014         (mail-other-window): Use switch-to-buffer-other-window.
19015         (mail-other-frame): USe switch-to-buffer-other-frame.
19017         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
19018         Use display-buffer-other-frame.
19019         (gdb-display-gdb-buffer): Use pop-to-buffer.
19021         * progmodes/gud.el (gud-goto-info): Use info-other-window.
19023         * progmodes/python.el: Don't set same-window-buffer-names.
19025         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
19027         * window.el (display-buffer-alist): Add *Python*.
19029 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
19031         * window.el (display-buffer-alist): Add entry for buffers
19032         previously handled same-window-*.
19033         (display-buffer-alist, display-buffer-default-action)
19034         (display-buffer-overriding-action): Mark as risky.
19035         (display-buffer-alist): Document action function changes.
19036         (display-buffer--same-window-action)
19037         (display-buffer--other-frame-action): New variables.
19038         (switch-to-buffer, display-buffer-other-frame): Use them.
19039         (display-buffer): Rename reuse-frame entry to reusable-frames.
19040         (display-buffer-reuse-selected-window): Function deleted.
19041         (display-buffer-reuse-window): Handle reusable-frames alist entry.
19042         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
19043         (display-buffer-special): New function.
19044         (display-buffer--maybe-pop-up-frame-or-window): Rename from
19045         display-buffer-reuse-or-pop-window.  Split off special-display
19046         part into display-buffer-special.
19047         (display-buffer-use-some-window): Don't perform any special
19048         pop-up-frames handling.
19049         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
19050         (display-buffer--maybe-same-window): Rename from
19051         display-buffer-maybe-same-window.
19053         * info.el: Don't set same-window-regexps.
19054         (info-setup): New function.
19055         (info-other-window, info): Call it.
19057         * cus-edit.el: Don't set same-window-regexps.
19058         (customize-group): New argument.
19059         (customize-group-other-window): Use it.
19060         (customize-face, customize-face-other-window): Likewise.
19061         (custom-buffer-create-other-window): Use pop-to-buffer directly.
19063         * net/rlogin.el:
19064         * net/telnet.el:
19065         * progmodes/gud.el: Don't set same-window-regexps.
19067         * cmuscheme.el:
19068         * ielm.el:
19069         * shell.el:
19070         * mail/sendmail.el:
19071         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
19073 2011-09-10  Juri Linkov  <juri@jurta.org>
19075         * isearch.el (isearch-edit-string): Remove obsolete mention of
19076         `C-w' (`isearch-yank-word-or-char') from docstring.
19077         (isearch-query-replace): Fix typo in docstring (bug#9466).
19079 2011-09-10  Juri Linkov  <juri@jurta.org>
19081         * paren.el (show-paren-function): Don't show escaped parens.
19082         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
19084 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
19086         * mail/sendmail.el (mml-to-mime, mml-attach-file)
19087         (mm-default-file-encoding): Remove autoload forms, they are
19088         replaced with autoload cookies in mml.el and mm-encode.el.
19089         (mail-add-attachment): New command.
19090         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
19091         (mail-mode): Mention mail-insert-file and mail-add-attachment in
19092         the doc string.
19093         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
19095 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
19097         * simple.el (count-words-region): Use buffer if there's no region
19098         (bug#9429).
19100 2011-09-09  Juri Linkov  <juri@jurta.org>
19102         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
19103         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
19104         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
19106 2011-09-09  Alan Mackenzie  <acm@muc.de>
19108         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
19109         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
19111 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
19113         Fix for Savannah bug#9392.
19114         * simple.el (mail-encode-mml): New defvar.
19116         * mail/rmail.el (mail-encode-mml): Add a defvar.
19117         (rmail-enable-mime-composing): Default to t.
19118         (rmail-forward): Use MIME method of forwarding only if both
19119         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
19120         Set mail-encode-mml non-nil if the MIME method was used.
19122         * mail/sendmail.el (mml-to-mime): Add autoload form.
19123         (mail-encode-mml): Add a defvar.
19124         (mail-mode): Make mail-encode-mml buffer-local and initialize it
19125         to nil.
19126         (mail-send): If mail-encode-mml is non-nil, run the outgoing
19127         message through mml-to-mime, and reset mail-encode-mml to nil.
19129 2011-09-09  Glenn Morris  <rgm@gnu.org>
19131         * woman.el (woman-if-body): When processing an .el block,
19132         do not delete the next .el block as well.  (Bug#9447)
19133         (woman-special-characters): Add oq, cq, and hy characters.
19135 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
19137         * window.el (window-deletable-p): Make sure window is live before
19138         invoking window-prev-buffers.
19140 2011-09-08  Leo Liu  <sdl.web@gmail.com>
19142         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
19144 2011-09-08  Juri Linkov  <juri@jurta.org>
19146         * progmodes/compile.el (compilation-environment): Make it
19147         a defcustom (bug#8340).
19149 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
19151         * window.el (frame-auto-delete): Rename to window-auto-delete.
19152         Make it control auto-deletion of windows and/or frames.
19153         (window-deletable-p): New argument FORCE.  Rewrite conditions
19154         for deleting window/frame.  (Bug#9419)
19155         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
19156         Rewrite handling of case when window/frame can be deleted.
19157         (delete-windows-on): Call window-deletable-p with new FORCE
19158         argument t.  (Bug#9456)
19160 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
19162         * help-mode.el (help-mode): Restore autoload.
19164 2011-09-07  Juri Linkov  <juri@jurta.org>
19166         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
19167         `compilation-environment'.  Set buffer-local
19168         `compilation-environment' to `thisenv' later after (funcall mode).
19169         (Bug#8340)
19171         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
19172         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
19173         instead of replacing its value.  (Bug#8340)
19175 2011-09-07  Juri Linkov  <juri@jurta.org>
19177         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
19178         based on text properties put by `grep-filter' instead of matching
19179         escape sequences.
19180         (grep-mode): Set buffer-local `compilation-error-screen-columns'
19181         to the value of `grep-error-screen-columns' (bug#9438).
19183 2011-09-07  Juri Linkov  <juri@jurta.org>
19185         * simple.el (next-error-highlight, next-error-highlight-no-select):
19186         Doc fix (bug#9432).
19188 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
19190         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19191         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
19193 2011-09-07  Leo Liu  <sdl.web@gmail.com>
19195         * net/rcirc.el (rcirc-mode): Conditionally initialize
19196         rcirc-input-ring.
19198 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19200         * emacs-lisp/find-func.el (find-function-C-source): Only set
19201         find-function-C-source-directory after checking that we found a source
19202         file there (bug#9440).
19204 2011-09-06  Alan Mackenzie  <acm@muc.de>
19206         * isearch.el (isearch-other-meta-char): Wherever a key list is
19207         unread, "unread" the prefix arg, too.  This fixes bug #8901.
19209 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
19211         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
19213 2011-09-05  Juri Linkov  <juri@jurta.org>
19215         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
19217 2011-09-05  Juri Linkov  <juri@jurta.org>
19219         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
19220         keeping point where processing of grep matches begins, and
19221         continue to delete remaining escape sequences from the same point.
19222         (grep-filter): Make leading zero optional in "0?1;31m" because
19223         git-grep emits "\033[1;31m" escape sequences unlike expected
19224         "\033[01;31m" as GNU Grep does (bug#9408).
19225         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
19227 2011-09-05  Juri Linkov  <juri@jurta.org>
19229         * subr.el (y-or-n-p): Capitalize "yes".
19231 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
19233         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
19234         `tramp-cache-unload-hook' where appropriate.
19235         (tramp-methods): Rename `tramp-remote-sh' to
19236         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
19237         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
19239         * net/tramp-sh.el (top): Don't require 'shell.
19240         (tramp-methods): Add `tramp-remote-shell' and
19241         `tramp-remote-shell-args' entries.
19242         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
19243         (tramp-sh-handle-shell-command): Remove.
19244         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
19245         Use `tramp-remote-shell'.
19247 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
19249         * mail/sendmail.el (sendmail-query-once-function): Delete.
19250         (sendmail-query-once): Save directly to send-mail-function.
19251         Update message-send-mail-function too.
19253         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
19255 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
19257         * progmodes/python.el (python-mode-map): Use correct function to
19258         start python interpreter from menu-bar (as reported by Geert
19259         Kloosterman).
19260         (inferior-python-mode-map): Fix typo.
19261         (python-shell-map): Remove.
19263 2011-09-03  Deniz Dogan  <deniz@dogan.se>
19265         * net/rcirc.el (rcirc-print): Simplify code for
19266         rcirc-scroll-show-maximum-output.  There is no need to walk
19267         through all windows to find the right one.
19269 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
19271         * help.el (help-return-method): Doc fix.
19273 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
19275         * window.el (window-deletable-p): Don't return a non-nil value
19276         when there's a buffer that was shown in the window before.
19277         (Bug#9419)
19278         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
19279         Set window's previous buffers to nil.
19281 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
19283         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
19284         newline before and after the tag line, so it doesn't interfere
19285         with determining the paragraph direction of bidirectional text.
19287 2011-09-03  Leo Liu  <sdl.web@gmail.com>
19289         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
19291 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
19293         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
19294         (pop-to-buffer): Change interactive spec.  Pass second argument
19295         directly to display-buffer.
19296         (display-buffer): Fix interactive spec.  Use functionp to
19297         distinguish between a function and a list of functions.
19299         * abbrev.el (edit-abbrevs):
19300         * arc-mode.el (archive-extract):
19301         * autoinsert.el (auto-insert):
19302         * bookmark.el (bookmark-bmenu-list):
19303         * files.el (find-file):
19304         * view.el (view-buffer):
19305         * progmodes/compile.el (compilation-goto-locus):
19306         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
19308 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
19310         * window.el (display-buffer-alist): Doc fix.
19311         (display-buffer): Add docstring.  Don't treat
19312         display-buffer-default specially.
19313         (display-buffer-reuse-selected-window)
19314         (display-buffer-same-window, display-buffer-maybe-same-window)
19315         (display-buffer-reuse-window, display-buffer-pop-up-frame)
19316         (display-buffer-pop-up-window)
19317         (display-buffer-reuse-or-pop-window)
19318         (display-buffer-use-some-window): New functions.
19319         (display-buffer-default-action): Use them.
19320         (display-buffer-default): Delete.
19321         (pop-to-buffer-1): Fix choice of actions.
19323 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19325         * minibuffer.el (completion--insert-strings): Don't get confused by
19326         completion entries that end with an LF char.
19328 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
19330         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19332 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
19334         * window.el (display-buffer): Restore interactive spec.
19335         (display-buffer-same-window, display-buffer-other-window):
19336         New functions.
19337         (pop-to-buffer-1): New function.  Use the above.
19338         (pop-to-buffer, pop-to-buffer-same-window): Use it.
19339         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19341         * view.el (view-buffer-other-window, view-buffer-other-frame):
19342         Just use pop-to-buffer.
19344 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
19346         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
19348 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
19350         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
19352 2011-08-31  Richard Stallman  <rms@gnu.org>
19354         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19355         of the separation of rmail-view-buffer from rmail-buffer.
19356         If you say no to "replace original", the decrypt is in the
19357         view buffer.  If you say yes, the decrypt goes into the
19358         rmail buffer also.
19360 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
19362         * window.el (display-buffer-window): Rewrite doc-string.
19363         (display-buffer-record-window): New function.
19364         (display-buffer-macro-specifiers)
19365         (display-buffer-even-window-sizes, display-buffer-set-height)
19366         (display-buffer-set-width, display-buffer-in-window)
19367         (display-buffer-reuse-window, display-buffer-split-specifiers)
19368         (display-buffer-side-specifiers, display-buffer-split-window-1)
19369         (display-buffer-split-window, display-buffer-split-atom-window)
19370         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19371         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19372         (display-buffer-other-window-means-other-frame)
19373         (display-buffer-normalize-special)
19374         (display-buffer-normalize-default)
19375         (display-buffer-normalize-argument)
19376         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19377         (display-buffer-normalize-specifiers, display-buffer-frame)
19378         (display-buffer-same-window, display-buffer-same-frame)
19379         (display-buffer-other-window)
19380         (display-buffer-same-frame-other-window)
19381         (display-buffer-other-frame, pop-to-buffer-same-window)
19382         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19383         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19384         (switch-to-buffer-same-frame)
19385         (switch-to-buffer-other-window-same-frame)
19386         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19387         (display-buffer-alist-set-1, display-buffer-alist-set-2)
19388         (display-buffer-alist-set): Remove.
19389         (display-buffer-function, special-display-buffer-names)
19390         (special-display-regexps, special-display-function):
19391         In doc-string refer to display-buffer-window and quit-restore
19392         parameter.
19393         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19394         (special-display-frame-alist, special-display-popup-frame)
19395         (same-window-buffer-names, same-window-regexps, same-window-p)
19396         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19397         (split-window-preferred-function, split-height-threshold)
19398         (split-width-threshold, window-splittable-p)
19399         (split-window-sensibly, window--try-to-split-window)
19400         (window--frame-usable-p, even-window-heights)
19401         (window--even-window-heights, window--display-buffer-1)
19402         (window--display-buffer-2, display-buffer-other-frame):
19403         Restore old Emacs 23 code, order and doc-strings where applicable.
19404         (display-buffer-default, display-buffer-assq-regexp): New functions.
19405         (display-buffer-alist): Rewrite doc-string.
19406         (display-buffer-default-action)
19407         (display-buffer-overriding-action): New variables.
19408         (display-buffer, switch-to-buffer): Rewrite.
19409         (pop-to-buffer): Restore Emacs 23 behavior but use
19410         window-normalize-buffer-to-display.
19411         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19412         Restore Emacs 23 behavior but use
19413         window-normalize-buffer-to-switch-to.
19414         (pop-to-buffer-same-window): Rewrite.
19415         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19416         Rewrite using Emacs 23 options.
19418 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
19420         * net/tramp.el (tramp-root-regexp): Remove.
19421         (tramp-completion-file-name-regexp-unified)
19422         (tramp-completion-file-name-regexp-separate)
19423         (tramp-completion-file-name-regexp-url): Don't use leading volume
19424         letter on w32 systems.  (Bug#5303, Bug#9311)
19425         (tramp-drop-volume-letter): Simplify definition.
19426         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19428 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19430         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19431         (bug#9356).
19433 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
19435         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19437 2011-08-29  Juri Linkov  <juri@jurta.org>
19439         * isearch.el (isearch-done): Don't display message "Mark saved"
19440         when arg `edit' is non-nil to prevent its flicker in the echo area.
19442 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
19444         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19445         obsolete packages for deletion.
19447 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
19449         * help-mode.el (help-mode-map): Add special-mode-map to parent.
19450         (help-mode): Derive help-mode from special-mode.  Don't invoke
19451         view-mode from help-mode.
19452         (help-xref-override-view-map): Remove.
19453         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19454         view-mode is not used anymore.
19456 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
19458         * server.el (server-port): Doc fix.
19460         * cus-theme.el (custom-theme-choose-mode): Inherit from
19461         special-mode (Bug#9124).
19462         (custom-theme-choose-mode-map): Add special-mode to parent.
19464 2011-08-28  Alan Mackenzie  <acm@muc.de>
19466         * progmodes/cc-fonts.el
19467         (c-make-font-lock-BO-decl-search-function): New function.
19468         (c-basic-matchers-after - "Fontify the clauses after various
19469         keywords"): Extract the three keyword lists for the 3 erroneous
19470         constructs from the list of four, and use the new function above
19471         in place of an old one.
19473 2011-08-28  Deniz Dogan  <deniz@dogan.se>
19475         * net/rcirc.el (rcirc-insert-prev-input)
19476         (rcirc-insert-next-input): Remove unused argument.
19478 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19480         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19482 2011-08-27  Alan Mackenzie  <acm@muc.de>
19484         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19485         handle function pointer parameters properly.
19487 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
19489         * window.el (display-buffer-reuse-window): Fix case where
19490         selected window was reused with non-nil OTHER-WINDOW argument.
19491         (Bug#9381)
19493 2011-08-27  Deniz Dogan  <deniz@dogan.se>
19495         * net/rcirc.el (rcirc-check-auth-status): Adding support for
19496         oftc's NickServ messages.
19498 2011-08-27  Glenn Morris  <rgm@gnu.org>
19500         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
19502 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
19504         * emacs-lisp/package.el (package-install): Call package-initialize
19505         if called interactively.
19507 2011-08-26  Leo Liu  <sdl.web@gmail.com>
19509         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
19511 2011-08-25  Juri Linkov  <juri@jurta.org>
19513         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19514         `search-whitespace-regexp' (bug#9364).
19516 2011-08-25  Juri Linkov  <juri@jurta.org>
19518         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19519         `regexp-search-ring' to their global values to protect from
19520         updating by `read-from-minibuffer' (bug#9185).
19522 2011-08-25  Juri Linkov  <juri@jurta.org>
19524         * textmodes/ispell.el (ispell-command-loop): Add newline
19525         at the end of the "Use option `i'..." line.
19527 2011-08-25  Juri Linkov  <juri@jurta.org>
19529         * battery.el (display-battery-mode): If `battery-status-function'
19530         or `battery-mode-line-format' is nil, display the message and set
19531         `display-battery-mode' to nil (bug#9363).
19533 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
19535         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19536         bidi-string-mark-left-to-right; they are unnecessary now.
19538 2011-08-25  Deniz Dogan  <deniz@dogan.se>
19540         * net/quickurl.el: Documentation typo fixes.
19542 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
19544         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19546 2011-08-25  Glenn Morris  <rgm@gnu.org>
19548         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19550         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19551         (smtpmail-via-smtp): Handle nil response from smtp.
19553 2011-08-24  Juri Linkov  <juri@jurta.org>
19555         * proced.el (proced-marked): Inherit from `error' instead of
19556         `font-lock-warning-face'.
19558         * ibuffer.el (ibuffer-marked-face): Change default face from
19559         `font-lock-warning-face' to `warning'.
19560         (ibuffer-deletion-face): Change default face from
19561         `font-lock-type-face' to `error'.
19563         * battery.el (battery-update): Use the face `error' instead of
19564         `font-lock-warning-face' (bug#6117).
19566 2011-08-24  Juri Linkov  <juri@jurta.org>
19568         * faces.el (success): Change face color from "Green3" to
19569         "ForestGreen" on light background (bug#9353).
19571 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
19573         * window.el (quit-window): Rename from quit-restore-window.
19574         Use same arglist as old quit-window.
19575         (frame-auto-delete): Doc fix.
19577         * view.el (view-mode-exit): Use quit-window.
19579 2011-08-24  Juri Linkov  <juri@jurta.org>
19581         * isearch.el (isearch-ring-adjust1): Start visiting previous
19582         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19583         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19584         for empty search string (when the last search string is reused
19585         automatically) to adjust the isearch ring to the last element and
19586         prepare the correct index for further M-p commands (bug#9185).
19588 2011-08-24  Kenichi Handa  <handa@m17n.org>
19590         * international/ucs-normalize.el: If decomposition property of
19591         CHAR is the default one (i.e. a list of CHAR itself), treat it as
19592         nil.
19593         (nfd, nfkd): Likewise.
19595 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19597         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19598         from process filters aren't reliably transmitted to the surrounding
19599         accept-process-output.
19600         (mpc-proc-check): New function.
19601         (mpc-proc-sync): Use it (bug#8293)
19603 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19605         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19606         Add compatibility functions (bug#9313).
19608 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
19610         * cus-start.el (all): Add entry for bidi-paragraph-direction.
19612         * international/uni-bidi.el: Regenerate.
19614 2011-08-23  Kenichi Handa  <handa@m17n.org>
19616         * international/charprop.el:
19617         * international/uni-bidi.el:
19618         * international/uni-category.el:
19619         * international/uni-combining.el:
19620         * international/uni-comment.el:
19621         * international/uni-decimal.el:
19622         * international/uni-decomposition.el:
19623         * international/uni-digit.el:
19624         * international/uni-lowercase.el:
19625         * international/uni-mirrored.el:
19626         * international/uni-name.el:
19627         * international/uni-numeric.el:
19628         * international/uni-old-name.el:
19629         * international/uni-titlecase.el:
19630         * international/uni-uppercase.el: Regenerate.
19632 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
19634         * help.el (help-window-setup): Fix message displayed when other
19635         window is reused.  (Bug#9341)
19637 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19639         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19640         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19642         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19643         Mark obsolete.
19644         * shell.el (shell-parse-pcomplete-arguments): New function.
19645         (shell-completion-vars): Use it instead (bug#9160).
19647 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19649         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19650         strings and comments (bug#9333).
19652         * emacs-lisp/debug.el (debug-arglist): New function.
19653         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
19654         (debug-on-entry-1): Handle interpreted closures (bug#9120).
19656 2011-08-22  Juri Linkov  <juri@jurta.org>
19658         * progmodes/compile.el (compilation-mode-font-lock-keywords):
19659         Revert regexp that highlights output switches to its old
19660         pre-2010-10-28 value and remove one `?' from it (bug#9319).
19662         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19663         to check for empty output (bug#9226).
19665 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
19667         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19668         symbol-constituent as the default, as that stops font-lock from
19669         working properly (Bug#8843).
19671 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19673         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19674         `coding-system-for-*' around the process open call to avoid
19675         auth-source side effects.
19676         (smtpmail-try-auth-methods): Expand the secret password.
19677         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19678         probe hangs.
19680 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
19682         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19684         * emacs-lisp/find-func.el (find-function-noselect): New arg
19685         lisp-only.
19687         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19688         signal an error for built-in functions (Bug#6664).
19690 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19692         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19693         (smtpmail-try-auth-methods): Use it.
19695 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
19697         * font-lock.el (font-lock-fontify-region)
19698         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19699         (font-lock-default-unfontify-buffer)
19700         (font-lock-default-fontify-region)
19701         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19703         * progmodes/compile.el (compilation-error-properties):
19704         Fix confusion between file struct and message struct (Bug#9319).
19705         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19706         `ant' regexp.
19708         * net/browse-url.el (browse-url-firefox): Don't call
19709         browse-url-firefox-sentinel unless using -remote (Bug#9328).
19711 2011-08-20  Glenn Morris  <rgm@gnu.org>
19713         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19715         * tutorial.el (tutorial--default-keys): Update some default bindings.
19717         * files.el (hack-local-variables): Fully ignore case for "mode:".
19719 2011-08-20  Alan Mackenzie  <acm@muc.de>
19721         Resolve invalid use of a regexp in regexp-opt.
19723         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19724         detection for a java annotation.
19726         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19727         detection for a java annotation.
19729         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19730         handling for java.
19731         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19733 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
19735         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19736         (Bug#9274).
19738 2011-08-20  Alan Mackenzie  <acm@muc.de>
19740         Fontify CPP expressions correctly when starting in the middle of
19741         such a construct.  Mainly for when jit-lock etc. starts a chunk
19742         here.
19744         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19745         variable.
19746         (c-make-font-lock-search-form): New function, extracted from
19747         c-make-font-lock-search-function.
19748         (c-make-font-lock-search-function): Use the above function.
19749         (c-make-font-lock-context-search-function): New function.
19750         (c-cpp-matchers): Enhance the preprocessor expression case with
19751         the above function
19752         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19753         which takes an expression.
19755         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19757 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
19759         * window.el (display-buffer-reuse-window)
19760         (display-buffer-pop-up-window): Don't reuse or split a side
19761         window.
19763 2011-08-19  Glenn Morris  <rgm@gnu.org>
19765         * files.el (hack-local-variables-prop-line, hack-local-variables):
19766         Downcase "Mode:".  (Bug#9331)
19768 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
19770         * international/characters.el: Add L and R categories.
19772         * subr.el (bidi-string-mark-left-to-right): Rename from
19773         string-mark-left-to-right.  Use category search.
19775         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19777 2011-08-18  Juri Linkov  <juri@jurta.org>
19779         * faces.el (error, warning, success): New faces with definitions
19780         copied from old default values of `font-lock-warning-face',
19781         `compilation-warning', `compilation-info' (bug#6117).
19783         * font-lock.el (font-lock-warning-face): Inherit from `error'.
19785         * progmodes/compile.el (compilation-error): Inherit from `error'.
19786         (compilation-warning): Inherit from `warning'.
19787         (compilation-info): Inherit from `success'.
19789         * dired.el (dired-marked): Inherit from `warning'.
19790         (dired-flagged): Inherit from `error'.
19792 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19794         * mail/smtpmail.el (auth-source): Require to avoid problems with
19795         binding variables (bug#9298).  Also clean up some unused
19796         autoloads.
19798         * net/network-stream.el (network-stream-open-starttls):
19799         Support using starttls.el without using gnutls-cli.
19801 2011-08-17  Juri Linkov  <juri@jurta.org>
19803         * progmodes/grep.el (rgrep): Handle the case when
19804         `grep-find-command' is a cons cell (bug#9278).
19806 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
19808         * window.el (display-buffer-pop-up-frame): Run frame creation
19809         function with BUFFER current (as special-display-popup-frame
19810         does).  Reported by Drew Adams.
19812 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
19814         * epa-mail.el: Simplify GnuPG group expansion using
19815         epg-expand-group.
19816         (epa-mail-group-alist, epa-mail-group-modtime)
19817         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19818         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19819         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19820         Remove.
19822 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
19824         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19826 2011-08-16  Alan Mackenzie  <acm@muc.de>
19828         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19829         Correct, to avoid the inside of macros.
19831 2011-08-16  Richard Stallman  <rms@gnu.org>
19833         * epa-mail.el: Handle GnuPG group definitions.
19834         (epa-mail-group-alist, epa-mail-group-modtime)
19835         (epa-mail-gnupg-conf-file): New variables.
19836         (epa-mail-parse-groups, epa-mail-sync-groups)
19837         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
19838         (epa-mail-expand-recipients): New functions.
19839         (epa-mail-encrypt): Call epa-mail-expand-recipients.
19841         * mail/rmail.el (rmail-epa-decrypt): New command.
19843         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
19844         Don't bind buffer-read-only, just inhibit-read-only.
19845         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
19846         (epa-decrypt-armor-in-region): Make error message clearer.
19848 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19850         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
19851         and "a2b" to "ab" for `prefix'.
19853 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
19855         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
19856         filter groups.
19857         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
19858         Fourquet (Bug#8804).
19860 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
19862         * startup.el (argi): Declare as global variable (bug#9275).
19864 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
19866         * subr.el (string-mark-left-to-right): Search the entire string
19867         for RTL script, not just the terminating character.  Doc fix.
19869 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19871         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
19872         New function.
19873         (js--regexp-literal, js-syntax-propertize-function): Remove.
19874         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
19875         (js-mode-map): Don't rebind electric keys.
19876         (js-insert-and-indent): Remove.
19877         (js-mode): Setup electric-layout and electric-indent instead.
19879         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
19881 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
19883         * epa.el (epa-progress-callback-function): Fix the logic of
19884         displaying progress.
19885         * epa-file.el (epa-file-insert-file-contents): Make progress
19886         display more user-friendly.
19887         (epa-file-write-region): Ditto.
19889 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
19891         * subr.el (string-mark-left-to-right): New function.
19893         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
19894         Use string-mark-left-to-right.
19895         (list-buffers-noselect): Caller changed.
19897         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19898         Use string-mark-left-to-right.
19899         (tabulated-list-print): Recenter after moving point.
19901 2011-08-10  Juri Linkov  <juri@jurta.org>
19903         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
19904         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
19905         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
19907 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
19909         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
19910         (Bug#7554).
19912 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
19914         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
19915         character.  (Bug#6594)
19917 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
19919         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
19920         (image-dired--with-db-file): New macro.
19921         (image-dired-write-tags, image-dired-remove-tag)
19922         (image-dired-create-gallery-lists, image-dired-write-comments)
19923         (image-dired-get-comment, image-dired-mark-tagged-files)
19924         (image-dired-list-tags, image-dired-gallery-generate): Use it.
19925         (image-dired-gallery-generate): Use insert-file-contents.
19927         * time.el (display-time-world-list, display-time-world-display):
19928         * time-stamp.el (time-stamp-string):
19929         * vc/add-log.el (add-change-log-entry): Use setenv instead of
19930         set-time-zone-rule (Bug#7337).
19932 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
19934         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
19935         (epg-error-to-string, epg-errors-to-string): New function.
19936         (epg-wait-for-completion): Reverse errors list.
19937         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
19938         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
19939         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
19940         (epg-sign-keys, epg-generate-key-from-file)
19941         (epg-generate-key-from-string): Format errors by using
19942         epg-errors-to-string (bug#9255).
19943         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
19945 2011-08-07  Juri Linkov  <juri@jurta.org>
19947         * faces.el (list-faces-display): Remove extra angle bracket
19948         from `help-mode-map'.
19950         * info.el (Info-history-toc-nodes): Doc fix.
19952         * longlines.el (longlines-mode): Doc fix.
19954 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
19956         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
19957         of statements and in a few more cases (bug#9183).
19959         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
19960         New functions.
19961         (cl-transform-lambda): Use them (bug#9239).
19963 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
19965         * window.el (display-buffer-same-window)
19966         (display-buffer-same-frame, display-buffer-other-window)
19967         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19968         (pop-to-buffer-other-window)
19969         (pop-to-buffer-same-frame-other-window)
19970         (pop-to-buffer-other-frame): Make them defuns.
19971         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
19973 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19975         * subr.el (make-composed-keymap): Move from C.  Change calling
19976         convention, and improve docstring to bring attention to a subtle point.
19977         * minibuffer.el (completing-read-default): Adjust accordingly.
19979 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
19981         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
19982         (tramp-open-shell): Use `tramp-shell-quote-argument'.
19984         * net/trampver.el: Update release number.
19986 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19988         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
19989         "in" (bug#9190).
19991 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19993         * mail/sendmail.el (sendmail-query-once): Restore the current
19994         buffer after querying (bug#9074).
19996         * dired.el (dired-flagged): Use different faces for marked and
19997         flagged files (bug#6117).
19999         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
20000         (bug#4433).
20002         * ido.el (ido-mode): Switch off the message if called
20003         non-interactively.
20005         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
20006         before 587, since it appears that that's more likely to work for
20007         more people.
20009         * cus-edit.el (custom-file): When running under emacs -q, always
20010         refuse to save the customizations, even if the .emacs file doesn't
20011         exist.
20013         * info.el: Remove the `Info-beginning-of-buffer' function
20014         (bug#8325).
20016         * net/network-stream.el (network-stream-open-starttls):
20017         Use `starttls-available-p' to see whether starttls.el can be used.
20019 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
20021         * window.el (display-buffer-in-window): Don't set dedicated status
20022         of window here (Bug#9215).
20023         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
20024         (display-buffer-pop-up-side-window)
20025         (display-buffer-in-side-window): Set dedicated status of window here.
20027 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
20029         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
20030         before binding generated-autoload-file.
20032 2011-08-01  Deniz Dogan  <deniz@dogan.se>
20034         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
20036 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
20038         Sync with Tramp 2.2.2.
20040         * net/trampver.el: Update release number.
20042 2011-07-30  Juri Linkov  <juri@jurta.org>
20044         * dired-aux.el (dired-touch-initial): Remove function.
20045         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
20046         current time, and `default' to the last modification time of the
20047         current marked file (bug#6887).
20049 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
20051         * simple.el (goto-line): Use string-to-number to provide a
20052         numeric argument to read-number (bug#9163).
20054 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
20056         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
20057         connection process, it could be nil.
20059 2011-07-27  Leo Liu  <sdl.web@gmail.com>
20061         Simplify url handling in rcirc-mode.
20063         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
20064         (rcirc-browse-url-at-mouse): Remove.
20065         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
20067 2011-07-26  Alan Mackenzie  <acm@muc.de>
20069         Fontify bitfield declarations properly.
20071         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
20072         (c-symbol-chars): Now exported as a lang variable.
20073         (c-not-primitive-type-keywords): New lang variable.
20075         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
20076         QT keyword "more" to prevent "more slots: ...." being spuriously
20077         parsed as a bitfield declaration.
20079         * progmodes/cc-engine.el (c-beginning-of-statement-1):
20080         Refactor and enhance to handle bitfield declarations.
20081         (c-punctuation-in): New function.
20082         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
20083         declarations properly.
20085 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
20087         * calendar/icalendar.el (icalendar--all-events): Take care of
20088         multiple vcalendars in a single file.
20089         (icalendar--convert-float-to-ical): Checkdoc fixes.
20091 2011-07-25  Deniz Dogan  <deniz@dogan.se>
20093         * image.el (insert-image): Clarifying docstring.
20095 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
20097         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
20098         `tramp-send-command-and-check' if there is no error.
20099         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
20101 2011-07-22  Alan Mackenzie  <acm@muc.de>
20103         Prevent cc-langs.elc being loaded at run time.
20105         * progmodes/cc-mode.el: Remove two autoload forms which loaded
20106         cc-langs.
20108         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
20109         "(require 'cc-langs)".  Quote a form so it will evaluate at
20110         (cc-mode's) compilation time.
20112 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
20114         * net/tramp.el (tramp-file-name-handler): Avoid recursive
20115         loading.  (Bug#9114)
20117 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
20119         * window.el (display-buffer-pop-up-window)
20120         (display-buffer-pop-up-side-window)
20121         (display-buffer-in-side-window): Call display-buffer-set-height
20122         and display-buffer-set-width after setting the new window's
20123         buffer so `fit-window-to-buffer' and friends work on the right buffer.
20125 2011-07-20  Sam Steingold  <sds@gnu.org>
20127         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
20128         (etags-tags-included-tables): Call `convert-standard-filename' on
20129         the file names contained in TAGS so that windows Emacs can handle
20130         TAGS files created by cygwin ctags.
20132 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20134         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
20135         which apparently didn't work.
20137 2011-07-19  Roland Winkler  <winkler@gnu.org>
20139         * proced.el (proced-send-signal): For *Marked Processes* buffer
20140         put point at beginning of buffer.
20142 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
20144         * proced.el (proced-format): Make header lines align with the text
20145         (bug#1779).
20147 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20149         * view.el (view-buffer): Allow running in `special' modes if we're
20150         visiting a file (bug#8615).
20152 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
20154         * window.el (display-buffer-alist-of-strings-p)
20155         (display-buffer-alist-set-1, display-buffer-alist-set-2):
20156         New functions.
20157         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
20158         more accurately.
20160 2011-07-18  Alan Mackenzie  <acm@muc.de>
20162         Fontify declarators properly when, e.g., a jit-lock chunk begins
20163         inside a declaration.
20165         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
20167         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
20168         New function.
20169         (c-complex-decl-matchers): Insert reference to
20170         c-font-lock-enclosing-decls.
20172         * progmodes/cc-engine.el (c-backward-single-comment):
20173         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
20174         to nil around calls to (forward-comment -1).
20176 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20178         * image.el (put-image): Doc typo fix.
20180         * progmodes/etags.el (tags-search): Doc typo fix.
20182         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
20183         password if we get errors 550 to 554.
20185 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20187         * net/gnutls.el (gnutls-log-level): Remove.
20189         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
20190         indentation character (bug#6380).
20192         * files.el (buffer-offer-save): Made permanently local (bug#6241).
20194         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
20195         to clarify what the problem is (bug#4291).
20197         * simple.el (current-kill): Clarify what
20198         `interprogram-paste-function' does (bug#7500).
20199         (auto-fill-mode): Document `auto-fill-function' in relation to
20200         `auto-fill-mode' (bug#2470).
20202 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
20204         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
20205         method if slot is read-only (bug#9035).
20207 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
20209         * frame.el (select-frame-set-input-focus): New argument NORECORD.
20210         * window.el (pop-to-buffer): Select window used even if it was
20211         selected before, see discussion of (Bug#8615), (Bug#6954).
20212         Pass argument NORECORD on to select-frame-set-input-focus.
20214 2011-07-15  Glenn Morris  <rgm@gnu.org>
20216         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
20217         Respect help-form.
20219 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
20221         * net/gnutls.el (gnutls-min-prime-bits): New variable.
20222         (gnutls-negotiate): Use it.
20224 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20226         * net/gnutls.el (gnutls-negotiate):
20227         Upcase `gnutls-algorithm-priority'.
20229 2011-07-15  Glenn Morris  <rgm@gnu.org>
20231         * jka-compr.el (jka-compr-verbose): Move from here...
20232         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
20233         Add missing :version tag.
20234         * info.el: No need to require jka-compr when compiling.
20236 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20238         * net/gnutls.el (gnutls-algorithm-priority): New variable.
20239         (gnutls-negotiate): Use it.
20241         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
20243         * info.el (Info-beginning-of-buffer): New command.
20244         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
20245         announcing `b' as the key (bug#8325).
20246         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
20248         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
20250         * international/mule-cmds.el
20251         (describe-specified-language-support): Make the error message
20252         clearer (bug#8905).
20254         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
20256         * isearch.el (isearch-barrier): Add a doc string, since it's
20257         mentioned in a function doc string (bug#8678).
20259 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
20261         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
20262         buffer argument (Bug#9083) and self-identifying label argument.
20264 2011-07-15  Glenn Morris  <rgm@gnu.org>
20266         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
20268 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20270         * man.el (Man-fontify-manpage): Fix message when formatting the
20271         man page (bug#7929).
20273 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
20275         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
20276         argument LRM; if non-nil, append an invisible LRM character to the
20277         buffer name.
20278         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
20279         last argument non-nil, when formatting buffer names.
20280         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
20281         paragraph direction.
20283 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20285         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
20286         the man page name (bug#7929).
20288         * image.el (put-image): Mention the `put-image' overlay property
20289         (bug#7834).
20291         * scroll-bar.el (set-scroll-bar-mode): Mention that
20292         `scroll-bar-mode' lists the values (bug#7772).
20294         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
20295         command (bug#7729).
20297         * rect.el (apply-on-rectangle): Return the point after the last
20298         operation.
20299         (string-rectangle): Go to the point after the last operation
20300         (bug#7522).
20302         * printing.el (pr-toggle-region): Clarify the documentation
20303         slightly (bug#7493).
20305         * time.el (display-time-update):
20306         Allow `display-time-mail-function' to return nil (bug#7158).
20307         Fix suggested by Detlev Zundel.
20309         * vc/diff.el (diff): Clarify the order the file names are read
20310         (bug#7111).
20312         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
20313         the doc string (bug#7015).
20315         * font-lock.el (font-lock-maximum-decoration): Mention what
20316         numeric levels mean (bug#6935).
20318         * startup.el (initial-buffer-choice): Don't mention the `none'
20319         selection, which is against policy.
20321 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
20323         * window.el (display-buffer-normalize-special):
20324         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20326 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
20328         * subr.el (version<, version<=, version=): Mention "-CVS" and
20329         "-12345" alpha version numbers.
20331 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
20333         * bindings.el: Add advertised binding for set-mark-command
20334         (Bug#5772).
20336 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
20338         * bindings.el (mode-line-other-buffer):
20339         * bookmark.el (bookmark-bmenu-2-window):
20340         * bs.el (bs-cycle-next, bs-cycle-previous):
20341         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20342         switch-to-buffer.
20344         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20345         Delete.
20347 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
20349         * follow.el (follow-debug-message, follow-redisplay):
20350         * jka-cmpr-hook.el (with-auto-compression-mode):
20351         Fix typos in docstrings.
20353 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20355         * subr.el (with-silent-modifications): Clarify somewhat what the
20356         macro inhibits (bug#6525).
20358         * simple.el (eval-expression): Note what it does if called
20359         interactively (bug#6495).
20361 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
20363         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20364         Use pop-to-buffer buffer-or-name if it is nil.
20366         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20367         Remove switch-to-buffer.
20369 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20371         * files.el (make-directory): Clarify that an error will be raised
20372         if there's an error (bug#6397).
20374         * startup.el (initial-buffer-choice): Add `none' as a choice
20375         (bug#6234).
20377         * subr.el (add-hook): Clarify section about buffer-local hooks
20378         (bug#6218).
20380         * dired.el (dired-flagged): Clarify doc string (bug#6117).
20382 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
20384         * tabify.el (untabify): Preserve the current column so that point
20385         doesn't move (bug#6032).
20387 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20389         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20390         Rewrite to avoid awkward possessive "s" (bug#5986).
20392 2011-07-13  Glenn Morris  <rgm@gnu.org>
20394         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
20395         (dired-insert-directory): Give a message the first time
20396         if ls is found not to support --dired.
20398 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20400         * simple.el (toggle-truncate-lines): Clarify what is toggled
20401         (bug#5580).  Text by Drew Adams.
20403 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
20405         * simple.el (blink-matching-open): Make the error message from the
20406         last change less verbose.
20408 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
20410         * font-lock.el (font-lock-comment-face): Use the high contrast
20411         "yellow" color for font-lock-comment-face on low color terminals
20412         using a dark background color (bug#4221).
20414 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20416         * dired.el (dired-insert-set-properties): Make the doc string
20417         reflect what it does now (bug#5325).
20419         * simple.el (blink-matching-open): Say that we were unable to find
20420         the match within the limit, if we're limited (bug#5122).
20422         * international/mule-cmds.el (prefer-coding-system): Add an
20423         example (bug#4869).
20425         * progmodes/etags.el (tags-search): Document `file-list-form'
20426         (bug#4731).
20428 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
20430         * net/browse-url.el (browse-url-default-browser)
20431         (browse-url-browser-function): Make the default browser choice a
20432         bit more logical (bug#4300).  Also clean up the doc string.
20434 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
20436         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20437         binary endings (bug#4440).
20439 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20441         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20442         which can be pretty annoying (bug#8971).
20444         * jka-compr.el (jka-compr-verbose): New variable, and use
20445         throughout (bug#8971).
20447         * info.el (Info-find-file): Fall back on the installation
20448         directory if we can't find the info node anywhere else.
20450 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
20452         * vc/vc.el (vc-revert-file):
20453         Don't set file time-stamp in the past.  (Bug#5181)
20455 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20457         * files.el (after-find-file): Give a better error message when
20458         trying to find a symlink that points to a file that doesn't exist
20459         (bug#4398).
20461         * progmodes/cc-vars.el: Remove (probably) misleading comment
20462         (bug#4396).
20464 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
20466         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20468 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
20470         * mouse-sel.el: Hack restoring functionality, while keeping
20471         compatibility with 2010-07-03 changes to mouse selection.
20472         (mouse-sel-primary-overlay): New var.
20473         (mouse-sel-selection-alist): Use it.
20474         (mouse-sel-mode): Doc fix; remove points that are default features
20475         of mouse.el.
20477 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
20479         * progmodes/compile.el (compilation-error-regexp-alist-alist):
20480         Fix previous fix (bug#2490).
20482 2011-07-12  Roland Winkler  <winkler@gnu.org>
20484         * textmodes/bibtex.el (bibtex-initialize):
20485         Use pop-to-buffer-same-window.
20486         (bibtex-search-entries): Fix interactive call.
20488 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20490         * progmodes/compile.el (compilation-error-regexp-alist-alist):
20491         Fontise bytecomp Error lines more correctly (bug#2490).
20492         Fix suggested by Johan Bockgård.
20494         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20496         * dired-x.el (dired-guess-default): Use `delete-dups'.
20498 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
20500         * dired.el (dired-mark-prompt):
20501         * dired-aux.el (dired-read-shell-command): Doc fix.
20503 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20505         * mail/sendmail.el (sendmail-query-once):
20506         Use `customize-save-variable' unconditionally, now that it works under
20507         emacs -Q.
20509         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20511         * cus-edit.el (custom-file): Take an optional no-error variable.
20512         (customize-save-variable): Set the variable, and give a warning if
20513         running under "emacs -q".
20515 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
20517         * loadhist.el (unload-feature-special-hooks):
20518         Add `auto-coding-functions', `fill-nobreak-predicate' and
20519         `find-directory-functions' (bug#5327).
20521 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20523         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20525         * cus-edit.el (custom-guess-name-alist): -alist variables should
20526         use the `alist' type (bug#3120).  Suggested by Drew Adams.
20528         * printing.el: Add documentation to all the `pr-toggle-' commands.
20530 2011-07-11  Leo Liu  <sdl.web@gmail.com>
20532         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20533         backends where it makes sense (bug#2623).
20535 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20537         * dired-x.el (dired-guess-default): Remove duplicate shell command
20538         entries (bug#2028).
20539         (dired-guess-default): Fix grammar in doc string (bug#2028).
20540         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20542         * subr.el (remove-duplicates): New conveniency function.
20544 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20546         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20547         (bug#1526).
20549 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
20551         * window.el (display-buffer-normalize-default): Don't invert
20552         meaning of even-window-heights.  Reported by Eli Zaretskii
20553         <eliz@gnu.org>.
20555 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
20557         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20559 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
20561         * window.el (display-buffer): Fix arguments to
20562         display-buffer-reuse-window in last change.
20564         * faces.el (link): Use a less saturated blue on light backgrounds.
20566         * startup.el (fancy-startup-text, fancy-about-text)
20567         (fancy-startup-tail): Use font-lock faces, for background safety.
20569 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
20571         * emulation/viper-cmd.el (viper-change-state-to-vi):
20572         Limit triggering of abbrev expansion (Bug#9038).
20574 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
20576         * window.el (display-buffer-default-specifiers): Remove.
20577         (display-buffer-macro-specifiers): Remove default specifiers.
20578         (display-buffer-alist): Default to nil.
20579         (display-buffer-reuse-window): New optional argument other-window.
20580         (display-buffer-pop-up-window): Allow splitting internal
20581         windows.  Check whether a live window was created.
20582         (display-buffer-other-window-means-other-frame)
20583         (display-buffer-normalize-arguments): Rename to
20584         display-buffer-normalize-argument and rewrite.  Set the
20585         other-window specifier.
20586         (display-buffer-normalize-special): New function.
20587         (display-buffer-normalize-options): Rename to
20588         display-buffer-normalize-default and rewrite.
20589         (display-buffer-normalize-options-inhibit): Remove.
20590         (display-buffer-normalize-specifiers): Rewrite.
20591         (display-buffer): Process other-window specifier and call
20592         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
20593         more faithfully.
20594         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20595         (display-buffer-alist-set): Don't handle 'unset default values.
20596         (display-buffer-in-window, display-buffer-alist-set):
20597         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
20598         <tassilo@member.fsf.org>.
20600 2011-07-09  Leo Liu  <sdl.web@gmail.com>
20602         * register.el (insert-register): Restore accidental change on
20603         2011-06-26.  (Bug#9028)
20605 2011-07-09  Glenn Morris  <rgm@gnu.org>
20607         * subr.el (remq): Handle the empty list.  (Bug#9024)
20609 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
20611         * mail/sendmail.el (send-mail-function): No longer delay custom
20612         initialization.
20613         * custom.el (custom-initialize-delay): Doc fix.
20615 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20617         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20619 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
20621         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20622         human-friendly prompt.
20624 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20626         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20627         provided by a particular plugin.
20629 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20631         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20632         save customizations (with "emacs -Q"), just set the variable
20633         instead of erroring out.
20635         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20637 2011-07-08  Juri Linkov  <juri@jurta.org>
20639         * arc-mode.el (archive-zip-expunge, archive-zip-update)
20640         (archive-zip-update-case): Use 7z if found by `executable-find'.
20641         The order of searching the available programs is the same as in
20642         `archive-zip-extract' (bug#8968).
20644 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20646         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20647         (menu-bar-options-menu): Tweak descriptions.
20649 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20651         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20652         menu items into verb phrases (bug#1421).  Also refill to fit under
20653         80 columns.
20655 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20657         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20658         (Info-read-node-name): Doc fix (Bug#1084).
20660         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20661         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20662         (end-of-sexp, beginning-of-sexp)
20663         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20664         (forward-symbol, forward-same-syntax, word-at-point)
20665         (sentence-at-point): Doc fix (Bug#1144).
20667 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20669         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20670         should cover it (bug#1281).
20672         * cus-edit.el (custom-show): Mark as obsolete.
20674         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20675         negotiation fails, then possibly try again with a non-encrypted
20676         connection (bug#9017).
20678         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20679         be used.
20681 2011-07-07  Richard Stallman  <rms@gnu.org>
20683         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20684         property, and handle its changed format.
20685         Look for the correct line number.
20686         Use file's line contents (but not past first =) to find
20687         correct line in message.
20689 2011-07-07  Kenichi Handa  <handa@m17n.org>
20691         * international/characters.el (build-unicode-category-table):
20692         Delete it.
20693         (unicode-category-table): Set it by unicode-property-table-internal.
20695         * international/mule-cmds.el (char-code-property-alist): Move to
20696         to src/chartab.c.
20697         (get-char-code-property): Call unicode-property-table-internal to
20698         load a file.  Call get-unicode-property-internal where necessary.
20699         (put-char-code-property): Call unicode-property-table-internal to
20700         load a file.  Call put-unicode-property-internal where necessary.
20701         put-unicode-property-internal where necessary.
20702         (char-code-property-description):
20703         Call unicode-property-table-internal to load a file.
20705         * international/charprop.el:
20706         * international/uni-bidi.el:
20707         * international/uni-category.el:
20708         * international/uni-combining.el:
20709         * international/uni-comment.el:
20710         * international/uni-decimal.el:
20711         * international/uni-decomposition.el:
20712         * international/uni-digit.el:
20713         * international/uni-lowercase.el:
20714         * international/uni-mirrored.el:
20715         * international/uni-name.el:
20716         * international/uni-numeric.el:
20717         * international/uni-old-name.el:
20718         * international/uni-titlecase.el:
20719         * international/uni-uppercase.el: Regenerate.
20721         * loadup.el: Load international/charprop.el before
20722         international/characters.
20724 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20726         * window.el (next-buffer, previous-buffer): Signal an error if
20727         called from a minibuffer window.
20729         * bindings.el: Revert 2011-07-04 change.
20731 2011-07-06  Richard Stallman  <rms@gnu.org>
20733         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20734         (rmail-mime-insert-bulk, rmail-mime-insert-text):
20735         Treat markers like ints.
20736         (rmail-mime-entity): Doc fix.
20738 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20740         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20741         defcustom again for backwards compatibility.
20743         * simple.el (shell-command-on-region): Fill.
20745         * dired-aux.el (dired-kill-line): Add a doc string.
20747         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20748         to "\\sw\\|\\s_" (bug#358).
20750         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20751         (dired-unmark-backward): Ditto.
20752         (dired-flag-backup-files): Ditto.
20754         * dired-x.el (dired-mark-sexp): Ditto.
20756 2011-07-06  Richard Stallman  <rms@gnu.org>
20758         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20759         (rmail-mime-entity): New arg TRUNCATED.
20760         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20761         New functions.
20762         (rmail-mime-save): Warn if entity is truncated.
20763         (rmail-mime-toggle-hidden): Likewise, for showing.
20764         (rmail-mime-process-multipart): Record when an entity is truncated.
20766         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20767         if ENTITY is a string.
20769 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20771         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20772         of faces when `M-C-x'-ing their definitions (bug#8378).
20773         Also clean up the code slightly.
20775         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20776         because that makes the colors go away.
20778         * mail/sendmail.el (send-mail-function): Change the default to
20779         `sendmail-query-once'.
20780         (sendmail-query-once): Add an autoload cookie.
20782         * net/network-stream.el (network-stream-open-starttls): Try using
20783         a plain connection even if the server offered STARTTLS, and we
20784         kinda wanted to use it, if Emacs doesn't have any STARTTLS
20785         capability.  This should make smtpmail.el work in slightly more
20786         configurations.
20788 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
20790         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20791         New defun.
20792         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20794 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
20796         * progmodes/sql.el: Version 3.0
20797         (sql-product-alist): Add product :completion-object,
20798         :completion-column, and :statement attributes.
20799         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20800         (sql-mode-syntax-table): Mark all punctuation.
20801         (sql-font-lock-keywords-builder): Temporarily remove fallback on
20802         ansi keywords.
20803         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20804         (sql-mode-oracle-font-lock-keywords): Improve.
20805         (sql-oracle-show-reserved-words): New function for development.
20806         (sql-product-font-lock): Simplify for source code buffers.
20807         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20808         New functions.
20809         (sql-highlight-product): Set product specific syntax table.
20810         (sql-mode-map): Add statement movement functions.
20811         (sql-ansi-statement-starters, sql-oracle-statement-starters):
20812         New variable.
20813         (sql-statement-regexp, sql-beginning-of-statement)
20814         (sql-end-of-statement, sql-signum): New functions.
20815         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20816         (sql-show-sqli-buffer): Bug fix.
20817         (sql-interactive-mode): Store connection data as buffer local.
20818         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
20819         with sql-interactive-mode.
20820         (sql-save-connection): Save buffer local settings.
20821         (sql-connection-menu-filter): Change menu entry name.
20822         (sql-product-interactive): Bug fix.
20823         (sql-preoutput-hold): New variable.
20824         (sql-interactive-remove-continuation-prompt): Bug fixes.
20825         (sql-debug-redirect): New variable.
20826         (sql-str-literal): New function.
20827         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20828         Redesign.
20829         (sql-oracle-save-settings, sql-oracle-restore-settings)
20830         (sql-oracle-list-all, sql-oracle-list-table): New functions.
20831         (sql-completion-object, sql-completion-column)
20832         (sql-completion-sqlbuf): New variables.
20833         (sql-build-completions-1, sql-build-completions)
20834         (sql-try-completion): New functions.
20835         (sql-read-table-name): Use them.
20836         (sql-contains-names): New buffer local variable.
20837         (sql-list-all, sql-list-table): Use it.
20838         (sql-oracle-completion-types): New variable.
20839         (sql-oracle-completion-object, sql-sqlite-completion-object)
20840         (sql-postgres-completion-object): New functions.
20842 2011-07-06  Glenn Morris  <rgm@gnu.org>
20844         * window.el (pop-to-buffer): Doc fix.
20846 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
20848         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
20850 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
20852         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
20854         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
20856 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
20858         * button.el (button): Inherit from link face.  Suggested by Dan
20859         Nicolaescu.
20861 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20863         * progmodes/gdb-mi.el: Fit in 80 columns.
20864         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
20865         switch-to-buffer.
20867         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
20868         if imenu is simply not configured (bug#8941).
20870 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
20872         * allout.el (allout-post-undo-hook): New allout outline-change
20873         event hook to signal undo activity.
20874         (allout-post-command-business): Run allout-post-undo-hook if an
20875         undo just occurred.
20876         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
20877         * allout-widgets.el (allout-widgets-after-undo-function):
20878         Ensure the integrity of the current item's decoration after it has been
20879         in the vicinity of an undo.
20880         (allout-widgets-mode): Include allout-widgets-after-undo-function
20881         on the new allout-post-undo-hook.
20883 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20885         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
20886         Let define-derived-mode define it.
20887         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
20888         cycles of abbrev-table inheritance (bug#8998).
20890 2011-07-05  Roland Winkler  <winkler@gnu.org>
20892         * textmodes/bibtex.el: Add support for biblatex.
20893         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
20894         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
20895         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
20896         (bibtex-entry-alist, bibtex-field-alist): New variables.
20897         (bibtex-entry-field-alist): Obsolete alias for
20898         bibtex-BibTeX-entry-alist.
20899         (bibtex-entry-alist, bibtex-field-alist): New widgets.
20900         (bibtex-set-dialect): New command.
20901         (bibtex-entry-type, bibtex-entry-head)
20902         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
20903         Bind via bibtex-set-dialect.
20904         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
20905         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
20906         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
20907         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
20908         Define via bibtex-set-dialect.
20909         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
20910         Obey bibtex-no-opt-remove-re.
20911         (bibtex-vec-push, bibtex-vec-incr): New functions.
20912         (bibtex-format-entry, bibtex-field-list)
20913         (bibtex-print-help-message, bibtex-validate)
20914         (bibtex-search-entries): Use new format of bibtex-entry-alist.
20916 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20918         * progmodes/compile.el (compilation-goto-locus):
20919         * net/tramp-cmds.el (tramp-append-tramp-buffers):
20920         * bs.el (bs-cycle-next, bs-cycle-previous):
20921         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
20922         * bindings.el (mode-line-other-buffer):
20923         * autoinsert.el (auto-insert):
20924         * arc-mode.el (archive-extract):
20925         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
20927 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20929         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
20930         Fix check of `emacs-lock-unlockable-modes'.
20931         Coerce true values of `emacs-lock--try-unlocking' to t.
20933 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20935         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
20936         * emacs-lock.el: New file.
20938 2011-07-05  Julien Danjou  <julien@danjou.info>
20940         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
20941         than `boundp' to check if face is set.
20943 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20945         * register.el (registerv-make):
20946         * window.el (window-min-height): Fix typos in docstrings.
20948 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
20950         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
20951         Update doc string.
20953 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
20955         * server.el (server-execute): Catch quit and call
20956         `server-return-error' to pass the error back to emacsclient and
20957         close the connection (bug#8942).
20959 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
20961         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
20962         insecure exception for current topic.  Also note that auto-saves
20963         are handled differently.
20965         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
20966         State variables for tracking auto-save inhibition situation.
20968         (allout-write-contents-hook-handler): Rename from
20969         'allout-write-file-hook-handler', and describe how it depends on
20970         write-contents-functions sensitivity to non-nil value to prevent
20971         file write.
20973         (allout-auto-save-hook-handler): Remove.  auto-save does not check
20974         this in individual buffers, only in the starting buffer, so this
20975         is not the right way for us to inhibit auto-save in a buffer
20976         according to its condition.
20978         (allout-mode): Use new allout-write-contents-hook-handler, and
20979         only with write-contents-functions.  Remove auto-save provisions -
20980         they're implemented elsewhere.
20982         (allout-before-change-handler): If undo is in progress, note that
20983         for attention of allout-post-command-business.
20985         (allout-post-command-business): If the command we're following was
20986         an undo, check for change in the status of encrypted items and
20987         adjust auto-save inhibitions accordingly.
20989         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
20990         according to whether there are or aren't any plain-text topics
20991         pending encryption.
20993         (allout-inhibit-auto-save-info-for-decryption):
20994         Adjust buffer-saved-size and some allout state to inhibit auto-saves
20995         if there are plain-text topics pending encryption.
20997         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
20998         buffer-saved-size and some allout state to not inhibit auto-saves
20999         if there are no longer any plain-text topics pending encryption.
21001         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
21002         No longer provide for exemption of the current topic.
21004 2011-07-04  Juri Linkov  <juri@jurta.org>
21006         Add 7z operations to delete and save changed members (bug#8968).
21007         * arc-mode.el (archive-7z-expunge, archive-7z-update):
21008         New defcustoms.
21009         (archive-7z-write-file-member): New function.
21010         (archive-7z-summarize): Fix the number of dashes in the
21011         listing output.
21013 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
21015         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
21016         (bug#8958).
21018 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
21020         * bindings.el: Ignore next-buffer and previous-buffer in
21021         minibuffer-local-map.
21023         * font-lock.el (font-lock-builtin-face): Change light background
21024         color to dark slate blue (Bug#6693).
21026 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
21028         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
21030 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
21032         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
21033         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
21034         Add switch-to-buffer.
21036 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21038         * isearch.el (isearch-search-fun-function): Clarify further the
21039         meaning of the function returned.
21041 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
21043         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
21045         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
21046         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
21047         Use it.
21048         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
21049         `tramp-default-remote-path' does not exist.
21050         (tramp-send-command-and-read): New optional argument NOERROR.
21051         (tramp-open-connection-setup-interactive-shell)
21052         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
21053         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
21054         (tramp-process-sentinel): Flush also process' connection property.
21055         (tramp-sh-handle-start-file-process): Do not set process
21056         sentinel.  It is done now ...
21057         (tramp-maybe-open-connection): ... here.  (Bug#8929)
21059 2011-07-04  MON KEY  <monkey@sandpframing.com>
21061         * play/animate.el (animate-string): Doc fixes and allow changing
21062         the buffer name (bug#5417).
21064 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21066         * play/animate.el (animation-buffer-name): Rename from *animate*.
21068 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
21070         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
21071         This is simpler and helps future-proof the code.
21072         (timer-until): Use time-subtract and float-time.
21073         (timer--time-less-p): Use time-less-p.
21075 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
21077         * type-break.el (timep): Use the value of `float-time' to avoid a
21078         byte-compiler warning.
21080         * server.el (server-eval-and-print): Return any result, even nil.
21082 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21084         * type-break.el: Accept time formats that the builtins accept.
21085         (timep, type-break-time-difference): Accept any format that
21086         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
21087         This is simpler and helps future-proof the code.
21088         (type-break-time-difference): Round rather than ignoring
21089         subseconds components.
21091 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21093         * info.el (Info-apropos-matches): Make non-interactive, since it
21094         doesn't seem to do anything useful as a command (bug#8829).
21096 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
21098         * frame.el (frame-background-mode, frame-set-background-mode):
21099         Move from faces.el.
21100         (frame-default-terminal-background): New function.
21102         * custom.el (custom-push-theme): Don't record faces in `changed'
21103         theme; this doesn't work correctly for per-frame face settings.
21104         (disable-theme): Use face-set-after-frame-default to reset faces.
21105         (custom--frame-color-default): New function.
21107 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21109         * dired.el (dired-flagging-regexp): Remove unused variable
21110         (bug#8769).
21112 2011-03-29  Kevin Ryde  <user42@zip.com.au>
21114         * progmodes/compile.el (compilation-error-regexp-alist-alist):
21115         `perl-Test2' extend to match possible "fail #N" rep count
21116         (bug#8377).
21118 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21120         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
21121         `smtpmail-via-smtp' now returns the error instead of nil.
21123         * isearch.el (isearch-search-fun-function): Clarify the doc string
21124         (bug#8101).
21126 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
21128         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
21129         unnecessary spaces (bug#8987).
21131 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21133         * net/network-stream.el (open-network-stream): Use the
21134         :end-of-capability command thoughout.
21136 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
21138         * net/network-stream.el (open-network-stream): Add the
21139         :end-of-capability command parameter, used by pop3.el.
21141 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21143         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
21145         * fringe.el (fringe-query-style): Remove redundant text " (type ?
21146         for list)" (bug#6475).
21148         * files.el (file-expand-wildcards): Ignore non-readable
21149         sub-directories while trying to find matches instead of signaling
21150         an error (bug#6297).
21152         * man.el (Man-reference-regexp): Allow matching possible
21153         word-wrapped references (bug#6289).
21155         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
21156         for consistency with the other vc buffers (bug#6197).
21157         (vc-checkin): Ditto.
21159         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
21161         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
21163 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21165         * custom.el (defcustom): Clarify that :set is only used in the
21166         Customize user interface (bug#6089).
21168         * progmodes/flymake.el (flymake-mode): If the buffer isn't
21169         associated with a file, refuse to run instead of erroring out
21170         (bug#6084).
21172         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
21173         the doc string, since it appears that using `fill-column' always
21174         controls the width (bug#7845).
21176         * simple.el (shell-command-on-region): Say where the error output
21177         went if `shell-command-default-error-buffer' is set (bug#6857).
21179 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
21181         * allout.el (allout-yank-processing): Adjust cursor position for
21182         backwards-deleted space.
21184         (allout-rebullet-heading): Register changes with
21185         allout-exposure-changed-hook, so the modified topic is properly
21186         decorated.
21188 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21190         * minibuffer.el (completion-in-region): Document PREDICATE
21191         (bug#7136).
21193         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
21194         of keyword/argument pairs (bug#6904).
21196         * replace.el (multi-occur):
21197         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
21199 2011-07-02  Drew Adams  <drew.adams@oracle.com>
21201         * dired.el (dired-mark-if): Make the message about whether it's
21202         marking or unmarking clearer (bug#8523).
21204 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21206         * disp-table.el (display-table-print-array): New function.
21207         (describe-display-table): Use it to print the vectors more pretty
21208         (Bug#8859).
21210 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
21212         * window.el (window-state-get-1): Don't assign clone numbers.
21213         Add clone-of item to list of window parameters.
21214         (window-state-put-2): Don't process clone numbers.
21215         (display-buffer-alist): Fix doc-string.
21217 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
21219         * subr.el (remq): Don't allocate if it's not needed.
21220         (keymap--menu-item-binding, keymap--menu-item-with-binding)
21221         (keymap--merge-bindings): New functions.
21222         (keymap-canonicalize): Use them to refine the canonicalization.
21223         * minibuffer.el (minibuffer-local-completion-map)
21224         (minibuffer-local-must-match-map): Move initialization from C.
21225         (minibuffer-local-filename-completion-map): Move initialization from C;
21226         don't inherit from anything here.
21227         (minibuffer-local-filename-must-match-map): Make obsolete.
21228         (completing-read-default): Use make-composed-keymap to combine
21229         minibuffer-local-filename-completion-map with either
21230         minibuffer-local-must-match-map or
21231         minibuffer-local-filename-completion-map.
21233 2011-07-01  Glenn Morris  <rgm@gnu.org>
21235         * type-break.el (type-break-time-sum): Use dolist.
21237         * textmodes/flyspell.el (flyspell-word-search-backward):
21238         Replace CL function.
21240 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21242         * mouse.el (mouse--strip-first-event): New function.
21243         (function-key-map): Use it to map fringe clicks to normal clicks
21244         by default.
21246         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
21247         (vc-bzr-revision-completion-table): Add support for annotate and date.
21249         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
21250         inherit from parent.
21252 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21254         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
21255         (dired-show-file-type): Doc fixup (bug#8818).
21257         * dired.el (dired-mode): Fix up the doc string as suggested by
21258         Drew Adams (bug#8817).
21260         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
21261         cookie, since the manual says that it should be possible to add
21262         this function to `find-file-hook' (bug#8709).
21264 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
21266         * progmodes/cfengine.el: Moved all cfengine3.el functionality
21267         here.  Noted Ted Zlatanov as the maintainer.
21268         (cfengine-common-settings, cfengine-common-syntax): New functions
21269         to set up common things between `cfengine-mode' and
21270         `cfengine3-mode'.
21271         (cfengine3-mode): New mode.
21272         (cfengine3-defuns cfengine3-defuns-regex
21273         (cfengine3-class-selector-regex cfengine3-category-regex)
21274         (cfengine3-vartypes cfengine3-font-lock-keywords)
21275         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
21276         (cfengine3-indent-line): Add from cfengine3.el.
21278 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
21280         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
21282         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
21284 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
21286         * window.el (same-window-buffer-names, same-window-regexps)
21287         (same-window-p, special-display-frame-alist)
21288         (special-display-popup-frame, special-display-function)
21289         (special-display-buffer-names, special-display-regexps)
21290         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
21291         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21292         (split-window-preferred-function, split-height-threshold)
21293         (split-width-threshold, even-window-heights)
21294         (display-buffer-mark-dedicated, window-splittable-p)
21295         (split-window-sensibly, window-safely-shrinkable-p):
21296         Un-obsolete.
21297         (display-buffer): Don't spread args with function specifier
21298         because special-display-popup-frame won't like it.
21300 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21302         Time-stamp simplifications and fixes.
21303         These improve accuracy slightly, and future-proof the code
21304         against some potential changes to current-time format.
21306         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
21307         by using time-since and float-time.
21309         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
21310         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
21311         + NNN microseconds".
21313         * type-break.el (type-break-time-sum): Rewrite using time-add.
21315         * play/hanoi.el (hanoi-current-time-float): Remove.
21316         All uses replaced by float-time.
21318         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21319         This yields a more-accurate answer.
21320         (rng-time-to-float): Remove; no longer needed.
21322         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21324         * calendar/timeclock.el (timeclock-seconds-to-time):
21325         Defalias to seconds-to-time, since they're the same thing.
21327         * emacs-lisp/elp.el (elp-elapsed-time):
21328         * emacs-lisp/benchmark.el (benchmark-elapse):
21329         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21331 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21333         * window.el (bury-buffer): Don't iconify the only frame.
21334         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21335         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
21337 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
21339         * eshell/em-smart.el (eshell-smart-display-navigate-list):
21340         Add mouse-yank-primary.
21342 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
21344         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21346 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21348         * emacs-lisp/find-func.el (find-library--load-name): New fun.
21349         (find-library-name): Use it to find relative load names when provided
21350         absolute file name (bug#8803).
21352 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21354         * textmodes/flyspell.el (flyspell-word): Consider words that
21355         differ only in case as potential doublons (bug#5687).
21357         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21358         Remove two rather uninteresting debugging-like messages to make
21359         debbugs.el more silent.
21361         * comint.el (comint-password-prompt-regexp): Accept "Response" as
21362         a password-like phrase.
21364 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
21366         * progmodes/cc-guess.el: New file.
21368         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21370         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21371         derived from `c-basic-common-init'.
21373         * progmodes/cc-mode.el (top-level): Require cc-guess.
21374         (c-basic-common-init): Use `cc-choose-style-for-mode'.
21376 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
21378         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21380 2011-06-30  Alan Mackenzie  <acm@muc.de>
21382         * progmodes/cc-engine.el (c-guess-continued-construct):
21383         Correct the handling of template-args-cont, particularly for when font
21384         lock is disabled.  Name this case as "CASE G".
21386 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
21388         * allout.el (allout-yank-processing): Fix injection of extra space
21389         between bullet and non-whitespace character in first topic when
21390         pasting, ensuring that the actual spacing in the pasted topic
21391         following the bullet char is preserved.  This extra space was
21392         causing pasted encrypted topics to get a decrypted status even
21393         when the content was actually still encrypted.  Now the decryption
21394         status from before the paste is preserved.
21396         (allout-flag-region): Set all allout overlays so they evaporate
21397         when reduced to zero length (evanescent), to prevent overlay
21398         leakage.
21400 2011-06-30  Glenn Morris  <rgm@gnu.org>
21402         * w32-fns.el (w32-charset-info-alist): Declare.
21404         * find-dired.el (find-grep-options): Simplify.
21406         * term/ns-win.el (ns-set-resource): Declare.
21408         * ses.el (row, col): Declare dynamic variables honestly.
21410         * textmodes/reftex-parse.el (index-tags): Declare.
21412 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
21414         * cus-edit.el (customize-push-and-save): New function.
21416         * files.el (hack-local-variables-confirm): Use it.
21418         * custom.el (load-theme): New arg NO-CONFIRM.
21419         Use customize-push-and-save (Bug#8720).
21420         (custom-enabled-themes): Doc fix.
21422         * cus-theme.el (customize-create-theme)
21423         (custom-theme-merge-theme): Callers to load-theme changed.
21425 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21427         * thingatpt.el (thing-at-point-short-url-regexp): Require that
21428         short URLs have at least one dot in them (bug #7614).
21430         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21431         nil, because using a pty is apparently too slow (bug #895).
21433 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21435         * mail/sendmail.el (sendmail-query-once): New function.
21436         (sendmail-query-once-function): New variable.
21438 2011-06-29  Glenn Morris  <rgm@gnu.org>
21440         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21442         * ses.el (top-level): Require cl when compiling.
21443         (ses-set-localvars): Fix error statement.
21444         Call it at compile time to silence a storm of warnings.
21446 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
21448         * window.el (normalize-live-buffer): Rename to
21449         window-normalize-buffer.
21450         (normalize-live-frame): Rename to window-normalize-frame.
21451         (normalize-any-window): Rename to window-normalize-any-window.
21452         (normalize-live-window): Rename to window-normalize-live-window.
21453         (make-window-atom): Rename to window-make-atom.
21454         (window-resize-reset): Rename to window--resize-reset.
21455         (window-resize-reset-1): Rename to window--resize-reset-1.
21456         (resize-mini-window): Rename to window--resize-mini-window.
21457         (resize-subwindows-skip-p): Rename to
21458         window--resize-subwindows-skip-p.
21459         (resize-subwindows-normal): Rename to
21460         window--resize-subwindows-normal.
21461         (resize-subwindows): Rename to window--resize-subwindows.
21462         (resize-other-windows): Rename to window--resize-siblings.
21463         (resize-this-window): Rename to window--resize-this-window.
21464         (resize-root-window): Rename to window--resize-root-window.
21465         (resize-root-window-vertically): Rename to
21466         window--resize-root-window-vertically.
21467         (normalize-buffer-to-display): Rename to
21468         window-normalize-buffer-to-display.
21469         (normalize-buffer-to-switch-to): Rename to
21470         window-normalize-buffer-to-switch-to.
21471         Correspondingly update all callers of the functions listed
21472         above.
21473         (display-buffer-alist, display-buffer-normalize-arguments)
21474         (display-buffer-normalize-options, display-buffer)
21475         (display-buffer-alist-set): Use "function" instead of
21476         "fun-with-args".
21478 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
21480         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21481         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
21482         debbugs.gnu.org.  Mention acknowledgment email.
21484 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21486         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21487         buffer multibyteness, since it shouldn't matter.
21489 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
21491         * window.el (display-buffer-in-side-window): Handle dedicated
21492         windows as in display-buffer-reuse-window.
21493         (display-buffer-normalize-alist): Use value of override
21494         specifier.
21495         (display-buffer-normalize-specifiers): Use value of
21496         other-window-means-other-frame specifier.
21497         (display-buffer-alist): Rewrite some texts in widgets.
21498         (display-buffer): Spread arguments when calling function
21499         specified by fun-with-args.
21501 2011-06-28  Deniz Dogan  <deniz@dogan.se>
21503         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21504         Unnest `let'.
21506         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21507         selectors (Bug#5732).
21508         (css-proprietary-nmstart-re): Use `regexp-opt'.
21510 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
21512         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21513         (eshell-ls-date-format): New defcustom.
21514         (eshell-ls-file): Use it.
21516 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21518         * help-fns.el (describe-variable): Fix message for terminal-local vars.
21520 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21522         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21523         (ange-ftp-make-tmp-name): New arg.
21524         (ange-ftp-file-local-copy): Use it.
21526 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
21528         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21529         no-conversion (Bug#8870).
21531 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
21533         * window.el (window-right, window-left, window-child)
21534         (window-child-count, window-last-child)
21535         (window-iso-combination-p, walk-window-tree-1)
21536         (window-atom-check-1, window-tree-1, delete-window)
21537         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21538         new naming conventions - window-vchild, window-hchild,
21539         window-next and window-prev are now called window-top-child,
21540         window-left-child, window-next-sibling and window-prev-sibling
21541         respectively.
21542         (resize-window-reset): Rename to window-resize-reset.
21543         (resize-window-reset-1): Rename to window-resize-reset-1.
21544         (resize-window): Rename to window-resize.
21545         (window-min-height, window-min-width)
21546         (resize-mini-window, resize-this-window, resize-root-window)
21547         (resize-root-window-vertically, adjust-window-trailing-edge)
21548         (enlarge-window, shrink-window, maximize-window)
21549         (minimize-window, delete-window, quit-restore-window)
21550         (split-window, balance-windows, balance-windows-area-adjust)
21551         (balance-windows-area, window-state-put-2)
21552         (display-buffer-even-window-sizes, display-buffer-set-height)
21553         (display-buffer-set-width, set-window-text-height)
21554         (fit-window-to-buffer): Rename all "resize-window" prefixed
21555         calls to use the "window-resize" prefix convention.
21556         (display-buffer-alist): Fix symbol for label specifier.
21557         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21558         corresponding specifier.
21559         Reported by Juanma Barranquero <lekktu@gmail.com>.
21561 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
21563         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21564         convention.
21565         (ses-call-printer): Does not pass an empty string to formatter when the
21566         cell is empty to keep from barking printer Calc math-format-value.
21568 2011-06-27  Richard Stallman  <rms@gnu.org>
21570         * battery.el (battery-mode-line-limit): New variable.
21571         (battery-update): Handle it.
21573         * mail/rmailmm.el (rmail-mime-process-multipart):
21574         Handle truncated messages.
21576 2011-06-27  Glenn Morris  <rgm@gnu.org>
21578         * progmodes/flymake.el (flymake-err-line-patterns):
21579         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
21581 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
21583         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21584         (ses--clean-!, ses--clean-_): New functions.
21585         (ses-range): Add configurability of readout order, and conversion
21586         to Calc vector.
21588         * ses.el (ses-repair-cell-reference-all): New function.
21589         (ses-cell-symbol): Set macro as safe, so that it can be used in
21590         formulas.
21592         * ses.el: Update cycle detection algorithm.
21593         (ses-localvars): Add ses--Dijkstra-attempt-nb and
21594         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21595         (ses-set-localvars): New function.
21596         (ses-make-cell): Add property-list as a cell element.
21597         (ses-cell-property-get-fun, ses-cell-property-get)
21598         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21599         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21600         New functions.
21601         (ses-cell-property-set, ses-cell-property-pop)
21602         (ses-cell-property-get-handle): New macro.
21603         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21604         New aliases, used for code readability.
21605         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21606         cycle detection.
21607         (ses-self-reference-early-detection): New defcustom.
21608         (ses-formula-references): Robustify against self-referring cells.
21609         (ses-mode): Use ses-set-localvars.
21610         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21611         before lauching the update processing.
21612         (ses-initialize-Dijkstra-attempt): New function.
21613         (ses-recalculate-cell): Update for cycle detection based on
21614         Dijkstra algorithm.
21616         * ses.el: Fix commenting and indenting convention.
21618 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21620         * bs.el (bs-cycle-next): Complete last change.
21622 2011-06-27  Drew Adams  <drew.adams@oracle.com>
21624         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21626 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21628         * net/network-stream.el (network-stream-open-starttls):
21629         Don't re-get capabilities unless we've reestablished connection.
21630         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21632         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21633         to binary to possibly avoid line encoding issues on Windows (among
21634         other things).
21636 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21638         * net/network-stream.el (open-network-stream): Return an :error
21639         saying what the problem was, if possible.
21641         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21642         server.
21644         * net/network-stream.el (network-stream-open-starttls): If we
21645         wanted to use STARTTLS, and the server offered it, but we weren't
21646         able to because we had no STARTTLS support, then close the connection.
21647         (open-network-stream): Return an :error element, if present.
21649 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
21651         * hl-line.el (hl-line-sticky-flag): Doc fix.
21652         (global-hl-line-sticky-flag): New option (Bug#8323).
21653         (global-hl-line-highlight): Obey it.
21655         * vc/vc.el (vc-revert-show-diff): Default to t.
21657 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
21659         * allout-widgets.el (allout-widgets-post-command-business):
21660         Stop decorating intermediate isearch matches.  They're not being
21661         undecorated when an isearch is continued past, and isearch
21662         automatically collapses them.  This leads to "widget leaks", where
21663         decorated items accumulate in collapsed areas.  Lines with lots of
21664         hidden widgets can slow down cursor travel, substantially.
21665         Too much complicated machinery would be needed to ensure undecoration,
21666         so we're doing without this nicety.
21668         (allout-widgets-tally-string): Don't try to do a hash-table-count
21669         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
21670         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21671         *Messages* when allout-widgets-maintain-tally is t.
21673 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
21675         * window.el (display-buffer-normalize-argument): Rename to
21676         display-buffer-normalize-arguments.  Handle special meaning of
21677         LABEL argument.  Respect special-display-function when popping up
21678         a new frame.  Fix code searching for a window showing the buffer
21679         on another frame.
21680         (display-buffer-normalize-specifiers):
21681         Call display-buffer-normalize-arguments.
21682         (display-buffer-in-window): Don't undedicate the window if its
21683         buffer remains the same.
21684         Reported by Drew Adams <drew.adams@oracle.com>.
21685         (display-buffer-alist): Add choice for same-window macro
21686         specfier.
21687         (display-buffer): Mention special meaning of LABEL argument in
21688         doc-string.  Fix quoting.  Don't pop up a new frame even as
21689         fallback.
21691 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
21693         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21694         avoid deleting the current window in some cases (bug#8911).
21696 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
21698         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21699         (Bug#8934)
21701 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21703         * net/network-stream.el (network-stream-open-starttls):
21704         Use built-in TLS support if `gnutls-available-p' is true.
21705         (network-stream-open-tls): Ditto.
21707 2011-06-26  Leo Liu  <sdl.web@gmail.com>
21709         * register.el (registerv): New struct.
21710         (registerv-make): New function.
21711         (jump-to-register, describe-register-1, insert-register):
21712         Support the jump-func, print-func and insert-func slot of a registerv
21713         struct.  (Bug#8415)
21715 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
21717         * vc/vc.el (vc-revert-show-diff): New defcustom.
21718         (vc-diff-internal): New arg specifying diff buffer.
21719         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
21720         reuse an existing *vc-diff* buffer (Bug#8927).
21722         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21724 2011-06-26  Glenn Morris  <rgm@gnu.org>
21726         * progmodes/f90.el (f90-critical-indent): New option.
21727         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21728         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21729         (f90-mode): Doc fix.
21730         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21731         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21732         (f90-beginning-of-block, f90-next-block, f90-indent-region)
21733         (f90-match-end): Handle block, critical.
21735 2011-06-25  Glenn Morris  <rgm@gnu.org>
21737         * calendar/diary-lib.el (diary-included-files): Doc fix.
21738         (diary-include-files): New function, extracted from
21739         diary-include-other-diary-files and diary-mark-included-diary-files.
21740         (diary-include-other-diary-files, diary-mark-included-diary-files):
21741         Just call diary-include-files.
21742         (diary-mark-entries): Reset diary-included-files on first call.
21744         * calendar/diary-lib.el (diary-mark-entries)
21745         (diary-mark-included-diary-files):
21746         Visit included diary-files in temp buffers.
21748         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21749         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21750         (f90-start-block-re, f90-imenu-generic-expression)
21751         (f90-looking-at-program-block-start, f90-no-block-limit):
21752         Add support for submodules.
21754         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21755         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21757 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
21759         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21760         buffer-file-type before setting its value, to avoid disastrous
21761         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
21763 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
21765         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21767         * ses.el (ses-unload-function):
21768         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21770         * proced.el (proced-unload-function):
21771         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21773 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
21775         * server.el (server-create-window-system-frame): Add parameters arg.
21776         (server-process-filter): Doc fix.  Handle frame-parameters.
21778 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
21780         Fix bug#8730, bug#8781.
21782         * loadhist.el (unload--set-major-mode): New function.
21783         (unload-feature): Use it.
21785         * progmodes/python.el (python-after-info-look): Add autoload cookie.
21786         (python-unload-function): New function.
21788 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21790         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21792 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
21794         * net/browse-url.el (browse-url-firefox-program): Add icecat to
21795         the candidates list.
21797 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
21799         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21801 2011-06-23  Richard Stallman  <rms@gnu.org>
21803         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21804         (rmail-variables): Set next-error-move-function.
21805         (rmail-what-message): Take argument POS.
21806         (rmail-next-error-move): New function.
21808 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21810         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21811         messages for adjacent non-terminals.
21813 2011-06-23  Richard Stallman  <rms@gnu.org>
21815         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21816         (rmail-show-message-1): Preserve buffer modified flag.
21817         (rmail-start-mail): Don't specify use of rmail-mail-return;
21818         that's done by mail-bury now.
21819         (rmail-mail-return): Handle arg NEWBUF.
21821 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
21823         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21824         SIZE is a number.
21826 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
21828         * window.el (get-lru-window, get-mru-window)
21829         (get-largest-window): Never return a minibuffer window.
21830         (display-buffer-pop-up-window): Fix a bug that could lead to
21831         reusing the minibuffer window.
21832         (display-buffer): Pass original specifier argument to
21833         display-buffer-function instead of the normalized one.
21834         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21836 2011-06-22  Leo Liu  <sdl.web@gmail.com>
21838         * minibuffer.el (completing-read-function)
21839         (completing-read-default): Move from minibuf.c.
21841 2011-06-22  Richard Stallman  <rms@gnu.org>
21843         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
21844         to Rmail even if not started by a special Rmail command.
21846         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
21847         Copy the buffer currently showing just one message.
21849 2011-06-22  Roland Winkler  <winkler@gnu.org>
21851         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
21852         (bibtex-clean-entry): First delete the old key so that a
21853         customized algorithm for generating the new key does not get
21854         confused by the old key.
21855         (bibtex-url): Obey regexp of first step.
21856         (bibtex-search-entries): Do not use add-to-list with local
21857         list-var.
21859 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21861         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
21862         stored a user name, then query for the password first, instead of
21863         waiting for SMTP to give an error message and the trying again.
21865 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
21867         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
21868         BUFFER in call-process.
21870 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21872         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
21873         QUIT twice.
21874         (smtpmail-try-auth-methods): Require user name and password from
21875         auth-source.
21877 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
21879         * window.el (display-buffer-default-specifiers)
21880         (display-buffer-alist): Remove entries for pop-up-frame-alist.
21881         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
21882         (split-window): Normalize SIDE argument (Bug#8916).
21884         * frame.el (pop-up-frame-alist, pop-up-frame-function)
21885         (special-display-frame-alist, special-display-popup-frame):
21886         Remove duplicate declarations.  These are now in window.el.
21888 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21890         * mail/smtpmail.el (smtpmail-via-smtp):
21891         Set :use-starttls-if-possible so that we always use STARTTLS if the
21892         server supports it.  SMTP servers that support STARTTLS commonly
21893         require it.
21895         * net/network-stream.el (network-stream-open-starttls): Support
21896         upgrading to STARTTLS always, even if we don't have built-in support.
21897         (open-network-stream): Add the :always-query-capabilities keyword.
21899         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
21900         upgrades with `open-network-stream', and rely solely on
21901         auth-source for all credentials.  Big changes throughout the file,
21902         but in particular:
21903         (smtpmail-auth-credentials): Remove.
21904         (smtpmail-starttls-credentials): Remove.
21905         (smtpmail-via-smtp): Check for servers saying they want AUTH after
21906         MAIL FROM, too.
21908         * net/network-stream.el (network-stream-open-starttls):
21909         Provide support for client certificates both for external and built-in
21910         STARTTLS.
21911         (auth-source): Require.
21912         (open-network-stream): Document the :client-certificate keyword.
21913         (network-stream-certificate): Change cert-cert to cert and
21914         cert-key to key.
21916 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
21918         * net/tramp-cache.el (top): Don't load the persistency file when
21919         "emacs -Q" has been called.
21921 2011-06-21  Tim Harper  <timcharper@gmail.com>
21923         * term/ns-win.el (ns-initialize-window-system):
21924         Set application-specific `ApplePressAndHoldEnabled' system
21925         resource to NO as it is not yet supported by the NS port.
21927 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
21929         * misc.el (list-dynamic-libraries--refresh): Compute header here...
21930         (list-dynamic-libraries): ...not here.
21932 2011-06-21  Leo Liu  <sdl.web@gmail.com>
21934         * subr.el (sha1): Implement sha1 using secure-hash.
21936 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
21938         * window.el (display-buffer-alist): In default value do not
21939         enforce searching a window on any but the selected frame.
21940         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21941         (display-buffer-select-window): Remove function.
21942         (display-buffer-in-window): When a window on another frame gets
21943         reused, do not select it any more but just raise its frame if
21944         necessary (Bug#8851) and (Bug#8856).
21945         (display-buffer-normalize-options): Handle pop-up-frames related
21946         options more faithfully.
21947         (pop-to-buffer): Don't rely on `display-buffer' selecting the
21948         window if it is on another frame.
21949         (display-buffer-alist, display-buffer-default-specifiers):
21950         Don't make new frame unsplittable by default.
21951         (display-buffer-normalize-argument): Fix doc-string typo and use
21952         'same-frame-other-window instead of 'other-window when associating
21953         with display-buffer-macro-specifiers.
21955 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
21957         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
21958         New functions.
21959         (5x5-mode-map, 5x5-mode-menu): Bind them.
21960         (5x5-draw-grid): Tweak the solver's rendering.
21962 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21964         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
21965         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
21967 2011-06-21  Drew Adams  <drew.adams@oracle.com>
21969         * menu-bar.el: Use function variable instead of switch-to-buffer.
21970         (menu-bar-select-buffer-function): New variable.
21971         (menu-bar-update-buffers): Use it (bug#8876).
21973 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21975         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
21976         variable's status.
21978 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
21980         * x-dnd.el (x-dnd-version-from-flags)
21981         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
21982         and long as number (Bug#8899).
21983         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
21985 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21987         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
21988         (completion-try-completion, completion-all-completions): Compute the
21989         metadata argument if it's missing; make it optional (bug#8795).
21991         * wid-edit.el: Use lex-bind and move towards completion-at-point.
21992         (widget-complete): Use new :completion-function property.
21993         (widget-completions-at-point): New function.
21994         (default): Use :completion-function instead of :complete.
21995         (widget-default-completions): Rename from widget-default-complete;
21996         Rewrite.
21997         (widget-string-complete, widget-file-complete, widget-color-complete):
21998         Remove functions.
21999         (file, symbol, function, variable, coding-system, color):
22000         * international/mule-cmds.el (default-input-method, charset)
22001         (language-info-custom-alist):
22002         * cus-edit.el (face): Use new property :completions.
22004         * progmodes/pascal.el (pascal-completions-at-point): New function.
22005         (pascal-mode): Use it.
22006         (pascal-mode-map): Use completion-at-point.
22007         (pascal-toggle-completions): Make obsolete.
22008         (pascal-complete-word, pascal-show-completions):
22009         * progmodes/octave-mod.el (octave-complete-symbol):
22010         Redefine as obsolete alias.
22011         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
22012         Signal absence of completion info for old Octave,
22013         (inferior-octave-complete): Redefine as obsolete alias.
22014         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
22015         (meta-completions-at-point): Rename from meta-complete-symbol and
22016         adapt it for use on completion-at-point-functions.
22017         (meta-common-mode): Use it.
22018         (meta-looking-at-backward, meta-match-buffer): Remove.
22019         (meta-complete-symbol): Redefine as obsolete alias.
22020         (meta-common-mode-map): Use completion-at-point.
22021         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
22022         (makefile-mode-map): Use completion-at-point.
22023         (makefile-completions-at-point): Rename from makefile-complete and
22024         adapt it for use on completion-at-point-functions.
22025         (makefile-mode): Use it.
22026         (makefile-complete): Redefine as obsolete alias.
22028 2011-06-20  Deniz Dogan  <deniz@dogan.se>
22030         * net/rcirc.el: Delete trailing whitespaces once and for all.
22032 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
22034         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
22036 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
22038         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
22040         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
22042 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
22044         * window.el (display-buffer-other-window-means-other-frame):
22045         Call display-buffer-normalize-alist.
22046         (display-buffer-normalize-specifiers-1): Rename to
22047         display-buffer-normalize-argument.  New argument other-frame.
22048         Rewrite.
22049         (display-buffer-normalize-specifiers-2): Rename to
22050         display-buffer-normalize-options.
22051         (display-buffer-normalize-alist-1): New function.
22052         (display-buffer-normalize-specifiers-3): Rename to
22053         display-buffer-normalize-alist.
22054         Call display-buffer-normalize-alist-1.
22055         (display-buffer-normalize-options-inhibit): New variable.
22056         (display-buffer-normalize-specifiers): Rewrite calling
22057         display-buffer-normalize-alist,
22058         display-buffer-normalize-argument, and
22059         display-buffer-normalize-options.  Don't call the latter if
22060         display-buffer-normalize-options-inhibit is non-nil.
22061         (frame-auto-delete): New option.
22062         (window-deletable-p): Use frame-auto-delete.
22063         (window-list-no-nils, window-state-ignored-parameters)
22064         (window-state-get-1, window-state-get, window-state-put-list)
22065         (window-state-put-1, window-state-put-2, window-state-put):
22066         New functions.
22067         (display-buffer-normalize-options): Move special-display-p group
22068         after pop-up-frame group (Bug#8851) and (Bug#8856).
22070 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
22072         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
22073         groups (Bug#8776).
22074         (rx-submatch-n): New function.
22075         (rx): Document it.
22077         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
22078         (Bug#8768).
22080         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
22082         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
22084         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
22085         anytime existing face settings are present (Bug#8889).
22087         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
22088         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
22089         Remove unused argument.
22091 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
22093         * window.el (display-buffer-default-specifiers):
22094         Remove pop-up-frame.  Add pop-up-window-min-height,
22095         pop-up-window-min-width, and another reuse-window specifier
22096         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
22097         (display-buffer-normalize-specifiers-2):
22098         Handle split-height-threshold and split-width-threshold also when
22099         pop-up-windows is unset.  Add a reuse-window specifier for the
22100         case popping up a new window fails.
22101         (special-display-popup-frame): Remove double quoting.
22102         (display-buffer-normalize-specifiers-1): Fix thinko.
22104 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22106         * shell.el (shell-completion-vars): Set pcomplete-termination-string
22107         according to comint-completion-addsuffix.
22109         * pcomplete.el: Convert to lexical binding and fix bug#8819.
22110         (pcomplete-suffix-list): Mark as obsolete.
22111         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
22112         pcomplete-seen in the closure.
22113         (pcomplete-comint-setup): Setup completion-at-point as well.
22114         (pcomplete--entries): New function.
22115         (pcomplete--env-regexp): New var.
22116         (pcomplete-entries): Rewrite to work with partial-completion and
22117         without relying on pcomplete-suffix-list.
22118         (pcomplete-pare-list): Remove, unused.
22120 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
22122         * window.el (display-buffer-alist): Set pop-up-window-min-height
22123         and pop-up-window-min-width in default value.  Reported by
22124         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
22125         other-window-means-other-frame.
22126         (display-buffer-macro-specifiers): Comment out entry for
22127         other-window specifier.
22128         (display-buffer-other-window-means-other-frame): New function.
22129         (display-buffer-normalize-specifiers-1): New arguments
22130         buffer-name and label.  Treat other-window case specially.
22131         (display-buffer-normalize-specifiers-2): Treat other-window case
22132         specially.
22133         (display-buffer-normalize-specifiers-3): New function.
22134         (display-buffer-normalize-specifiers):
22135         Call display-buffer-normalize-specifiers-3.
22137 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
22139         * window.el (same-window-p): Fix two typos introduced when
22140         adding with-no-warnings.
22141         (display-buffer-normalize-specifiers-1): Don't check
22142         pop-up-frames for 'unset initialization.
22143         (display-buffer-normalize-specifiers-2): Major rewrite using
22144         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
22145         (pop-up-frames, display-buffer-reuse-frames)
22146         (display-buffer-mark-dedicated): Don't initialize to 'unset.
22147         Suggested by David Engster <deng@randomsample.de>.
22148         (even-window-heights): Initialize to 'unset.
22149         (display-buffer-alist-set): Handle new 'unset initializations.
22150         (display-buffer-macro-specifiers): Don't pop up a new frame in the
22151         other window case.
22153 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
22155         * window.el (display-buffer-normalize-specifiers-1):
22156         Respect current value of pop-up-frames for most reasonable values of
22157         second argument of display-buffer (Bug#8865).
22158         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
22159         (switch-to-buffer-other-window-same-frame)
22160         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
22161         Adams (Bug#8875).
22162         (display-buffer): Don't check noninteractive when calling
22163         display-buffer-pop-up-frame.
22164         (display-buffer-pop-up-frame): Never pop up a frame in
22165         noninteractive mode (Bug#8857).
22166         (enlarge-window, shrink-window): Don't report an error when the
22167         window can't be resized as requested (Bug#8862).
22169 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22171         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
22173         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
22175         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
22177 2011-06-15  Alan Mackenzie  <acm@muc.de>
22179         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
22180         for declarators, disable knr checking to speed up for normal files.
22181         2: Refactor, replacing a sequence of nested if forms by a cond form.
22183 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22185         * net/network-stream.el (open-network-stream): Add the keyword
22186         :always-query-capabilities for the case where you want to force a
22187         `plain' network connection, but the protocol still requires the
22188         capabilitiy command (i.e., SMTP and EHLO).
22190         * subr.el (process-live-p): Rename from `process-alive-p' for
22191         consistency with other `-live-p' functions.
22193 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22195         * window.el (same-window-buffer-names, same-window-regexps)
22196         (special-display-frame-alist, special-display-popup-frame)
22197         (special-display-function, special-display-buffer-names)
22198         (special-display-regexps, pop-up-frame-alist)
22199         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
22200         (pop-up-windows, split-window-preferred-function)
22201         (split-height-threshold, split-width-threshold, even-window-heights)
22202         (display-buffer-mark-dedicated): Don't encourage the use of
22203         display-buffer-alist from Elisp code.
22205 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
22207         * progmodes/python.el (python-mode): Derive from prog-mode.
22208         * progmodes/ps-mode.el (ps-mode):
22209         * progmodes/mixal-mode.el (mixal-mode):
22210         * progmodes/cfengine.el (cfengine-mode):
22211         * progmodes/ld-script.el (ld-script-mode): Likewise.
22213 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
22215         * window.el (display-buffer-alist): Trim default value to avoid
22216         popping up a new frame (Bug#8857) or reusing an arbitrary window
22217         on another frame.
22218         (display-buffer): Do not fall back on popping up a new frame in
22219         batch mode (Bug#8857).
22221 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
22223         * cus-theme.el (describe-theme-1): Use custom-theme-p.
22224         (custom-theme-summary): New function.
22225         (customize-themes): Use it.
22227 2011-06-13  Glenn Morris  <rgm@gnu.org>
22229         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
22231 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
22233         * help.el (help-window): Remove variable.
22234         (help-window-point-marker, temp-buffer-max-height)
22235         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
22236         (help-print-return-message): Don't set help-window.
22237         (resize-temp-buffer-window): Rewrite cod eand doc-string.
22238         (help-window-setup-finish): Remove.
22239         (help-window-display-message, help-window-setup)
22240         (with-help-window): Major rewrite based on new
22241         display-buffer-window variable.
22243         * help-mode.el (help-mode-finish): Remove help-window related
22244         code.
22246         * view.el (view-exits-all-viewing-windows): Remove reference to
22247         view-return-to-alist in doc-string.
22248         (view-return-to-alist): Make obsolete.
22249         (view-buffer): Call pop-to-buffer-same-window and remove
22250         undo-window code.
22251         (view-buffer-other-window): Call pop-to-buffer-other-window and
22252         simplify code.  Ignore second argument.
22253         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
22254         simplify code.  Ignore second argument.
22255         (view-return-to-alist-update): Make obsolete.
22256         (view-mode-enter): Rename second argument to QUIT-RESTORE.
22257         Rewrite using quit-restore window parameters.
22258         (view-mode-exit): Rename second argument to EXIT-ONLY.
22259         Rewrite using quit-restore-window.
22260         (View-exit, View-exit-and-edit, View-leave, View-quit)
22261         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
22262         appropriate arguments.
22263         (view-end-message): Use quit-restore window parameter.
22265         * window.el (display-buffer-function): Rewrite doc-string.
22266         (display-buffer-window, display-buffer-alist): New variables.
22267         (display-buffer-split-specifiers)
22268         (display-buffer-side-specifiers)
22269         (display-buffer-macro-specifiers): New constants.
22270         (display-buffer-even-window-sizes, display-buffer-set-height)
22271         (display-buffer-set-width, display-buffer-select-window)
22272         (display-buffer-in-window, display-buffer-reuse-window)
22273         (display-buffer-split-window-1, display-buffer-split-window)
22274         (display-buffer-split-atom-window, display-buffer-pop-up-window)
22275         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
22276         (display-buffer-in-side-window, normalize-buffer-to-display)
22277         (display-buffer-normalize-specifiers-1)
22278         (display-buffer-normalize-specifiers-2)
22279         (display-buffer-normalize-specifiers, display-buffer-frame):
22280         New functions.
22281         (display-buffer): Major rewrite.
22282         (display-buffer-other-window, display-buffer-other-frame)
22283         (pop-to-buffer, switch-to-buffer-other-window)
22284         (switch-to-buffer-other-frame): Rewrite.
22285         (display-buffer-same-window, display-buffer-same-frame)
22286         (display-buffer-same-frame-other-window)
22287         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22288         (pop-to-buffer-other-window)
22289         (pop-to-buffer-same-frame-other-window)
22290         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
22291         (switch-to-buffer-other-window-same-frame): New functions.
22292         (same-window-p, special-display-p): Rewrite disabling warnings.
22293         Make obsolete.
22294         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22295         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
22296         Make obsolete
22297         (same-window-buffer-names, same-window-regexps)
22298         (special-display-frame-alist, special-display-popup-frame)
22299         (special-display-function, special-display-buffer-names)
22300         (special-display-regexps, pop-up-frame-alist)
22301         (pop-up-frame-function, split-window-preferred-function)
22302         (split-height-threshold, split-width-threshold)
22303         (even-window-heights): Make obsolete.
22305 2011-06-12  Glenn Morris  <rgm@gnu.org>
22307         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
22308         Misc simplifications.
22310 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
22312         * window.el (window-safely-shrinkable-p): Restore function which
22313         was inadvertently removed in change from 2011-06-11.  Declare as
22314         obsolete.
22316         * calendar/calendar.el (calendar-generate-window):
22317         Use window-iso-combined-p instead of combination of one-window-p and
22318         window-safely-shrinkable-p.
22320 2011-06-12  Glenn Morris  <rgm@gnu.org>
22322         * progmodes/fortran.el (fortran-mode-syntax-table):
22323         * progmodes/f90.el (f90-mode-syntax-table):
22324         Set % to punctuation.  (Bug#8820)
22325         (f90-find-tag-default): Remove, no longer needed.
22327 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
22329         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22331 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
22333         * image.el (image-animated-p): Return animation delay in seconds.
22334         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22335         (image-animate-timeout): Remove DELAY argument.  Don't assume
22336         every subimage has the same delay; get it from image-animated-p.
22337         (image-animate): Caller changed.
22339 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
22341         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22342         to ignored backtrace functions.
22344 2011-06-11  Glenn Morris  <rgm@gnu.org>
22346         * calendar/appt.el (appt-disp-window-function): Doc fix.
22347         (appt-check): Handle overlapping appointments.  (Bug#8337)
22349 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
22351         * window.el (window-tree-1, window-tree): New functions, moving
22352         the latter to window.el.
22353         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22354         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22355         (bw-refresh-edges): Remove.
22356         (balance-windows-1, balance-windows-2): New functions.
22357         (balance-windows): Rewrite in terms of window tree functions,
22358         balance-windows-1 and balance-windows-2.
22359         (bw-adjust-window): Remove.
22360         (balance-windows-area-adjust): New function with functionality of
22361         bw-adjust-window but using resize-window.
22362         (set-window-text-height): Rewrite doc-string.
22363         Use normalize-live-window and resize-window.
22364         (enlarge-window-horizontally, shrink-window-horizontally):
22365         Rename argument to DELTA.
22366         (window-buffer-height): New function.
22367         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22368         Rewrite using new window resize routines.
22369         (kill-buffer-and-window, mouse-autoselect-window-select):
22370         Use ignore-errors instead of condition-case.
22371         (quit-window): Call delete-frame instead of delete-windows-on
22372         for the only buffer on frame.
22374 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
22376         * loadup.el (top-level): Load window before files for the sake
22377         of replace-buffer-in-windows.
22379         * files.el (read-buffer-to-switch)
22380         (switch-to-buffer-other-window)
22381         (switch-to-buffer-other-frame, display-buffer-other-frame):
22382         Move to window.el.
22384         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22385         (previous-buffer): Move to window.el.
22387         * bindings.el (unbury-buffer): Move to window.el.
22389         * window.el (delete-other-windows-vertically): Move after
22390         definition of delete-other-windows.
22391         (other-window, delete-windows-on, replace-buffer-in-windows):
22392         Move here from window.c.
22393         (record-window-buffer, unrecord-window-buffer)
22394         (set-window-buffer-start-and-point, switch-to-prev-buffer)
22395         (switch-to-next-buffer): New functions.
22396         (get-next-valid-buffer, last-buffer, next-buffer): Move here
22397         from simple.el.  Call switch-to-next-buffer.
22398         (previous-buffer): Move here from simple.el.
22399         Call switch-to-prev-buffer.
22400         (bury-buffer): Move here from buffer.c.  Switch to previous
22401         buffer when window cannot be deleted.
22402         (unbury-buffer): Move here from bindings.el.
22403         (ctl-x-map): Move binding for other-window from window.c to
22404         here.
22405         (read-buffer-to-switch, switch-to-buffer-other-window)
22406         (switch-to-buffer-other-frame): Move here from files.el.
22407         (normalize-buffer-to-switch-to): New functions.
22408         (switch-to-buffer): Move here from buffer.c.
22409         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22411 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
22413         * window.el (window-min-height, window-min-width): Move here
22414         from window.c.  Add defcustoms and rewrite doc-strings.
22415         (resize-mini-window, resize-window): New functions.
22416         (adjust-window-trailing-edge, enlarge-window, shrink-window):
22417         Move here from window.c.
22418         (maximize-window, minimize-window): New functions.
22419         (delete-window, delete-other-windows, split-window): Move here
22420         from window.c.
22421         (window-split-min-size): New function.
22422         (split-window-keep-point): Mention split-window-above-each-other
22423         instead of split-window-vertically.
22424         (split-window-above-each-other, split-window-vertically):
22425         Rename split-window-vertically to split-window-above-each-other
22426         and provide defalias for old definition.
22427         (split-window-side-by-side, split-window-horizontally):
22428         Rename split-window-horizontally to split-window-side-by-side
22429         and provide defalias for the old definition.
22430         (ctl-x-map): Move bindings for delete-window,
22431         delete-other-windows and enlarge-window here from window.c.
22432         Replace bindings for split-window-vertically and
22433         split-window-horizontally by bindings for
22434         split-window-above-each-other and split-window-side-by-side.
22436         * cus-start.el (all): Remove entries for window-min-height and
22437         window-min-width.  Add entries for window-splits and
22438         window-nest.
22440 2011-06-09  Glenn Morris  <rgm@gnu.org>
22442         * calendar/appt.el (appt-mode-line): New function.
22443         (appt-check, appt-disp-window): Use it.
22445         * files.el (hack-one-local-variable-eval-safep):
22446         Allow minor-modes with explicit +/-1 arguments.
22448 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
22450         * term/xterm.el (xterm): Add defgroup.
22451         (xterm-extra-capabilities): Add defcustom to supply known xterm
22452         capabilities, skip querying them, or query them (default).
22453         (terminal-init-xterm): Use it.
22454         (terminal-init-xterm-modify-other-keys): New function to set up
22455         modifyOtherKeys support to simplify `terminal-init-xterm'.
22457 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
22459         * window.el (resize-window-reset, resize-window-reset-1)
22460         (resize-subwindows-skip-p, resize-subwindows-normal)
22461         (resize-subwindows, resize-other-windows, resize-this-window)
22462         (resize-root-window, resize-root-window-vertically)
22463         (window-deletable-p, window-or-subwindow-p)
22464         (frame-root-window-p): New functions.
22466 2011-06-09  Glenn Morris  <rgm@gnu.org>
22468         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22469         (ange-ftp-get-files): Use it.
22471 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
22473         * mail/sendmail.el (mail-recover-1, mail-recover):
22474         * files.el (recover-file, recover-session):
22475         Handle dired-listing-switches not being just a single short option.
22477 2011-06-09  Glenn Morris  <rgm@gnu.org>
22479         * calendar/appt.el (appt-display-message, appt-disp-window):
22480         Handle lists of appointments.
22482 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
22484         * window.el (one-window-p): Move down in code.
22485         Rewrite doc-string.
22486         (window-current-scroll-bars): Rewrite doc-string.
22487         Normalize live window argument.
22488         (walk-windows, get-window-with-predicate, count-windows):
22489         Rewrite doc-string.  Use window-list-1.
22490         (window-in-direction-2, window-in-direction, get-mru-window):
22491         New functions.
22493 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
22495         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22496         Doc fix (Bug#8713).
22498 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
22500         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22502 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
22504         * loadhist.el (unload-feature-special-hooks):
22505         Add `comint-output-filter-functions'.
22507 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
22509         * calendar/appt.el (appt-check): Move some initializations into the let.
22511 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
22513         * window.el (window-height): Defalias to window-total-height.
22514         (window-width): Defalias to window-body-width.
22516 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
22518         * image-mode.el (image-toggle-animation): New command.
22519         (image-mode-map): Bind it to RET.
22520         (image-mode): Update message.
22521         (image-toggle-display-image): Avoid a spurious cache flush.
22522         (image-transform-rotation): Doc fix.
22523         (image-transform-properties): Return quickly in the normal case.
22524         (image-animate-loop): Rename from image-animate-max-time.
22526         * image.el (image-animate-max-time): Move to image-mode.el.
22527         (create-animated-image): Remove unnecessary function.
22528         (image-animate): Rename from image-animate-start.  New arg.
22529         (image-animate-stop): Remove; just use image-animate-timer.
22530         (image-animate-timer): Use car-safe.
22531         (image-animate-timeout): Rename argument.
22533 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
22535         * window.el (get-lru-window, get-largest-window): Move here from
22536         window.c.  Rename first argument to ALL-FRAMES.
22537         Rephrase doc-strings.
22538         (get-buffer-window-list): Rewrite using window-list-1.
22539         Rephrase doc-string.
22540         (window-safe-min-height, window-safe-min-width): New constants.
22541         (window-size-ignore, window-min-size, window-min-size-1)
22542         (window-sizable, window-sizable-p, window-size-fixed-1)
22543         (window-size-fixed-p, window-min-delta-1, window-min-delta)
22544         (window-max-delta-1, window-max-delta, window-resizable)
22545         (window-resizable-p, window-total-height, window-total-width)
22546         (window-body-width): New functions.
22547         (window-full-height-p, window-full-width-p): Rewrite using
22548         window-total-size.
22549         (window-body-height): Rewrite using window-body-size.
22551 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
22553         * window.el (window-right, window-left, window-child)
22554         (window-child-count, window-last-child, window-any-p)
22555         (normalize-live-buffer, normalize-live-frame)
22556         (normalize-any-window, normalize-live-window)
22557         (window-iso-combination-p, window-iso-combined-p)
22558         (window-iso-combinations)
22559         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22560         (windows-with-parameter, window-with-parameter)
22561         (window-atom-root, make-window-atom, window-atom-check-1)
22562         (window-atom-check, window-side-check, window-check):
22563         New functions.
22564         (ignore-window-parameters, window-sides, window-sides-vertical)
22565         (window-sides-slots): New variables.
22566         (window-size-fixed): Move down in code.  Minor doc-string fix.
22568 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
22570         * comint.el (comint-dynamic-complete-as-filename)
22571         (comint-dynamic-complete-filename): Correctly call
22572         completion-in-region.
22574 2011-06-05  Deniz Dogan  <deniz@dogan.se>
22576         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22577         in last change.
22579 2011-06-05  Deniz Dogan  <deniz@dogan.se>
22581         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22582         (rcirc): Use it to prompt for encryption.
22584 2011-06-05  Roland Winkler  <winkler@gnu.org>
22586         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22587         (bibtex-search-entries): New command bound to C-c C-a.
22588         (bibtex-display-entries): New function.
22590 2011-06-05  Roland Winkler  <winkler@gnu.org>
22592         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22593         (bibtex-insert-kill): After yanking insert newline if necessary.
22594         (bibtex-initialize): Call bibtex-string-files-init only once.
22595         (bibtex-mode): Do not call easy-menu-add.
22596         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22597         (bibtex-yank): Set arg properly if nil.
22599 2011-06-05  Roland Winkler  <winkler@gnu.org>
22601         * textmodes/bibtex.el (bibtex-search-entry-globally):
22602         New variable.
22603         (bibtex-search-entry): Use it.
22605 2011-06-05  Roland Winkler  <winkler@gnu.org>
22607         * textmodes/bibtex.el (bibtex-entry-format): New option
22608         sort-fields.
22609         (bibtex-format-entry, bibtex-reformat): Honor this option.
22610         (bibtex-parse-entry): Return fields in proper order.
22612 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
22614         * doc-view.el (doc-view-remove-if): Move computation of result out
22615         of `dolist' to silence misleading lexical-binding warning.
22617 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
22619         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22620         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22622 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
22624         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22625         "SunOS 5.10".
22627 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
22629         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22630         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22631         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22632         (tramp-parse-putty):
22633         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22634         (tramp-completion-function-alist-ssh)
22635         (tramp-completion-function-alist-telnet)
22636         (tramp-completion-function-alist-su)
22637         (tramp-completion-function-alist-putty): Set `tramp-autoload'
22638         cookie.
22640         * net/tramp-ftp.el:
22641         * net/tramp-sh.el:
22642         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22643         load "tramp.el" `tramp-set-completion-function'.
22645 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
22647         * shell.el: Require and use pcomplete.
22648         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22649         (shell-completion-vars): Set pcomplete-default-completion-function.
22651 2011-06-04  Deniz Dogan  <deniz@dogan.se>
22653         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22654         `memq' (Bug#8799).
22656 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
22658         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22660 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
22662         * bs.el (bs--mark-unmark, bs--nth-wrapper):
22663         * mpc.el (mpc-select-extend, mpc-songpointer-context):
22664         * vc/log-view.el (log-view-beginning-of-defun):
22665         * vc/smerge-mode.el (smerge-apply-resolution-patch)
22666         (smerge-refine-forward, smerge-refine-chopup-region):
22667         Silence warning for unused `dotimes' counter variables.
22669 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
22671         * net/tramp.el (tramp-with-progress-reporter): Rename from
22672         with-progress-reporter.  Use `declare'.
22673         * net/tramp-smb.el:
22674         * net/tramp-sh.el:
22675         * net/tramp-gvfs.el: Update all uses.
22677 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
22679         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22680         buffer isn't killed before making it current.
22682 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22684         Silence various byte-compiler warnings.
22685         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22686         `access-type' and new obsolescence format.
22687         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22688         new format.
22689         (byte-compile-check-variable): New `access-type' argument.
22690         Only warn if the access-type is obsolete.
22691         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22692         (byte-compile-variable-set): Adjust callers.
22693         * help-fns.el (describe-variable): Adjust to new obsolescence format.
22694         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22695         setting it as obsolete.
22696         * simple.el (minibuffer-completing-symbol):
22697         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22698         access as obsolete.
22699         * minibuffer.el (minibuffer-completing-file-name): Don't make it
22700         obsolete yet.
22701         * international/quail.el (quail-mouse-choose-completion): Remove unused
22702         code referring to obsolete var.
22703         (quail-choose-completion-string): Remove.
22704         * server.el (server-clients-with, server-kill-buffer-query-function)
22705         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22706         * proced.el (proced-send-signal):
22707         * emacs-lisp/lisp.el (lisp-complete-symbol):
22708         Replace completion-annotate-function with completion-extra-properties.
22710 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22712         * simple.el (goto-line): Use read-number.
22713         (overriding-map-is-bound): Remove.
22714         (saved-overriding-map): Change default.
22715         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22716         Take the map as argument.
22717         (universal-argument, negative-argument, digit-argument): Use it.
22718         (restore-overriding-map): Adjust.
22719         (do-auto-fill): Use fill-forward-paragraph.
22720         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22722         * minibuffer.el (minibuffer-inactive-mode-map): New var.
22723         (minibuffer-inactive-mode): New major mode.
22724         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22725         the *Messages* buffer" hack.
22726         (mouse-popup-menubar): Don't burp if the event is a normal key.
22728         Miscellaneous tweaks.
22729         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22730         lexical scoping as in subr.el's dolist and dotimes.
22731         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22732         Silence compiler warning.
22733         * thingatpt.el (forward-whitespace): Trivial coding style fix.
22734         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22735         * international/ccl.el (ccl-compile): Trivial simplification.
22736         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22737         * emacs-lisp/testcover.el (testcover-end): Remove spurious
22738         `printflag' argument.
22739         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22740         Purecopy the whole obsolescence data.
22742 2011-06-01  Leo Liu  <sdl.web@gmail.com>
22744         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22745         improve doc-string as suggested by Marco Pessotto
22746         <melmothx@gmail.com>.
22747         (rcirc-print): Fix last change.
22749 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22751         * minibuffer.el (complete-with-action): Return nil for the metadata and
22752         boundaries of non-functional tables.
22753         (completion-table-dynamic): Return nil for the metadata.
22754         (completion-table-with-terminator): Add default case, using
22755         complete-with-action.
22756         (completion--metadata): New function.
22757         (completion-all-sorted-completions, minibuffer-completion-help): Use it
22758         to try and avoid pathological performance problems.
22759         (completion--embedded-envvar-table): Return `category' metadata.
22761 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22763         * subr.el (process-alive-p): New tiny convenience function.
22765 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22767         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22768         content but also its previous major mode.
22770 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
22772         * emacs-lisp/debug.el (debug): Restore the previous content of the
22773         *Backtrace* buffer when we exit with C-M-c.
22775 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22777         * minibuffer.el: Add metadata method to completion tables.
22778         (completion-category-overrides): New defcustom.
22779         (completion-metadata, completion--field-metadata)
22780         (completion-metadata-get, completion--styles)
22781         (completion--cycle-threshold): New functions.
22782         (completion-try-completion, completion-all-completions):
22783         Add `metadata' argument to choose completion-styles.
22784         (completion--do-completion): Use metadata to choose cycling.
22785         (completion-all-sorted-completions): Use metadata for sorting.
22786         Remove :completion-cycle-penalty which is not needed any more.
22787         (completion--try-word-completion): Add `metadata' argument.
22788         (minibuffer-completion-help): Check metadata for annotation function
22789         and sorting.
22790         (completion-file-name-table): Return `category' metadata.
22791         (minibuffer-completing-file-name): Make obsolete.
22792         * simple.el (minibuffer-completing-symbol): Make obsolete.
22793         * icomplete.el (icomplete-completions): Pass new `metadata' param to
22794         completion-try-completion.
22796 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22798         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22800 2011-05-30  Leo Liu  <sdl.web@gmail.com>
22802         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22803         (rcirc-print): Decode all incoming messages (bug#8744).
22804         (rcirc-decode-coding-system): Allow value nil for automatic coding
22805         system detection.
22807 2011-06-01  Glenn Morris  <rgm@gnu.org>
22809         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22811 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22813         * image.el (image-animate-max-time): Allow nil and t values.
22814         Default to nil.
22815         (create-animated-image): Doc fix.
22816         (image-animate-start): Remove second arg; just use
22817         image-animate-max-time.
22818         (image-animate-timeout): Doc fix.  Args changed.
22820         * image-mode.el (image-toggle-display-image): Ensure that the
22821         image spec passed to the animate timer is the same object as in
22822         the buffer's display property (Bug#6981).
22823         (image-transform-properties): Doc fix.
22825         * image.el (image-animate-max-time): Default to nil.
22827 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
22829         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22830         entire buffer list (Bug#8184).
22832 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22834         * image.el (imagemagick-types-inhibit)
22835         (imagemagick-register-types): Doc fix.
22837 2011-05-29  Deniz Dogan  <deniz@dogan.se>
22839         * net/rcirc.el (rcirc): Use the user's stored encryption method by
22840         default.
22842 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22844         * select.el: Don't perform clipboard-manager saving in hooks;
22845         leave the hooks empty.
22847 2011-05-28  Leo Liu  <sdl.web@gmail.com>
22849         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
22850         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
22851         (occur-edit-mode): New major mode (Bug#8463).
22852         (occur-after-change-function): New function.
22853         (occur-engine): Give Occur tags a read-only property.
22855 2011-05-28  Kevin Ryde  <user42@zip.com.au>
22857         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
22859 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22861         * bindings.el (help-echo): Make the initial non-indicator dash
22862         empty on graphical terminals (Bug#7295).
22864         * files.el (auto-mode-alist): Move config rule after the
22865         in-stripping one (Bug#8547).
22867         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
22869         * startup.el (normal-splash-screen): Remove gratuitous mode-line
22870         setting (Bug#8740).
22872 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
22874         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
22875         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
22876         (Bug#8539).
22878 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22880         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
22882 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
22884         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
22885         (hs-hide-block-at-point, hs-find-block-beginning)
22886         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
22887         (Bug#8279).
22889 2011-05-28  Glenn Morris  <rgm@gnu.org>
22891         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
22893 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22895         * help-fns.el (describe-function-1): If the function is a derived
22896         major mode, print the parent mode.
22898         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
22899         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
22901 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
22903         * minibuffer.el (completion--capf-wrapper): Check applicability before
22904         returning non-nil for non-exclusive completion data.
22905         * progmodes/etags.el (tags-completion-at-point-function):
22906         * info-look.el (info-lookup-completions-at-point): Mark as
22907         non-exclusive.
22908         (info-complete): Adjust accordingly.
22910         * info-look.el: Convert to lexical-binding and completion-at-point.
22911         (info-lookup-completions-at-point): New function.
22912         (info-complete): Use it and completion-in-region.
22914 2011-05-28  Drew Adams  <drew.adams@oracle.com>
22916         * isearch.el: Let M-e start with point at the first mismatched char.
22917         (isearch-fail-pos): New function.
22918         (isearch-edit-string): Use it.
22920 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
22922         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22924 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
22926         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
22927         traversal functions for avl-trees.
22928         (avl-tree--stack): New struct.
22929         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
22930         (avl-tree-enter): Add optional `updatefun' arg.
22931         (avl-tree--do-enter): Add optional `updatefun' arg.
22932         Change return value.
22933         (avl-tree-delete): Add optional `test' and `nilflag' args.
22934         (avl-tree--do-delete): Add `test' and `nilflag' args.
22935         Change return value.
22936         (avl-tree-member): Add optional `nilflag'
22937         (avl-tree-member-p): New function.
22938         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
22939         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
22940         (avl-tree-stack-empty-p): New functions.
22942         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
22943         avl-tree--del-balance1 and make it work both ways.
22944         (avl-tree--del-balance2): Remove.
22945         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
22946         make it work both ways.
22947         (avl-tree--enter-balance2): Remove.
22948         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
22949         New macros.
22950         (avl-tree--mapc, avl-tree-map): Add direction argument.
22952 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
22954         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
22956 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
22958         * select.el: Support clipboard managers with built-in function
22959         x-clipboard-manager-save, via delete-frame-functions and
22960         kill-emacs-hook.
22961         (xselect-convert-to-targets): Add MULTIPLE target to list.
22962         (xselect-convert-to-save-targets): New function.
22964 2011-05-27  Kenichi Handa  <handa@m17n.org>
22966         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
22967         let-binding rfc2047-encode-encoded-words to nil.
22969 2011-05-27  Glenn Morris  <rgm@gnu.org>
22971         * mail/emacsbug.el: Don't require url-util.
22973         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
22975         * files.el (set-auto-mode):
22976         Also respect mode: entries at the end of the file.  (Bug#8586)
22978 2011-05-26  Glenn Morris  <rgm@gnu.org>
22980         * files.el (hack-local-variables-prop-line, hack-local-variables):
22981         Downcase mode names, as seems to be traditional.
22982         (hack-local-variables, hack-local-variables-apply): Doc fixes.
22984         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
22985         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
22987 2011-05-25  Julien Danjou  <julien@danjou.info>
22989         * textmodes/rst.el (rst-define-level-faces): Do not define face
22990         symbol if it is already defined.
22992 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
22994         * play/5x5.el (5x5-new-game, 5x5-randomize):
22995         Reset 5x5-solver-output to nil when a new grid is cast.
22996         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
22997         these debugging traces, as defmacro breaks the compiled code.
22999 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
23001         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
23003 2011-05-24  Leo Liu  <sdl.web@gmail.com>
23005         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
23006         (vc-bzr-sha1): Adapt.
23008         * sha1.el: Remove.  Function `sha1' is now builtin.
23010         * bindings.el: Provide sha1 feature.
23012 2011-05-24  Kenichi Handa  <handa@m17n.org>
23014         * mail/sendmail.el: Require `rfc2047'.
23015         (mail-insert-from-field): Do not perform RFC2047 encoding.
23016         (mail-encode-header): New function.
23017         (sendmail-send-it): Set buffer-file-coding-system of the work
23018         buffer to the return value of select-message-coding-system.
23019         Call mail-encode-header.
23021         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
23023 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
23025         * mail/supercite.el (sc-default-cite-frame):
23026         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
23028 2011-05-24  Glenn Morris  <rgm@gnu.org>
23030         * progmodes/python.el (brm-menu): Declare.
23032         * emulation/viper.el (viper-set-hooks): Declare.
23034         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
23035         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
23036         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
23037         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
23038         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
23039         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
23041 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
23043         Add an :exit-function for completion-at-point.
23045         * minibuffer.el (completion--done): New fun.
23046         (completion--do-completion): Use it.  New arg `expect-exact'.
23047         (minibuffer-complete, minibuffer-complete-word): Don't output message,
23048         since completion--do-completion does it for us now.
23049         (minibuffer-force-complete): Use completion--done and
23050         completion--replace.  Handle sole-completion case with more care.
23051         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
23052         (completion-extra-properties): New var.
23053         (completion-annotate-function): Make obsolete.
23054         (minibuffer-completion-help): Adjust accordingly.
23055         Use completion-list-insert-choice-function.
23056         (completion-at-point, completion-help-at-point):
23057         Bind completion-extra-properties.
23058         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
23059         * simple.el (completion-list-insert-choice-function): New var.
23060         (completion-setup-function): Preserve it.
23061         (choose-completion): Pay attention to it, shuffle the code a bit.
23062         (choose-completion-string): New arg `insert-function'.
23064         * textmodes/bibtex.el: Convert to lexical binding.
23065         (bibtex-mode-map): Use completion-at-point.
23066         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
23067         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
23068         (bibtex-complete): Define as obsolete alias.
23069         (bibtex-complete-internal): Remove.
23070         (bibtex-format-entry): Remove unused sub-group in regexp.
23071         * shell.el (shell--command-completion-data)
23072         (shell-environment-variable-completion):
23073         * pcomplete.el (pcomplete-completions-at-point):
23074         * comint.el (comint--complete-file-name-data): Use :exit-function
23075         instead of completion-table-with-terminator so it also works for
23076         choose-completion.
23078 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23080         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
23082         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
23083         (bug#8710).
23085         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
23087 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
23089         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
23090         customization variable and implement: If non-nil, auto-fill will
23091         be inhibited while on topic's header line.
23093 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
23095         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
23096         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
23097         always have a solution in grid size = 5 cases.
23098         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
23099         (5x5-solver-output, 5x5-log-buffer): New vars.
23100         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
23101         Make these variables buffer local to achieve 5x5 multi-session-ness.
23102         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
23103         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
23104         (5x5-solve-suggest): New funs.
23105         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
23106         randomize a grid so that we ensure that there is always a solution.
23107         (5x5-make-random-grid): Allow other movement than flipping.
23109 2011-05-23  Kevin Ryde  <user42@zip.com.au>
23111         * emacs-lisp/advice.el (ad-read-advised-function):
23112         Use `function-called-at-point' as the default, if it has
23113         advice and passes PREDICATE.
23115 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23117         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
23118         byte-compile-lambda if it's actually a lambda.
23120         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
23121         Fix function quoting.  Use backquote better.
23123 2011-05-22  Yuanle Song  <sylecn@gmail.com>
23125         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
23126         matching (Bug#8516).
23128 2011-05-22  Jari Aalto  <jari.aalto@cante.net>
23130         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
23131         different face (Bug#8178).
23133 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
23135         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
23136         defface (Bug#8144).
23138 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23140         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
23141         funcall as well (bug#8712).  Warn when performing those conversions.
23142         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
23144         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
23146 2011-05-22  Glenn Morris  <rgm@gnu.org>
23148         * files.el (hack-local-variables-prop-line): Small simplifications.
23149         (hack-local-variables, hack-local-variables-prop-line):
23150         If MODE-ONLY, return the mode, rather than just `t'.
23152 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
23154         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
23156 2011-05-21  Glenn Morris  <rgm@gnu.org>
23158         * files.el (hack-local-variables-prop-line, hack-local-variables):
23159         If only interested in the mode, don't bother doing the other stuff.
23161         * image-mode.el (image-after-revert-hook):
23162         Redraw all frames on which the image is visible.  (Bug#8567)
23164         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
23166         * wid-edit.el (widget-checklist-match-inline):
23167         Fix 2011-04-19 change.  (Bug#8649)
23169 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23171         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
23172         Also allow singlespace after single-letter capitals followed by a dot.
23174         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
23175         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
23177 2011-05-20  Nix  <nix@esperi.org.uk>
23179         * files.el (basic-save-buffer-2):
23180         Fix handling of break-hardlink-on-save with non-existent files.
23182 2011-05-19  Deniz Dogan  <deniz@dogan.se>
23184         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
23185         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
23187 2011-05-19  Glenn Morris  <rgm@gnu.org>
23189         * progmodes/f90.el (f90-type-def-re):
23190         Handle "type, bind(c)".  (Bug#8691)
23192         * emacs-lisp/autoload.el (batch-update-autoloads):
23193         Set autoload-excludes by parsing loadup.el rather than Makefiles.
23195 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
23197         * net/tramp.el (tramp-process-actions): Set "first-password-request"
23198         property for the correct connection in case of multihops.
23200 2011-05-18  Glenn Morris  <rgm@gnu.org>
23202         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
23203         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
23205         Rationalize calendar handling of day and month abbrev-arrays.
23206         * calendar/calendar.el (calendar-customized-p): New function.
23207         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
23208         (calendar-day-name-array, calendar-month-name-array): Doc fix.
23209         Add :set function.
23210         (calendar-abbrev-length, calendar-day-abbrev-array)
23211         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
23212         (calendar-day-abbrev-array, calendar-month-abbrev-array):
23213         Elements may no longer be nil.
23214         (calendar-day-name, calendar-month-name):
23215         Update for changed nature of abbrev arrays.
23216         * calendar/diary-lib.el (diary-name-pattern):
23217         Update for changed nature of abbrev arrays.
23218         (diary-mark-entries-1): Update calendar-make-alist calls.
23219         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
23220         * calendar/cal-html.el (cal-html-day-abbrev-array):
23221         Simply inherit from calendar-day-abbrev-array.
23223 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23225         * progmodes/grep.el (grep-mode): Disable default
23226         compilation-directory-matcher setting (bug#8684).
23228 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
23230         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
23231         instead of "head" and "tail".  There were problems with SunOS 5.9,
23232         and it performs better.
23234 2011-05-17  Glenn Morris  <rgm@gnu.org>
23236         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
23238         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
23239         Replace obsolete function.
23241         * shell.el (pcomplete-parse-arguments-function): Declare.
23243         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
23244         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
23245         (appt-check): Doc fixes.
23246         (appt-disp-window-function, appt-delete-window-function):
23247         Remove needless special case in custom :type.
23248         (appt-display-count): Default to 0, not nil.
23249         (appt-check): Reset appt-display-count to 0, not nil.
23251 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
23253         * progmodes/python.el (python-font-lock-keywords):
23254         Add the Python 3.X keyword "nonlocal" (bug#8639).
23256 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
23258         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
23260 2011-05-16  Kevin Ryde  <user42@zip.com.au>
23262         * info-look.el (makefile-automake-mode): New setups, looking in
23263         automake manual, then makefile-mode.
23264         (makefile-mode): Remove automake manual, have it just in
23265         makefile-automake-mode since there's various things different or
23266         not relevant to plain make.
23267         (makefile-mode): Remove "other-modes" non-existent automake-mode,
23268         believe a hypothetical automake-mode would go to makefile-mode,
23269         not the other way around.
23271 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
23273         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
23274         hunk-end tags (Bug#8672).
23276         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
23277         vc-annotate-show-diff-revision-at-line (Bug#8671).
23279 2011-05-14  Glenn Morris  <rgm@gnu.org>
23281         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
23282         in the middle of an existing one with multiple authors.  (Bug#8645)
23283         (change-log-font-lock-keywords): Also handle multiple author lines
23284         with leading tabs.  (Bug#8644)
23286         * calendar/appt.el (appt-check): Rename some local variables.
23287         Some simplification/reordering.
23289         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
23290         (feedmail-sendmail-f-doesnt-sell-me-out)
23291         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23292         (feedmail-debug-sit-for, feedmail-queue-express-hook)
23293         (feedmail-queue-runner-message-sender): Set :version.
23294         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
23295         (bbdb-dwim-net-address, vm-mail): Declare.
23296         (feedmail-binmail-gnulinuxish-template):
23297         Rename from feedmail-binmail-linuxish-template.
23298         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
23299         Use insert-buffer-substring.
23301 2011-05-14  Bill Carpenter  <bill@carpenter.org>
23303         * mail/feedmail.el (feedmail-patch-level): Increase.
23304         (feedmail-debug): New custom group.
23305         (feedmail-confirm-outgoing-timeout)
23306         (feedmail-sendmail-f-doesnt-sell-me-out)
23307         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23308         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
23309         (feedmail-sender-line, feedmail-from-line)
23310         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
23311         (feedmail-spray-this-address)
23312         (feedmail-spray-address-fiddle-plex-list)
23313         (feedmail-queue-use-send-time-for-date)
23314         (feedmail-queue-use-send-time-for-message-id)
23315         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
23316         (feedmail-buffer-eating-function):
23317         Doc fixes.
23318         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23319         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23320         (feedmail-message-action-scroll-down): New functions.
23321         (feedmail-queue-directory, feedmail-queue-draft-directory):
23322         Use expand-file-name.
23323         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23324         Remove C-v help entry.
23325         (feedmail-queue-buffer-file-name): New variable.
23326         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23327         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23328         (feedmail-message-action-send-strong, feedmail-message-action-edit)
23329         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23330         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23331         (feedmail-message-action-toggle-spray)
23332         (feedmail-run-the-queue-no-prompts)
23333         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23334         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23335         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23336         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23337         (feedmail-envelope-deducer, feedmail-fiddle-from)
23338         (feedmail-fiddle-sender, feedmail-default-date-generator)
23339         (feedmail-fiddle-date, feedmail-fiddle-message-id)
23340         (feedmail-fiddle-spray-address)
23341         (feedmail-fiddle-list-of-spray-fiddle-plexes)
23342         (feedmail-fiddle-list-of-fiddle-plexes)
23343         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23344         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23345         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23346         Change default.  Doc fix.
23347         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23348         (feedmail-binmail-linuxish-template): New constant.
23349         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
23350         Respect feedmail-sendmail-f-doesnt-sell-me-out.
23351         (feedmail-send-it): Add debug call.
23352         Use feedmail-queue-buffer-file-name, and
23353         feedmail-send-it-immediately-wrapper.
23354         (feedmail-message-action-send): Add debug call.
23355         Use feedmail-send-it-immediately-wrapper.
23356         (feedmail-queue-express-to-queue): Add debug call.
23357         Run feedmail-queue-express-hook.
23358         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
23359         (feedmail-message-action-help-blat):
23360         Rename from feedmail-queue-send-edit-prompt-help-first.
23361         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
23362         Check line-endings.  Handle errors better.
23363         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23364         Doc fix.  Add debug call.
23365         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
23366         Use feedmail-queue-send-edit-prompt-inner.
23367         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23368         (feedmail-queue-send-edit-prompt-inner): New function, extracted
23369         from feedmail-queue-send-edit-prompt.
23370         (feedmail-queue-send-edit-prompt-help)
23371         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23372         (feedmail-tidy-up-slug): Add debug call.
23373         Respect feedmail-queue-slug-suspect-regexp.
23374         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23375         (feedmail-dump-message-to-queue): Add debug call.
23376         Expand queue-directory.
23377         (feedmail-dump-message-to-queue): Change message slightly.
23378         Use feedmail-say-chatter.
23379         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
23380         (feedmail-send-it-immediately-wrapper): New function.
23381         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
23382         Insert empty string rather than newline.  Handle full-frame case.
23383         Use catch/throw.  Use feedmail-say-chatter.
23384         (feedmail-fiddle-from): Try mail-host-address.
23385         (feedmail-default-message-id-generator): Doc fix.
23386         Bind system-time-locale.  Handle missing end.
23387         (feedmail-fiddle-x-mailer): Add debug call.
23388         Handle feedmail-x-mailer-line being nil.
23389         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23390         Add debug call.  Use buffer-substring-no-properties.
23391         (feedmail-say-debug, feedmail-say-chatter): New functions.
23392         (feedmail-find-eoh): Give an explicit error.
23394 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
23396         * net/newst-treeview.el (newsticker-treeview-face): Change default
23397         family from helvetica to sans.
23398         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23399         etc/images/newsticker.
23401         * net/newst-reader.el (newsticker-feed-face): Change default
23402         family from helvetica to sans.
23404         * net/newst-plainview.el (newsticker-new-item-face)
23405         (newsticker-old-item-face, newsticker-immortal-item-face)
23406         (newsticker-obsolete-item-face, newsticker-date-face)
23407         (newsticker-statistics-face): Change default family from
23408         helvetica to sans.
23409         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23410         etc/images/newsticker.
23412         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23413         (newsticker--process-auto-mark-filter-match): Tell user about
23414         auto-marking.
23416 2011-05-13  Didier Verna  <didier@xemacs.org>
23418         Common Lisp indentation improvements on defmethod and lambda-lists.
23419         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23420         TODO entries.
23421         (lisp-lambda-list-keyword-parameter-indentation)
23422         (lisp-lambda-list-keyword-parameter-alignment)
23423         (lisp-lambda-list-keyword-alignment): New customizable user options.
23424         (lisp-indent-defun-method): Improve docstring.
23425         (extended-loop-p): Fix comment.
23426         (lisp-indent-lambda-list-keywords-regexp): New variable.
23427         (lisp-indent-lambda-list): New function.
23428         (lisp-indent-259): Use it.
23429         (lisp-indent-defmethod): Support for more than one
23430         method qualifier and properly indent methods lambda-lists.
23431         (defgeneric): Provide a missing common-lisp-indent-function property.
23433 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23435         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23436         bounds for the empty string (bug#8667).
23438 2011-05-13  Glenn Morris  <rgm@gnu.org>
23440         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23442         * mail/sendmail.el (sendmail-program): Try executable-find first.
23443         (sendmail-send-it): `sendmail-program' cannot be unbound.
23445         * calendar/appt.el (appt-make-list): Simplify.
23446         (appt-time-msg-list): Doc fix.
23447         (appt-check): Change mode-line message at the time of the appointment.
23449 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
23451         * progmodes/ld-script.el (ld-script-keywords)
23452         (ld-script-builtins): Update keywords list.
23454 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23456         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23458         * shell.el (shell-completion-vars): New function.
23459         (shell-mode):
23460         * simple.el (read-shell-command): Use it.
23461         (blink-matching-open): No need for " [...]" in minibuffer-message.
23463 2011-05-12  Glenn Morris  <rgm@gnu.org>
23465         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23466         (appt-check): Simplify.
23468 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
23470         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23471         literal "/dev/null".
23473 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23475         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23476         Fix typo.
23478 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
23480         * progmodes/which-func.el (which-function):
23481         Use add-log-current-defun instead of add-log-current-defun-function,
23482         which might not be defined (Bug#8260).
23484 2011-05-12  Glenn Morris  <rgm@gnu.org>
23486         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23487         Let byte-compile-initial-macro-environment always take precedence.
23489 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23491         * net/rcirc.el: Add support for SSL/TLS connections.
23492         (rcirc-server-alist): New field `encryption'.
23493         (rcirc): Check `encryption' settings.
23494         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
23495         Merge make-local-variable into `set'.
23496         (rcirc--connection-open-p): New function.
23497         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23498         the process is not a network process (e.g. running gnutls-cli).
23499         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23500         Make rcirc-(en|de)code-coding-system local here.
23501         (rcirc-mode): Merge make-local-variable into `set'.
23502         (rcirc-parent-buffer): Make permanent buffer-local.
23503         (rcirc-multiline-minor-mode): Don't do it here.
23504         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23505         there's no server buffer.
23507 2011-05-11  Glenn Morris  <rgm@gnu.org>
23509         * newcomment.el (comment-kill): Prefix "unused" local.
23511         * term/w32console.el (get-screen-color): Declare.
23513         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23514         Handle symbol elements of byte-compile-initial-macro-environment.
23516 2011-05-10  Leo Liu  <sdl.web@gmail.com>
23518         * bookmark.el (bookmark-bmenu-mode-map):
23519         Bind bookmark-bmenu-search to `/'.
23521         * mail/footnote.el: Convert to utf-8 encoding.
23522         (footnote-unicode-string, footnote-unicode-regexp): New variable.
23523         (Footnote-unicode): New function.
23524         (footnote-style-alist): Add unicode style to the list.
23525         (footnote-style): Doc fix.
23527 2011-05-10  Jim Meyering  <meyering@redhat.com>
23529         Fix doubled-word typos.
23530         * international/quail.el (quail-insert-kbd-layout): and and -> and
23531         * kermit.el: and and -> and
23532         * net/ldap.el (ldap-search-internal): to to -> to
23533         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23534         * progmodes/js.el (js-mode): and and -> and
23535         * textmodes/artist.el (artist-move-to-xy): at at -> at
23536         (artist-draw-region-trim-line-endings): if if -> if
23537         And Safetyc -> Safety.
23538         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23540 2011-05-10  Glenn Morris  <rgm@gnu.org>
23541             Stefan Monnier  <monnier@iro.umontreal.ca>
23543         * files.el (hack-one-local-variable-eval-safep):
23544         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
23546 2011-05-10  Glenn Morris  <rgm@gnu.org>
23548         * calendar/diary-lib.el (diary-list-entries-hook)
23549         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23550         (diary-nongregorian-marking-hook, diary-list-entries)
23551         (diary-include-other-diary-files, diary-mark-entries)
23552         (diary-mark-included-diary-files): Doc fixes.
23554 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
23556         * misc.el: Require tabulated-list.el during compilation.
23558 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
23560         * progmodes/compile.el (compilation-start):
23561         Run compilation-filter-hook for the async case too.
23562         (compilation-filter-hook): Doc fix.
23564 2011-05-09  Deniz Dogan  <deniz@dogan.se>
23566         * wdired.el: Remove outdated installation comment.  Fix usage
23567         comment.
23569 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
23571         * misc.el: Implement new command `list-dynamic-libraries'.
23572         (list-dynamic-libraries--loaded-only-p): New variable.
23573         (list-dynamic-libraries--refresh): New function.
23574         (list-dynamic-libraries): New command.
23576 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
23578         * progmodes/compile.el (compilation-error-regexp-alist-alist):
23579         Fix the ant regexp to handle end-line and end-column info from jikes.
23580         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
23581         higher priority to avoid clobbering by gnu.
23583 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
23585         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23586         if the face has existing theme settings (Bug#8454).
23588 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
23590         * progmodes/perl-mode.el (perl-imenu-generic-expression):
23591         Only match variables declared via `my' or `our' (Bug#8261).
23593         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23594         special file names `.' and `..' (Bug#8259).
23596 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
23598         * progmodes/grep.el (grep-mode-font-lock-keywords):
23599         Remove buffer-changing entries.
23600         (grep-filter): New function.
23601         (grep-mode): Add it to compilation-filter-hook.
23603         * progmodes/compile.el (compilation-filter-hook)
23604         (compilation-filter-start): New defvars.
23605         (compilation-filter): Call compilation-filter-hook prior to
23606         updating the process mark.
23608 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23610         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23612 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
23614         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23615         mailclient-send-it even if window-system is nil.  (Bug#8595)
23617         * term/w32console.el (terminal-init-w32console):
23618         Call get-screen-color and use its output to set the frame
23619         background-mode.  (Bug#8597)
23621 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23623         Make bytecomp.el understand that defmethod defines funs (bug#8631).
23624         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23625         New functions.
23626         (defgeneric, eieio--defmethod): Use them.
23627         (eieio-defgeneric): Remove.
23628         (defmethod): Call defgeneric in a way visible to the byte-compiler.
23630 2011-05-07  Glenn Morris  <rgm@gnu.org>
23632         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23633         Use let rather than let*.
23634         (timeclock-find-discrep): Remove unused local.
23636         * calendar/diary-lib.el (diary-comment-start): Doc fix.
23638         * calendar/appt.el (appt-time-msg-list): Doc fix.
23640 2011-05-06  Noah Friedman  <friedman@splode.com>
23642         * apropos.el (apropos-print-doc): Only use
23643         emacs-lisp-docstring-fill-column when it is bound to an integer,
23644         per that variable's documentation.
23646 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23648         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23649         and warnings are not silently discarded (e.g. use -d instead of -P).
23651 2011-05-06  Glenn Morris  <rgm@gnu.org>
23653         * calendar/appt.el (appt-message-warning-time): Doc fix.
23654         (appt-warning-time-regexp): New option.
23655         (appt-make-list): Respect appt-message-warning-time.
23657         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23658         New options.
23659         (diary-add-to-list): Strip comments from the displayed string.
23660         (diary-mode): Set comment-start and comment-end.
23662         * vc/diff-mode.el (smerge-refine-subst): Declare.
23663         (diff-refine-hunk): Don't require smerge-mode when compiling.
23665 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
23667         * simple.el (list-processes): Return nil as the docstring says.
23669 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
23671         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23672         to "".
23673         (ange-ftp-write-region, ange-ftp-insert-file-contents)
23674         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23675         determining of binary transfer.  (Bug#7383)
23677 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
23679         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23680         Fix port computation bug.  (Bug#8618)
23682 2011-05-05  Glenn Morris  <rgm@gnu.org>
23684         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23686         * simple.el (shell-dynamic-complete-functions)
23687         (comint-dynamic-complete-functions): Declare.
23689         * net/network-stream.el (gnutls-negotiate):
23690         * simple.el (tabulated-list-print): Fix declarations.
23692         * progmodes/gud.el (syntax-symbol, syntax-point):
23693         Remove unnecessary and incorrect declarations.
23695         * emacs-lisp/check-declare.el (check-declare-scan):
23696         Handle byte-compile-initial-macro-environment in bytecomp.el.
23698 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
23700         Fix earlier half-done eieio-defmethod change (bug#8338).
23701         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23702         Streamline and change calling convention.
23703         (defmethod): Adjust accordingly and simplify.
23704         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23705         new eieio--defmethod.
23706         (slot-boundp): Minor CSE simplification.
23708 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
23710         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23711         (glasses-make-readable): Use glasses-separate-capital-groups.
23713 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
23715         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23716         (warning-series): Doc fix.
23717         (display-warning): Don't try to create the buffer if we just found it.
23719 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
23721         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23722         (autoload-find-generated-file): New function.
23723         (generate-file-autoloads): Bind generated-autoload-file to
23724         buffer-file-name.
23725         (update-file-autoloads, update-directory-autoloads):
23726         Use autoload-find-generated-file.  If called interactively, prompt for
23727         output file (Bug#7989).
23728         (batch-update-autoloads): Doc fix.
23730 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
23732         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23734 2011-05-04  Glenn Morris  <rgm@gnu.org>
23736         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23737         function, so it follows changes in calendar-date-style.
23738         (diary-fancy-date-matcher): New function.
23739         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23740         (diary-fancy-font-lock-fontify-region-function):
23741         Use diary-fancy-date-pattern as a function.
23743         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23744         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
23746 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
23748         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23749         instead of positional arguments.  Allow :keylist and :crlfiles
23750         arguments.
23751         (open-gnutls-stream): Call it.
23753         * net/network-stream.el (network-stream-open-starttls): Adjust to
23754         call `gnutls-negotiate' with :process and :hostname arguments.
23756 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
23758         * minibuffer.el (completion--message): New function.
23759         (completion--do-completion, minibuffer-complete)
23760         (minibuffer-force-complete, minibuffer-complete-word): Use it.
23761         (completion--do-completion): Don't ignore completion-auto-help when in
23762         icomplete-mode.
23764         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23765         internal encoding (e.g. tibetan zero is not whitespace).
23766         (global-whitespace-mode): Prefer save-current-buffer.
23767         (whitespace-trailing-regexp): Remove useless save-match-data.
23768         (whitespace-empty-at-bob-regexp): Minor simplification.
23770 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
23772         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23774 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
23776         * textmodes/ispell.el (ispell-add-per-file-word-list):
23777         Use `concat' to create string for insertion.
23779 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23781         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23782         Avoid open-line which runs post-self-insert-hook.
23783         (bibtex-fill-entry): Remove unused `end' var.
23785 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
23787         * textmodes/ispell.el (ispell-add-per-file-word-list):
23788         Protect against `nil' value of `comment-start' (Bug#8579).
23790 2011-05-03  Leo Liu  <sdl.web@gmail.com>
23792         * isearch.el (isearch-yank-pop): New command.
23793         (isearch-mode-map): Bind it to `M-y'.
23794         (isearch-forward): Mention it.
23796 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23798         * simple.el (minibuffer-complete-shell-command): Remove.
23799         (minibuffer-local-shell-command-map): Use completion-at-point.
23800         (read-shell-command): Setup completion vars here instead.
23801         (read-expression-map): Bind TAB to symbol completion.
23803         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23804         error directly rather via storing it into `results'.
23806 2011-05-02  Leo Liu  <sdl.web@gmail.com>
23808         * vc/diff.el: Fix description.
23810 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23812         * server.el (server-eval-at): New function.
23814 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23816         * net/network-stream.el (open-network-stream): Take a :nowait
23817         parameter and pass it on to `make-network-process'.
23818         (network-stream-open-plain): Ditto.
23820 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
23822         * faces.el (face-spec-set-match-display): Don't match toolkit
23823         options on terminal frames.
23825 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
23827         * progmodes/pascal.el: Use lexical binding.
23828         (pascal-mode-map): Remove author preferences.
23830         * pcomplete.el (pcomplete-std-complete): Don't abuse
23831         completion-at-point.
23833 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
23835         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23836         removing code that has been dead since 1991 or so.
23838         * startup.el (command-line): When warning about "_emacs", use a
23839         delayed warning to allow the user to filter it out.
23841 2011-04-28  Deniz Dogan  <deniz@dogan.se>
23843         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
23844         user has not joined.
23846 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23848         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
23849         aren't any completions at point.
23851 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
23853         * subr.el (display-delayed-warnings): New function.
23854         (delayed-warnings-hook): New variable.
23856 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23858         * minibuffer.el (completion-at-point, completion-help-at-point):
23859         Don't presume that a given completion-at-point-function will always
23860         use the same calling convention.
23862         * pcomplete.el (pcomplete-completions-at-point):
23863         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
23864         pcomplete-seen is non-nil.
23865         (pcomplete-comint-setup): Also recognize the new comint/shell
23866         completion functions.
23867         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
23868         pcomplete-seen is non-nil.
23870 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
23872         * calendar/icalendar.el (diary-lib): Add require statement.
23873         (icalendar--create-uid): Read out a uid from a text-property on
23874         the first character in the entry.  This allows for code to add its
23875         own uid to the entry.
23876         (icalendar--convert-float-to-ical): Add export of
23877         `diary-float'-entries save for those with the optional DAY
23878         argument.
23880 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
23882         * subr.el (shell-quote-argument): Use alternate escaping strategy
23883         when we spot a variable reference in a string.
23885 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
23887         * cus-start.el (all): Define customization for debug-on-event.
23889 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
23891         * subr.el (shell-quote-argument): Escape correctly under Windows.
23893 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23895         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
23897 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
23899         * net/tramp.el (tramp-process-actions): Add POS argument.
23900         Delete region between POS and (pos).
23902         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23903         Use `nil' position in `tramp-process-actions' call.
23904         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
23906         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
23907         position in `tramp-process-actions' call.
23909         * net/trampver.el: Update release number.
23911 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23913         * custom.el (defcustom): Obey lexical-binding.
23915         Fix octave-inf completion problems reported by Alexander Klimov.
23916         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
23917         Inherit from octave-mode-syntax-table.
23918         (inferior-octave-mode): Set info-lookup-mode.
23919         (inferior-octave-completion-at-point): New function.
23920         (inferior-octave-complete): Use it and completion-in-region.
23921         (inferior-octave-dynamic-complete-functions): Use it as well, and use
23922         comint-filename-completion.
23923         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
23924         symbol elements which shouldn't be word elements.
23925         (octave-font-lock-keywords, octave-beginning-of-defun)
23926         (octave-function-header-regexp): Adjust regexps accordingly.
23927         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
23929 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
23931         * net/gnutls.el (gnutls-errorp): Declare before first use.
23933 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
23935         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
23936         verify-error, and verify-hostname-error parameters.  Check whether
23937         default trustfile exists before going to use it.  Add missing
23938         argument to gnutls-message-maybe call.  Return value.
23939         Reported by Claudio Bley <claudio.bley@gmail.com>.
23940         (open-gnutls-stream): Add usage example.
23942         * net/network-stream.el (network-stream-open-starttls): Give host
23943         parameter to `gnutls-negotiate'.
23944         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
23945         * subr.el (shell-quote-argument): Escape correctly under Windows.
23947 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
23949         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
23950         Use correct match group (bug#8438).
23952 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
23954         * emacs-lisp/package.el (package-built-in-p): Fix typo.
23955         (package-menu--generate): New arg specifying packages to show.
23956         (package-menu-refresh, package-menu-execute, list-packages):
23957         Callers changed.
23958         (package-show-package-list): New function, replacing deleted
23959         package--list-packages (renamed because it is non-internal).
23961         * finder.el (finder-list-matches): Use package-show-package-list
23962         instead of deleted package--list-packages.
23964         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
23965         Based on a previous implementation by Juanma Barranquero (Bug#8366).
23966         (vc-annotate-mode-map): Bind it to RET.
23968 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
23970         * progmodes/etags.el (next-file): Don't use set-buffer to change
23971         buffers (Bug#8478).
23973 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
23975         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
23977         * apropos.el (apropos-label-face): Avoid variable-pitch face.
23978         (apropos-accumulator): Doc fix.
23979         (apropos-function, apropos-macro, apropos-command)
23980         (apropos-variable, apropos-face, apropos-group, apropos-widget)
23981         (apropos-plist): Add face property.
23982         (apropos-symbols-internal): Fix indentation.
23983         (apropos-print): Simplify help, and recognize apropos-multi-type.
23984         (apropos-print-doc): Use button-type-get to extract the button's
23985         face property.  Fill docstring (Bug#8352).
23987 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
23989         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
23991         * play/mpuz.el (mpuz-silent): Doc fix.
23992         (mpuz-mode-map): Use mapc.
23993         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
23994         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
23995         Fix typos in docstrings.
23997         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
23998         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
24000         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
24002 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
24004         * minibuffer.el (completion--do-completion): Avoid the "Next char
24005         not unique" prompt if icomplete-mode is enabled (Bug#5849).
24007         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
24008         mouse-2 into unread-command-events, it is interpreted correctly.
24010         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
24011         (image-toggle-display): Doc fix.
24013 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
24015         * textmodes/page.el (what-page): Use line-number-at-pos to
24016         calculate line number (Bug#6825).
24018 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
24020         * eshell/esh-mode.el (find-tag-interactive): Declare function.
24021         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
24022         Pass argument NO-DEFAULT to `find-tag-interactive'.
24024 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
24026         Lexical-binding cleanup.
24028         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
24029         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
24030         * progmodes/ada-prj.el (ada-prj-initialize-values)
24031         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
24032         (ada-prj-show-value):
24033         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
24034         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
24035         (antlr-invalidate-context-cache, antlr-options-menu-filter)
24036         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
24037         * progmodes/bug-reference.el (bug-reference-push-button):
24038         * progmodes/fortran.el (fortran-line-length):
24039         * progmodes/glasses.el (glasses-change):
24040         * progmodes/octave-mod.el (octave-fill-paragraph):
24041         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
24042         (python-pdbtrack-grub-for-buffer, python-sentinel):
24043         * progmodes/sql.el (sql-save-connection):
24044         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
24045         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
24046         Mark unused parameters.
24048         * progmodes/compile.el (compilation--flush-directory-cache)
24049         (compilation--flush-parse, compile-internal): Mark unused parameters.
24050         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
24051         (compilation-next-error-function): Remove unused variable `timestamp'.
24053         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
24054         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
24056         * progmodes/dcl-mode.el (dcl-end-of-command):
24057         Remove unused variable `start'.
24058         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
24059         (dcl-option-value-basic, dcl-option-value-offset)
24060         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
24061         Mark unused parameters.
24062         (dcl-save-local-variable): Remove unused variable `val'.
24063         (mode): Declare.
24065         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
24066         Mark unused parameters.
24067         (delphi-ignore-changes): Move before first use.
24068         (delphi-charset-token-at): Remove unused variable `start'.
24069         (delphi-else-start): Remove unused variable `if-count'.
24070         (delphi-comment-block-start, delphi-comment-block-end):
24071         Remove unused variable `kind'.
24072         (delphi-indent-line): Remove unused variable `new-point'.
24074         * progmodes/ebrowse.el (ebrowse-files-list)
24075         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
24076         Mark unused parameters.  Don't quote `lambda'.
24077         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
24078         Don't quote `lambda'.
24079         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
24080         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
24081         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
24082         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
24083         Use `ignore-errors'.
24084         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
24085         (ebrowse-view/find-file-and-search-pattern)
24086         (ebrowse-view/find-member-declaration/definition):
24087         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
24088         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
24089         Rename parameter PREFIX-ARG to PREFIX.
24090         (ebrowse-tags-read-name): Remove unused variables `start' and
24091         `member-info'.
24092         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
24093         to `tags-file'.
24095         * progmodes/etags.el (local-find-tag-hook): Declare.
24096         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
24097         Mark unused parameters.
24099         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
24100         (executable-interpret): Mark unused parameter.
24102         * progmodes/flymake.el (flymake-process-sentinel)
24103         (flymake-after-change-function)
24104         (flymake-create-temp-with-folder-structure)
24105         (flymake-get-include-dirs-dot): Mark unused parameters.
24106         (flymake-safe-delete-directory): Remove unused variable `err'.
24108         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
24109         (speedbar-timer-fn, speedbar-line-text)
24110         (speedbar-change-expand-button-char, speedbar-delete-subblock)
24111         (speedbar-center-buffer-smartly): Declare functions.
24112         (gdb-find-watch-expression): Remove unused variable `array'.
24113         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
24114         (gdb-starting): Mark unused parameters.
24115         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
24116         (gdb-table-string): Remove unused variable `res'.
24117         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
24118         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
24119         (gdb-display-buffer): Remove unused variable `cur-size'.
24121         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
24122         allow lexical-binding compilation.
24123         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
24124         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
24125         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
24126         Mark unused parameters.
24127         (gud-gdb-marker-filter): Remove unused variable `match'.
24128         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
24129         lambda expressions and funcall them, instead of using `fset'.
24131         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
24132         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
24134         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
24135         variable `header-beg'; use `let'.
24137         * progmodes/icon.el (indent-icon-exp): Remove unused variables
24138         `restart', `last-sexp' and `at-do'.
24140         * progmodes/js.el (js--debug): Mark unused parameter.
24141         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
24142         (js--splice-into-items): Remove unused variable `item'.
24143         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
24145         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
24146         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
24147         (makefile-complete): Remove unused variable `try'.
24148         (makefile-fill-paragraph, makefile-match-function-end):
24149         Mark unused parameters.
24151         * progmodes/octave-inf.el (inferior-octave-complete):
24152         Remove unused variable `proc'.
24153         (inferior-octave-output-digest): Mark unused parameter.
24155         * progmodes/perl-mode.el (perl-calculate-indent):
24156         Remove unused variable `err'.
24158         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
24159         (prolog-indent-line): Mark unused parameters.
24160         (prolog-indent-line): Remove unused variable `beg'.
24162         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
24163         (reporter-dont-compact-list): Declare.
24165         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
24166         Remove unused variable `char'.
24167         (sh-debug): Mark unused parameter.
24168         (sh-get-indent-info): Remove unused variable `start'.
24169         (sh-calculate-indent): Remove unused variable `var'.
24171         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
24172         (simula-electric-keyword): Remove unused variable `null'.
24173         (simula-search-backward, simula-search-forward): Remove unused
24174         variables `begin' and `end'.
24176         * progmodes/vera-mode.el (vera-guess-basic-syntax):
24177         Remove unused variable `pos'.
24178         (vera-electric-tab, vera-comment-uncomment-region):
24179         Mark unused parameters.
24180         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
24182 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
24184         * emacs-lisp/package.el (package--builtins, package-alist)
24185         (package-load-descriptor, package-built-in-p, package-activate)
24186         (define-package, package-installed-p)
24187         (package-compute-transaction, package-buffer-info)
24188         (package--push): Doc fix.  Distinguish more clearly between
24189         version strings and version lists.
24191 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
24193         Lexical-binding cleanup.
24195         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
24196         (5x5-make-mutate-best):
24197         * play/fortune.el (fortune-in-buffer):
24198         * play/gomoku.el (gomoku-init-display):
24199         * play/solitaire.el (solitaire, solitaire-do-check):
24200         * play/tetris.el (tetris-default-update-speed-function):
24201         Mark unused parameters.
24203         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
24204         (bubbles--shift): Remove unused variable `char-org'.
24205         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
24206         (bubbles--show-images): Remove unused variable `char'.
24208         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
24209         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
24210         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
24211         (decipher-analyze-buffer): Use ?\s.
24212         (decipher-make-checkpoint): Remove unused variable `mapping'.
24214         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
24216         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
24217         Remove unused variable `result'; use `let'.
24219         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
24220         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
24221         (gametree-children-shown-p, gametree-compute-reduced-score):
24222         Use `ignore-errors'.
24224         * play/handwrite.el (ps-lpr-switches): Declare.
24225         (handwrite): Remove unused variables `pmin' and `lastp'.
24227         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
24229         * play/landmark.el (landmark-init-display)
24230         (landmark-update-naught-weights): Mark unused parameters.
24231         (landmark-y): Remove unused variable `noise'.  Simplify.
24232         (landmark-human-plays): Remove unused variable `score'.
24234         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
24235         (mpuz-try-proposal): Remove unused variable `game'.
24237         * play/zone.el (life-patterns): Declare.
24239 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
24241         * vc/vc.el (ediff-vc-internal): Declare function.
24243 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24245         * shell.el: Use lexical-binding and std completion UI.
24246         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
24247         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
24248         comint-preoutput-filter-functions rather than on
24249         comint-output-filter-functions.
24250         (shell-command-completion, shell--command-completion-data)
24251         (shell-filename-completion, shell-environment-variable-completion)
24252         (shell-c-a-p-replace-by-expanded-directory): New functions.
24253         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
24254         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
24255         (shell-dynamic-complete-environment-variable): Use them.
24256         (shell-dynamic-complete-as-environment-variable)
24257         (shell-dynamic-complete-as-command): Remove.
24258         (shell-match-partial-variable): Match past point.
24259         * comint.el: Clean up use of completion-at-point-functions.
24260         (comint-completion-at-point): New function.
24261         (comint-mode): Use it completion-at-point-functions.
24262         (comint-dynamic-complete): Make it obsolete.
24263         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
24264         (comint-c-a-p-replace-by-expanded-history): New function.
24265         (comint-dynamic-complete-functions)
24266         (comint-replace-by-expanded-history): Use it.
24267         * minibuffer.el (completion-table-with-terminator): Allow dynamic
24268         termination strings.  Try harder to avoid second try-completion.
24269         (completion-in-region-mode-map): Disable bindings that don't work yet.
24271         * comint.el: Use lexical-binding.  Require CL.
24272         (comint-dynamic-complete-functions): Use comint-filename-completion.
24273         (comint-completion-addsuffix): Tweak custom type.
24274         (comint-filename-completion, comint--common-suffix)
24275         (comint--common-quoted-suffix, comint--table-subvert)
24276         (comint--complete-file-name-data): New functions.
24277         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
24278         (comint-dynamic-list-filename-completions): Use them.
24279         (comint-dynamic-simple-complete): Make obsolete.
24281         * minibuffer.el (completion-in-region-mode):
24282         Keep completion-in-region-mode--predicate global.
24283         (completion-in-region--postch):
24284         Assume completion-in-region-mode--predicate is not null.
24286         * progmodes/flymake.el (flymake-start-syntax-check-process):
24287         Obey `dir'.  Simplify.
24289         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
24290         we're in VC after all.
24292 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
24294         * vc/vc.el (vc-diff-build-argument-list-internal)
24295         (vc-version-ediff, vc-ediff): New commands.
24296         (vc-version-diff): Use vc-diff-build-argument-list-internal.
24298 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24300         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
24301         add sanity check.
24303         * obsolete/erc-hecomplete.el: Make obsolete.
24304         * obsolete/: Standardize obsolescence info in the header.
24306 2011-04-20  Glenn Morris  <rgm@gnu.org>
24308         * calendar/solar.el (solar-horizontal-coordinates):
24309         Use the longitude argument rather than `calendar-longitude'.
24310         (solar-date-next-longitude): Remove unused locals.
24312 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24314         * whitespace.el: New version 13.2.1.
24316 2011-04-20  felix  <EmacsWiki>  (tiny change)
24318         * whitespace.el (global-whitespace-mode): Keep highlight when
24319         switching between major modes on a file.
24321 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
24323         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24324         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24325         multi-line comments as well.
24327 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
24329         Lexical-binding cleanup.
24331         * arc-mode.el (archive-mode-revert):
24332         * cmuscheme.el (scheme-interactively-start-process):
24333         * custom.el (custom-initialize-delay):
24334         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24335         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24336         * emacs-lock.el (emacs-lock-clear-sentinel):
24337         * ezimage.el (defezimage):
24338         * follow.el (follow-avoid-tail-recenter):
24339         * fringe.el (set-fringe-mode-1):
24340         * generic-x.el (bat-generic-mode-compile):
24341         * help-mode.el (help-info-variable, help-do-xref)
24342         (help-mode-revert-buffer):
24343         * help.el (view-emacs-todo):
24344         * iswitchb.el (iswitchb-completion-help):
24345         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24346         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24347         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24348         * locate.el (locate-update):
24349         * longlines.el (longlines-encode-region)
24350         (longlines-after-change-function):
24351         * outline.el (outline-isearch-open-invisible):
24352         * ps-def.el (declare-function, charset-dimension, char-width)
24353         (encode-char):
24354         * ps-mule.el (ps-mule-plot-string):
24355         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24356         (recentf-edit-list-select, recentf-edit-list-validate)
24357         (recentf-open-files-action):
24358         * rect.el (delete-whitespace-rectangle-line)
24359         (rectangle-number-line-callback):
24360         * register.el (window-configuration-to-register)
24361         (frame-configuration-to-register):
24362         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24363         * select.el (xselect-convert-to-string, xselect-convert-to-length)
24364         (xselect-convert-to-targets, xselect-convert-to-delete)
24365         (xselect-convert-to-filename, xselect-convert-to-charpos)
24366         (xselect-convert-to-lineno, xselect-convert-to-colno)
24367         (xselect-convert-to-os, xselect-convert-to-host)
24368         (xselect-convert-to-user, xselect-convert-to-class)
24369         (xselect-convert-to-name, xselect-convert-to-integer)
24370         (xselect-convert-to-atom, xselect-convert-to-identity):
24371         * subr.el (declare, ignore, process-kill-without-query)
24372         (text-clone-maintain):
24373         * terminal.el (te-get-char, te-tic-sentinel):
24374         * tool-bar.el (tool-bar-make-keymap):
24375         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24376         * type-break.el (type-break-mode, type-break-noninteractive-query):
24377         * view.el (View-back-to-mark):
24378         * wid-browse.el (widget-browse-action, widget-browse-widget)
24379         (widget-browse-widgets, widget-browse-sexp):
24380         * widget.el (define-widget-keywords):
24381         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24382         Mark unused parameters.
24384         * align.el (align-adjust-col-for-rule): Mark unused parameter.
24385         (align-areas): Remove unused variable `look'.
24386         (align-region): Remove unused variables `real-end' and `pos-list'.
24388         * apropos.el (apropos-score-doc): Remove unused variable `i'.
24390         * bindings.el (mode-line-modified, mode-line-remote):
24391         Mark unused parameters.
24392         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24394         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24395         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24397         * comint.el (comint-history-isearch-pop-state)
24398         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24399         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24400         (comint-substitute-in-file-name): Doc fix.
24402         * completion.el (cmpl-statistics-block): Mark unused parameter.
24403         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24404         (save-completions-to-file, load-completions-from-file):
24405         Remove unused local variable `e'.
24407         * composite.el (compose-chars): Remove unused variable `len'.
24408         (lgstring-insert-glyph): Remove unused variable `g'.
24409         (compose-glyph-string): Remove unused variables `ascent',
24410         `descent', `lbearing' and `rbearing'.
24411         (compose-glyph-string-relative): Remove unused variables
24412         `lbearing', `rbearing' and `wadjust'.
24413         (compose-gstring-for-graphic): Remove unused variables `header',
24414         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
24415         (compose-gstring-for-terminal): Remove unused variables `header'
24416         and `nchars'.  Use `let', not `let*'.
24418         * cus-edit.el (Custom-set, Custom-save, custom-reset)
24419         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24420         (Custom-buffer-done, custom-buffer-create-internal)
24421         (custom-browse-visibility-action, custom-browse-group-tag-action)
24422         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24423         (widget-magic-mouse-down-action, custom-toggle-parent)
24424         (custom-add-parent-links, custom-toggle-hide-variable)
24425         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24426         (custom-toggle-hide-face, face, hook, custom-group-link-action)
24427         (custom-face-menu-create, custom-variable-menu-create, get)
24428         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24429         (custom-reset-standard-save-and-update): Remove unused variable `value'.
24430         (customize-apropos): Remove unused variable `tests'.
24431         (custom-group-value-create): Remove unused variable `hidden-p'.
24432         (sort-fold-case): Declare.
24434         * cus-theme.el (custom-reset-standard-faces-list)
24435         (custom-reset-standard-variables-list): Declare.
24436         (customize-create-theme, custom-theme-revert, custom-theme-write)
24437         (custom-theme-choose-mode, customize-themes, custom-theme-save):
24438         Mark unused parameters.
24440         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24442         * delim-col.el (delimit-columns-max): Move defvar before first use.
24444         * descr-text.el (describe-char-categories): Don't quote `lambda'.
24445         (describe-char): Don't quote `lambda'.  Mark unused parameter.
24447         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24448         (auto-insert): Declare.
24449         (desktop-restore-file-buffer): Rename desktop-* parameters;
24450         mark unused ones.
24451         (desktop-create-buffer): Rename desktop-* parameters and bind them.
24452         (desktop-buffer): Rename desktop-* parameters.
24454         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24455         (dframe-reposition-frame-xemacs, dframe-help-echo)
24456         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24457         Mark unused parameters.
24459         * dired-aux.el (backup-extract-version-start, overwrite-query)
24460         (overwrite-backup-query, rename-regexp-query)
24461         (rename-non-directory-query): Declare.
24462         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24463         (dired-add-entry): Remove unused variable `orig-file-name'.
24464         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24465         Use parameter PRESERVE-TIME instead of accessing dynamic variable
24466         `dired-copy-preserve-time' directly.
24467         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24468         (dired-insert-subdir-newpos): Rename unused variable `pos'.
24470         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24471         (dired-virtual-revert, dired-make-relative-symlink):
24472         Mark unused parameters.
24473         (manual-program): Declare.
24474         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24475         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24476         wrapped in `with-no-warnings' to avoid replacing one warning by another.
24478         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24480         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24482         * echistory.el (electric-history-in-progress, Helper-return-blurb):
24483         Declare.
24485         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24487         * electric.el (Electric-command-loop): Rename parameter
24488         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24490         * expand.el (expand-in-literal): Remove unused variable `here'.
24492         * facemenu.el (facemenu-add-new-color):
24493         Remove unused variable `docstring'.
24495         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24496         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24497         (face-attr-construct): Mark unused parameter.  Doc fix.
24498         (read-color): Remove unused variable `hex-string'.
24500         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24501         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24502         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24503         (display-buffer-other-frame): Remove unused variable `old-window'.
24504         (kill-buffer-hook): Declare.
24505         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24506         Mark unused parameters.
24507         (after-find-file): Pass 1 to `auto-save-mode', not t.
24509         * files-x.el (auto-insert): Declare.
24510         (modify-file-local-variable-prop-line): Remove unused variable `val'.
24512         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24513         variable `buf'.  Mark unused parameter.
24514         (find-lisp-insert-directory): Mark unused parameter.
24516         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24517         (format-encode-region): Remove unused variables `cur-buf' and `result'.
24518         (format-common-tail): Remove, unused.
24519         (format-deannotate-region): Remove unused variable `loc'.
24520         (format-annotate-region): Remove unused variable `p'.
24521         (format-annotate-single-property-change): Remove unused variables
24522         `default' and `tail'.
24524         * forms.el (read-file-filter): Declare.
24525         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24527         * frame.el (frame-creation-function-alist): Mark unused parameter.
24528         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24530         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24531         Remove unused parameters.
24532         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24533         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24535         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24536         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24537         (hfy-prepare-tag-map): Mark unused parameters.
24538         (htmlfontify-buffer): Use `called-interactively-p'.
24540         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24541         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24542         (ibuffer-do-occur): Mark unused parameters.
24543         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24544         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24546         * ibuffer.el: Don't quote `lambda'.
24547         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24548         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24549         Mark unused parameters.
24551         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24552         (ido-completing-read): Mark unused parameters.
24553         (ido-copy-current-word): Mark unused parameters;
24554         remove unused variable `name'.
24555         (ido-sort-merged-list): Remove unused parameter `dirs'.
24557         * ielm.el (ielm-input-sender): Mark unused parameter.
24558         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24559         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24560         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24561         `ielm-string' as a dynamic variable accessible from the IELM prompt.
24562         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
24564         * image-dired.el (image-dired-display-thumbs): Remove unused
24565         variables `curr-file' and `count'.
24566         (image-dired-remove-tag): Remove unused variable `start'.
24567         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24568         variable `curr-file'
24569         (image-dired-rotate-original): Remove unused variable `temp-file'.
24570         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24571         Remove unused variable `file'.
24572         (image-dired-gallery-generate): Remove unused variable `curr'.
24573         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24575         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24577         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24579         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24581         * isearch.el (minibuffer-history-symbol): Declare.
24582         (isearch-edit-string): Remove unused variable `err'.
24583         (isearch-message-prefix, isearch-message-suffix):
24584         Mark unused parameters.
24586         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24588         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24590         * makesum.el (double-column): Remove unused variable `cnt'.
24592         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24593         (ido-ignore-item-temp-list): Declare.
24595         * mouse-drag.el (mouse-drag-throw): Remove unused variables
24596         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24597         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24598         (mouse-drag-drag): Remove unused variables `mouse-delta' and
24599         `mouse-col-delta'.
24601         * mouse-sel.el (mouse-extend-internal):
24602         Remove unused variable `orig-window-frame'.
24604         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24605         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24606         Move declarations before first use.
24607         (pcomplete-opt): Mark unused parameters; doc fix.
24609         * proced.el (proced-revert): Mark unused parameter.
24610         (proced-send-signal): Remove unused variable `err'.
24612         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24613         Rename parameter PREFIX-ARG to ARG.
24614         (ps-basic-plot-string, ps-basic-plot-whitespace):
24615         Mark unused parameters.
24617         * replace.el (replace-count): Define.
24618         (occur-revert-function): Mark unused parameters.
24619         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24620         (isearch-case-fold-search, isearch-string): Declare.
24621         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24622         bind `case-fold-search'.  Remove unused variables `beg' and `end',
24623         and simplify.
24624         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24625         COUNT and bind `replace-count'.
24626         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24627         to COUNT.
24629         * savehist.el (print-readably, print-string-length): Declare.
24631         * shadowfile.el (shadow-expand-cluster-in-file-name):
24632         Remove unused variable `cluster'.
24633         (shadow-copy-file): Remove unused variable `i'.
24634         (shadow-noquery, shadow-clusters, shadow-site-cluster)
24635         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24636         (shadow-define-literal-group, shadow-define-regexp-group)
24637         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24639         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24640         (shell): Use `called-interactively-p'.
24641         (shell-directory-tracker): Remove unused variable `chdir-failure'.
24643         * simple.el (compilation-context-lines, comint-file-name-quote-list)
24644         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24645         (delete-backward-char): Remove unused variable `ocol'.
24646         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24647         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24648         (event-apply-hyper-modifier, event-apply-shift-modifier)
24649         (event-apply-control-modifier, event-apply-meta-modifier):
24650         Mark unused parameters.
24651         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24652         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24654         * speedbar.el (speedbar-ignored-directory-expressions)
24655         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24656         (speedbar-find-file, speedbar-dir-follow)
24657         (speedbar-directory-buttons-follow, speedbar-tag-find)
24658         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24659         (speedbar-buffers-line-directory, speedbar-buffer-click):
24660         Mark unused parameters.
24661         (speedbar-tag-file): Remove unused variable `mode'.
24662         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24664         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24666         * talk.el (talk): Remove unused variable `display'.
24668         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24669         (tar-write-region-annotate): Mark unused parameter.
24671         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24672         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24673         Declare them, wrapped in `with-no-warnings' to avoid replacing one
24674         warning by another.
24676         * time-stamp.el (time-stamp-string-preprocess):
24677         Remove unused variable `require-padding'.
24679         * tree-widget.el (widget-glyph-enable): Declare.
24680         (tree-widget-action): Mark unused parameter.
24682         * w32-fns.el (x-get-selection): Mark unused parameter.
24683         (autoload-make-program, generated-autoload-file): Declare.
24685         * wdired.el (wdired-revert): Mark unused parameters.
24686         (wdired-xcase-word): Remove unused variable `err'.
24688         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24689         (whitespace-help-scroll): Remove unused variable `data-help'.
24691         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24692         (widget-image-insert, widget-after-change, default)
24693         (widget-default-format-handler, widget-default-notify)
24694         (widget-default-prompt-value, widget-info-link-action)
24695         (widget-url-link-action, widget-function-link-action)
24696         (widget-variable-link-action, widget-file-link-action)
24697         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24698         (widget-field-prompt-internal, widget-field-action, widget-field-match)
24699         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24700         (widget-insert-button-action, widget-delete-button-action, visibility)
24701         (widget-documentation-link-action, widget-documentation-string-action)
24702         (widget-const-prompt-value, widget-regexp-match, symbol)
24703         (widget-coding-system-prompt-value)
24704         (widget-key-sequence-value-to-external, sexp)
24705         (widget-sexp-value-to-internal, character, vector, cons)
24706         (widget-choice-prompt-value, widget-boolean-prompt-value)
24707         (widget-color--choose-action): Mark unused parameters.
24708         (widget-item-match-inline, widget-choice-match-inline)
24709         (widget-checklist-match, widget-checklist-match-inline)
24710         (widget-group-match): Rename parameter VALUES to VALS.
24711         (widget-field-value-set): Remove unused variable `size'.
24712         (widget-color-action): Remove unused variables `value' and `start'.
24714         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24715         variable `dir'.  Doc fix.
24716         (windmove-find-other-window): Don't pass it.
24718         * window.el (count-windows): Mark unused parameter.
24719         (bw-adjust-window): Remove unused variable `err'.
24721         * woman.el (woman-file-name): Remove unused variable `default'.
24722         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24723         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24724         (global-font-lock-mode): Declare.
24725         (woman-decode-region): Mark unused parameter.
24726         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24728         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24729         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24730         (x-dnd-handle-moz-url): Remove unused variable `title'.
24731         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24733         * xml.el (xml-parse-tag, xml-parse-attlist):
24734         Remove unused variable `pos'.
24736 2011-04-19  Glenn Morris  <rgm@gnu.org>
24738         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24739         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24740         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24741         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24742         * calendar/cal-html.el (cal-html-insert-minical):
24743         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24744         (calendar-mark-date-pattern):
24745         Prefix "unused" locals.
24747         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24748         optional argument `style'.
24750         * calendar/appt.el (appt-make-list):
24751         * calendar/cal-china.el (calendar-chinese-date-string):
24752         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24753         (diary-hebrew-yahrzeit):
24754         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24755         * calendar/calendar.el (calendar-generate-window):
24756         * calendar/time-date.el (time-to-days):
24757         Remove unused local variables.
24759 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
24761         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24762         glyphless-char-display table.
24763         (tabulated-list-glyphless-char-display): New var.
24765 2011-04-18  Sam Steingold  <sds@gnu.org>
24767         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24768         to acknowledgments.
24770 2011-04-17  Glenn Morris  <rgm@gnu.org>
24772         * calendar/diary-lib.el (diary-sexp-entry):
24773         * calendar/holidays.el (holiday-sexp):
24774         Set debug-on-error rather than the removed stack-trace-on-error.
24776 2011-04-16  Glenn Morris  <rgm@gnu.org>
24778         * progmodes/f90.el: Use lexical-binding.
24779         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24781 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24783         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24784         (mail-mode): Setup mailalias completion here instead.
24785         * mail/mailalias.el: Use lexical-binding.
24786         (pattern, mailalias-done): Declare dynamic.
24787         (mail-completion-at-point-function): New function, from mail-complete.
24788         (mail-complete): Use it.
24789         (mail-completion-expand): New function.
24790         (mail-get-names): Use it.
24791         (mail-directory, mail-directory-process, mail-directory-stream):
24792         Don't use `pattern' for lexically bound arg.
24794         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24796         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24797         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24798         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24800         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24801         (byte-save-window-excursion, byte-temp-output-buffer-setup)
24802         (byte-interactive-p): Define them again, for use when inlining
24803         old code.
24805 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
24807         * loadup.el: Use `string-to-number', not `string-to-int'.
24809 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24811         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24812         gud-gdb-complete-command.
24813         (gud-gdb-completions): New function, from gud-gdb-complete-command.
24814         (gud-gdb-completion-at-point): New function.
24815         (gud-gdb-completions): Remove.
24817 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
24819         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24820         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
24821         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24822         whether `executable-find' is bound.
24824         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24826 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
24828         * minibuffer.el (completion-in-region-mode-predicate)
24829         (completion-in-region-mode--predicate): New vars.
24830         (completion-in-region, completion-in-region--postch)
24831         (completion-in-region-mode): Use them.
24832         (completion--capf-wrapper): Also return the hook function.
24833         (completion-at-point, completion-help-at-point):
24834         Adjust and provide a predicate.
24836         Preserve arg names for advice of subr and lexical functions (bug#8457).
24837         * help-fns.el (help-function-arglist): Consolidate the subr and
24838         new-byte-code cases.  Add argument `preserve-names' to extract names
24839         from the docstring when needed.
24840         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
24841         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
24842         (ad-arglist): Use help-function-arglist's new arg.
24843         (ad-definition-type): Use cond.
24845 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
24847         * autorevert.el (auto-revert-handler):
24848         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
24849         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
24850         Don't quote lambda.
24852         * image-mode.el (image-transform-set-scale):
24853         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
24855 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24857         * net/network-stream.el (network-stream-open-starttls): Only do
24858         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
24859         Upgrades via gnutls-cli are too slow to be done opportunistically.
24861 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
24863         * dframe.el (dframe-current-frame): Remove spurious quote.
24865 2011-04-12  Glenn Morris  <rgm@gnu.org>
24867         * calendar/cal-tex.el (cal-tex-end-document):
24868         Try to automatically use latin1 input if needed.
24870         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
24871         Don't try to cons a mark onto an empty element.
24873 2011-04-11  Leo Liu  <sdl.web@gmail.com>
24875         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
24876         buffers.
24877         (ido-kill-buffer-at-head): Support killing virtual buffers.
24879 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
24881         * minibuffer.el (completion-show-inline-help): New var.
24882         (completion--do-completion, minibuffer-complete)
24883         (minibuffer-force-complete, minibuffer-complete-word):
24884         Inhibit minibuffer messages if completion-show-inline-help is nil.
24886         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
24887         to avoid interference from inline help (Bug#5849).
24889 2011-04-10  Leo Liu  <sdl.web@gmail.com>
24891         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
24892         Fix typo.
24894 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
24896         * image-mode.el (image-toggle-display-image): Signal an error if
24897         not in Image mode.
24898         (image-transform-mode, image-transform-resize)
24899         (image-transform-set-rotation): Doc fix.
24900         (image-transform-set-resize): Delete.
24901         (image-transform-set-scale, image-transform-fit-to-height)
24902         (image-transform-fit-to-width): Handle image-toggle-display-image
24903         and image-transform-resize directly.
24905 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
24907         * doc-view.el (doc-view-fit-width-to-window)
24908         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
24909         New functions for fitting the shown image to the Emacs window size.
24910         (doc-view-mode-map): Add bindings for the new functions.
24912 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
24914         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
24915         Fix typo in docstring.
24917 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
24919         * files.el (file-size-human-readable): Produce one digit after
24920         decimal, like "ls -lh" does.
24922         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
24923         the file size representation.
24925         * simple.el (list-processes): If async subprocesses are not
24926         available, error out with a clear error message.
24928 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
24930         * help.el (help-form-show): New function, to be called from C.
24931         Put help-form output in a buffer named differently than *Help*.
24933 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
24935         * files.el (file-size-human-readable): New function.
24937         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
24938         computing the representation inline.  Don't require `cl'.
24940 2011-04-08  Glenn Morris  <rgm@gnu.org>
24942         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
24944         * net/browse-url.el (browse-url-firefox):
24945         Test system-type, not system-configuration.
24947         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
24948         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
24949         Use log-edit-empty-buffer-p.  (Bug#7598)
24951         * net/rlogin.el (rlogin-process-connection-type): Simplify.
24952         (rlogin-mode-map): Initialize in the defvar.
24953         (rlogin): Use ignore-errors.
24955         * replace.el (occur-mode-map): Some fixes for menu items.
24957 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
24959         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
24961 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
24963         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
24964         issuing unused warnings.
24966         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
24967         macro directly.
24969         * simple.el: Lisp reimplement of list-processes.  Based on an
24970         earlier reimplementation by Leo Liu, but using tabulated-list.el.
24971         (process-menu-mode): New major mode.
24972         (list-processes--refresh, list-processes):
24973         (process-menu-visit-buffer): New functions.
24975         * files.el (save-buffers-kill-emacs): Don't assume any return
24976         value of list-processes, which is undocumented anyway.
24978 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
24980         * emacs-lisp/tabulated-list.el: New file.
24982         * emacs-lisp/package.el: Use Tabulated List mode.
24983         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
24984         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
24985         table format using Tabulated List mode variables.
24986         (package--push): New macro, replacing package-list-maybe-add.
24987         (package-menu--generate): Use package--push.  Renamed from
24988         package--generate-package-list.
24989         (package-menu-refresh, list-packages): Use it.
24990         (package-menu--print-info): Rename from package-print-package.
24991         Return insertion data instead of inserting it directly.
24992         (package-menu-describe-package, package-menu-execute):
24993         Use tabulated-list-get-id.
24994         (package-menu-mark-delete, package-menu-mark-install)
24995         (package-menu-mark-unmark, package-menu-backup-unmark)
24996         (package-menu-mark-obsolete-for-deletion):
24997         Use tabulated-list-put-tag.
24998         (package--list-packages, package-menu-revert)
24999         (package-menu-get-package, package-menu-get-version)
25000         (package-menu-sort-by-column): Functions deleted.
25001         (package-menu-package-list, package-menu-sort-key): Vars deleted.
25002         (package-menu--status-predicate, package-menu--version-predicate)
25003         (package-menu--name-predicate)
25004         (package-menu--description-predicate): Handle arguments in the
25005         Tabulated List format.
25006         (package-list-packages-no-fetch): Call list-packages.
25008 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
25010         * files.el (after-find-file-from-revert-buffer): Remove variable.
25011         (after-find-file): Don't bind it.
25012         (revert-buffer-in-progress-p): New variable.
25013         (revert-buffer): Bind it.
25014         Pass nil for `after-find-file-from-revert-buffer'.
25016         * saveplace.el (save-place-find-file-hook): Use new variable
25017         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
25019 2011-04-06  Glenn Morris  <rgm@gnu.org>
25021         * Makefile.in (AUTOGEN_VCS): New variable.
25022         (autoloads): Use $AUTOGEN_VCS.
25024         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
25025         * calendar/calendar.el (calendar-mode-map):
25026         Check for toolkit scroll bars.  (Bug#8305)
25028 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
25030         * minibuffer.el (completion-in-region--postch)
25031         (completion-in-region-mode): Remove unnecessary messages.
25033 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
25035         * font-lock.el (font-lock-refresh-defaults):
25036         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
25037         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
25039         * info.el (Info-directory-list, Info-read-node-name-2)
25040         (Info-split-parameter-string): Doc fixes.
25041         (Info-virtual-nodes): Reflow docstring.
25042         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
25043         (Info-apropos-toc-nodes, info-finder, Info-get-token)
25044         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
25045         Fix typos in docstrings.
25046         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
25047         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
25048         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
25049         (Info-restore-desktop-buffer): Mark unused parameters.
25050         (Info-directory-find-file, Info-directory-find-node)
25051         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
25052         (Info-virtual-index-find-node, Info-apropos-find-file)
25053         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
25054         Mark unused parameters; fix typos in docstrings.
25055         (Info-virtual-index): Remove unused local variable `nodename'.
25057 2011-04-05  Deniz Dogan  <deniz@dogan.se>
25059         * net/rcirc.el: Update my e-mail address.
25060         (rcirc-mode-map): Remove M-o binding.
25062 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
25064         * startup.el (command-line): Save the cursor's theme-face
25065         directly, instead of using face-override-spec.
25067         * custom.el (load-theme): Minor optimization in assigning faces.
25069 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
25071         * help-fns.el (describe-variable): Complete all variables having
25072         documentation, including keywords.
25073         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
25075 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
25077         Convert to lexical-binding.
25079         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
25080         (bs--get-marked-string, bs--get-modified-string)
25081         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
25082         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
25083         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
25085         * ehelp.el (electric-help-execute-extended)
25086         (electric-help-ctrl-x-prefix):
25087         * hexl.el (hexl-revert-buffer-function):
25088         * linum.el (linum-after-change, linum-after-scroll):
25089         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
25091         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
25093 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
25095         * epa-dired.el:
25096         * epa-mail.el:
25097         * epa-hook.el:
25098         * epa-file.el:
25099         * epa.el:
25100         * epg.el: Use lexical binding.
25102 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
25104         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
25106         * textmodes/flyspell.el (flyspell-word): Recognize default
25107         dictionary case for flyspell-mark-duplications-exceptions.
25108         Use regexp matching for languages.
25109         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
25110         default dictionary (Bug#7926).
25112 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
25114         * emacs-lisp/package.el (package--with-work-buffer):
25115         Recognize https URLs.
25117         * net/network-stream.el: Move from gnus/proto-stream.el.
25118         Change prefix to network-stream throughout.
25119         (open-protocol-stream): Merge into open-network-stream, leaving
25120         open-protocol-stream as an alias.  Handle nil BUFFER args.
25122         * subr.el (open-network-stream): Move to net/network-stream.el.
25124 2011-04-02  Glenn Morris  <rgm@gnu.org>
25126         * find-dired.el (find-exec-terminator): New option.
25127         (find-ls-option): Test for -ls support.
25128         (find-ls-subdir-switches): Test for -b in find-ls-option.
25129         (find-dired, find-grep-dired): Doc fixes.
25130         (find-dired): Use find-exec-terminator.
25132         * find-dired.el (find-ls-option, find-ls-subdir-switches)
25133         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
25134         (find-name-arg): Remove purecopy.
25136         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
25137         (grep-compute-defaults): Check for `-exec COMMAND +' support.
25138         Set grep-find-use-xargs, grep-find-command, and grep-find-template
25139         accordingly.  Don't add the null-device if not needed.
25141         * files.el (save-some-buffers): Doc fix.
25143 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
25145         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
25147 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
25149         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
25150         Use `dolist' rather than `mapcar'.
25152 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
25154         Add lexical binding.
25156         * subr.el (apply-partially): Use new closures rather than CL.
25157         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
25158         (dolist, dotimes): Use slightly different expansion for lexical code.
25159         (functionp): Move to C.
25160         (letrec): New macro.
25161         (with-wrapper-hook): Use it and apply-partially instead of CL.
25162         (eval-after-load): Preserve lexical-binding.
25163         (save-window-excursion, with-output-to-temp-buffer): Turn them
25164         into macros.
25166         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
25168         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
25169         than the arglist.
25170         (help-add-fundoc-usage): Don't add `Not documented'.
25171         (help-function-arglist): Handle closures, subroutines, and new
25172         byte-code-functions.
25173         (help-make-usage): Remove leading underscores.
25174         (describe-function-1): Handle closures.
25175         (describe-variable): Use special-variable-p for completion.
25177         * files.el (lexical-binding): Declare safe.
25179         * emacs-lisp/pcase.el: Don't use destructuring-bind.
25180         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
25181         (pcase): Add `let' pattern.
25182         Change memoization so it actually works.
25183         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
25184         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
25185         <let>: New case.
25187         * emacs-lisp/macroexp.el: Use lexical binding.
25188         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
25189         Don't convert ' to #' without checking that it's indeed quoting
25190         a lambda.
25192         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
25193         Use eval-sexp-add-defvars.
25194         (eval-sexp-add-defvars): New fun.
25196         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
25198         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
25199         Don't autoload.
25200         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
25201         than the internal `byte-compile-lambda'.
25202         (defmethod): Don't hide code under quotes.
25203         (eieio-defmethod): New `code' argument.
25205         * emacs-lisp/eieio-comp.el: Remove.
25207         * emacs-lisp/edebug.el (edebug-eval-defun)
25208         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
25209         (edebug-toggle): Avoid `eval'.
25211         * emacs-lisp/disass.el (disassemble-internal): Handle new
25212         `closure' objects.
25213         (disassemble-1): Handle new byte codes.
25215         * emacs-lisp/cl.el (pushnew): Silence warning.
25217         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
25218         (cl-byte-compile-throw): Remove.
25219         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
25221         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
25222         closures.
25224         * emacs-lisp/cconv.el: New file.
25226         * emacs-lisp/bytecomp.el: Use lexical binding instead of
25227         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
25228         (byte-compile-initial-macro-environment):
25229         Handle declare-function here.
25230         (byte-compile--lexical-environment): New var.
25231         (byte-stack-ref, byte-stack-set, byte-discardN)
25232         (byte-discardN-preserve-tos): New lap codes.
25233         (byte-interactive-p): Don't use any more.
25234         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
25235         New macros.
25236         (byte-compile-lapcode): Use them and handle new lap codes.
25237         (byte-compile-obsolete): Remove.
25238         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
25239         (byte-compile-arglist-warn): Check late def of inlinable funs.
25240         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
25241         since they should have been expanded by now.
25242         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
25243         (byte-compile-from-buffer): Remove unused second arg.
25244         (byte-compile-preprocess): New function.
25245         (byte-compile-toplevel-file-form): New function to distinguish
25246         file-form calls from outside from file-form calls from hunk-handlers.
25247         (byte-compile-file-form): Simplify.
25248         (byte-compile-file-form-defsubst): Remove.
25249         (byte-compile-file-form-defmumble): Simplify now that
25250         byte-compile-lambda always returns a byte-code-function.
25251         (byte-compile): Preprocess.
25252         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
25253         Remove, not used any more.
25254         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
25255         (byte-compile-make-args-desc): New funs.
25256         (byte-compile-lambda): Handle lexical functions.  Always return
25257         a byte-code-function.
25258         (byte-compile-reserved-constants): New var, to make up room for
25259         closed-over variables.
25260         (byte-compile-constants-vector): Obey it.
25261         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
25262         (byte-compile-macroexpand-declare-function): New function.
25263         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
25264         byte-code-functions.
25265         (byte-compile-form): Check obsolescence here.
25266         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
25267         (byte-compile-variable-ref): Remove.
25268         (byte-compile-dynamic-variable-op): New fun.
25269         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25270         (byte-compile-variable-set): New funs.
25271         (byte-compile-discard): Add 2 args.
25272         (byte-compile-stack-ref, byte-compile-stack-set)
25273         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
25274         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
25275         macroexpand-all instead.
25276         (byte-compile-quote-form): Remove.
25277         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
25278         (byte-compile-bind, byte-compile-unbind): New funs.
25279         (byte-compile-let): Handle let* and lexical binding.
25280         (byte-compile-let*): Remove.
25281         (byte-compile-catch, byte-compile-unwind-protect)
25282         (byte-compile-track-mouse, byte-compile-condition-case):
25283         Handle a new :fun-body form, used for lexical scoping.
25284         (byte-compile-save-window-excursion)
25285         (byte-compile-with-output-to-temp-buffer): Remove.
25286         (byte-compile-defun): Simplify.
25287         (byte-compile-stack-adjustment): New fun.
25288         (byte-compile-out): Use it.
25289         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
25291         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
25292         handler any more.
25294         * emacs-lisp/byte-opt.el: Use lexical binding.
25295         (byte-inline-lapcode): Remove (to bytecomp).
25296         (byte-compile-inline-expand): Pay attention to inlining to/from
25297         lexically bound code.
25298         (byte-compile-unfold-lambda): Don't handle byte-code-functions
25299         any more.
25300         (byte-optimize-form-code-walker): Don't handle save-window-excursion
25301         any more and don't call compiler-macros.
25302         (byte-compile-splice-in-already-compiled-code): Remove.
25303         (byte-code): Don't inline any more.
25304         (disassemble-offset): Receive `bytes' as argument rather than via
25305         dynamic scoping.
25306         (byte-compile-tag-number): Declare before first use.
25307         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
25308         `return' even if make-spliceable.
25309         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
25310         obsolete interactive-p.
25311         (byte-optimize-lapcode): Optimize new lap-codes.
25312         Don't trip up on new form of `byte-constant' lap code.
25314         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
25316         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25318         * custom.el (custom-initialize-default, custom-declare-variable):
25319         Use `defvar'.
25321         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25322         New variables.
25323         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25324         (COMPILE_FIRST): Add macroexp and cconv.
25325         * makefile.w32-in: Mirror changes in Makefile.in.
25327         * vc/cvs-status.el:
25328         * vc/diff-mode.el:
25329         * vc/log-edit.el:
25330         * vc/log-view.el:
25331         * vc/smerge-mode.el:
25332         * textmodes/bibtex-style.el:
25333         * textmodes/css-mode.el:
25334         * startup.el:
25335         * uniquify.el:
25336         * minibuffer.el:
25337         * newcomment.el:
25338         * reveal.el:
25339         * server.el:
25340         * mpc.el:
25341         * emacs-lisp/smie.el:
25342         * doc-view.el:
25343         * dired.el:
25344         * abbrev.el: Use lexical binding.
25346 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
25348         * info.el (info-display-manual): New function.
25350 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
25352         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25354 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
25356         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25357         an entry for that server in rcirc-authinfo.  (Bug#8385)
25359 2011-03-31  Glenn Morris  <rgm@gnu.org>
25361         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25363         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25365 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
25367         * progmodes/python.el (python-default-interpreter)
25368         (python-python-command-args, python-jython-command-args)
25369         (python-which-shell, python-which-args, python-which-bufname)
25370         (python-file-queue, python-comint-output-filter-function)
25371         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25372         variables and functions.
25374 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
25376         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25377         (completion-in-region-mode): New minor mode.
25378         (completion-in-region): Use it.
25379         (completion-in-region--data, completion-in-region-mode-map): New vars.
25380         (completion-in-region--postch): New function.
25381         (completion--capf-misbehave-funs, completion--capf-safe-funs):
25382         New vars.
25383         (completion--capf-wrapper): New function.
25384         (completion-at-point): Use it to track well-behavedness of
25385         hook functions.
25386         (completion-help-at-point): New command.
25388 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
25390         * vc/add-log.el (add-change-log-entry): Don't use whitespace
25391         syntax class to search for whitespace on a single line
25392         (Message-ID: <4D938140.4030905@redhat.com>).
25394 2011-03-30  Leo Liu  <sdl.web@gmail.com>
25396         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25397         New commands.
25398         (edit-abbrevs-map): Bind them here.
25399         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
25401 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
25403         * allout.el (allout-hide-by-annotation, allout-flag-region):
25404         Reduce possibility of overlay leakage by making them volatile.
25406         * allout-widgets.el (allout-widgets-tally): Define as nil so the
25407         hash is not shared between buffers.  Mode initialization is
25408         responsible for giving it a useful starting value.
25409         (allout-item-span): Reduce possibility of overlay leakage by
25410         making them volatile.
25411         (allout-widgets-count-buttons-in-region): Add diagnostic function
25412         for tracking down button overlay leaks.
25414 2011-03-29  Leo Liu  <sdl.web@gmail.com>
25416         * ido.el (ido-read-internal): Use the default history var
25417         minibuffer-history if no HISTORY is specified.
25419 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
25421         * net/imap.el (imap-shell-open, imap-process-connection-type):
25422         Use imap-process-connection-type for 'shell' streams as well as
25423         Kerberos, SSL, other subprocesses.
25425 2011-03-28  Leo Liu  <sdl.web@gmail.com>
25427         * abbrev.el (abbrev-table-empty-p): New function.
25428         (prepare-abbrev-list-buffer): Place empty abbrev tables after
25429         nonempty ones.  (Bug#5937)
25431 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
25433         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25435 2011-03-27  Leo Liu  <sdl.web@gmail.com>
25437         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25438         for foreground and background colors.
25439         (ansi-color-make-color-map): Adapt.
25441 2011-03-25  Leo Liu  <sdl.web@gmail.com>
25443         * midnight.el (midnight-time-float): Remove.  Note it calculates
25444         the microsecond component incorrectly and seconds-to-time does the
25445         same job.
25446         Remove redundant (require 'timer).
25448         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25449         (ido-completions): Remove unused arguments.  (Bug#8329)
25451 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
25453         * minibuffer.el (completion--flush-all-sorted-completions):
25454         Remove itself from hook.
25455         (completion-at-point): Let the functions perform the completion
25456         immediately and return nil or t.
25457         * comint.el (comint-dynamic-complete-functions): Now identical to
25458         completion-at-point-functions.
25459         (comint-dynamic-list-input-ring): Remove unused var `index'.
25460         (comint--match-partial-filename, comint--unquote&expand-filename):
25461         New funs, split from comint-match-partial-filename.
25462         (comint-dynamic-complete): Use completion-at-point.
25463         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25465 2011-03-24  Drew Adams  <drew.adams@oracle.com>
25467         * thingatpt.el: Support `defun'.
25469 2011-03-23  Leo Liu  <sdl.web@gmail.com>
25471         * abbrevlist.el: Move to obsolete/abbrevlist.el.
25473         * help-mode.el (help-mode-finish): Tweak regexp.
25475 2011-03-23  Glenn Morris  <rgm@gnu.org>
25477         * eshell/esh-opt.el (eshell-eval-using-options):
25478         Do not bind unused local variable `eshell-option-stub'.
25480         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25482 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
25484         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25485         keymap variable in `with-no-warnings' to avoid a warning when the
25486         keymap has been already `defconst'ed.
25488 2011-03-22  Leo Liu  <sdl.web@gmail.com>
25490         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25491         encode all chars in abbrevs; otherwise use emacs-mule or
25492         utf-8-emacs.  (Bug#8308)
25494 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
25496         * simple.el (backward-delete-char-untabify):
25497         Avoid warning about using `delete-backward-char'.
25499         * image.el (image-type-file-name-regexps): Make it variable.
25500         `imagemagick-register-types' modifies it, and the user may want
25501         to add new extensions for known image types.
25502         (imagemagick-register-types): Throw error if not using ImageMagick.
25504 2011-03-22  Leo Liu  <sdl.web@gmail.com>
25506         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25507         located before rcirc-prompt-end-marker.
25508         (rcirc-complete): Error if point is not after rcirc prompt.
25509         Handle the case when table is nil.
25510         (rcirc-user-authenticated): Define to fix compiler warning.
25512 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
25514         * custom.el (custom--inhibit-theme-enable): Make it affect only
25515         custom-theme-set-variables and custom-theme-set-faces.
25516         (provide-theme): Ignore custom--inhibit-theme-enable.
25517         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25518         (custom-enabling-themes): Delete variable.
25519         (enable-theme): Accept only loaded themes as arguments.
25520         Ignore the special custom-enabled-themes variable.
25521         (custom-enabled-themes): Forbid themes from setting this.
25522         Eliminate use of custom-enabling-themes.
25523         (custom-push-theme): Quote "changed" custom var entry.
25525 2011-03-21  Leo Liu  <sdl.web@gmail.com>
25527         * ido.el (ido-read-internal): Add ido-selected to history instead
25528         of user input.
25530 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
25532         * subr.el (deferred-action-list, deferred-action-function):
25533         Mark obsolete.
25535 2011-03-21  Leo Liu  <sdl.web@gmail.com>
25537         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25538         change on 2011-02-13 (bug#8309).
25540         * minibuffer.el (read-file-name-function): Change default value.
25541         (read-file-name--defaults): Rename from read-file-name-defaults.
25542         (read-file-name-default): Rename from read-file-name.
25543         (read-file-name): Call read-file-name-function.
25545 2011-03-21  Glenn Morris  <rgm@gnu.org>
25547         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25548         Doc fixes.
25550 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
25552         * cus-theme.el: Add missing provide statement.
25553         (customize-create-theme): Extract theme value correctly.
25554         (custom-theme-visit-theme): Autoload.
25555         (customize-create-theme): Prompt before inserting default faces.
25557 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
25559         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25560         units and musical notes.
25562 2011-03-20  Leo Liu  <sdl.web@gmail.com>
25564         * ido.el (ido-read-internal): Use completing-read-default.
25565         (ido-completing-read): Fix compatibility with completing-read.
25567 2011-03-20  Christian Ohler  <ohler@gnu.org>
25569         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25570         (ert-delete-all-tests): Use `called-interactively-p' rather than
25571         `interactive-p'.
25572         (ert--make-xrefs-region): Respect END.
25574 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
25576         * dired-aux.el (dired-create-directory): Signal an error if the
25577         directory already exists (Bug#8246).
25579         * facemenu.el (list-colors-display): Call list-faces-display
25580         inside with-help-window.
25581         (list-colors-print): Use display property to align the final
25582         column, instead of checking window-width.
25584 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
25586         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25587         windows-nt systems.
25588         (emerge-protect-metachars): Quote correctly for ms-dos and
25589         windows-nt systems.
25591 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
25593         * info.el (info-initialize): Replace all uses of `:' with
25594         path-separator for compatibility with non-Unix systems.
25595         Cache quoting of path-separator.  (Bug#8258)
25597 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
25599         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25600         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25601         (mouse-avoidance-mode): Fix typos in docstrings.
25603 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
25605         * startup.el (package-subdirectory-regexp): Move from package.el.
25606         Omit \\` and \\', and let callers add them.
25608         * emacs-lisp/package.el (package-strip-version)
25609         (package-load-all-descriptors): Add \\` and \\' to
25610         package-subdirectory-regexp before using it.
25611         (package-untar-buffer): New arg DIR; ensure that file untars only
25612         into this expected directory.  Remove superfluous delete-region.
25613         (package-unpack): Caller changed.
25614         (package-tar-file-info): Use package-subdirectory-regexp.
25616 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
25618         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25619         diff-mode-shared-map (bug#8284).
25620         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25622 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25624         * calendar/time-date.el (format-seconds): Use assoc instead of
25625         assoc-string, since assoc-string doesn't exist in XEmacs.
25627 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
25629         * custom.el (custom-known-themes): Reflow docstring.
25630         (custom-theme-load-path): Fix typo in docstring.
25631         (load-theme): Fix typo in error message.
25632         (custom-available-themes, custom-variable-theme-value):
25633         Use `let', not `let*'.
25635 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
25637         * calc/README: Mention inclusion of musical notes.
25639         * calc/calc-units.el (calc-lu-quant): Rename from
25640         `calc-logunits-quantity'.
25641         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25642         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25643         (calc-db): Rename from `calc-dblevel'.
25644         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25645         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25646         (calc-np): Rename from `calc-nplevel'.
25647         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25648         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25649         (calc-lu-plus): Rename from `calc-logunits-add'.
25650         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25651         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25652         (calc-lu-minus): Rename from `calc-logunits-sub'.
25653         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25654         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25655         (calc-lu-times): Rename from `calc-logunits-mul'.
25656         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25657         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25658         (calc-lu-divide): Rename from `calc-logunits-div'.
25659         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25660         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25662         * calc/calc-ext.el (calc-init-extensions): Update the names of the
25663         functions being autoloaded.
25665         * calc/calc.el (calc-lu-power-reference): Rename from
25666         `calc-logunits-power-reference'.
25667         (calc-lu-field-reference): Rename from
25668         `calc-logunits-field-reference'.
25670         * calc/calc-help.el (calc-l-prefix-help):
25671         Mention musical note functions.
25673 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
25675         * minibuffer.el (completion-all-sorted-completions):
25676         Use :completion-cycle-penalty text property if present.
25678 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
25680         * allout.el (allout-yank-processing): Adjust for new rebulleting
25681         regime so bullet being yanked is used without prompting the user
25682         for a choice.
25684 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
25686         * startup.el (command-line): Warn the user that _emacs is deprecated.
25688 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
25690         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25691         (delphi-verbose, delphi-comment-face, delphi-string-face)
25692         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25693         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25694         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25695         (delphi-new-comment-line, delphi-font-lock-defaults)
25696         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25697         Fix typos in docstrings.
25699 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
25701         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25702         Invert the roles of character and string values for INSTEAD, so a
25703         string is used for the more common case of a defaulting prompt.
25705 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25707         * progmodes/ruby-mode.el (ruby-backward-sexp):
25708         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25709         * play/gamegrid.el (gamegrid-make-face):
25710         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25711         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25712         * notifications.el (notifications-notify):
25713         * net/xesam.el (xesam-search-engines):
25714         * net/quickurl.el (quickurl-list-insert):
25715         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25717 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
25719         * startup.el (command-line): Update package subdirectory regexp.
25721 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25723         * allout.el (allout-abbreviate-flattened-numbering)
25724         (allout-mode-deactivate-hook): Fix up obsolescence "date".
25726         * subr.el (read-char-choice): Only show the cursor after the prompt,
25727         not after the answer.
25729 2011-03-15  Kevin Ryde  <user42@zip.com.au>
25731         * help-fns.el (variable-at-point): Skip leading quotes, if any
25732         (bug#8253).
25734 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25736         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25737         warning message.
25739 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
25741         * shell.el (shell): When called interactively, offer to change the
25742         shell file name on remote hosts.
25744 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
25746         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25747         integration for LDAP parameters.  The host, base, user or binddn,
25748         and secret tokens can be specified in a netrc file, for instance.
25749         This is optional because an `auth-source' parameter must be
25750         specified in the search attributes.
25752 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
25754         * help.el (describe-mode): Link to the mode's definition (bug#8185).
25756 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
25758         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25759         into declaration.  Remove redundant and harmful binding.
25761 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
25763         * files.el (file-ownership-preserved-p): Pass `integer' as an
25764         explicit 2nd argument to `file-attributes'.  If the file's owner
25765         is the Administrators group on Windows, and the current user is
25766         Administrator, consider that a match.
25768         * server.el (server-ensure-safe-dir): Consider server directory
25769         safe on MS-Windows if its owner is the Administrators group while
25770         the current Emacs user is Administrator.  Use `=' to compare
25771         numerical UIDs, since they could be integers or floats.
25773 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
25775         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25777 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
25779         Sync with Tramp 2.2.1.
25781         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25783         * net/trampver.el: Update release number.
25785 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
25787         * progmodes/compile.el (compilation--previous-directory): Fix up
25788         various nil/dead-marker mismatches (bug#8014).
25789         (compilation-directory-properties, compilation-error-properties):
25790         Don't call it at a position past the one we're about to change.
25792         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25793         Disable obsolescence warnings in the file that declares it.
25795 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
25797         * allout-widgets.el (allout-widgets-tally):
25798         Initialize allout-widgets-tally as a hash table rather than nil to
25799         prevent mode-line redisplay warnings.  Also, clarify the module
25800         description and fix a comment typo.
25802 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
25804         * help-fns.el (describe-variable): Don't complete keywords.
25805         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25807 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
25809         * emacs-lisp/package.el (package-version-join): Impose a standard
25810         string representation for pre/alpha/beta version lists.
25811         (package-unpack-single): Standardize the directory name by passing
25812         it through package-version-join.
25813         (package-strip-rcs-id): Accept any version string that does not
25814         signal an error in version-to-list.
25816 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
25818         * simple.el (delete-trailing-whitespace): Return nil for the
25819         benefit of `write-file-functions'.
25821 2011-03-10  Glenn Morris  <rgm@gnu.org>
25823         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25825         * vc/vc-git.el (vc-git-program): New option.
25826         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25827         (vc-git--call): Use it.
25829         * eshell/esh-util.el (eshell-condition-case): Doc fix.
25831         * cus-edit.el (Custom-newline): If no button at point, look
25832         for a subgroup button at start-of-line.  (Bug#2298)
25834         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25836 2011-03-10  Julien Danjou  <julien@danjou.info>
25838         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
25839         `cursor-type' is nil.
25841 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
25843         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
25845 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
25847         * allout.el: Change so yank of distinctive-bullet items
25848         preserves the existing header prefix, rebulleting it if necessary,
25849         rather than replacing it.  This is necessary for proper operation
25850         of cooperative addons like allout-widgets.
25851         (allout-make-topic-prefix, allout-rebullet-heading):
25852         Change SOLICIT arg to INSTEAD, and interpret additionally a string
25853         value as alternate bullet to be used, instead of prompting the user
25854         for a bullet character.
25856 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
25858         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
25859         Do not use `tramp-file-name-port', because this returns also
25860         `tramp-default-port'.
25862 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
25864         * net/rcirc.el (rcirc-handler-001): Remove useless
25865         with-rcirc-process-buffer.
25866         (rcirc-check-auth-status): Swap arguments to string-match.
25868 2011-03-09  Glenn Morris  <rgm@gnu.org>
25870         * shell.el (shell-mode):
25871         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
25873         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
25874         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
25876 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
25878         * emacs-lisp/package.el (package-refresh-contents)
25879         (package-menu-execute): Use condition-case-no-debug.
25881 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
25883         * simple.el (shell-command-to-string): Use `process-file'.
25885         * emacs-lisp/package.el (package-tar-file-info): Handle also
25886         remote files.
25888         * emacs-lisp/package-x.el (package-upload-buffer-internal):
25889         Use `equal' for upload base check.
25891 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
25893         * textmodes/texinfo.el (texinfo-environments):
25894         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
25896 2011-03-08  Glenn Morris  <rgm@gnu.org>
25898         * cus-start.el (cursor-in-non-selected-windows):
25899         Fix :set quoting oddness.  (Bug#8192)
25901         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
25902         in some setf expressions.  (Bug#2159)
25904 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
25906         * custom.el (custom-available-themes): Return themes in
25907         alphabetical order.
25909 See ChangeLog.15 for earlier changes.
25911 ;; Local Variables:
25912 ;; coding: utf-8
25913 ;; End:
25915   Copyright (C) 2011-2013 Free Software Foundation, Inc.
25917   This file is part of GNU Emacs.
25919   GNU Emacs is free software: you can redistribute it and/or modify
25920   it under the terms of the GNU General Public License as published by
25921   the Free Software Foundation, either version 3 of the License, or
25922   (at your option) any later version.
25924   GNU Emacs is distributed in the hope that it will be useful,
25925   but WITHOUT ANY WARRANTY; without even the implied warranty of
25926   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25927   GNU General Public License for more details.
25929   You should have received a copy of the GNU General Public License
25930   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.