Make `split-window' a non-interactive function.
[emacs.git] / lisp / ChangeLog
blob9f31cd8228b7f92c9df1a1caa4480eed0f082a53
1 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
3         * window.el (split-window): Remove interactive form, since as a
4         command this function is a special case of split-window-below.
5         Correct doc string.
7 2013-04-12  Roland Winkler  <winkler@gnu.org>
9         * faces.el (read-face-name): Do not override value of arg default.
10         Allow single faces and strings as default values.  Remove those
11         elements from return value that are not faces.
12         (describe-face): Simplify.
13         (face-at-point): New optional args thing and multiple so that this
14         function can provide the same functionality previously provided by
15         read-face-name.
16         (make-face-bold, make-face-unbold, make-face-italic)
17         (make-face-unitalic, make-face-bold-italic, invert-face)
18         (modify-face, read-face-and-attribute): Use face-at-point.
20         * cus-edit.el (customize-face, customize-face-other-window)
21         * cus-theme.el (custom-theme-add-face)
22         * face-remap.el (buffer-face-set)
23         * facemenu.el (facemenu-set-face): Use face-at-point.
25 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
27         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
29 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
31         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
32         off leading { and trailing } from field values.
34 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
36         * emacs-lisp/timer.el (timer--check): New function.
37         (timer--time, timer-set-function, timer-event-handler): Use it.
38         (timer-set-idle-time): Simplify.
39         (timer--activate): CSE.
40         (timer-event-handler): Give more info in error message.
41         (internal-timer-start-idle): New function, moved from C.
43         * mpc.el (mpc-proc): Add `restart' argument.
44         (mpc-proc-cmd): Use it.
45         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
46         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
47         less often.
49 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
51         * progmodes/sh-script.el: Implement `sh-mode' own
52         `add-log-current-defun-function' (bug#14112).
53         (sh-current-defun-name): New function.
54         (sh-mode): Use the function.
56 2013-04-09  Bastien Guerry  <bzg@gnu.org>
58         * simple.el (choose-completion-string): Fix docstring (bug#14163).
60 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
62         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
64         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
65         timer (bug#14156).
67 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
69         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
70         declaration.
72 2013-04-07  Leo Liu  <sdl.web@gmail.com>
74         * pcmpl-x.el: New file.
76 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
78         Do not set x-display-name until X connection is established.
79         This is needed to prevent from weird situation described at
80         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
81         * frame.el (make-frame): Set x-display-name after call to
82         window system initialization function, not before.
83         * term/x-win.el (x-initialize-window-system): Add optional
84         display argument and use it.
85         * term/w32-win.el (w32-initialize-window-system):
86         * term/ns-win.el (ns-initialize-window-system):
87         * term/pc-win.el (msdos-initialize-window-system):
88         Add compatible optional display argument.
90 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
92         * files.el (normal-backup-enable-predicate): On MS-Windows and
93         MS-DOS compare truenames of temporary-file-directory and of the
94         file, so that 8+3 aliases (usually found in $TEMP on Windows)
95         don't fail comparison by compare-strings.  Also, compare file
96         names case-insensitively on MS-Windows and MS-DOS.
98 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
100         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
101         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
103 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
105         * whitespace.el (whitespace-color-on, whitespace-color-off):
106         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
108 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl> (tiny change)
110         * ispell.el (ispell-set-spellchecker-params):
111         Really set `ispell-args' for all equivs.
113 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
115         * ido.el (ido-completions): Use extra elements of ido-decorations
116         (bug#14143).
117         (ido-decorations): Update docstring.
119 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
121         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
122         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
123         nil during initialization, in order not to miss changes since the
124         file was opened.  (Bug#14140)
126 2013-04-05  Leo Liu  <sdl.web@gmail.com>
128         * kmacro.el (kmacro-call-macro): Fix bug#14135.
130 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
132         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
134 2013-04-04  Glenn Morris  <rgm@gnu.org>
136         * electric.el (electric-pair-inhibit-predicate): Add :version.
138 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
140         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
141         when a package is required several times (bug#14082).
143 2013-04-04  Roland Winkler  <winkler@gnu.org>
145         * faces.el (read-face-name): Behave as promised by the docstring.
146         Assume that arg default is a list of faces.
147         (describe-face): Call read-face-name with list of default faces.
149 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
151         * bookmark.el: Fix deletion of bookmarks (bug#13972).
152         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
153         (bookmark-bmenu-execute-deletions): Only skip first line if it's
154         the header.
155         (bookmark-exit-hook-internal): Save even if list is empty.
157 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
159         * emacs-lisp/package.el (package-pinned-packages): New var.
160         (package--add-to-archive-contents): Obey it (bug#14118).
162 2013-04-03  Alan Mackenzie  <acm@muc.de>
164         Handle `parse-partial-sexp' landing inside a comment opener
165         (Bug#13244). Also adapt to the new values of element 7 of a parse
166         state.
168         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
169         parameter `not-in-delimiter'.  Handle being inside comment opener.
170         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
171         character in case we're typing a '*' after a '/'.
172         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
173         instead by passing the parameter to c-state-pp-to-literal.
175         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
176         for elt. 7 of a parse state.
178 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
180         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
181         * international/latin1-disp.el, international/mule-util.el:
182         * language/cyril-util.el, language/european.el, language/ind-util.el:
183         * language/lao-util.el, language/thai.el, language/tibet-util.el:
184         * language/tibetan.el, language/viet-util.el:
185         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
187 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
189         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
190         (electric-pair-post-self-insert-function): Use it.
191         (electric-pair-default-inhibit): New function, extracted from
192         electric-pair-post-self-insert-function.
194 2013-03-31  Roland Winkler  <winkler@gnu.org>
196         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
198 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
200         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
202 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
204         Un-indent after "pass" and "return" statements (Bug#13888)
205         * progmodes/python.el (python-indent-block-enders): New var.
206         (python-indent-calculate-indentation): Use it.
208 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
210         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
211         defun.  Defining it as defalias could introduce too eager
212         byte-compiler optimization.  (Bug#14030)
214 2013-03-30  Chong Yidong  <cyd@gnu.org>
216         * iswitchb.el (iswitchb-read-buffer): Fix typo.
218 2013-03-30  Leo Liu  <sdl.web@gmail.com>
220         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
221         (kmacro-execute-from-register): Pass the keyboard macro to
222         kmacro-call-macro or repeating won't work correctly.
224 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
226         * progmodes/subword.el: Back to using `forward-symbol'.
228         * subr.el (forward-whitespace, forward-symbol)
229         (forward-same-syntax): Move from thingatpt.el.
231 2013-03-29  Leo Liu  <sdl.web@gmail.com>
233         * kmacro.el (kmacro-to-register): New command.
234         (kmacro-execute-from-register): New function.
235         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
237 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
239         * mpc.el: Use defvar-local and setq-local.
240         (mpc--proc-connect): Connection failures are not bugs.
241         (mpc-mode-map): `follow-link' only applies to the buffer's content.
242         (mpc-volume-map): Bind to the up-events.
244 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
246         * progmodes/subword.el (superword-mode): Use `forward-sexp'
247         instead of `forward-symbol'.
249 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
251         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
252         (edebug--recursive-edit): Use it.
253         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
254         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
256 2013-03-28  Leo Liu  <sdl.web@gmail.com>
258         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
260 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
262         * facemenu.el (list-colors-callback): New defvar.
263         (list-colors-redisplay): New function.
264         (list-colors-display): Install list-colors-redisplay as the
265         revert-buffer-function.  (Bug#14063)
267 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
269         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
270         and suffixes don't overlap (bug#14061).
272         * case-table.el: Use lexical-binding.
273         (case-table-get-table): New function.
274         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
276 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
278         * progmodes/subword.el: Add `superword-mode' to do word motion
279         over symbol_words (parallels and leverages `subword-mode' which
280         does word motion inside MixedCaseWords).
282 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
284         * eshell/em-unix.el: Move su and sudo to...
285         * eshell/em-tramp.el: ...Eshell tramp module
287 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
289         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
290         Change return value to be a sexp.  Delay `get-buffer' to after
291         restoring the desktop (bug#13951).
293 2013-03-26  Leo Liu  <sdl.web@gmail.com>
295         * register.el: Move semantic tag handling back to
296         cedet/semantic/senator.el.  (Bug#14052)
298 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
300         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
301         into the prompt either (bug#13963).
303 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
305         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
306         part of "(error-foo)".
308 2013-03-24  Juri Linkov  <juri@jurta.org>
310         * replace.el (list-matching-lines-prefix-face): New defcustom.
311         (occur-1): Pass `list-matching-lines-prefix-face' to the function
312         `occur-engine' if `face-differs-from-default-p' returns t.
313         (occur-engine): Add `,' inside backquote construct to evaluate
314         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
315         Pass `prefix-face' to the functions `occur-context-lines' and
316         `occur-engine-add-prefix'.
317         (occur-engine-add-prefix, occur-context-lines): Add optional arg
318         `prefix-face' and propertize the prefix with `prefix-face'.
319         (Bug#14017)
321 2013-03-24  Leo Liu  <sdl.web@gmail.com>
323         * nxml/rng-valid.el (rng-validate-while-idle)
324         (rng-validate-quick-while-idle): Guard against deleted buffer.
325         (Bug#13999)
327         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
328         is the last entry in kill-buffer-hook.
330         * files.el (kill-buffer-hook): Doc fix.
332 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
334         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
335         Make it safe-local.
337         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
339 2013-03-23  Leo Liu  <sdl.web@gmail.com>
341         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
342         Remove.
344         * nxml/rng-valid.el (rng-validate-mode)
345         (rng-after-change-function, rng-do-some-validation):
346         * nxml/rng-maint.el (rng-validate-buffer):
347         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
348         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
349         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
350         (nxml-extend-after-change-region): Use with-silent-modifications.
352         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
353         timer-idle-list.
355         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
356         (rng-next-error-1, rng-previous-error-1): Do not let-bind
357         timer-idle-list.  (Bug#13999)
359 2013-03-23  Juri Linkov  <juri@jurta.org>
361         * info.el (info-index-match): New face.
362         (Info-index, Info-apropos-matches): Add a nested subgroup to the
363         main pattern and add text properties with the new face to matches
364         in index entries relative to the beginning of the index entry.
365         (Bug#14015)
367 2013-03-21  Eric Ludlam  <zappo@gnu.org>
369         * eieio/eieio-datadebug.el (data-debug/eieio-insert-slots):
370         Inhibit read only while inserting objects.
372 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
374         * progmodes/cfengine.el: Update docs to mention
375         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
376         symbol motion.  Remove "_" from the word syntax.
378 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
380         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
381         syntax for both `cfengine2-mode' and `cfengine3-mode'.
383 2013-03-20  Juri Linkov  <juri@jurta.org>
385         * info.el (Info-next-reference-or-link)
386         (Info-prev-reference-or-link): New functions.
387         (Info-next-reference, Info-prev-reference): Use them.
388         (Info-try-follow-nearest-node): Handle footnote navigation.
389         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
391 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
393         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
394         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
396 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
398         Suppress unnecessary non-ASCII chatter during build process.
399         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
400         (batch-skkdic-convert): Suppress most of the chatter.
401         It's not needed so much now that machines are faster,
402         and its non-ASCII component was confusing; see Dmitry Gutov in
403         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
405 2013-03-20  Leo Liu  <sdl.web@gmail.com>
407         * ido.el (ido-chop): Fix bug#10994.
409 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
411         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
412         Remove vars.
413         (whitespace-color-on, whitespace-color-off):
414         Use `font-lock-fontify-buffer' (Bug#13817).
416 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
418         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
419         remapping in mode-line.
420         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
422 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
424         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
425         value for `whitespace-line' face (Bug#13875).
426         (whitespace-font-lock-keywords): Change description.
427         (whitespace-color-on): Don't save `font-lock-keywords' value, save
428         the constructed keywords instead.
429         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
431 2013-03-19  Leo Liu  <sdl.web@gmail.com>
433         * progmodes/compile.el (compilation-display-error): New command.
434         (compilation-mode-map, compilation-minor-mode-map): Bind it to
435         C-o.  (Bug#13992)
437 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
439         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
441 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
443         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
445 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
447         * net/tramp-compat.el (tramp-compat-user-error): New defun.
449         * net/tramp-adb.el (tramp-adb-handle-shell-command):
450         * net/tramp-gvfs.el (top):
451         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
452         (tramp-handle-shell-command): Use it.
453         (tramp-dissect-file-name): Raise an error when hostname is a
454         method name, and neither method nor user is specified.
456         * net/trampver.el: Update release number.
458 2013-03-18  Leo Liu  <sdl.web@gmail.com>
460         Make sure eldoc can be turned off properly.
461         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
462         eldoc-mode.
463         (eldoc-display-message-p): Revert last change.
464         (eldoc-display-message-no-interference-p)
465         (eldoc-print-current-symbol-info): Tweak.
467 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
469         * doc-view.el (doc-view-new-window-function): Check the new window
470         overlay's display property instead the char property of the
471         buffer's first char.  Use `with-selected-window' instead of
472         `save-window-excursion' with `select-window'.
473         (doc-view-document->bitmap): Check the current doc-view overlay's
474         display property instead the char property of the buffer's first char.
476 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
478         Automate the build of ja-dic.el (Bug#13984).
479         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
480         from the input, rather than assume that it's been done for us by the
481         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
482         the current date into a ja-dic.el comment, as that complicates
483         regression testing.
485 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
487         * whitespace.el: Fix double evaluation.
488         (whitespace-space, whitespace-hspace, whitespace-tab)
489         (whitespace-newline, whitespace-trailing, whitespace-line)
490         (whitespace-space-before-tab, whitespace-indentation)
491         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
492         obsolete defvars.
493         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
494         (whitespace-color-on): Use a single font-lock-add-keywords call.
495         Fix double-evaluation of face variables.
497 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
499         * net/tramp-adb.el (tramp-adb-parse-device-names):
500         Use `start-process' instead of `call-process'.  Otherwise, the
501         function might be blocked under MS Windows.  (Bug#13299)
503 2013-03-17  Leo Liu  <sdl.web@gmail.com>
505         Extend eldoc to display info in the mode-line.  (Bug#13978)
506         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
507         (eldoc-mode-line-string): New variable.
508         (eldoc-minibuffer-message): New function.
509         (eldoc-message-function): New variable.
510         (eldoc-message): Use it.
511         (eldoc-display-message-p)
512         (eldoc-display-message-no-interference-p):
513         Support eldoc-post-insert-mode.
515         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
516         (eval-expression): Run it.
518 2013-03-17  Roland Winkler  <winkler@gnu.org>
520         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
521         strings in the list of return values.
523 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
525         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
526         radix before checking for HMS forms.
528 2013-03-16  Leo Liu  <sdl.web@gmail.com>
530         * progmodes/scheme.el: Add indentation and font-locking for λ.
531         (Bug#13975)
533 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
535         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
536         token before point (bug#13942).
538 2013-03-16  Leo Liu  <sdl.web@gmail.com>
540         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
542 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
544         * startup.el (command-line-normalize-file-name): Fix handling of
545         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
546         <xfq.free@gmail.com> in
547         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
549 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
551         Sync with Tramp 2.2.7.
553         * net/trampver.el: Update release number.
555 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
557         * doc-view.el Fix bug#13887.
558         (doc-view-insert-image): Don't modify overlay associated to
559         non-live windows, and implement horizontal centering of image in
560         case it's smaller than the window.
561         (doc-view-new-window-function): Force redisplay of new windows on
562         doc-view buffers.
564 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
566         * saveplace.el (save-place-alist-to-file): Don't sort
567         `save-place-alist', just pretty-print it (bug#13882).
569 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
571         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Check,
572         whether `default-file-name-coding-system' is bound.  It isn't in
573         XEmacs.
575 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
577         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
578         backquotes for `obsolete' (bug#13929).
580         * international/mule.el (find-auto-coding): Include file name in
581         obsolescence warning (bug#13922).
583 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
585         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
586         for CFEngine 3-specific indentation.
587         (cfengine3-indent-line): Use it.  Fix up category regex.
588         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
590 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
592         * type-break.el (type-break-file-name):
593         * textmodes/remember.el (remember-data-file):
594         * strokes.el (strokes-file):
595         * shadowfile.el (shadow-initialize):
596         * saveplace.el (save-place-file):
597         * ps-bdf.el (bdf-cache-file):
598         * progmodes/idlwave.el (idlwave-config-directory):
599         * net/quickurl.el (quickurl-url-file):
600         * international/kkc.el (kkc-init-file-name):
601         * ido.el (ido-save-directory-list-file):
602         * emulation/viper.el (viper-custom-file-name):
603         * emulation/vip.el (vip-startup-file):
604         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
605         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
607 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
609         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
610         * language/thai-word.el: Switch to UTF-8.
612 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
614         * recentf.el (recentf-save-file): Use locate-user-emacs-file (bug#13870).
616 2013-03-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
618         * net/net-utils.el (net-utils-remove-ctrl-m-filter):
619         Use with-current-buffer and don't move point.
620         (net-utils-run-simple): Remove useless code.
621         (net-utils-remove-ctl-m): Remove unused custom.
623 2013-03-11  Per Starbäck  <starback@stp.lingfil.uu.se>
625         * international/characters.el (glyphless-set-char-table-range): New fun.
626         (update-glyphless-char-display): Use it (bug#13744).
628 2013-03-11  Teodor Zlatanov  <tzz@lifelogs.com>
630         * progmodes/cfengine.el: Update for CFEngine 3.4.2 and higher:
631         namespaces in the syntax, indent closer for hanging brace
632         correctly, allow single-quote delimited 'strings', and make
633         `cfengine3-mode' the default.
635 2013-03-11  Jean-Philippe Gravel  <jpgravel@gmail.com>
637         * progmodes/gdb-mi.el: Speed up initialization (bug#10580).
638         Use lexical-binding.  Fix up docstring according to conventions.
639         (gdbmi-debug-mode): New var.
640         (gdbmi-start-with, gdbmi-same-start, gdbmi-is-number, gdbmi-bnf-init)
641         (gdbmi-bnf-output, gdbmi-bnf-skip-unrecognized, gdbmi-bnf-gdb-prompt)
642         (gdbmi-bnf-result-record, gdbmi-bnf-out-of-band-record)
643         (gdbmi-bnf-async-record, gdbmi-bnf-stream-record)
644         (gdbmi-bnf-console-stream-output, gdbmi-bnf-target-stream-output)
645         (gdbmi-bnf-log-stream-output, gdbmi-bnf-result-and-async-record-impl)
646         (gdbmi-bnf-incomplete-record-result): New functions.
647         (gdb-car<): Remove function.
648         (gdbmi-record-list): Remove variable.
649         (gdbmi-bnf-state, gdbmi-bnf-offset): New vars.
650         (gdbmi-bnf-result-state-configs): New const.
651         (gud-gdbmi-marker-filter): Rewrite.
652         (gdb-ignored-notification, gdb-thread-created, gdb-thread-exited)
653         (gdb-thread-selected, gdb-running, gdb-starting, gdb-stopped):
654         Add `token' argument.
655         (gdb-done, gdb-error): New functions.
656         (gdb-done-or-error): Add `is-complete' argument.  Change arg order.
658 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
660         * term/xterm.el (xterm--report-background-handler): Don't burp
661         upon timeout.
662         (xterm--version-handler): Extract from terminal-init-xterm.
663         (xterm--query): Don't mishandle timeout.  Remove debugging messages.
664         Allow multiple handlers.
665         (terminal-init-xterm): Handle OSX's Terminal.app's incorrect answer.
667         * term/xterm.el: Don't discard input (bug#6758).  Use lexical-binding.
668         (xterm--report-background-handler, xterm--query): New functions.
669         (terminal-init-xterm): Use them.
671 2013-03-11  Michael R. Mauger  <michael@mauger.com>
673         * progmodes/sql.el Version 3.2
674         Please note that my address changed to <michael@mauger.com>;
675         the <mmaug@yahoo.com> address remains active.
676         (sql-connection-alist): Updates documentation to fix bug#13715.
677         (sql-connect): Handle missing `sql-connection-alist' correctly.
678         (sql-mode-oracle-font-lock-keywords): Add missing keywords.
679         (sql-magic-go, sql-magic-semicolon): Mark with `delete-selection'
680         property.
681         (sql-default-value): New function.
682         (sql-get-login-ext, sql-get-login): Fixes bug where buffer-local
683         values were not used.
684         (sql-rename-buffer): Make sure alternate buffer name has no text
685         properties.
686         (sql-input-sender, sql-execute-feature): Fetch variable with
687         `buffer-local-value' rather than `with-current-buffer'.
688         (sql-*): Use #' function syntax consistently.
689         (sql-*): Use message/error/user-error consistently.
691 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
693         * xt-mouse.el (xterm-mouse-event-read): Remove.
694         (xterm-mouse--read-event-sequence-1000)
695         (xterm-mouse--read-event-sequence-1006): Use read-event instead.
697 2013-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
699         * term/xterm.el (xterm-function-map): Support format used with
700         formatOtherKeys=1 (bug#13839).
702         * emacs-lisp/byte-run.el (dont-compile): Declare obsolete.
703         (with-no-warnings): Use `declare'.
705         * whitespace.el (whitespace-enable-predicate): New variable.
706         (whitespace-enable-predicate): Use it.
708         * comint.el (comint-send-input, comint-snapshot-last-prompt)
709         (comint-output-filter, comint-update-fence):
710         Use with-silent-modifications.
712 2013-03-10  Jambunathan K  <kjambunathan@gmail.com>
714         * replace.el (occur-read-regexp-defaults-function): New var.
715         (occur-read-regexp-defaults): New defun.
716         (occur-read-primary-args): Propagate above change (bug#13892).
718 2013-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
720         * mouse.el (mouse-drag-track): Remove left-over debugging code.
722 2013-03-09  Michael Albinus  <michael.albinus@gmx.de>
724         Major rewrite due to changed D-Bus interface of GVFS 1.14.
726         * net/tramp-gvfs.el (top): Extend check for gvfs availability.
727         (tramp-gvfs-methods-mounttracker, tramp-gvfs-listmounts)
728         (tramp-gvfs-mountlocation, tramp-gvfs-mountlocation-signature):
729         New defconst.
730         (tramp-gvfs-file-name-handler-alist) [directory-files]
731         [directory-files-and-attributes, file-exists-p, file-modes]:
732         Use Tramp default handler.
733         [file-acl, file-selinux-context, process-file, set-file-acl]:
734         [set-file-modes, set-file-selinux-context, shell-command]:
735         [start-file-process]: Remove handler.
736         [verify-visited-file-modtime]: New handler.
737         (tramp-gvfs-dbus-string-to-byte-array)
738         (tramp-gvfs-dbus-byte-array-to-string): New defuns.  Replace all
739         calls of `dbus-string-to-byte-array' and
740         `tramp-gvfs-dbus-byte-array-to-string'.
741         (tramp-gvfs-handle-copy-file)
742         (tramp-gvfs-handle-delete-directory)
743         (tramp-gvfs-handle-delete-file, tramp-gvfs-handle-file-attributes)
744         (tramp-gvfs-handle-file-directory-p)
745         (tramp-gvfs-handle-file-executable-p)
746         (tramp-gvfs-handle-file-name-all-completions)
747         (tramp-gvfs-handle-file-readable-p)
748         (tramp-gvfs-handle-file-writable-p)
749         (tramp-gvfs-handle-insert-directory)
750         (tramp-gvfs-handle-insert-file-contents)
751         (tramp-gvfs-handle-make-directory, tramp-gvfs-handle-rename-file)
752         (tramp-gvfs-handle-set-visited-file-modtime)
753         (tramp-gvfs-handle-write-region): Rewrite.
754         (tramp-gvfs-handle-file-acl)
755         (tramp-gvfs-handle-file-selinux-context)
756         (tramp-gvfs-handle-process-file, tramp-gvfs-handle-set-file-acl)
757         (tramp-gvfs-handle-set-file-modes)
758         (tramp-gvfs-handle-set-file-selinux-context)
759         (tramp-gvfs-handle-shell-command)
760         (tramp-gvfs-handle-start-file-process)
761         (tramp-gvfs-handle-verify-visited-file-modtime): Remove defuns.
762         (tramp-gvfs-url-file-name): Do not use `file-truename', we work
763         over the symlinks.  Fix user handling.
764         (top, tramp-gvfs-handler-mounted-unmounted): Handle different names
765         of the D-Bus signals.
766         (tramp-gvfs-connection-mounted-p): Handle different names of the
767         D-Bus methods.
768         (tramp-gvfs-mount-spec-entry): New defun.
769         (tramp-gvfs-mount-spec): Use it.
770         (tramp-gvfs-maybe-open-connection): Check, that in case of "smb"
771         there is a share name.  Handle different names of the D-Bus
772         signals and methods.  Set connection properties needed for
773         `tramp-check-cached-permissions'.
774         (tramp-gvfs-send-command): Apply `tramp-gvfs-maybe-open-connection'.
775         Return t or nil.
777         * net/tramp.el (tramp-backtrace): Move up.
778         (tramp-error): Dump a backtrace into the debug buffer when
779         `tramp-verbose > 9.
780         (tramp-file-mode-type-map, tramp-file-mode-from-int)
781         (tramp-file-mode-permissions, tramp-get-local-uid)
782         (tramp-get-local-gid, tramp-check-cached-permissions): Move from
783         tramp-sh.el.
785         * net/tramp-sh.el (tramp-file-mode-type-map)
786         (tramp-check-cached-permissions, tramp-file-mode-from-int)
787         (tramp-file-mode-permissions, tramp-get-local-uid)
788         (tramp-get-local-gid): Move to tramp.el.
790 2013-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
792         Separate mouse-1-click-follows-link from mouse-drag-region.
793         * mouse.el (mouse--down-1-maybe-follows-link): New function.
794         (key-translation-map): Use it to implement mouse-1-click-follows-link.
795         (mouse-drag-line, mouse-drag-track):
796         Remove mouse-1-click-follows-link code.
797         (mouse--remap-link-click-p): Remove.
799 2013-03-08  Jambunathan K  <kjambunathan@gmail.com>
801         * hi-lock.el (hi-lock-read-regexp-defaults-function): New var.
802         (hi-lock-read-regexp-defaults):  New defun.
803         (hi-lock-line-face-buffer, hi-lock-face-buffer)
804         (hi-lock-face-phrase-buffer): Propagate above change.
805         Update docstring (bug#13892).
807         * subr.el (find-tag-default-as-regexp): New defun.
808         * replace.el (read-regexp): Propagate above change.
810 2013-03-08  Jay Belanger  <jay.p.belanger@gmail.com>
812         * calc/calc-units.el (calc-convert-units): Fix the way that default
813         new units are stored.
815 2013-03-07  Matthias Meulien  <orontee@gmail.com>
817         * bookmark.el: Define a face to highlight bookmark names in
818         bookmark menu buffers, where the default is a bold face similarly
819         to buffer names in buffer menu buffers.
820         (bookmark-menu-bookmark): New face to highlight bookmark names.
821         (bookmark-insert-location): Remove duplicated text property to
822         conform to buffer list (see `list-buffers').
823         (bookmark-bmenu-list, bookmark-bmenu-hide-filenames): Apply face
824         `bookmark-menu-bookmark' to bookmark names.
826 2013-03-07  Matthias Meulien  <orontee@gmail.com>
827             Karl Fogel  <kfogel@red-bean.com>
829         * bookmark.el: Display the bookmark list header similarly to the
830         buffer list header (see `list-buffers'), where the default is now
831         an immovable/immutable header line.
832         (bookmark-bmenu-use-header-line): New variable.
833         (bookmark-bmenu-inline-header-height): New name for
834         `bookmark-bmenu-header-height', to avoid confusion with the code
835         for the new immovable header.  All references changed.
836         (bookmark-bmenu-set-header): New function.
837         (bookmark-bmenu-list, bookmark-bmenu-toggle-filenames):
838         Conditionalize header construction accordingly.
839         (bookmark-bmenu-ensure-position): Conditionalize the skipping of
840         the inline header height.
841         (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
842         Conditionalize the skipping of the inline header height.
844 2013-03-07  Dmitry Gutov  <dgutov@yandex.ru>
846         * progmodes/js.el (js--multi-line-declaration-indentation):
847         Merge from js2-mode (https://github.com/mooz/js2-mode/issues/89).
849 2013-03-06  Dmitry Gutov  <dgutov@yandex.ru>
851         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
852         Only propertize regexp when not inside a string (Bug#13885).
854 2013-03-06  Alan Mackenzie  <acm@muc.de>
856         Correct the position of point in some line-up functions.
857         * progmodes/cc-align.el (c-lineup-whitesmith-in-block)
858         (c-lineup-assignments, c-lineup-gcc-asm-reg ): take position of
859         point at column 0 rather than at a random place in the line.
861 2013-03-05  Michael Albinus  <michael.albinus@gmx.de>
863         * net/tramp-compat.el (tramp-compat-delete-directory):
864         Implement TRASH argument.
866 2013-03-05  Dmitry Gutov  <dgutov@yandex.ru>
868         Keep pre-existing highlighting in completion candidates (Bug#13250).
869         * minibuffer.el (completions-first-difference): State that the
870         face is "added" in the docstring.
871         (completions-common-part): Same.  And don't inherit from default.
872         (completion-hilit-commonality): Prepend 'completions-common-part
873         and 'completion-first-difference faces to the 'face property,
874         instead of replacing the value(s).
875         (completion--insert-strings): Same with 'completions-annotations face.
876         (completion-hilit-commonality): Use 'face instead of
877         'font-lock-face, because it gets priority if the completion
878         strings already have 'face set.
880 2013-03-04  Alan Mackenzie  <acm@muc.de>
882         Replace `last-command-event' by `last-command-char' in XEmacs.
883         * progmodes/cc-defs.el (c-last-command-char): New macro.
884         * progmodes/cc-align.el (c-semi&comma-inside-parenlist)
885         (c-semi&comma-no-newlines-before-nonblanks)
886         (c-semi&comma-no-newlines-for-oneline-inliners): Use the new macro
887         in place of `last-command-event'.
888         * progmodes/cc-cmds.el (c-electric-pound, c-electric-brace)
889         (c-electric-slash, c-electric-semi&comma, c-electric-lt-gt)
890         (c-electric-paren, c-electric-continued-statement): Use the new
891         macro in place of `last-command-event'.
893 2013-03-04  Glenn Morris  <rgm@gnu.org>
895         * files.el (inhibit-local-variables-regexps):
896         Add .diff and .patch.  (Bug#13862)
898 2013-03-03  Michael Albinus  <michael.albinus@gmx.de>
900         * net/tramp-adb.el (tramp-adb-maybe-open-connection): Cache,
901         whether the "su" command is available on the device.
903 2013-03-01  Michael Albinus  <michael.albinus@gmx.de>
905         * net/tramp-adb.el (tramp-adb-prompt): Extend regexp.
906         (tramp-adb-handle-process-file): Remove superfluous setting.
907         (tramp-adb-command-exit-status): Handle case that COMMAND is nil.
908         (tramp-adb-barf-unless-okay): Use `tramp-adb-command-exit-status'.
909         (tramp-adb-maybe-open-connection): Apply "su" if user is defined.
911 2013-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
913         * textmodes/ispell.el: Fix nitpicks and byte-compiler warnings.
914         (ispell-print-if-debug): Build `format' in.  Avoid end-of-buffer.
915         (ispell-parse-hunspell-affix-file): Avoid beginning-of-buffer.
916         Use dict-key rather than dict-name for the error message.
918 2013-03-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
920         * net/net-utils.el (net-utils-run-simple): Don't display-buffer
921         when reverting (bug#13831).
923 2013-03-01  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
925         * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
926         Always expand affix-file before storing to protect against changed
927         `default-directory'.
928         (ispell-print-if-debug): Make sure message is printed at the end
929         of the debug buffer.
931 2013-03-01  Michael Albinus  <michael.albinus@gmx.de>
933         * net/tramp.el (tramp-obsolete-methods): New defconst.
934         (tramp-warned-obsolete-methods): New defvar.
935         (tramp-find-method): Check for obsolete methods.  Map them to a
936         replacement method if appropriate.
938         * net/tramp-sh.el (tramp-methods) [scp1, scp2, ssh1, ssh2, plink1]:
939         Remove methods.
940         (top): Remove completion functions for "scp1", "scp2", "ssh1",
941         "ssh2" and "plink1".
943 2013-02-28  Dale Sedivec  <dale@codefu.org>
945         * textmodes/sgml-mode.el (sgml-syntax-propertize-function):
946         Return valid syntax-table property value when converting
947         quotes within text from string syntax to punctuation syntax (bug#13844).
949 2013-02-28  Juri Linkov  <juri@jurta.org>
951         * dired-aux.el (dired-diff): If file at point is a backup file,
952         use its original as the default value, and reverse the order
953         of arguments to the `diff' call.  Doc fix.  (Bug#13772)
955 2013-02-28  Michael Albinus  <michael.albinus@gmx.de>
957         * net/tramp-adb.el (tramp-adb-sdk-dir): Remove.  Replaced by ...
958         (tramp-adb-program): New defcustom.  Remove function.  Adapt calls.
960 2013-02-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
962         Initial support for hunspell dictionaries auto-detection (Bug#13639)
964         * textmodes/ispell.el (ispell-find-hunspell-dictionaries):
965         Ask hunspell about available and default dictionaries.
966         (ispell-parse-hunspell-affix-file): Extract relevant info from
967         hunspell affix file.
968         (ispell-hunspell-fill-dictionary-entry): Fill non-initialized
969         `ispell-dictionary-alist' entry for given dictionary after info
970         provided by `ispell-parse-hunspell-affix-file'.
971         (ispell-hunspell-dict-paths-alist): New defvar to contain an alist
972         of parsed hunspell dicts and associated affix files.
973         (ispell-hunspell-dictionary-alist): New defvar to contain an alist
974         of parsed hunspell dicts and associated parameters.
975         (ispell-set-spellchecker-params):
976         Call `ispell-find-hunspell-dictionaries' if hunspell and not
977         previously done.
978         (ispell-start-process):
979         Call `ispell-hunspell-fill-dictionary-entry' for current
980         dictionary if it is not initialized.
982 2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
984         * imenu.el: Comment nitpicks.
986 2013-02-28  Sam Steingold  <sds@gnu.org>
988         * vc/diff-mode.el (diff-hunk-file-names): Handle filenames with spaces.
989         See <http://stackoverflow.com/questions/14720205>.
991 2013-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
993         * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
994         (net-utils-mode): Use it.
995         (net-utils--revert-cmd): New var.
996         (net-utils-run-simple): Set it, and remove bogus interactive spec.
997         (traceroute): Use net-utils-run-simple.
999 2013-02-28  Glenn Morris  <rgm@gnu.org>
1001         * textmodes/paragraphs.el (mark-paragraph): Doc fix.
1003 2013-02-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1005         * doc-view.el: Preserve h&v scroll across C-c C-c C-c C-c.
1006         (doc-view-fallback-mode): Remove overlays here.
1007         (doc-view-toggle-display): Instead of here.  Don't throw away
1008         image-mode-winprops-alist.
1009         (doc-view-goto-page): Don't mess with hscroll.
1011 2013-02-27  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1013         * font-lock.el (lisp-font-lock-keywords-2): Fix highlighting of
1014         &optional (bug#13819).
1016 2013-02-27  Michael Albinus  <michael.albinus@gmx.de>
1018         * net/tramp-adb.el (tramp-adb-parse-device-names)
1019         (tramp-adb-maybe-open-connection): Add timeouts.  (Bug#13299)
1021 2013-02-26  Michael Albinus  <michael.albinus@gmx.de>
1023         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1024         Add "2>/dev/null" to the ls command, in case "en_US.utf8" is not
1025         defined.  POSIX environments fall back to the "C" locale then and
1026         emit a warning, which shall be suppressed.
1028 2013-02-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1030         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Tweak logic.
1031         (easy-mmode-set-keymap-parents): Use make-composed-keymap.
1033 2013-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1035         * emacs-lisp/bytecomp.el (byte-compile-file): Use let.
1037 2013-02-25  Juri Linkov  <juri@jurta.org>
1039         * replace.el (read-regexp): Let-bind `default' to the first
1040         element of `defaults' if it's a list, otherwise it should be
1041         a string or nil.  Let-bind `suggestions' to `defaults' if it's
1042         a list, otherwise make a list with the string value.  Doc fix.
1043         (Bug#13805)
1045 2013-02-25  Eli Zaretskii  <eliz@gnu.org>
1047         * emacs-lisp/bytecomp.el (byte-recompile-directory): Reject files
1048         that match "\`\.#", to avoid compiling lock files, even if they
1049         are readable (as they are on MS-Windows).
1051 2013-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1053         * files.el (basic-save-buffer): Remove redundant directory-creation.
1055 2013-02-24  Jay Belanger  <jay.p.belanger@gmail.com>
1057         * calc/calc-ext.el (math-to-radians-2, math-from-radians-2):
1058         Add option to force `pi' to remain symbolic.
1059         * calc/calcalg2.el (calcFunc-sin, calcFunc-cos, calcFunc-tan)
1060         (calcFunc-cot, calcFunc-csc, calcFunc-sec, calcFunc-arcsin)
1061         (calcFunc-arccos, calcFunc-arctan): Use symbolic `pi' in the
1062         derivatives, when necessary.
1064 2013-02-23  Peter Kleiweg  <p.c.j.kleiweg@rug.nl>
1066         * progmodes/ps-mode.el (ps-mode-version): Bump to 1.1i.
1067         (ps-mode-octal-region): Use string-make-unibyte.
1069 2013-02-23  Glenn Morris  <rgm@gnu.org>
1071         * emulation/viper-cmd.el (viper-submit-report):
1072         * progmodes/ps-mode.el (ps-mode-maintainer-address):
1073         * progmodes/vera-mode.el (vera-mode-help-address):
1074         * textmodes/artist.el (artist-maintainer-address):
1075         * textmodes/reftex.el (reftex-report-bug):
1076         * vc/ediff-util.el (ediff-submit-report):
1077         Add bug-gnu-emacs to bug report address.
1079         * progmodes/simula.el (simula-mode-menu, simula-mode-map):
1080         Remove bug report entries.
1081         (simula-mode-help-address, simula-submit-bug-report): Make obsolete.
1083         * emacs-lisp/bytecomp.el (byte-compile-level): New.
1084         (byte-compile-file, byte-compile-from-buffer):
1085         Use separate input/output buffers for each level of recursive
1086         byte-compile-file calls.  (Bug#13787)
1088 2013-02-23  Michael Albinus  <michael.albinus@gmx.de>
1090         * net/tramp.el (tramp-methods): Fix docstring.
1091         (tramp-ssh-controlmaster-options): Rename it from
1092         `tramp-ssh-controlmaster-template'.  Return a string.
1093         (tramp-default-method): Adapt check for
1094         `tramp-ssh-controlmaster-options'.
1096         * net/tramp-sh.el (tramp-methods):
1097         Replace `tramp-ssh-controlmaster-template' by "%c".
1098         (tramp-do-copy-or-rename-file-out-of-band)
1099         (tramp-maybe-open-connection): Use it in format spec.  Ensure,
1100         that it is applied for the first hop only.
1102 2013-02-22  Juri Linkov  <juri@jurta.org>
1104         * isearch.el (isearch-lazy-highlight-new-loop):
1105         Set `isearch-lazy-highlight-start' and `isearch-lazy-highlight-end'
1106         to `isearch-other-end' if it is not nil.  (Bug#13402)
1108         * replace.el (replace-highlight): Let-bind `isearch-other-end'
1109         to `match-beg'.
1111         * textmodes/ispell.el (ispell-highlight-spelling-error-overlay):
1112         Let-bind `isearch-other-end' to `start', `isearch-forward' to t
1113         and `isearch-error' to nil.
1115 2013-03-16  Fabián Ezequiel Gallina  <fgallina@cuca>
1117         * progmodes/python.el (python-info-current-defun):
1118         Enhance match-data cluttering prevention.
1120 2013-02-22  Michael Albinus  <michael.albinus@gmx.de>
1122         * net/tramp.el (tramp-tramp-file-p): Fix docstring.
1124         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
1125         Handle multibyte file names.
1127 2013-02-22  Glenn Morris  <rgm@gnu.org>
1129         * textmodes/sgml-mode.el (sgml-xml-mode): Move before use.
1130         (sgml-transformation-function): Give it a :set function.
1131         (sgml-tag): Doc fix.
1133         * cmuscheme.el (scheme-buffer):
1134         * progmodes/inf-lisp.el (inferior-lisp-buffer):
1135         * progmodes/tcl.el (inferior-tcl-buffer):
1136         * textmodes/tex-mode.el (tex-command): Doc fixes.
1138         * image-mode.el (image-mode): Add mouse bindings for mode-line-process.
1140         * htmlfontify.el (hfy-default-header): Encode title string.  (Bug#7457)
1142 2013-02-21  Bastien Guerry  <bzg@gnu.org>
1144         * cmuscheme.el (scheme-buffer): Fix docstring.  (Bug#13778)
1146 2013-02-21  Fabián Ezequiel Gallina  <fgallina@cuca>
1148         * progmodes/python.el (python-info-current-defun):
1149         Enhance match-data cluttering prevention.
1151 2013-02-21  Glenn Morris  <rgm@gnu.org>
1153         * net/tramp.el (tramp-get-debug-buffer): Ensure outline.el is not
1154         loaded while outline-regexp is let bound.  (Bug#9584)
1156 2013-02-21  Fabián Ezequiel Gallina  <fgallina@cuca>
1158         * progmodes/python.el (python-info-current-defun): Fix failed
1159         defun name retrieval because of unwanted match-data cluttering.
1161 2013-02-21  Michael Albinus  <michael.albinus@gmx.de>
1163         * net/tramp.el (tramp-ssh-controlmaster-template): Make it a
1164         defconst.  Apply independent check for ControlPersist.
1166         * net/tramp-sh.el (tramp-sh-handle-set-file-times): Set $UTC only
1167         temporarily, via "env".
1169 2013-02-21  Glenn Morris  <rgm@gnu.org>
1171         * info.el (Info-enable-edit): Remove.
1172         (Info-edit): Disable it rather than using Info-enable.
1173         (Info-edit-mode-hook, Info-edit-map, Info-edit-mode, Info-edit)
1174         (Info-cease-edit): Make editing of Info files obsolete.
1176         * informat.el (Info-tagify):
1177         Handle buffers not visiting files.  (Bug#13763)
1179 2013-02-21  Juanma Barranquero  <lekktu@gmail.com>
1181         * calc/calc-graph.el (calc-graph-show-dumb): Fix typo.
1183 2013-02-21  Glenn Morris  <rgm@gnu.org>
1185         * files.el (basic-save-buffer): Move check for existing parent
1186         directory after hooks.  (Bug#13773)
1188 2013-02-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1190         * simple.el (command-execute): Move from C.  Add obsolete check.
1191         (extended-command-history): Move from C.
1193 2013-02-20  Ulrich Müller  <ulm@gentoo.org>
1195         * jka-cmpr-hook.el (jka-compr-compression-info-list)
1196         (jka-compr-mode-alist-additions): Handle .txz suffix for
1197         XZ-compressed tar archives (bug#13770).
1199 2013-02-20  Bastien Guerry  <bzg@gnu.org>
1201         * outline.el (outline-regexp, outline-heading-end-regexp):
1202         Make variables, not options (bug#13731).
1204 2013-02-20  Glenn Morris  <rgm@gnu.org>
1206         * image.el (image-current-frame): Change from variable to function.
1207         (image-show-frame): Rename from image-nth-frame.  Update callers.
1208         * image-mode.el (image-multi-frame): New variable.
1209         (image-mode-map, image-mode, image-goto-frame):
1210         Use image-multi-frame rather than image-current-frame.
1211         (image-mode, image-goto-frame): Use image-current-frame as
1212         function rather than as variable.
1214         * emacs-lisp/cl-lib.el (cl-floatp-safe): Make it an alias for floatp.
1215         * emacs-lisp/cl-macs.el (cl--make-type-test)
1216         (cl--compiler-macro-assoc): Use floatp rather than cl-floatp-safe.
1218 2013-02-19  Michael Albinus  <michael.albinus@gmx.de>
1220         * net/tramp-cache.el (tramp-get-hash-table): New defun.
1221         (tramp-get-file-property, tramp-set-file-property)
1222         (tramp-get-connection-property, tramp-set-connection-property): Use it.
1223         (tramp-flush-file-property, tramp-flush-directory-property):
1224         Rename argument to KEY.
1225         (tramp-flush-connection-property): Simplify a little bit.
1226         (tramp-connection-property-p): New defun.
1227         (top): Reapply saved values only if there isn't a corresponding
1228         entry in `tramp-connection-properties'.
1230 2013-02-19  Fabián Ezequiel Gallina  <fgallina@cuca>
1232         * progmodes/python.el (python-indent-context):
1233         Fix python-info-line-ends-backslash-p call.
1234         (python-info-line-ends-backslash-p)
1235         (python-info-beginning-of-backslash): Respect line-number argument.
1236         (python-info-current-line-comment-p):
1237         Fix behavior when not at beginning-of-line.
1238         (python-util-position): Remove function.
1239         (python-util-goto-line): New function.
1241 2013-02-19  Michael Albinus  <michael.albinus@gmx.de>
1243         * eshell/em-unix.el (eshell/su): Require tramp.
1244         (eshell/sudo): Require tramp.  Remove now unnecessary check.
1246         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Let-bind
1247         `tramp-current-connection' in order to avoid an error when several
1248         commands are invoked in a short time in eshell and friends.
1250 2013-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1252         Cleanup some of EIEIO's namespace.
1253         * emacs-lisp/eieio.el (eieio--define-field-accessors): New macro.
1254         Use it to define all the class-* and object-* field accessors (renamed
1255         to eieio--class-* and eieio--object-*).  Update all uses.
1256         (eieio--class-num-slots, eieio--object-num-slots): Rename from
1257         class-num-slots and object-num-slots.
1258         (eieio--check-type): New macro.
1259         (eieio-defclass, eieio-oref, eieio-oref-default, same-class-p)
1260         (object-of-class-p, child-of-class-p, object-slots, class-slot-initarg)
1261         (eieio-oset, eieio-oset-default, object-assoc, object-assoc-list)
1262         (object-assoc-list-safe): Use it.
1263         (eieio-defclass): Tighten regexp.
1264         (eieio--defmethod): Use `memq'.  Signal an error for unknown method kind.
1265         Remove unreachable code.
1266         (object-class-fast): Declare obsolete.
1267         (eieio-class-name, eieio-object-name, eieio-object-set-name-string)
1268         (eieio-object-class, eieio-object-class-name, eieio-class-parents)
1269         (eieio-class-children, eieio-class-precedence-list, eieio-class-parent):
1270         Rename from class-name, object-name, object-set-name-string,
1271         object-class, object-class-name, class-parents, class-children,
1272         class-precedence-list, class-parent; with obsolete alias.
1273         (class-of, class-direct-superclasses, class-direct-subclasses):
1274         Declare obsolete.
1275         (eieio-defmethod): Use `memq'; remove unreachable code.
1276         * emacs-lisp/eieio-base.el (eieio-persistent-read):
1277         * emacs-lisp/eieio-opt.el (eieio-class-button, eieio-describe-generic)
1278         (eieio-browse-tree, eieio-browse): Use eieio--check-type.
1281 2013-02-18  Aidan Gauland  <aidalgol@no8wireless.co.nz>
1283         * eshell/em-cmpl.el: Correct "context-related help" keybinding in
1284         commentary.
1286 2013-02-18  Michael Heerdegen  <michael_heerdegen@web.de>
1288         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument):
1289         Use font-lock-keyword-face for macros and special forms (bug#8345).
1291 2013-02-17  Didier Verna  <didier@didierverna.net>
1293         * net/network-stream.el (network-stream-open-starttls):
1294         Check that response to the starttls-command is non-nil.  (Bug#13706)
1296 2013-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1298         * font-lock.el (lisp-font-lock-keywords-1, lisp-font-lock-keywords-2):
1299         Don't assume all identifier chars have syntax word.
1300         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1301         Remove bar-not-symbol.  Adjust callers.
1302         (lisp-mode-variables): Don't set a font-lock-syntax-table.
1304 2013-02-17  Leo Liu  <sdl.web@gmail.com>
1306         * net/rcirc.el (rcirc-keepalive): Fix invalid timer error.
1308 2013-02-17  Glenn Morris  <rgm@gnu.org>
1310         * menu-bar.el (menu-bar-tools-menu): Fix case of EDE entry.
1312         * image-mode.el (image-mode-map): Add image-dired menu entry.
1314         * image-dired.el (tumme): Make this alias obsolete.
1316 2013-02-16  Glenn Morris  <rgm@gnu.org>
1318         * image.el (image-animated-types): Remove.
1319         (image-multi-frame-p): Rename from image-animated-p, and generalize.
1320         (image-animated-p): Make obsolete alias.
1321         (image-animate, image-nth-frame, image-animate-timeout):
1322         Use image-multi-frame-p.
1323         (image-animate-timeout): If no delay, use image-default-frame-delay.
1324         * image-mode.el (image-mode, image-toggle-animation):
1325         Use image-multi-frame-p.  (Bug#763, bug#10739)
1326         (image-mode): Adjust startup message for a multi-frame image.
1328         * image-mode.el (image-mode-map): Give it a menu.
1330 2013-02-16  Michael Albinus  <michael.albinus@gmx.de>
1332         * net/tramp-cache.el (tramp-connection-properties): New customer
1333         option.
1334         (tramp-get-connection-property): Use it.
1336         * net/tramp-compat.el (top): Require 'trampver.
1338         * net/tramp-sh.el (tramp-remote-process-environment):
1339         Set tramp-autoload cookie.
1341 2013-02-16  Kevin Ryde  <user42@zip.com.au>
1343         * info-look.el (info-lookup-select-mode): If major-mode has no
1344         info-lookup-alist entry then search up derived-mode-parent (bug#8660).
1346 2013-02-16  Jambunathan K  <kjambunathan@gmail.com>
1348         * replace.el (read-regexp): Tighten the regexp that matches tag.
1349         When tag is retrieved with `find-tag-default', use regexp that
1350         matches tag at point.  Also update docstring (Bug#13687).
1352 2013-02-16  Eli Zaretskii  <eliz@gnu.org>
1354         * autorevert.el (auto-revert-notify-add-watch): With 'w32notify',
1355         add watch for the file, not its parent directory, since w32notify
1356         sets up the watch for the directory internally.  (Bug#13725)
1358 2013-02-16  Glenn Morris  <rgm@gnu.org>
1360         * image.el (image-default-frame-delay): New variable.
1361         (image-animated-p): Use image-default-frame-delay.
1362         (image-minimum-frame-delay): New constant.
1363         (image-animate-timeout): Use image-minimum-frame-delay.
1365         * image.el (image-nth-frame): New, split from image-animate-timeout.
1366         (image-animate-timeout): Use image-nth-frame.
1367         * image-mode.el (image-goto-frame, image-next-frame)
1368         (image-previous-frame): New commands.
1369         (image-mode-map): Add new frame commands.
1371 2013-02-16  Jonas Bernoulli  <jonas@bernoul.li>
1373         * emacs-lisp/tabulated-list.el (tabulated-list-print-col):
1374         If col-desc already has help-echo, use it.  (Bug#13563)
1376 2013-02-16  Glenn Morris  <rgm@gnu.org>
1378         * image.el (image-current-frame): New variable.
1379         (image-animate-timeout): Set image-current-frame.
1380         * image-mode.el (image-mode): For animated images,
1381         display a frame counter via mode-line-process.
1383         * font-lock.el (lisp-font-lock-keywords-1): Add defvar-local.
1385 2013-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1387         * simple.el (eval-expression): Let `exp' set the mark (bug#13724).
1389 2013-02-15  Alan Mackenzie  <acm@muc.de>
1391         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode): When a
1392         global minor mode has been enabled, call the minor mode function
1393         for a new buffer once only, after the major mode hook, whilst
1394         allowing that hook explicitly to disable the minor mode.
1395         (MODE-disable-in-buffer): New (generated) function.
1396         (disable-MODE): New (generated) buffer local variable.
1398 2013-02-15  Jambunathan K  <kjambunathan@gmail.com>
1400         * iswitchb.el (iswitchb-read-buffer): Bind `C-.' and `C-,' to
1401         `iswitchb-next-match' and `iswitchb-prev-match' resply.
1402         * ido.el (ido-init-completion-maps): Bind `C-.' and `C-,' to
1403         `ido-next-match' and `ido-prev-match' resply.
1404         * icomplete.el (icomplete-minibuffer-map): Unbind `C-s' and `C-r'.
1405         Bind `C-.' and `C-,' to `icomplete-forward-completions' and
1406         `icomplete-backward-completions' (Bug#13708).
1408 2013-02-15  Glenn Morris  <rgm@gnu.org>
1410         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
1412 2013-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1414         * net/goto-addr.el (goto-address-fontify): Add start and end args.
1415         (goto-address-fontify-region): Use them instead of narrowing, so
1416         syntax-ppss has access to the whole buffer.
1418 2013-02-15  Fabián Ezequiel Gallina  <fgallina@cuca>
1420         * progmodes/python.el: Explain how to restore "cc-mode"-like
1421         forward-sexp movement in header documentation (Bug#13642).
1422         (python-nav--forward-sexp): Behave like emacs-lisp-mode in
1423         comments and strings (GH bug 114).
1425 2013-02-15  Fabián Ezequiel Gallina  <fgallina@cuca>
1427         * progmodes/python.el (python-info-current-defun): Fix current
1428         defun detection (Bug#13618).
1430 2013-02-15  Chong Yidong  <cyd@gnu.org>
1432         * xml.el (xml-parse-string): Fix typo in handling of bad character
1433         references.
1435 2013-02-15  Glenn Morris  <rgm@gnu.org>
1437         * play/fortune.el (fortune-compile): Simplify and fix previous change.
1439 2013-02-14  Michael Albinus  <michael.albinus@gmx.de>
1441         * net/tramp.el (tramp-debug-message):
1442         Add `tramp-condition-case-unless-debug'.
1443         (tramp-debug-on-error): New defvar.
1444         (tramp-condition-case-unless-debug): New defun.
1445         (tramp-file-name-handler): Use it.
1447 2013-02-14  Juri Linkov  <juri@jurta.org>
1449         * info.el (Info-isearch-filter): Treat non-nil values of
1450         `search-invisible' including its default value `open'
1451         like the value `t' to match hidden text.  (Bug#13402)
1453 2013-02-14  Glenn Morris  <rgm@gnu.org>
1455         * help-fns.el (find-lisp-object-file-name): Give special treatment
1456         to all ~/.foo.elc files, not just ~/.emacs.  (Bug#9007)
1458 2013-02-14  David Biesack  <sasdjb@d72933.na.sas.com>  (tiny change)
1460         * net/quickurl.el (quickurl-save-urls):
1461         Ensure quickurl-urls is not truncated on printing.  (Bug#9276)
1463 2013-02-14  Dmitry Gutov  <dgutov@yandex.ru>
1465         * progmodes/ruby-mode.el (ruby-parse-partial): Don't increase
1466         depth for unfinished percent literal.  Not using it in the caller.
1467         (ruby-move-to-block): Jump over multiline literals of all types,
1468         ignoring code-looking contents inside them.
1469         (ruby-add-log-current-method): Improve performance at the expense
1470         of accuracy.  `ruby-block-contains-point' is relatively slow, so
1471         only use it for method and singleton class blocks.
1473 2013-02-13  Michael Albinus  <michael.albinus@gmx.de>
1475         Use ControlMaster where applicable.  (Bug#13677)
1477         * net/tramp.el (tramp-ssh-controlmaster-template): New defvar,
1478         replacing `tramp-detect-ssh-controlmaster'.
1479         (tramp-default-method): Use it.
1481         * net/tramp-sh.el (tramp-methods) [scp, scp1, scp2, scpx, sftp]:
1482         [rsync, ssh, ssh1, ssh2, sshx]: Add ControlPath and ControlMaster
1483         arguments.
1484         [scpc, rsyncc]: Remove methods.
1485         (top): Remove completion functions for "scpc", "rsyncc", "ssh1_old"
1486         and "ssh2_old".
1487         (tramp-do-copy-or-rename-file-out-of-band):  Change trace level.
1488         (tramp-maybe-open-connection): Reuse tmpfile for ControlPath.
1490 2013-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1492         * emacs-lisp/package.el (package--initialized): Move before first use.
1494 2013-02-13  Jambunathan K  <kjambunathan@gmail.com>
1496         * icomplete.el (icomplete-hide-common-prefix):  New user option.
1497         (icomplete-first-match): New face.
1498         (icomplete-completions): Correct handling of "complete but not
1499         unique" (Bug#12638).
1501 2013-02-13  YE Qianchuan  <stool.ye@gmail.com>  (tiny change)
1503         * descr-text.el (describe-char): Display the script (bug#13698).
1505 2013-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1507         * tmm.el: Use lexical-binding and current-active-maps.
1508         (tmm-menubar): Use map-keymap and pcase.
1509         (tmm--completion-table): New function.
1510         (tmm-prompt): Use it to fix the menu order.
1511         (tmm-get-keybind): Use current-active-maps.
1513 2013-02-12  Christopher Schmidt  <christopher@ch.ristopher.com>
1515         Add dired-hide-details-mode.  (Bug#6799)
1517         * locate.el (locate-mode): Set parent mode property to dired-mode.
1519         * find-dired.el (find-dired): Call dired-insert-set-properties on
1520         initial information line.  Set process mark on end of buffer.
1521         (find-dired-sentinel):
1522         Call dired-insert-set-properties on summary.
1524         * dired.el (dired-hide-details-hide-symlink-targets)
1525         (dired-hide-details-hide-information-lines): New options.
1526         (dired-insert-directory):
1527         Set properties after final treatment of output.
1528         (dired-insert-set-properties):
1529         Set dired-hide-details-* properties.
1530         (dired-mode-map): Bind dired-hide-details-mode.
1531         (dired-mode): Set buffer-invisibility-spec to a list.
1532         (dired-next-line): Skip hidden lines.
1533         (dired-previous-line): Use dired-next-line.
1534         (dired-hide-details-mode): New minor mode.
1535         (dired-hide-details-update-invisibility-spec): New function.
1537 2013-02-13  Glenn Morris  <rgm@gnu.org>
1539         * play/yow.el: Move to obsolete/.  (Bug#9384)
1541 2013-02-13  Juri Linkov  <juri@jurta.org>
1543         * vc/ediff-util.el (ediff-recenter): Use `select-frame-set-input-focus'
1544         to select `ediff-control-frame' and set input focus correctly on Xfce.
1545         (Bug#12218)
1547 2013-02-13  Juri Linkov  <juri@jurta.org>
1549         * image-mode.el (image-mode-map):
1550         * doc-view.el (doc-view-mode-map):
1551         * vc/ediff-util.el (ediff-setup-keymap):
1552         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
1554 2013-02-13  Dmitry Gutov  <dgutov@yandex.ru>
1556         * progmodes/ruby-mode.el (ruby-move-to-block): Improve
1557         performance.  Instead of recalculating indentation fully for each
1558         line, sum up indentation depth based only on visited lines.
1559         (ruby-parse-partial): Increase the depth after "do" even when END
1560         is right after it.
1561         (ruby-parse-partial): When END is in the middle of a percent
1562         literal, increase the depth if the delimiter chars belong to the
1563         paren syntax class.
1565 2013-02-13  Kirill A. Korinskiy  <catap@catap.ru>
1567         * play/fortune.el (fortune-compile): Also make the compiled file
1568         if it does not exist at all, not just if it is old.  (Bug#5338)
1570 2013-02-13  Glenn Morris  <rgm@gnu.org>
1572         * emacs-lisp/package.el (package-menu-execute): Doc fix.
1574 2013-02-13  Yves Baumes  <ybaumes@gmail.com>  (tiny change)
1576         * lisp/emacs-lisp/package.el (package-menu-execute):
1577         Add optional noquery argument.  (Bug#13625)
1579 2013-02-13  Michael Albinus  <michael.albinus@gmx.de>
1581         * net/ange-ftp.el (ange-ftp-make-directory): Don't raise an error,
1582         if DIR exists and PARENTS is non-nil.
1584 2013-02-13  Juanma Barranquero  <lekktu@gmail.com>
1586         * progmodes/js.el (js--multi-line-declaration-indentation):
1587         Silence byte-compiler warning.
1589 2013-02-12  Michael Albinus  <michael.albinus@gmx.de>
1591         * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.
1593         * net/tramp-compat.el (top): Declare `remote-file-name-inhibit-cache'
1594         only if it doesn't exist.
1596         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
1597         Set process marker.
1599 2013-02-12  Tassilo Horn  <tsdh@gnu.org>
1601         * doc-view.el (doc-view-odf->pdf-converter-soffice): Use separate
1602         UserInstallation when calling soffice to work around LibreOffice
1603         bug 37531.
1605 2013-02-12  Glenn Morris  <rgm@gnu.org>
1607         * files.el (basic-save-buffer):
1608         Offer to create a non-existing directory.  (Bug#3016)
1610         * calc/calc-graph.el (calc-graph-show-dumb):
1611         * calendar/calendar.el (calendar-mode-map):
1612         * cus-edit.el (custom-mode-map):
1613         * ehelp.el (electric-help-map):
1614         * emulation/vip.el (vip-mode-map):
1615         * epa.el (epa-key-list-mode-map):
1616         * info.el (Info-mode-map):
1617         * mail/rmail.el (rmail-mode-map):
1618         * mail/rmailsum.el (rmail-summary-mode-map):
1619         * man.el (Man-mode-map):
1620         * net/newst-plainview.el (newsticker-mode-map):
1621         * progmodes/cpp.el (cpp-edit-mode-map):
1622         * progmodes/grep.el (grep-mode-map):
1623         * progmodes/idlw-help.el (idlwave-help-mode-map):
1624         * simple.el (special-mode-map):
1625         * startup.el (splash-screen-keymap):
1626         * view.el (view-mode-map):
1627         Make S-SPC scroll in the opposite sense to SPC.  (Bug#2145)
1629 2013-02-11  Elias Pipping  <pipping@lavabit.com>
1631         * doc-view.el (doc-view-current-cache-dir): Beware % escapes
1632         (bug#13679).
1634 2013-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1636         * cus-start.el (all): Remove inhibit-local-menu-bar-menus.
1638 2013-02-11  Glenn Morris  <rgm@gnu.org>
1640         * vc/diff.el (diff-use-labels): New variable.
1641         (diff-no-select): Use --label rather than -L, and first
1642         check that it is supported.  (Bug#11067)
1644         * files.el (enable-dir-local-variables): New variable.
1645         (hack-dir-local-variables): Respect enable-dir-local-variables.
1646         * tutorial.el (help-with-tutorial):
1647         Ignore directory-local variables.  (Bug#11127)
1649         * vc/vc-svn.el (vc-svn-command): Move --non-interactive from here...
1650         (vc-svn-global-switches): ... to here.  (Bug#13513)
1652 2013-02-10  Christopher Schmidt  <christopher@ch.ristopher.com>
1654         * minibuf-eldef.el (minibuffer-default--in-prompt-regexps):
1655         Handle "foo (bar, default: xxx): " prompts.
1657 2013-02-10  Chong Yidong  <cyd@gnu.org>
1659         * files.el (basic-save-buffer-1): Do not set
1660         buffer-file-coding-system-explicit (Bug#4533).
1662         * mail/emacsbug.el (report-emacs-bug): Change binding of
1663         report-emacs-bug-insert-to-mailer to C-c M-i (Bug#13510).
1665 2013-02-09  Jay Belanger  <jay.p.belanger@gmail.com>
1667         * calc/calc.el (calc-allow-units-as-numbers): New variable.
1668         * calc/calc-units.el (calc-convert-units): Use new variable.
1670 2013-02-09  Eli Zaretskii  <eliz@gnu.org>
1672         * subr.el (buffer-file-type, default-buffer-file-type): Remove.
1674         * net/ange-ftp.el (ange-ftp-insert-file-contents): Don't reference
1675         buffer-file-type.
1677         * mail/feedmail.el (feedmail-force-binary-write): Doc fix.
1678         (feedmail-run-the-queue, feedmail-dump-message-to-queue)
1679         (feedmail-send-it-immediately): Don't bind buffer-file-type, bind
1680         coding-system-for-write instead.
1682         * jka-compr.el (jka-compr-write-region): Don't bind
1683         buffer-file-type.
1685         * emacs-lisp/bytecomp.el (byte-compile-file): Don't bind
1686         buffer-file-type.
1688         * files.el (file-name-buffer-file-type-alist): Remove defvar.
1689         (insert-file-contents-literally): Remove reference to
1690         file-name-buffer-file-type-alist.
1692         * dos-w32.el (file-name-buffer-file-type-alist): Deprecate and
1693         make-obsolete.
1694         (find-buffer-file-type-match, find-buffer-file-type): Remove.
1695         (find-buffer-file-type-coding-system): Remove references to
1696         find-buffer-file-type-match, find-buffer-file-type, and
1697         buffer-file-type.
1698         Don't put find-buffer-file-type-coding-system into
1699         file-coding-system-alist.
1700         (find-file-binary, find-file-text): Bind coding-system-for-read
1701         instead of file-name-buffer-file-type-alist.
1703 2013-02-09  Jambunathan K  <kjambunathan@gmail.com>
1705         * doc-view.el: Use (and prefer) soffice as default ODF->PDF
1706         converter (Bug#13622).
1707         (doc-view-unoconv-program): Make obsolete alias.
1708         (doc-view-odf->pdf-converter-program): New variable.
1709         (doc-view-odf->pdf-converter-function): New variable.
1710         (doc-view-mode-p): Use it.
1711         (doc-view-odf->pdf-converter-unoconv):
1712         Rename from `doc-view-odf->pdf-converter-unoconv'.
1713         (doc-view-odf->pdf-converter-soffice): New function.
1714         (doc-view-convert-current-doc):
1715         Use `doc-view-odf->pdf-converter-function'.
1717 2013-02-09  Chong Yidong  <cyd@gnu.org>
1719         * minibuffer.el (minibuffer-inactive-mode-map): Bind mouse-1 to
1720         view-echo-area-messages (Bug#13340).
1722         * help.el (view-echo-area-messages): Use display-buffer.
1724         * dired-x.el (dired-do-run-mail): Prompt for confirmation
1725         (Bug#13561).
1727 2013-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1729         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
1730         Eval body right away, now that we do eager macroexpansion (bug#13605).
1732         * simple.el (end-of-buffer): Don't touch unrelated windows (bug#13466).
1733         (fundamental-mode): Use run-mode-hooks.
1735         * eshell/esh-proc.el (eshell/kill): Fix last change.
1736         * eshell/em-ls.el (eshell-ls-dir): Fix use of CL in last change.
1738 2013-02-08  Aidan Gauland  <aidalgol@no8wireless.co.nz>
1740         * eshell/esh-proc.el (eshell/kill): Rewrite.
1742         * eshell/em-ls.el (show-almost-all): Declare.
1743         (eshell-do-ls): Add support for -A argument.
1745 2013-02-08  Jambunathan K  <kjambunathan@gmail.com>
1747         * icomplete.el (icomplete-forward-completions)
1748         (icomplete-backward-completions): Handle corner case (bug#13602).
1750 2013-02-07  Michael Albinus  <michael.albinus@gmx.de>
1752         * vc/vc-hooks.el (vc-find-file-hook): `buffer-file-truename' can
1753         be nil.  Handle this.  (Bug#13636)
1755 2013-02-07  Richard Stallman  <rms@gnu.org>
1757         * mail/rmail.el (rmail-variables): Specify `no-conversion' for
1758         `save-buffer-coding-system'.
1760 2013-02-07  Alan Mackenzie  <acm@muc.de>
1762         Fix bug in state cache mechanism.  Remove 'BOD "strategy".  Refactor.
1763         * progmodes/cc-engine.el (c-get-fallback-scan-pos): Remove.
1764         (c-parse-state-get-strategy): Don't return 'BOD any more.
1765         (c-append-lower-brace-pair-to-state-cache):
1766         Extra parameter HERE instead of narrowing.
1767         Widen to top of buffer before searching backwards for a brace pair.
1768         (c-state-push-any-brace-pair): Add HERE parameter to function call.
1769         (c-append-to-state-cache): Extra parameter HERE in place of narrowing.
1770         Narrow to parameter HERE, in place of being called narrowed.
1771         (c-remove-stale-state-cache): Extra parameter HERE in place of
1772         narrowing.  Check there's an open brace in the cache before
1773         searching for its match.
1774         (c-invalidate-state-cache-1): Add HERE parameter to function call.
1775         (c-parse-state-1): Don't narrow here for 'forward strategy,
1776         instead passing extra parameter HERE to several functions.
1777         Remove 'BOD strategy.
1779 2013-02-06  Nicolas Richard <theonewiththeevillook@yahoo.fr>  (tiny change)
1781         * emacs-lisp/package.el (describe-package-1): Tell what archive is
1782         used to install the package.
1784 2013-02-06  Glenn Morris  <rgm@gnu.org>
1786         * vc/vc-hooks.el (vc-find-file-hook): Don't ask about following links
1787         if we can't get user input.  (Bug#6567)
1789         * startup.el (command-line): If simple.el is missing,
1790         test and warn about for some possible causes.
1792 2013-02-05  Jan Djärv  <jan.h.d@swipnet.se>
1794         * cus-start.el (all): Add ns-use-native-fullscreen.
1796 2013-02-05  Glenn Morris  <rgm@gnu.org>
1798         * profiler.el (profiler-report-mode-map): Add a restart menu entry.
1800         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1801         Fix directory creation in fallback case.
1803 2013-02-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1805         * vc/vc.el (vc-next-action): Fix inf-loop (bug#13610).
1806         (vc-update-change-log): Use dolist.
1808 2013-02-04  Chong Yidong  <cyd@gnu.org>
1810         * thingatpt.el: Rewrite the URL detection routines, absorbing some
1811         code from ffap.el.
1812         (thing-at-point-beginning-of-url-regexp): New var.
1813         (thing-at-point-uri-schemes): Update list of URI schemes.
1814         (thing-at-point-url-regexp): Variable deleted.
1815         (thing-at-point-markedup-url-regexp): Disallow newlines.
1816         (thing-at-point-newsgroup-regexp)
1817         (thing-at-point-newsgroup-heads)
1818         (thing-at-point-default-mail-uri-scheme): New variables.
1819         (thing-at-point-bounds-of-url-at-point): Rewrite.  Use ffap's
1820         method to find the possible bounds of the URI at point.
1821         New optional argument to find ill-formed URIs.
1822         (thing-at-point-url-at-point): Rewrite.  New arguments for finding
1823         ill-formed URIs.  Use thing-at-point-bounds-of-url-at-point, and
1824         the scheme-adding heuristics from ffap-url-at-point.
1825         (thing-at-point--bounds-of-well-formed-url): New function.
1826         Do parens matching to decide whether to include parens in the URI
1827         (Bug#9153).
1829         * ffap.el: Require thingatpt.
1830         (ffap-url-at-point): Delegate URI detection to thing-at-point.
1831         All URI-valid characters are now recognized (Bug#5673).
1832         (ffap-string-at-point): Use use-region-p.
1833         (ffap-url-regexp): Extra character is handled by thing-at-point.
1834         (ffap-string-at-point-mode-alist): Allow parentheses.
1835         (ffap-newsgroup-regexp, ffap-newsgroup-heads, ffap-newsgroup-p):
1836         Convert to aliases; code moved to thingatpt.el.
1837         (ffap-gnus-hook): Use setq-local.
1839 2013-02-04  Glenn Morris  <rgm@gnu.org>
1841         * emacs-lisp/ert.el (ert--explain-format-atom):
1842         Don't try to print non-characters as characters.  (Bug#13543)
1844 2013-02-03  Michael Albinus  <michael.albinus@gmx.de>
1846         * net/tramp.el (tramp-debug-message): Extend function exclude list.
1847         (tramp-backtrace): New defun.
1848         (tramp-handle-insert-file-contents): Use `visit' when inserting
1849         the local copy.
1851         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime):
1852         Use `remote-file-name-inhibit-cache'.
1854 2013-02-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1856         * progmodes/cperl-mode.el (cperl-mode): Avoid byte-compile warning
1857         (bug#13614).
1859         * subr.el (internal--called-interactively-p--get-frame): Avoid filling
1860         current-load-list (bug#13366).
1862 2013-02-02  Christopher Schmidt  <christopher@ch.ristopher.com>
1864         * progmodes/compile.el (compilation-error-regexp-alist-alist):
1865         Identify g++ template instantiation trace.  (Bug#12287)
1866         (compilation-mode-hook, compilation-start-hook)
1867         (compilation-window-height): Simplify docstrings.  (Bug#13379)
1869 2013-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1871         * mouse.el (mouse-drag-track): Always deactivate the mark before
1872         running the final event's command since that command is in charge of
1873         activating the mark if needed (bug#13523).
1875 2013-02-02  Juri Linkov  <juri@jurta.org>
1877         * replace.el (perform-replace): Move let-bindings of isearch-*
1878         variables deeper to the loop that searches for the next match.
1879         Add bindings for `isearch-nonincremental' and `isearch-adjusted'.
1880         Use `isearch-search-fun-default' instead of `isearch-search-fun'.
1881         (Bug#13579)
1883         * isearch.el (isearch-search-fun-default): Check for null
1884         first element of isearch-cmds as a precaution when it's used
1885         with inactive isearch.
1887 2013-02-02  Andrew W. Nosenko  <andrew.w.nosenko@gmail.com>  (tiny change)
1889         * net/tramp.el (tramp-check-for-regexp): Avoid "Args out of range"
1890         error when buffer in question is narrowed so position 1 is out of
1891         visible part.
1893 2013-02-02  Glenn Morris  <rgm@gnu.org>
1895         * textmodes/remember.el (remember-clipboard): Doc fix.
1897 2013-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1899         * progmodes/make-mode.el (makefile-fill-paragraph): Reset syntax-table
1900         properties (bug#13179).
1902 2013-02-02  Juri Linkov  <juri@jurta.org>
1904         * progmodes/grep.el (grep-regexp-alist): Use variable grep-match-face
1905         instead of hard-coded default face `match'.  (Bug#9438)
1907 2012-02-01  Christopher Schmidt  <christopher@ch.ristopher.com>
1909         * vc/vc-arch.el (vc-arch-registered):
1910         * vc/vc-bzr.el (vc-bzr-registered):
1911         * vc/vc-cvs.el (vc-cvs-registered):
1912         * vc/vc-git.el (vc-git-registered):
1913         * vc/vc-hg.el (vc-hg-registered):
1914         * vc/vc-mtn.el (vc-mtn-registered):
1915         * vc/vc-svn.el (vc-svn-registered): Suppress load messages.
1916         (Bug#13139)
1918         * info.el (Info-next-reference, Info-prev-reference): Add numeric
1919         prefix argument.  (Bug#11656)
1921 2013-02-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1923         * help-fns.el (help-split-fundoc): Don't insert byte-compiled body.
1925 2013-02-01  Glenn Morris  <rgm@gnu.org>
1927         * vc/vc-hooks.el (vc-menu-map): Disable vc-rollback menu item
1928         if the backend is known not to support it.
1930         * imenu.el (imenu-default-create-index-function):
1931         Tweak infinite loop test to check for forward motion as well as none.
1933 2013-02-01  Alex Harsanyi  <AlexHarsanyi@gmail.com>
1935         * net/soap-client.el (soap-invoke): Encode the string for
1936         `url-request-data' as UTF-8.
1937         Fixes <http://code.google.com/p/emacs-soap-client/issues/detail?id=16>.
1939 2013-02-01  Glenn Morris  <rgm@gnu.org>
1941         * calc/calc-help.el (calc-view-news): Use view-emacs-news.
1943         * calc/README, calc/README.prev: Rename/merge to etc/CALC-NEWS.
1945 2013-01-31  Michael Albinus  <michael.albinus@gmx.de>
1947         * net/tramp.el (tramp-tramp-file-p): Comment check for
1948         `string-as-unibyte'.  The function does not exist on XEmacs, and
1949         likely we need another approach.
1951         * net/tramp-sh.el (tramp-compute-multi-hops): Check, whether
1952         `tramp-gw-*' variables are bound.
1954 2013-01-31  Glenn Morris  <rgm@gnu.org>
1956         * files.el (basic-save-buffer-2): Choose coding system for
1957         writing the file before backing it up, to reduce delay between
1958         backing up and writing the new version.  (Bug#13522)
1960 2013-01-31  Michal Nazarewicz  <mina86@mina86.com>
1962         * simple.el (cycle-spacing): New command.
1963         (just-one-space): Use it.
1965 2013-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1967         * progmodes/opascal.el: Rename from delphi.el.  Use lexical-binding.
1968         (opascal-newline-always-indents): Remove custom.
1969         (opascal-tab, opascal-newline): Remove commands.
1970         (opascal-new-comment-line): Insert "\n" instead of calling newline.
1971         (opascal-mode-map): Keep default bindings for RET and TAB and DEL.
1972         (opascal-save-match-data): Remove, use save-match-data instead.
1973         (opascal-save-state): Use with-silent-modifications.
1975         * progmodes/pascal.el (pascal-mode-syntax-table): Accept //..\n comments
1976         (bug#13585).
1978 2013-01-30  Juri Linkov  <juri@jurta.org>
1980         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
1981         Use fullboth as an alias for fullscreen.  Suggested by Jan Djärv in
1982         <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00203.html>.
1984 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1986         * progmodes/make-mode.el (makefile-backslash-region): Don't compute
1987         column if we're just deleting the backslashes.
1988         (makefile-fill-paragraph): Use eolp.
1990 2013-01-30  Michael Albinus  <michael.albinus@gmx.de>
1992         * autorevert.el (auto-revert-use-notify): Fix docstring.
1994 2013-01-30  Leo Liu  <sdl.web@gmail.com>
1996         * imenu.el (imenu--truncate-items): Fix subalist checking (bug#13576).
1998 2013-01-30  Glenn Morris  <rgm@gnu.org>
2000         * mouse.el (mouse-drag-line): Avoid pushing same event onto
2001         unread-command-events twice in some cases.  This tries to implement
2002         the 2012-07-26 changes in a different way.  (Bug#13560)
2004 2013-01-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2006         * progmodes/python.el
2007         (python-pdbtrack-comint-output-filter-function): Enhancements on
2008         stacktrace detection.  (thanks @gnovak)
2010 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2012         * jit-lock.el (jit-lock-stealth-chunk-start): Don't widen (bug#13542).
2013         (jit-lock-mode, jit-lock-functions, jit-lock-context-unfontify-pos):
2014         Use defvar-local.
2015         (jit-lock-register): Use setq-local.
2017 2013-01-30  Jay Belanger  <jay.p.belanger@gmail.com>
2019         * calc-units.el (math-default-units-table): Remove initial value.
2020         (calc-convert-units): Treat expressions where all the units cancel as
2021         if they didn't have units.
2023 2013-01-30  Michael Albinus  <michael.albinus@gmx.de>
2025         * net/tramp.el (tramp-process-connection-type): Fix docstring.
2026         (tramp-completion-reread-directory-timeout): Fix type.
2027         (tramp-connection-min-time-diff): New defcustom.
2029         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
2031 2013-01-30  Glenn Morris  <rgm@gnu.org>
2033         * imenu.el (imenu-default-create-index-function):
2034         Put back a version of the infinite loop test removed 2013-01-23.
2036 2013-01-30  Fabián Ezequiel Gallina  <fgallina@cuca>
2038         * progmodes/python.el (python-shell-parse-command):
2039         Find python-shell-interpreter with modified environment.
2041 2013-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2043         * emacs-lisp/cl.el (cl-set-getf): Add compatibility alias.
2045 2013-01-29  Alan Mackenzie  <acm@muc.de>
2047         Amend to fontify /regexp/s in actions correctly.
2048         * cc-awk.el (c-awk-harmless-char-re, c-awk-harmless-string*-re):
2049         (c-awk-harmless-string*-here-re): Braces, parens and semicolons
2050         are no longer included.
2051         (c-awk-harmless-line-char-re, c-awk-harmless-line-string*-re):
2052         What used to be these variables without "-line" in the name.
2053         (c-awk-neutral-re): { is no longer neutral.  Escaped newlines now are.
2054         (c-awk-non-arith-op-bra-re): Now also matches {.
2055         (c-awk-pre-exp-alphanum-kwd-re): New regexp to match "print",
2056         "return", and "case".
2057         (c-awk-kwd-regexp-sign-re): New, to match "print", etc., followed
2058         by /.
2059         (c-awk-syntax-tablify-/): Check special cases "print /re/", etc.
2060         (c-awk-set-syntax-table-properties): Extend FSM to handle {,},(,),;.
2062 2013-01-29  Michael Albinus  <michael.albinus@gmx.de>
2064         * autorevert.el (auto-revert-use-notify):
2065         Use `custom-initialize-default' for initialization.  (Bug#13583)
2067         * net/ange-ftp.el (ange-ftp-skip-msgs): Add another message.
2069         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2070         Catch `suppress'.  Otherwise, `tramp-run-real-handler' might be called
2071         in `tramp-file-name-handler'.
2072         (tramp-gw-tunnel-method, tramp-gw-socks-method): Declare for
2073         compatibility.
2074         (tramp-compute-multi-hops): Check, whether
2075         `tramp-gw-tunnel-method' and `tramp-gw-socks-method' are non-nil.
2077 2013-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2079         * hi-lock.el (hi-lock-unface-buffer): Don't assume `face' is a symbol
2080         (bug#13297).
2082 2013-01-27  Dmitry Gutov  <dgutov@yandex.ru>
2084         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove some
2085         checks made superfluous by the \_< operator.
2086         * progmodes/ruby-mode.el (ruby-move-to-block): Work with (maybe
2087         temporarily) broken indentation.
2088         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
2089         Highlight nested constants, too.  \_< broke that.
2091 2013-01-27  Nobuyoshi Nakada  <nobu@ruby-lang.org>
2093         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use "\\_<"
2094         instead of "\\b".
2096 2013-01-27  Michael Albinus  <michael.albinus@gmx.de>
2098         * autorevert.el (auto-revert-handler): Notifications which result
2099         from a saved file shall not be taken into account.  (Bug#13557)
2101 2013-01-26  Andreas Schwab  <schwab@linux-m68k.org>
2103         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Add optional
2104         parameter BAR-NOT-SYMBOL to control syntax of | for font-lock.
2105         (lisp-mode): Pass t for it.  (Bug#13556)
2107 2013-01-25  Alan Mackenzie  <acm@muc.de>
2109         AWK Mode: Fix indentation bug at top level.  Bug #12274.
2111         * progmodes/cc-engine.el (c-guess-basic-syntax): Move CASE 5P to
2112         just before CASE 5D.
2114 2013-01-25  Dmitry Antipov  <dmantipov@yandex.ru>
2116         * net/socks.el (socks-nslookup-host): Use string-to-number.
2118 2013-01-25  Michael Albinus  <michael.albinus@gmx.de>
2120         * autorevert.el (auto-revert-remote-files)
2121         (auto-revert-notify-exclude-dir-regexp): New defcustoms.
2122         (auto-revert-notify-enabled, auto-revert-use-notify)
2123         (auto-revert-notify-watch-descriptor-hash-list)
2124         (auto-revert-notify-modified-p, auto-revert-notify-event-p)
2125         (auto-revert-notify-event-descriptor)
2126         (auto-revert-notify-event-action)
2127         (auto-revert-notify-event-file-name): Doc fix.
2128         (global-auto-revert-mode): Reorder checks.
2129         (auto-revert-notify-rm-watch): Respect changed values of
2130         `auto-revert-notify-watch-descriptor-hash-list'.
2131         (auto-revert-notify-add-watch): Check for
2132         `auto-revert-notify-exclude-dir-regexp'.  Adapt filters for
2133         `inotify-add-watch'.  Watch `default-directory' instead of
2134         `buffer-file-name'.  `auto-revert-notify-watch-descriptor-hash-list'
2135         has a changed meaning now.  (Bug#13540)
2136         (auto-revert-notify-handler): Change implementation wrt events
2137         returning from a directory.
2138         (auto-revert-handler): Reorder implementation for checks of remote
2139         files.
2140         (auto-revert-buffers): Fix parentheses error.
2142 2013-01-25  Fabián Ezequiel Gallina  <fgallina@cuca>
2144         * progmodes/python.el: Enhancements to header documentation about
2145         skeletons.  (Bug#5716)
2147         * imenu.el (imenu-default-create-index-function): Remove useless
2148         infinite loop check.  (Bug#13438)
2150 2013-01-25  Alan Mackenzie  <acm@muc.de>
2152         Fix a bug in the state cache mechanism.  Refactor this a bit.
2154         * progmodes/cc-engine.el (c-parse-state-get-strategy): Remove the
2155         `cache-pos' element from the return value.
2156         (c-append-lower-brace-pair-to-state-cache): "Narrow" to end of
2157         buffer to enable proper searching from beyond HERE.  Amend the
2158         test for detecting the sought brace pair.  Amend the value written
2159         to the "brace desert cache" when the brace isn't found.
2160         (c-remove-stale-state-cache): Rename `good-pos' to `start-point',
2161         and several other variables analogously.
2162         (c-remove-stale-state-cache-backwards): Change `cache-pos' from a
2163         parameter to a locally calculated variable.
2164         (c-parse-state-1): Change the calling conventions to the two
2165         defuns involving `cache-pos'.
2167 2013-01-25  Chong Yidong  <cyd@gnu.org>
2169         * xml.el (xml-entity-or-char-ref-re): Fix regexp.
2171 2013-01-24  Aaron Ecay <aaronecay@gmail.com>  (tiny change)
2173         * paren.el (show-paren-function): Make sure to set 'priority and
2174         'face only if the overlay does exist.
2176 2013-01-24  Michael Albinus  <michael.albinus@gmx.de>
2178         * net/tramp.el (tramp-tramp-file-p): Check, whether NAME is unibyte.
2180         * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Do not suppress
2181         basic attributes.
2182         (tramp-sh-handle-set-file-acl): Improve error checking.
2184 2013-01-24  Dmitry Antipov  <dmantipov@yandex.ru>
2186         * doc-view.el (doc-view-display): Force mode line update until all
2187         document is converted.  Suggested by Stefan Monnier (Bug#13164).
2189 2013-01-23  Bastien Guerry  <bzg@gnu.org>
2191         * paren.el (show-paren-function): Make sure an overlay exists
2192         before trying to delete it.  Also use `pos' as a position only
2193         when it is an integer.
2195 2013-01-23  Dmitry Antipov  <dmantipov@yandex.ru>
2197         * play/gametree.el (gametree-break-line-here): Use point-marker.
2199 2013-01-22  Michael Albinus  <michael.albinus@gmx.de>
2201         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
2202         Mark descriptive parts with `display' property.
2204 2013-01-21  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
2206         * textmodes/ispell.el (ispell-hunspell-dictionary-equivs-alist):
2207         New variable to map standard dict names to hunspell ones.
2208         (ispell-set-spellchecker-params): Make sure specific dict names
2209         are used for standard dicts with hunspell.
2211 2013-01-21  Tassilo Horn  <tsdh@gnu.org>
2213         * textmodes/reftex-cite.el (reftex-format-citation): Add format
2214         chars for note (%N) and url (%U).
2215         * textmodes/reftex-vars.el (reftex-cite-format): Document them.
2217 2013-01-21  Juri Linkov  <juri@jurta.org>
2219         * frame.el: Bind `f10' in `esc-map' to `toggle-frame-maximized'
2220         in addition to existing separate binding `meta f10' in `global-map'.
2221         (Bug#13484)
2223 2013-01-21  Michael Albinus  <michael.albinus@gmx.de>
2225         Improve XEmacs compatibility.
2227         * net/tramp.el (tramp-replace-environment-variables): Make it a defun.
2229         * net/tramp-adb.el (top): Require `time-date'.
2230         (tramp-adb-ls-output-time-less-p): Use `tramp-time-less-p'.
2231         (tramp-adb-handle-copy-file, tramp-adb-handle-rename-file):
2232         Use `tramp-file-name-handler'.
2233         (tramp-adb-maybe-open-connection):
2234         Use `tramp-compat-set-process-query-on-exit-flag'.
2236         * net/tramp-sh.el (tramp-sh-handle-file-acl):
2237         Use `tramp-compat-funcall'.
2239         * net/tramp-smb.el (tramp-smb-handle-file-acl): Use `looking-at' and
2240         `tramp-compat-funcall'.
2242 2013-01-21  Jürgen Hötzel  <juergen@archlinux.org>
2244         * net/tramp-adb.el (tramp-adb-handle-start-file-process): Complete
2245         reimplementation using "adb shell command ..." instead of running
2246         remote shell interactively.
2248 2013-01-20  Glenn Morris  <rgm@gnu.org>
2250         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map):
2251         Add native profiler menu entries.
2253         * profiler.el (profiler-running-p): New function.
2254         (profiler-cpu-profile): Use profiler-running-p.
2255         (profiler-report-mode-map): Add some more menu entries.
2257 2013-01-19  Glenn Morris  <rgm@gnu.org>
2259         * mail/unrmail.el (unrmail): Do not mangle the mbox From line;
2260         fixes 2012-12-07 change.  (Bug#13499)
2262 2013-01-19  Leo Liu  <sdl.web@gmail.com>
2264         * dired.el (dired-get-marked-files): Prune erroneous values due to
2265         last change.  (Bug#13152)
2267 2013-01-19  Glenn Morris  <rgm@gnu.org>
2269         * progmodes/etags.el (tags-table-check-computed-list):
2270         Preserve point in tags buffer.  (Bug#13412)
2272         * emacs-lisp/lisp-mode.el (lisp-indent-function): Doc fix.
2274 2013-01-19  Christian Wittern  <cwittern@gmail.com>  (tiny change)
2275             Chong Yidong  <cyd@gnu.org>
2277         * image-mode.el (image-next-file, image-previous-file):
2278         New commands (Bug#8453).
2279         (image-mode-map): Bind them to n and p.
2280         (image-mode--images-in-directory): New helper function.
2282 2013-01-19  Chong Yidong  <cyd@gnu.org>
2284         * image-mode.el (image-mode-fit-frame): Add a frame argument.
2285         Suggested by Drew Adams (Bug#7730).  Handle window decorations;
2286         save and restore the old window configuration.
2288 2013-01-18  Leo Liu  <sdl.web@gmail.com>
2290         * progmodes/js.el: Tweak autoload cookie for alias.
2292 2013-01-17  Michael Albinus  <michael.albinus@gmx.de>
2294         * autorevert.el (auto-revert-notify-watch-descriptor): Make it
2295         buffer local, again.  This was lost with the fix on 2013-01-12.
2297 2013-01-17  Jürgen Hötzel  <juergen@archlinux.org>
2299         * eshell/esh-util.el (eshell-path-env): Make it buffer local, in
2300         order to support several eshell buffers in parallel.
2302 2013-01-17  Michael Albinus  <michael.albinus@gmx.de>
2304         * autorevert.el (auto-revert-use-notify): In the :set function, do
2305         not modify `kill-buffer-hook'.
2306         (auto-revert-notify-rm-watch):
2307         Remove `auto-revert-notify-rm-watch' from `kill-buffer-hook'.
2308         (auto-revert-notify-add-watch): Do not call
2309         `auto-revert-notify-rm-watch', but add it to a buffer local
2310         `kill-buffer-hook'.
2312 2013-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2314         * emacs-lisp/trace.el (trace--read-args): Use a closure and an honest
2315         call to `eval' rather than a backquoted lambda.
2317 2013-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2319         * emacs-lisp/nadvice.el (advice--tweak): Make it possible for `tweak'
2320         to return an explicit nil.
2321         (advice--remove-function): Change accordingly.
2323         * emacs-lisp/advice.el (ad-preactivate-advice): Adjust the cleanup to
2324         the use of nadvice.el.
2326         * progmodes/which-func.el (which-function): Silence imenu errors
2327         (bug#13433).
2329 2013-01-15  Michael R. Mauger  <mmaug@yahoo.com>
2331         * progmodes/sql.el: (sql-imenu-generic-expression):
2332         (sql-mode-font-lock-object-name): Match schema qualified names.
2333         (sql-connect): Use string keys.
2334         (sql-product-interactive): Wait for interpreter prompt.
2335         (sql-comint-oracle): Set process coding based on NLS_LANG.
2337 2013-01-15  Michael R. Mauger  <mmaug@yahoo.com>
2339         * progmodes/sql.el (sql-output-to-send): Remove, unused.
2340         (sql-interactive-remove-continuation-prompt):
2341         (sql-send-magic-terminator, sql-interactive-mode): Remove references.
2343 2013-01-14  Leo Liu  <sdl.web@gmail.com>
2345         * calendar/calendar.el (calendar-redraw): Sync window-point and point.
2346         (Bug#13420)
2348 2013-01-14  Glenn Morris  <rgm@gnu.org>
2350         * progmodes/compile.el (compilation-error-regexp-alist-alist):
2351         Fix interpretation of gnu line.col1-col2 format.  (Bug#13335)
2353 2013-01-13  Fabián Ezequiel Gallina  <fgallina@cuca>
2355         * progmodes/python.el (python-nav-end-of-statement):
2356         Fix cornercase when handling multiline strings.
2358 2013-01-13  Richard Stallman  <rms@gnu.org>
2360         * mail/sendmail.el (mail-position-on-field): Add doc string.
2362         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2363         Get current message boundaries and pass them to
2364         message-forward-make-body-mime.  Minor style changes.
2366 2013-01-13  Eli Zaretskii  <eliz@gnu.org>
2368         * cus-start.el (all): Avoid warnings about
2369         scroll-bar-adjust-thumb-portion on platforms where it is not defined.
2371 2013-01-11  Jan Djärv  <jan.h.d@swipnet.se>
2373         * cus-start.el (all): Add scroll-bar-adjust-thumb-portion.
2375 2013-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2377         * jit-lock.el (jit-lock-debug-mode): New minor mode.
2378         (jit-lock--debug-fontifying): New var.
2379         (jit-lock--debug-fontify): New function.
2380         * subr.el (condition-case-unless-debug): Don't prevent catching the
2381         error, just let the debbugger run.
2382         * emacs-lisp/timer.el (timer-event-handler): Don't prevent debugging
2383         timer code and don't drop errors silently.
2385 2013-01-12  Michael Albinus  <michael.albinus@gmx.de>
2387         * autorevert.el (auto-revert-notify-watch-descriptor): Give it
2388         `permanent-local' property.
2389         (auto-revert-notify-handler): Use `file-equal-p'.
2391 2013-01-12  Eli Zaretskii  <eliz@gnu.org>
2393         * autorevert.el (auto-revert-notify-handler): Fix filtering of
2394         file notification by ACTION. For filtering by file name, compare
2395         only the non-directory part of the file name.
2397 2013-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2399         * autorevert.el: Use cl-lib instead of cl.
2401         * vc/vc-bzr.el (vc-bzr--sanitize-header): New function (bug#13307).
2402         (vc-bzr-checkin): Use it.
2403         * vc/log-edit.el (log-edit-extract-headers): Don't presume FUNCTION
2404         will preserve match-data.
2406 2013-01-11  Felix H. Dahlke  <fhd@ubercode.de>
2408         * progmodes/js.el: Fix multiline declarations's indentation (bug#8576).
2409         (js--declaration-keyword-re): New var.
2410         (js--multi-line-declaration-indentation): New function.
2411         (js--proper-indentation): Use it.
2413 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
2415         * calc/calc.el (calc-highlight-selections-with-faces)
2416          (calc-dispatch):
2417         * comint.el (comint-history-isearch-message):
2418         * emacs-lisp/edebug.el (edebug-read, edebug-eval-defun):
2419         * ffap.el (ffap-string-at-point-region, ffap-next)
2420         (ffap-string-at-point, ffap-string-around)
2421         (ffap-copy-string-as-kill, ffap-highlight-overlay)
2422         (ffap-literally):
2423         * font-lock.el (font-lock-keywords-alist)
2424         (font-lock-removed-keywords-alist):
2425         * help-mode.el (help-xref-symbol-regexp):
2426         * info.el (Info-find-emacs-command-nodes):
2427         * international/mule.el (add-to-coding-system-list):
2428         * isearch.el (isearch-message-function, isearch-fail-pos):
2429         * misearch.el (multi-isearch-next-buffer-function):
2430         * newcomment.el (comment-box):
2431         * printing.el (pr-txt-printer-alist, pr-ps-printer-alist)
2432         (pr-setting-database):
2433         * progmodes/cc-fonts.el (c-font-lock-keywords-3)
2434         (c++-font-lock-keywords-3, objc-font-lock-keywords-3)
2435         (java-font-lock-keywords-3, idl-font-lock-keywords-3)
2436         (pike-font-lock-keywords-3):
2437         * progmodes/compile.el (compile):
2438         * progmodes/etags.el (tags-table-files)
2439         (tags-table-files-function, tags-included-tables-function):
2440         * progmodes/gdb-mi.el (gdb, gdb-setup-windows)
2441         (gdb-restore-windows):
2442         * ps-print.el (ps-even-or-odd-pages, ps-spool-buffer-with-faces)
2443         (ps-n-up-filling-database):
2444         * server.el (server-buffer, server-log):
2445         * simple.el (newline, delete-backward-char, delete-forward-char)
2446         (minibuffer-history-isearch-message, kill-line, track-eol)
2447         (temporary-goal-column):
2448         * textmodes/flyspell.el (flyspell-mark-duplications-flag)
2449         (flyspell-default-deplacement-commands):
2450         * textmodes/ispell.el (ispell-accept-output):
2451         * textmodes/sgml-mode.el (html-tag-help):
2452         * vc/compare-w.el (compare-ignore-whitespace)
2453         (compare-ignore-case, compare-windows-dehighlight):
2454         * vc/diff.el (diff):
2455         * whitespace.el (whitespace-point)
2456         (whitespace-font-lock-refontify, whitespace-bob-marker)
2457         (whitespace-eob-marker): Fix ambiguous doc string cross-reference(s).
2459 2013-01-11  Michael Albinus  <michael.albinus@gmx.de>
2461         * autorevert.el (top): Require 'cl in order to pacify byte compiler.
2462         (auto-revert-notify-rm-watch): Ignore errors.
2463         (auto-revert-notify-add-watch): Ignore errors.  Use '(modify) for
2464         inotify, and '(size last-write-time) for w32notify.
2465         Set buffer-local `auto-revert-use-notify' to nil when adding a file
2466         watch fails - this is a fallback to the file modification check.
2467         (auto-revert-notify-event-p, auto-revert-notify-event-descriptor)
2468         (auto-revert-notify-event-action)
2469         (auto-revert-notify-event-file-name): New defuns.
2470         (auto-revert-notify-handler): Use them.  Implement first
2471         plausibility checks.
2472         (auto-revert-handler): Handle also `auto-revert-tail-mode'.
2474 2013-01-11  Julien Danjou  <julien@danjou.info>
2476         * color.el (color-rgb-to-hsv): Fix conversion computing in case min and
2477         max are almost equal. Also return the correct value for V which is
2478         already between 0 and 1.
2480 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
2482         * emacs-lisp/ert.el (ert-run-test): Use point-max-marker.
2484 2013-01-11  Eli Zaretskii  <eliz@gnu.org>
2486         * autorevert.el (auto-revert-notify-rm-watch)
2487         (auto-revert-notify-add-watch): Fix typos in w32notify function
2488         names.
2490 2013-01-10  Michael Albinus  <michael.albinus@gmx.de>
2492         * autorevert.el (auto-revert-notify-enabled): Move up.
2493         (auto-revert-use-notify): New defcustom.
2494         (auto-revert-mode, global-auto-revert-mode)
2495         (auto-revert-notify-add-watch, auto-revert-handler)
2496         (auto-revert-buffers): Use `auto-revert-use-notify' instead of
2497         `auto-revert-notify-enabled'.
2499 2013-01-10  Elias Pipping  <pipping@exherbo.org>
2501         * files.el (auto-mode-alist): Use doc-view for djvu files (bug#13164).
2502         * doc-view.el (doc-view-document->bitmap):
2503         Use doc-view-single-page-converter-function instead of
2504         single-page-converter arg; adjust callers.
2506 2013-01-10  Feng Li  <fengli@gmail.com>  (tiny change)
2508         * progmodes/which-func.el (which-function): Understand Semantic's use
2509         of overlays in imenu--index-alist.
2511 2013-01-10  Wolfgang Jenkner  <wjenkner@inode.at>
2513         * man.el: Handle different "man -k" behaviors (bug#13160).  Use utf-8.
2514         (Man-man-k-use-anchor): New var.
2515         (Man-parse-man-k): New function.
2516         (Man-completion-table): Use it.
2517         (man): Flush the completion cache between uses.
2519 2013-01-10  Michael Albinus  <michael.albinus@gmx.de>
2521         * autorevert.el: Add file watch support.
2522         (auto-revert-notify-enabled): New defconst.
2523         (auto-revert-notify-watch-descriptor-hash-list)
2524         (auto-revert-notify-watch-descriptor)
2525         (auto-revert-notify-modified-p): New defvars.
2526         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
2527         (auto-revert-notify-handler): New defuns.
2528         (auto-revert-mode, global-auto-revert-mode): Remove file watches
2529         when mode is disabled.
2530         (auto-revert-handler): Check for `auto-revert-notify-modified-p'.
2531         (auto-revert-buffers): Add file watches for active buffers.
2533 2013-01-10  Dmitry Antipov  <dmantipov@yandex.ru>
2535         * cus-start.el (toplevel): Only allow float values for
2536         scroll-up-aggressively and scroll-down-aggressively.
2537         Allow any number for line-spacing.
2539 2013-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2541         * doc-view.el (doc-view-pdfdraw-program): Allow "pdfdraw" name.
2542         (doc-view-pdf->png-converter-function): Use mupdf if available.
2543         (doc-view-djvu->png-converter-function)
2544         (doc-view-ps->png-converter-function): Remove.
2545         (doc-view--image-file-pattern): Replace doc-view--image-file-extension.
2546         (doc-view-goto-page, doc-view-convert-current-doc, doc-view-display)
2547         (doc-view-already-converted-p): Adjust accordingly.
2548         (doc-view-mode-p): Simplify.
2549         (doc-view-enlarge): Use setq-local.
2550         (doc-view-pdf->png-converter-ghostscript)
2551         (doc-view-djvu->png-converter-ddjvu)
2552         (doc-view-pdf->png-converter-mupdf): Rework to call
2553         doc-view-start-process directly.
2554         (doc-view-pdf/ps->png): Simplify accordingly.
2555         (doc-view-pdf->png-1, doc-view-djvu->png-1): Remove.
2556         (doc-view-document->bitmap): Rename from doc-view-document->png.
2557         (doc-view-convert-current-doc): Merge pdf and djvu cases.
2558         (doc-view-set-slice-from-bounding-box): Fix completion table.
2559         (doc-view-mode): Use add-hook for after-revert-hook.
2561 2013-01-10  Glenn Morris  <rgm@gnu.org>
2563         * emacs-lisp/authors.el (authors-ignored-files)
2564         (authors-valid-file-names, authors-renamed-files-alist):
2565         Add some more entries.
2567 2013-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2569         * image-mode.el (image-mode-winprops): Don't throw away the fallback
2570         `t' pseudo-window entry.
2572 2013-01-10  Alan Mackenzie  <acm@muc.de>
2574         Fix bugs in the c-parse-state mechanism.  Reuse some markers
2575         instead of continually generating new ones.
2577         * progmodes/cc-engine.el (c-state-old-cpp-beg-marker)
2578         (c-state-old-cpp-end-marker): New variables.
2579         (c-append-lower-brace-pair-to-state-cache): Start a backward
2580         search for "}" definitively outside CPP constructs.
2581         (c-remove-stale-state-cache): Inform the caller of a need to
2582         search back for a brace pair in certain circumstances.
2583         (c-state-maybe-marker): New macro.
2584         (c-parse-state): Reuse markers when appropriate.
2586 2013-01-10  Glenn Morris  <rgm@gnu.org>
2588         * simple.el (execute-extended-command): Doc fix.
2589         Bind prefix-arg around read-extended-command, for prompt.  (Bug#13395)
2591 2013-01-10  Chong Yidong  <cyd@gnu.org>
2593         * faces.el (read-face-name): Doc fix.
2595 2013-01-10  Roland Winkler  <winkler@gnu.org>
2597         * emacs-lisp/crm.el: Allow any regexp for separators.
2598         (crm-default-separator): All spaces around the default comma separator.
2599         (crm--completion-command): New macro.
2600         (crm-completion-help, crm-complete, crm-complete-word): Use it.
2601         (crm-complete-and-exit): Handle non-single-char separators.
2603 2013-01-09  Elias Pipping  <pipping@lavabit.com>
2605         * doc-view.el: Add support for DjVu (bug#13164).
2606         (doc-view-djvu->png-converter-function): New config var.
2607         (doc-view-single-page-converter-function, doc-view--image-type)
2608         (doc-view--image-file-extension): New vars.
2609         (doc-view-mode): Initialize them.
2610         (doc-view-goto-page): Use them.
2611         (doc-view-mode-p): Add support for ddjvu.
2612         (doc-view-djvu->png-converter-ddjvu, doc-view-djvu->png-1)
2613         (doc-view-set-up-single-converter): New funs.
2614         (doc-view-pdf/ps->png): Extend for djvu.
2615         (doc-view-document->png): Rename from doc-view-pdf->png.
2616         (doc-view-convert-current-doc): Handle djvu.
2617         (doc-view-insert-image, doc-view-display)
2618         (doc-view-already-converted-p): Don't hardcode png.
2619         (doc-view-set-doc-type): Recognize djvu docs.
2621 2013-01-09  Elias Pipping  <pipping@lavabit.com>
2623         * doc-view.el: Add support for mupdf converter (bug#13164).
2624         (doc-view-pdfdraw-program, doc-view-pdf->png-converter-function)
2625         (doc-view-ps->png-converter-function): New config vars.
2626         (doc-view-pdf->png-converter-ghostscript)
2627         (doc-view-ps->png-converter-ghostscript)
2628         (doc-view-pdf->png-converter-mupdf): New functions.
2629         (doc-view-pdf/ps->png, doc-view-pdf->png-1): Use them.
2631 2013-01-09  Jürgen Hötzel  <juergen@archlinux.org>
2633         * net/tramp.el (tramp-eshell-directory-change): Check remote-path
2634         first in session cache: When `tramp-own-remote-path' is in
2635         `tramp-remote-path', the remote path is only set in the session
2636         cache.
2638 2013-01-09  Glenn Morris  <rgm@gnu.org>
2640         * emacs-lisp/trace.el (trace-function-foreground)
2641         (trace-function-background): Doc fix.
2643 2013-01-09  Juri Linkov  <juri@jurta.org>
2645         * international/mule-cmds.el (read-char-by-name): Move let-binding
2646         of completion-ignore-case around completing-read to fix regression
2647         exhibited by the test case `C-x 8 RET *acc TAB' and caused by
2648         `string-match-p' using the nil value of `case-fold-search' and
2649         `completion-ignore-case' in `completion-pcm--all-completions'.
2650         (Bug#12615).
2652 2013-01-09  Glenn Morris  <rgm@gnu.org>
2654         * progmodes/compile.el (compilation-parse-errors):
2655         Fix typo.  (Bug#13369)
2657 2013-01-09  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
2659         * comint.el (comint-send-input): Check size of buffer before
2660         waiting for process output, in case already accepted.  (Bug#13290)
2662 2013-01-09  Paul Eggert  <eggert@cs.ucla.edu>
2664         Spelling fixes.
2665         * net/tramp-adb.el (tramp-adb-get-toolbox):
2666         Fix misspelling of 'unknown'.
2668 2013-01-08  Juri Linkov  <juri@jurta.org>
2670         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2671         * progmodes/flymake.el (flymake-errline, flymake-warnline):
2672         Use underline style wave on terminals that support it.  (Bug#13000)
2674 2013-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2676         * emacs-lisp/pcase.el (pcase--split-equal): Also take advantage if
2677         the predicate returns nil.
2679         * simple.el: Use lexical-binding.
2680         (primitive-undo): Use pcase.
2681         (minibuffer-history-isearch-push-state): Use a closure.
2683 2013-01-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
2685         * simple.el (primitive-undo): Move from undo.c.
2687 2013-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2689         * vc/pcvs.el (cvs-cleanup-collection): Extend meaning of `rm-handled'.
2690         (cvs-mode-remove-handled): Use it (bug#13380).
2692         * emacs-lisp/nadvice.el (advice--tweak): New function.
2693         (advice--remove-function, advice--subst-main): Use it.
2695         * emacs-lisp/advice.el: Update commentary.
2697 2013-01-08  Michael Albinus  <michael.albinus@gmx.de>
2699         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
2700         Remove spurious entry.
2702 2013-01-08  Glenn Morris  <rgm@gnu.org>
2704         * net/tramp.el (tramp-default-host-alist): Add :version.
2706 2013-01-08  Juri Linkov  <juri@jurta.org>
2708         * info.el (Info-read-node-name-2): Don't duplicate suffixes for
2709         single completion.  (Bug#12456)
2710         (info--manual-names): Expand node completions into an explicit list
2711         before appending it to another list.  Filter out internal buffers
2712         with the leading space in the buffer name.  (Bug#10771)
2714 2013-01-08  Juri Linkov  <juri@jurta.org>
2716         * info.el (Info-read-node-name-1): Allow empty node name in (FILENAME)
2717         that defaults to the Top node.
2718         (Info-goto-node, Info-read-node-name): Doc fix to mention that
2719         the short format (FILENAME) goes to the Top node.
2720         (Info-build-node-completions): Rename arg `file' to `filename'.
2721         (Bug#13365)
2723 2013-01-07  Bastien Guerry  <bzg@gnu.org>
2725         * menu-bar.el (menu-bar-search-documentation-menu):
2726         Use `apropos-user-option' and fix the help message.
2728 2013-01-07  Bastien Guerry  <bzg@gnu.org>
2730         * apropos.el (apropos-do-all): Update docstring.
2731         (apropos-user-option-button): New face.
2732         (apropos-user-option): Rename from `apropos-variable' and update
2733         docstring.
2734         (apropos-variable): Rewrite, now show all variables by default.
2735         (apropos-print): Mention "User option" instead of "Variable" when
2736         printing doc for user options.  (Bug#13276)
2738 2013-01-07  Jürgen Hötzel  <juergen@archlinux.org>
2740         * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2741         Handle filename correctly, when parsing "source -> target" symlink
2742         output.
2743         (tramp-adb-handle-set-file-times): New defun.
2745 2013-01-07  Stefan Monnier  <monnier@iro.umontreal.ca>
2747         * emacs-lisp/advice.el (ad-activate-advised-definition): Refresh the
2748         advice list when the interactive-spec of ad-Advice-* changes.
2750 2013-01-07  Katsumi Yamaoka  <yamaoka@jpl.org>
2752         * wid-edit.el (widget-default-get): Work for inlined elements.
2753         (Bug#12670)
2755 2013-01-07  Michael Albinus  <michael.albinus@gmx.de>
2757         * net/tramp.el (tramp-default-host-alist): New defcustom.
2758         (tramp-find-host): Use it.
2759         (tramp-eshell-directory-change): Move from tramp-sh.el.  Add to
2760         `eshell-directory-change-hook'.
2762         * net/tramp-adb.el (top): Add adb specific entry in
2763         `tramp-default-host-alist'.
2764         (tramp-adb-file-name-host): Remove function.
2765         (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2766         Use `tramp-file-name-host' instead of `tramp-adb-file-name-host'.
2768         * net/tramp-sh.el: Move eshell integration code to tramp.el.
2770 2013-01-06  Jürgen Hötzel  <juergen@archlinux.org>
2772         * net/tramp-adb.el (tramp-methods): Add `tramp-tmpdir' entry.
2774 2013-01-06  Michael Albinus  <michael.albinus@gmx.de>
2776         * net/tramp-adb.el (tramp-adb-ls-toolbox-regexp): The file size can
2777         consist of more than one digit.
2778         (tramp-adb-file-name-handler-alist):
2779         Use `tramp-handle-file-exists-p' consistently.
2780         (tramp-adb-file-name-handler): Don't tweak `tramp-default-host'.
2781         (tramp-adb-handle-file-exists-p): Remove function.
2782         (tramp-adb-file-name-host): New defun.
2783         (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
2784         Use it.
2785         (tramp-adb-maybe-open-connection): Set "remote-path" property.
2787 2013-01-06  Chong Yidong  <cyd@gnu.org>
2789         * vc/vc.el (vc-next-action): Detect buffer modifications
2790         conflicting with locking VCS operation (Bug#11490).
2792         * vc/vc-hooks.el (vc-after-save): DTRT for locking VCSes.
2794 2013-01-05  Michael Albinus  <michael.albinus@gmx.de>
2796         * net/tramp-adb.el (tramp-do-parse-file-attributes-with-ls):
2797         (tramp-adb-handle-directory-files-and-attributes): Fix typos.
2799 2013-01-05  Jürgen Hötzel  <juergen@archlinux.org>
2801         * net/tramp-adb.el (tramp-adb-handle-file-attributes): More robust
2802         parsing of ls output using regular expression (handle filenames
2803         with spaces).  Use virtual device number.
2804         (tramp-do-parse-file-attributes-with-ls): New defun (Code
2805         cleanup).
2807 2013-01-04  Daiki Ueno  <ueno@gnu.org>
2809         * epg.el: Silence byte-compiler warnings.
2810         (epg--start): Use delete-char instead of delete-backward-char.
2811         (epg-wait-for-completion): Pass FRAME arg to redraw-frame.
2813 2013-01-04  Daiki Ueno  <ueno@gnu.org>
2815         * epg.el (epg--start): Don't call "tty" program on W32 platforms.
2816         Suggested by Eli Zaretskii  <eliz@gnu.org>.
2818 2013-01-04  Michael Albinus  <michael.albinus@gmx.de>
2820         * net/tramp-sh.el (tramp-set-file-uid-gid): UID and GID must be
2821         non-negative integers.  Otherwise, the default values are used.
2822         (tramp-convert-file-attributes): Convert uid and gid to integers.
2824 2013-01-04  Glenn Morris  <rgm@gnu.org>
2826         * term.el (term-handle-colors-array): Ensure face attributes
2827         are fully specified, not nil.  (Bug#13337)
2829         * term.el (term-default-fg-color, term-default-bg-color):
2830         Fix custom type.
2832         * progmodes/etags.el (tags-compression-info-list): Doc fix.
2833         (tag-find-file-of-tag-noselect): Check auto-compression-mode
2834         rather than 'jka-compr being loaded.  (Bug#13338)
2836 2013-01-04  Wesley Dawson  <whd@lavabit.com>  (tiny change)
2838         * icomplete.el (icomplete-completions):
2839         Honor icomplete-prospects-height once more following
2840         2012-11-29 changes.  (Bug#13224)
2842 2013-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2844         * subr.el (internal--called-interactively-p--get-frame): Find aliases
2845         of called-interactively-p as well (bug#13237).
2847         * view.el (view--enable, view--disable): Rename from view-mode-enable
2848         and view-mode-disable and assume it's called from view-mode.
2849         (view-mode-enable, view-mode-disable): Redefine as obsolete
2850         compatibility layer above view-mode.
2851         (view-mode-enter): Call `view-mode'.
2853         * files.el (after-find-file): Call `view-mode'.
2855         * doc-view.el (doc-view-scale-internally): New var.
2856         (doc-view-enlarge, doc-view-insert-image): Obey it.
2858 2013-01-03  Daiki Ueno  <ueno@gnu.org>
2860         * epg.el (epg--start): Ignore errors when /dev/fd/0 does not
2861         exist.  (Bug#13344)
2863 2013-01-03  Glenn Morris  <rgm@gnu.org>
2865         * mail/rmail.el (rmail-set-header-1): Ignore case.
2866         Handle multi-line headers.  (Bug#13330)
2868         * progmodes/make-mode.el (makefile-fill-paragraph): Add doc.
2869         Handle paragraph starting at beginning of buffer.
2871         * subr.el (eval-after-load): Don't purecopy the form, so that it
2872         can be nconc'd later on; reverts 2009-11-11 change.  (Bug#13331)
2874         * emacs-lisp/byte-run.el (defun): Place cl declarations
2875         after any interactive spec.  (Bug#13265)
2877 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
2879         * emacs-lisp/byte-run.el (defmacro): Use same argument parsing as
2880         defun.  Don't check for DECL if DOCSTRING isn't a string.
2881         (defun): Likewise.
2883 2013-01-02  Glenn Morris  <rgm@gnu.org>
2885         * eshell/em-cmpl.el (eshell-pcomplete):
2886         More thoroughly imitate pcomplete.  (Bug#13293)
2888         * files.el (parse-colon-path): Doc fix.  (Bug#12351)
2889         Return nil for empty path elements.  (Bug#13296)
2891 2013-01-02  Fabián Ezequiel Gallina  <fgallina@cuca>
2893         * progmodes/python.el (python-nav-end-of-statement): Rewrite in
2894         order to improve efficiency (Based on Daniel Colascione's
2895         <dancol@dancol.org> patch).  (Bug#13182)
2897 2013-01-02  Glenn Morris  <rgm@gnu.org>
2899         * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
2901 2013-01-02  Andreas Schwab  <schwab@linux-m68k.org>
2903         * emacs-lisp/byte-run.el (defmacro): Don't lose final nil if
2904         neither DOCSTRING nor DECL was given.  (Bug#13316)
2906 2013-01-02  Michael Albinus  <michael.albinus@gmx.de>
2908         * net/tramp-sh.el (tramp-sh-handle-set-file-acl): Add argument to
2909         `error' call.
2910         (tramp-do-copy-or-rename-file): Ignore errors when calling
2911         `set-file-extended-attributes'.
2913         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2914         Add handler for `file-acl'.
2915         (tramp-smb-handle-file-acl): New defun.
2917 2013-01-02  Jay Belanger  <jay.p.belanger@gmail.com>
2919         * calc/README: Mention ISO 8601 week-numbering dates.
2921 2013-01-01  Martin Rudalics  <rudalics@gmx.at>
2923         * view.el (view-mode-enable): New argument run-view-mode-hook.
2924         Run view-mode-hook only when it's non-nil (Bug#13315).
2925         (view-mode-enter): Call view-mode-enable with run-view-mode-hook
2926         argument t.
2928 2012-12-31  Jürgen Hötzel  <juergen@archlinux.org>
2930         * net/tramp-adb.el (tramp-adb-maybe-open-connection): Handle errors
2931         (No device connected, invalid device name). (Bug #13299)
2933 2012-12-31  Martin Rudalics  <rudalics@gmx.at>
2935         * window.el (window-resizable--p): Rename to window-resizable-p.
2936         (window-resize-no-error): New function.
2938         * mail/rmail.el (rmail-maybe-display-summary): Restore behavior
2939         broken in fix from 2012-12-28.
2941 2012-12-31  Stefan Monnier  <monnier@iro.umontreal.ca>
2943         * subr.el (special-form-p): Don't signal errors on undef aliases.
2945 2012-12-31  Jay Belanger  <jay.p.belanger@gmail.com>
2947         * calc/calc-forms.el (math-parse-date): Try using
2948         `math-parse-iso-date' when it looks like it might be needed.
2949         Allow times of 24:00.
2950         (math-parse-date-validate, math-parse-iso-date-validate):  Allow times
2951         of 24:00.
2953 2012-12-30  Glenn Morris  <rgm@gnu.org>
2955         * net/mairix.el (rmail, rmail-summary-displayed, rmail-summary):
2956         Remove unnecessary/buggy autoloads (missing interactive).  (Bug#13294)
2957         (rmail-summary-displayed, rmail-summary): Declare.
2958         (mairix-rmail-display): Just require rmail.
2960 2012-12-30  Chong Yidong  <cyd@gnu.org>
2962         * emacs-lisp/package.el (package-untar-buffer): Improve integrity
2963         check for the tarball contents.
2965 2012-12-30  Matt Fidler  <matt.fidler@alcon.com>  (tiny change)
2967         * emacs-lisp/package.el (package-untar-buffer): Handle problematic
2968         tarfile content listings (Bug#13136).
2970 2012-12-30  Mark Lillibridge  <mark.lillibridge@hp.com>
2972         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
2973         Insert the undecoded text of the message being forwarded.  (Bug#9521)
2975 2012-12-30  Michael Albinus  <michael.albinus@gmx.de>
2977         * net/tramp-sh.el (tramp-set-file-uid-gid): Convert UID and GID to
2978         integers, if they are real numbers.  (Bug#13282)
2980         * net/tramp-sh.el (tramp-sh-handle-set-file-selinux-context):
2981         Return `t' on success.
2983         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
2984         Add handler for `set-file-selinux-context'.
2986 2012-12-29  Michael Albinus  <michael.albinus@gmx.de>
2988         * net/tramp-sh.el (tramp-sh-handle-file-acl): Suppress basic attributes.
2989         (tramp-sh-handle-set-file-acl): Return `t' on success.
2991 2012-12-29  Eli Zaretskii  <eliz@gnu.org>
2993         * files.el (backup-buffer-copy, basic-save-buffer-2):
2994         If set-file-extended-attributes fails, fall back on set-file-modes
2995         instead of signaling an error.  (Bug#13298)
2996         (basic-save-buffer): Likewise.
2998 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3000         * progmodes/python.el: Support other commands triggering
3001         python-indent-line so indentation cycling continues to work.
3002         (python-indent-trigger-commands): New defcustom.
3003         (python-indent-line): Use it.
3005 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3007         * progmodes/python.el (python-shell-send-region): Add blank lines
3008         for non sent code so backtraces remain correct.
3010 2012-12-29  Fabián Ezequiel Gallina  <fgallina@cuca>
3012         * progmodes/python.el: Remove cl dependency.
3013         (python-syntax-count-quotes): Replace incf call.
3014         (python-fill-string): Replace setf call.
3016 2012-12-29  Damien Cassou  <damien.cassou@gmail.com>
3018         * info.el (info-other-window): New arg, for consistency with info.
3020 2012-12-28  Martin Rudalics  <rudalics@gmx.at>
3022         * mail/rmail.el (rmail-maybe-display-summary):
3023         Rewrite (Bug#13066).
3025 2012-12-28  Andreas Schwab  <schwab@linux-m68k.org>
3027         * epg.el (epg--start): Modify process-environment locally.
3029 2012-12-28  Daiki Ueno  <ueno@gnu.org>
3031         * epg.el: Support pinentry-curses.
3032         Suggested by Werner Koch in
3033         <http://lists.gnu.org/archive/html/emacs-devel/2007-02/msg00755.html>.
3034         (epg-agent-file, epg-agent-mtime): New variable.
3035         (epg--start): Record the modified time of gpg-agent socket file,
3036         to restore Emacs frame after pinentry-curses termination.
3037         (epg-wait-for-completion): Restore Emacs frame here.
3039 2012-12-27  Juri Linkov  <juri@jurta.org>
3041         * info.el (Info-file-completions): New variable.
3042         (Info-read-node-name-1): Complete node names in the Info file
3043         when a file name is given.  Call `Info-build-node-completions'
3044         with a file name.
3045         (Info-build-node-completions): Add new arg `file'.  When it is
3046         non-nil, visit it in a temporary buffer and cache its completions in
3047         `Info-current-file-completions'.  Move most of the function body to
3048         `Info-build-node-completions-1'.
3049         (Info-build-node-completions-1): New function with the body from
3050         `Info-build-node-completions'.  (Bug#12456)
3052 2012-12-27  Juri Linkov  <juri@jurta.org>
3054         * frame.el (frame-maximization-style): Remove user option.
3055         (cycle-frame-maximized): Remove function.
3056         (toggle-frame-maximized): Rewrite and bind to M-<f10>.
3057         (toggle-frame-fullscreen): New command bound to <f11> instead of
3058         `toggle-frame-maximized'.
3059         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00703.html
3061 2012-12-27  Michael Albinus  <michael.albinus@gmx.de>
3063         * net/tramp.el (tramp-handle-file-accessible-directory-p): New defun.
3065         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
3066         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3067         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
3068         for `file-accessible-directory-p'.  (Bug#13275)
3070 2012-12-27  Sam Steingold  <sds@gnu.org>
3072         * progmodes/cperl-mode.el (cperl-calculate-indent): Do not stagger
3073         continuations, see <http://stackoverflow.com/questions/3582436>.
3075 2012-12-27  Dmitry Gutov  <dgutov@yandex.ru>
3077         * progmodes/ruby-mode.el (ruby-indent-beg-re): Only allow "class",
3078         "module" and "def" to have indentation before them.
3079         Regression from 2012-09-07T04:15:56Z!dgutov@yandex.ru (see the new test).
3081         * progmodes/ruby-mode.el: Bump the version to 1.2 (Bug#13200).
3083 2012-12-27  Alan Mackenzie  <acm@muc.de>
3085         Speed up fontification where there's large brace blocks.
3086         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Add a limit
3087         to a call of c-beginning-of-decl-1.
3089 2012-12-27  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
3091         * comint.el (comint-adjust-window-point): New function.
3092         (comint-postoutput-scroll-to-bottom):
3093         Call comint-adjust-window-point (Bug#13248).
3095 2012-12-26  Dmitry Gutov  <dgutov@yandex.ru>
3097         * progmodes/ruby-mode.el (auto-mode-alist): `purecopy' the
3098         Rakefile regexp.
3099         (auto-mode-alist): Associate .gemspec files with ruby-mode
3100         (https://bugs.ruby-lang.org/issues/5453).
3102 2012-12-26  Jürgen Hötzel  <juergen@archlinux.org>
3104         * net/tramp-adb.el (tramp-adb-get-ls-command): New defun.
3105         Suppress coloring, if possible (required for BusyBox based systems like
3106         CyanogenMod).
3107         (tramp-adb-handle-file-attributes)
3108         (tramp-adb-handle-insert-directory)
3109         (tramp-adb-handle-file-name-all-completions): Use it.
3110         (tramp-adb-get-toolbox): New defun.  Check for remote shell
3111         implementation (BusyBox or Toolbox).
3113 2012-12-24  Constantin Kulikov <zxnotdead@gmail.com>  (tiny change)
3115         * startup.el (initial-buffer-choice): Allow function as value
3116         (Bug#13251).
3117         (command-line-1): Handle case where initial-buffer-choice
3118         specifies a function.
3119         * server.el (server-execute): Handle case where
3120         initial-buffer-choice specifies a function.
3122 2012-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
3124         * mail/smtpmail.el (smtpmail-try-auth-method): Refactored out into
3125         its own function.
3126         (smtpmail-try-auth-methods): Forget the user name/password if the
3127         login is unsuccessful (bug#12424).
3129 2012-12-22  Michael Albinus  <michael.albinus@gmx.de>
3131         * notifications.el (notifications-notify): Protect body with
3132         `with-demoted-errors'.
3134         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
3135         Check properties of remote device.  Restart connection, if there is a
3136         change.
3138 2012-12-21  Chong Yidong  <cyd@gnu.org>
3140         * sort.el (sort-subr): Doc fix (Bug#13056).
3142 2012-12-21  Bastien Guerry  <bzg@gnu.org>
3144         * progmodes/etags.el (tags-search): Fix typo.  Bug #13232.
3146 2012-12-21  Michael Albinus  <michael.albinus@gmx.de>
3148         * simple.el (process-file): Overwrite stderr file, if exists.
3150 2012-12-21  Daiki Ueno  <ueno@gnu.org>
3152         * epg.el (epg--start): Print GPG_AGENT_INFO in the debug buffer.
3153         (epg-error): Set `error-message' property.
3155 2012-12-21  Chong Yidong  <cyd@gnu.org>
3157         * international/mule-cmds.el (read-char-by-name): Signal an error
3158         if the user does not supply a valid character (Bug#13177).
3160         * simple.el (transpose-subr-1): Preserve marker positions by
3161         changing the insertion sequence (Bug#13122).
3163 2012-12-21  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
3165         * simple.el (kill-region): Deactivate mark even for empty regions
3166         (Bug#13169).
3168 2012-12-21  Chong Yidong  <cyd@gnu.org>
3170         * help-fns.el (describe-variable): Make sure we get the right
3171         buffer name (Bug#13105).  Suggested by Kelly Dean.
3173 2012-12-20  Michael R. Mauger  <mmaug@yahoo.com>
3175         * comint.el (comint-redirect-previous-input-string): New variable.
3176         (comint-redirect-setup, comint-redirect-cleanup)
3177         (comint-redirect-preoutput-filter): Use it.  Fixes redirection bug.
3178         (comint-redirect-preoutput-filter): Fix verbose message.
3180 2012-12-20  Michael Albinus  <michael.albinus@gmx.de>
3182         * progmodes/grep.el (rgrep): Escape command line.  Sometimes, it
3183         is too long for Tramp.  See discussion in
3184         <http://thread.gmane.org/gmane.emacs.tramp/8233/focus=8244>.
3186         * progmodes/compile.el (compilation-start): Remove line escape
3187         template.
3189 2012-12-20  Dmitry Antipov  <dmantipov@yandex.ru>
3191         * vc/ediff-ptch.el (ediff-map-patch-buffer): Use `point-min-marker'.
3192         Adjust comment.
3194 2012-12-19  Jonas Bernoulli  <jonas@bernoul.li>
3196         * emacs-lisp/lisp-mnt.el (lm-section-end): Always end before the
3197         following non-comment text (bug#13207).
3198         (lm-header-multiline): Continuation lines need to be indented more than
3199         the first line.
3200         (lm-homepage): New function.
3201         (lm-with-file): Don't be confused if narrowing is in effect.
3203 2012-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3205         * vc/diff-mode.el (diff-post-command-hook): Don't ignore changes at the
3206         very beginning of a hunk (e.g. killing the first line).
3208 2012-12-19  Michael Albinus  <michael.albinus@gmx.de>
3210         * net/tramp-sh.el (tramp-sh-handle-file-acl): Delete empty lines
3211         and text properties from returned ACL string.
3212         (tramp-sh-handle-set-file-acl): Do not use additional parentheses
3213         for "setfacl" command.
3215 2012-12-18  Michael Albinus  <michael.albinus@gmx.de>
3217         * net/tramp.el (tramp-error-with-buffer): Give a hint to use
3218         `tramp-cleanup-this-connection', when the process has died.
3219         (Bug#13151)
3221 2012-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3223         * icomplete.el (icomplete-completions): Also use … to truncate prefix.
3225 2012-12-17  Kevin Ryde  <user42@zip.com.au>
3227         * files.el (auto-save-file-name-p): Use \` and \' (bug#13186).
3229 2012-12-17  Michael Albinus  <michael.albinus@gmx.de>
3231         Add support for preserving ACL entries of files.
3233         * net/tramp.el (tramp-file-name-for-operation): Add `file-acl' and
3234         `set-file-acl' handlers.
3236         * net/tramp-adb.el (tramp-adb-handle-copy-file):
3237         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3239         * net/tramp-compat.el (tramp-compat-copy-file):
3240         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3242         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
3243         Add `file-acl' and `set-file-acl' handlers.
3244         (tramp-gvfs-handle-copy-file):
3245         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3246         (tramp-gvfs-handle-file-acl, tramp-gvfs-handle-set-file-acl):
3247         New defuns.
3249         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
3250         Add `file-acl' and `set-file-acl' handlers.
3251         (tramp-remote-acl-p, tramp-sh-handle-file-acl)
3252         (tramp-sh-handle-set-file-acl): New defuns.
3253         (tramp-sh-handle-copy-file, tramp-do-copy-or-rename-file):
3254         Handle PRESERVE-EXTENDED-ATTRIBUTES.
3256         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
3257         Add `file-acl' and `set-file-acl' handlers.
3258         (tramp-smb-handle-copy-file): Handle PRESERVE-EXTENDED-ATTRIBUTES.
3260 2012-12-17  Kelly Dean  <kellydeanch@yahoo.com> (tiny change)
3262         * help-macro.el (make-help-screen): Instead of switch-to-buffer
3263         use pop-to-buffer with NORECORD argument t.  As buffer name, use
3264         *Metahelp* with a leading space (Bug#13190).
3266 2012-12-16  Romain Francoise  <romain@orebokech.com>
3268         * files.el (file-extended-attributes)
3269         (set-file-extended-attributes): New functions.
3270         (backup-buffer): Use them to handle both SELinux context and ACL
3271         entries.
3272         (backup-buffer-copy): Work with an alist of extended attributes,
3273         rather than an SELinux context.
3274         (basic-save-buffer-2): Ditto.
3276 2012-12-16  Timo Myyrä  <timo.myyra@gmail.com>
3278         * battery.el (battery-bsd-apm): New function.
3280 2012-12-16  Jay Belanger  <jay.p.belanger@gmail.com>
3282         * calc/calc.el (calc-standard-date-formats): Adjust one of the
3283         standard date formats.
3285 2012-12-15  Juri Linkov  <juri@jurta.org>
3287         * isearch.el (isearch-mode-map): Bind `C-x 8 RET' to
3288         `isearch-insert-char-by-name'.
3289         (with-isearch-suspended): New defmacro with body mostly from
3290         `isearch-edit-string' except the part that sets
3291         `isearch-new-string' and `isearch-new-message'.
3292         (isearch-edit-string): Use new macro `with-isearch-suspended' with
3293         body that sets `isearch-new-string' and `isearch-new-message'.
3294         (isearch-insert-char-by-name): New command.
3295         * international/mule-cmds.el (read-char-by-name): Let-bind
3296         `enable-recursive-minibuffers' to t.
3297         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00234.html
3299 2012-12-15  Juri Linkov  <juri@jurta.org>
3301         * isearch.el (isearch-delete-char, isearch-del-char): Doc fix.
3302         (Bug#13175)
3304 2012-12-15  Christopher Schmidt  <christopher@ch.ristopher.com>
3306         * dired-x.el (dired-guess-shell-command): Put colon at the end of
3307         the prompt.  (Bug#13045)
3309 2012-12-14  Glenn Morris  <rgm@gnu.org>
3311         * emacs-lisp/macroexp.el (macroexp--warn-and-return):
3312         Try to include filename in non-bytecomp warning.  (Bug#13132)
3314 2012-12-14  Paul Eggert  <eggert@cs.ucla.edu>
3316         Fix permissions bugs with setgid directories etc. (Bug#13125)
3317         * files.el (backup-buffer): Don't rely on 9th output of
3318         file-attributes, as it's now a placeholder.  Instead, use the new
3319         optional arg of file-ownership-preserved-p.
3320         (file-ownership-preserved-p): New optional arg GROUP.
3321         Fix mishandling of setuid directories that would cause this
3322         function to return t when it should have returned nil.
3323         Document what happens if the file does not exist, and when
3324         it's not known whether the ownership will be preserved.
3325         * net/tramp-sh.el (tramp-sh-handle-file-ownership-preserved-p):
3326         Likewise.
3327         (tramp-get-local-gid): Use group-gid for integer, as that's
3328         faster and more reliable.
3330 2012-12-14  Julien Danjou  <julien@danjou.info>
3332         * progmodes/sql.el (sql-mode-postgres-font-lock-keywords):
3333         Update keywords list, data type and PL/pgSQL.
3335 2012-12-14  Dave Abrahams  <dave@boostpro.com>
3337         * vc/ediff-util.el (ediff-buffer-type): New function.
3338         (ediff-clone-buffer-for-current-diff-comparison): Compute the buf-type
3339         rather than taking it as as argument.
3340         (ediff-inferior-compare-regions): Adjust calls accordingly (bug#11319).
3342 2012-12-14  Ryan Crum  <ryan.crum@eleostech.com>
3344         * json.el: Add pretty-print option (bug#12634).
3345         (json-encoding-separator, json-encoding-default-indentation)
3346         (json--encoding-current-indentation, json-encoding-pretty-print)
3347         (json-encoding-lisp-style-closings): New vars.
3348         (json--with-indentation): New macro.
3349         (json-encode-hash-table, json-encode-alist, json-encode-plist)
3350         (json-encode-array): Use it to obey json-encoding-pretty-print.
3351         (json-pretty-print-buffer, json-pretty-print): New commands.
3353 2012-12-14  Dmitry Gutov  <dgutov@yandex.ru>
3355         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
3356         Extract `ruby-syntax-propertize-expansions'.
3357         (ruby-syntax-propertize-expansions): Only change syntax on
3358         certain string delimiters, to punctuation.  This way the common
3359         functions like forward-word and thing-at-point still work.
3360         (ruby-match-expression-expansion): Improve readability.
3361         (ruby-block-contains-point): New function.
3362         (ruby-add-log-current-method): Handle several edge cases.
3364 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
3366         * emacs-lisp/edebug.el (edebug-unload-function): Make sure that
3367         unload-feature finishes even when aborting an ongoing edebug session.
3368         Also, do not worry about edebug-mode, unload-feature takes care of it.
3370 2012-12-13  Andreas Schwab  <schwab@suse.de>
3372         * net/tls.el (tls-program): Update customize type.
3374 2012-12-13  Juanma Barranquero  <lekktu@gmail.com>
3376         * emacs-lisp/edebug.el (edebug--require-cl-read): New function.
3377         (edebug-setup-hook, cl-read-load-hooks): Use it.
3378         (edebug-unload-function): New function.  (Bug#13163)
3380 2012-12-13  Michael Albinus  <michael.albinus@gmx.de>
3382         * net/tramp-adb.el (tramp-adb-file-name-p): Make it a defsubst.
3383         Otherwise, there could be errors in autoloading.  (Bug#13151)
3385 2012-12-13  Jürgen Hötzel  <juergen@archlinux.org>
3387         * net/tramp-adb.el (tramp-adb-wait-for-output): Remove spurious " ^H"
3388         sequences.
3390 2012-12-13  Alan Mackenzie  <acm@muc.de>
3392         Make CC Mode not hang when _some_ lines end in CRLF.  Bug #11841.
3393         * progmodes/cc-engine.el (c-backward-comments): Add code to work
3394         around `forward-comment' not recognizing ^M as whitespace.
3396 2012-12-13  Fabián Ezequiel Gallina  <fgallina@cuca>
3398         * progmodes/python.el (python-skeleton-class)
3399         (python-skeleton-def): Do not add space after defun name.
3401 2012-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3403         * emacs-lisp/cl.el (letf): Make it an alias of cl-letf.
3404         (cl--symbol-function): Remove (now that funbound is like nil).
3406 2012-12-12  Glenn Morris  <rgm@gnu.org>
3408         * button.el (button--area-button-p): Fix typo.
3410 2012-12-12  Sam Steingold  <sds@gnu.org>
3412         * frame.el (frame-maximization-style): New user option.
3413         (toggle-frame-maximized): Toggle frame maximization according to
3414         `frame-maximization-style', bound to <f11>.
3415         (cycle-frame-maximized): Cycle between all maximization styles and
3416         non-maximized frame, bound to shift-<f11>.
3418 2012-12-12  David Cadé  <codename68@gmail.com>
3420         * mpc.el (mpc-format): Use truncate-string-to-width (bug#13143).
3422 2012-12-12  Jonas Bernoulli  <jonas@bernoul.li>
3424         * lisp/emacs-lisp/eieio.el: Prettier object pretty-printing (bug#13115).
3425         (eieio-override-prin1): Don't quote kewords and booleans.
3426         (object-write) <eieio-default-superclass>: Don't put closing parens
3427         on new line, avoid needless empty lines, align values that are objects
3428         with the slot keyword (instead of beginning on the same line).
3429         (eieio-list-prin1): Align value with slot keyword; increase
3430         eieio-print-depth before printing members of the list.
3432 2012-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3434         * mail/emacsbug.el (report-emacs-bug): Move the intangible text to
3435         a display text-property.
3436         (report-emacs-bug-hook): Don't bother deleting it any more.
3438         * hilit-chg.el (highlight-save-buffer-state): Delete.
3439         Use with-silent-modifications instead.
3440         (hilit-chg-set-face-on-change): Only fixup the text that's modified.
3442         * button.el: Handle buttons in display text-properties.
3443         (button--area-button-p, button--area-button-string):
3444         Use (STRING . STRING-POS) representation instead of just STRING.
3446 2012-12-11  Eli Zaretskii  <eliz@gnu.org>
3448         * makefile.w32-in (compile4-SH): Fix a typo that caused term
3449         subdirectory be skipped.
3451 2012-12-11  Glenn Morris  <rgm@gnu.org>
3453         * net/rcirc.el (rcirc-urls, rcirc-condition-filter): Doc fixes.
3455         * progmodes/f90.el (f90-line-continued, f90-indent-region):
3456         Treat preprocessor lines embedded in continuations like comments.
3457         (f90-indent-line): Special-case preprocessor lines.  (Bug#13138)
3459 2012-12-11  Jay Belanger  <jay.p.belanger@gmail.com>
3461         * calc/calc.el (calc-standard-date-formats):  Add more date
3462         formats.
3463         * calc/calc-forms.el (math-parse-iso-date): New function.
3464         (math-parse-date): Use `math-parse-iso-date' when appropriate.
3465         (math-parse-iso-date-validate): Add extra error checking.
3466         (calc-date-notation): Add ability to access new date formats.
3468 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3470         * hi-lock.el (hi-lock--regexps-at-point): Fix boundary case for
3471         font-lock as well as when there's no text-property.
3473 2012-12-10  Jambunathan K  <kjambunathan@gmail.com>
3475         * hi-lock.el: Refine the choice of default face.
3476         (hi-lock-keyword->face): New function.  Use it wherever we used
3477         cadadadr instead.
3478         (hi-lock--regexps-at-point): Ignore faces that can't come from hi-lock.
3479         (hi-lock--last-face): Remove var.
3480         (hi-lock--unused-faces): New var to replace it.
3481         (hi-lock-read-face-name): Use/maintain it.
3482         (hi-lock-unface-buffer): Maintain it.  Fix error for the C-u case.
3483         (hi-lock-set-pattern): Ignore new rule if it has the same regexp even
3484         if it has another face.
3486 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3488         * subr.el (w32notify-handle-event): New function.
3489         (inotify-handle-event): Doc fix.
3491 2012-12-10  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3493         * subr.el (inotify-event-p, inotify-handle-event): New functions.
3495 2012-12-10  Dani Moncayo <dmoncayo@gmail.com>
3497         * simple.el (just-one-space): Doc fix.
3499 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3501         * textmodes/texinfo.el (texinfo-enable-quote-envs): Add "smallexample".
3503 2012-12-10  Le Wang  <l26wang@gmail.com>
3505         * hilit-chg.el (hilit-chg-set-face-on-change): Don't burp in
3506         narrowed buffer (bug#12361).
3508 2012-12-10  Juanma Barranquero  <lekktu@gmail.com>
3510         * vc/vc-hooks.el (vc-state): Doc fix.
3512 2012-12-10  Glenn Morris  <rgm@gnu.org>
3514         * mail/rmail.el (rmail-maybe-display-summary):
3515         Preserve buffer, in case select-window changes it.  (Bug#13066)
3517 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3519         * emacs-lisp/cl.el, emacs-lisp/cl-lib.el: Move cl-unload-function and
3520         cl-load-hook where they belong.
3522 2012-12-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3524         * emacs-lisp/cl-lib.el (cl-declaim): Paren typo.
3526 2012-12-09  Eli Zaretskii  <eliz@gnu.org>
3528         Parallelize byte compilation on MS-Windows.
3529         * makefile.w32-in (WINS_BASIC1, WINS_BASIC2, WINS_BASIC3)
3530         (WINS_BASIC4): New variables, subdivide subdirectories into 4 parts.
3531         (WINS_BASIC): Define as concatenation of the above.
3532         (compile): Subdivide into 4 separate and independent jobs that can
3533         be run in parallel.
3534         (compile0-CMD, compile0-SH): New targets for compiling
3535         COMPILE_FIRST files, which are prerequisites for the rest of the
3536         byte-compilation.
3537         (compile1-CMD, compile2-CMD, compile3-CMD, compile4-CMD):
3538         New targets for parallel compilation with cmd.exe.
3539         (compile1-SH, compile2-SH, compile3-SH, compile4-SH): Ditto for
3540         compiling under a Unixy shell.
3542 2012-12-09  Chong Yidong  <cyd@gnu.org>
3544         * simple.el (set-mark-default-inactive): Delete this
3545         accidentally-introduced option.
3546         (set-mark-command, exchange-point-and-mark): Remove calls.
3548 2012-12-09  Glenn Morris  <rgm@gnu.org>
3550         * emacs-lisp/lisp-mode.el (eval-defun-1): Doc fix.
3551         Respect a defcustom's :set function, if appropriate.  (Bug#109)
3552         (eval-defun): Doc fix.
3554 2012-12-08  Juri Linkov  <juri@jurta.org>
3556         * info.el (Info-copy-current-node-name, Info-breadcrumbs)
3557         (Info-fontify-node, Info-bookmark-make-record): Remove the
3558         file extension from Info-current-file (Bug#13016).
3560 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3562         * hi-lock.el (hi-lock-unface-buffer): If there's no matching regexp at
3563         point, still provide some default.
3564         (hi-lock--regexps-at-point): Don't enforce a "hi-lock-" prefix on face
3565         names, since we don't use it right now.  Actually return the list.
3566         (hi-lock-file-patterns, hi-lock-interactive-patterns): Use defvar-local.
3568 2012-12-07  Chong Yidong  <cyd@gnu.org>
3570         * novice.el (disabled-command-function): Remove a spurious help
3571         xref (Bug#13043).  Suggested by Kelly Dean.
3573         * subr.el (text-clone-maintain): Fix clone overlay deletion when a
3574         syntax is specified (Bug#13025).
3576         * info.el (Info-set-mode-line): Remove the file extension from
3577         Info-current-file if there is one (Bug#13016).
3579 2012-12-07  Glenn Morris  <rgm@gnu.org>
3581         * mail/rmail.el (rmail-mime-decoded): New permanent local.
3582         (rmail-show-message-1): Set rmail-mime-decoded when appropriate.
3583         * mail/rmailedit.el (rmail-cease-edit): Respect rmail-mbox-format
3584         and rmail-mime-decoded.  (Bug#9841)
3586         * mail/unrmail.el (unrmail-mbox-format): New option.  (Bug#6574)
3587         (batch-unrmail, unrmail): Doc fixes.
3588         (unrmail): Respect unrmail-mbox-format.
3589         * mail/rmail.el (rmail-mbox-format): New option.
3590         (rmail-show-message-1): Respect rmail-mbox-format.
3592 2012-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3594         * emacs-lisp/cl-macs.el (cl-tagbody): New macro.
3596 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3598         Further cleanup of the "cl-" namespace.  Fit CL in 80 columns.
3599         * emacs-lisp/cl-macs.el (cl--pop2, cl--optimize-safety)
3600         (cl--optimize-speed, cl--not-toplevel, cl--parse-loop-clause)
3601         (cl--expand-do-loop, cl--proclaim-history, cl--declare-stack)
3602         (cl--do-proclaim, cl--proclaims-deferred): Rename from the "cl-" prefix.
3603         (cl-progv): Don't rely on dynamic scoping to find the body.
3604         * emacs-lisp/cl-lib.el (cl--optimize-speed, cl--optimize-safety)
3605         (cl--proclaims-deferred): Rename from the "cl-" prefix.
3606         (cl-declaim): Use backquotes.
3607         * emacs-lisp/cl-extra.el (cl-make-random-state, cl-random-state-p):
3608         Use "cl--" prefix for the object's tag.
3610         * ses.el: Use advice-add/remove.
3611         (ses--advice-copy-region-as-kill, ses--advice-yank): New functions.
3612         (copy-region-as-kill, yank): Use advice-add.
3613         (ses-unload-function): Use advice-remove.
3615 2012-12-06  Jonas Bernoulli  <jonas@bernoul.li>
3617         * button.el: Make them work in header-lines (bug#12817).
3618         (button-map): Add bindings for header-line and mode-line use.
3619         (button-get, button-put, button-label): `button' may now be a string.
3620         (button-activate): Don't make it a defsubst.
3621         (button--area-button-p, button--area-button-string): New functions.
3622         (make-text-button): Fix the return value when `beg' was a string.
3623         (push-button): Handle the mode-line case.
3625 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3627         * progmodes/sql.el: Use cl-lib and lexical-binding; various cleanup.
3628         (sql-signum): Remove.  Use `cl-signum' instead.
3629         (sql-read-passwd): Remove; use read-passwd instread.
3630         (sql-get-login-ext): Use read-string.
3631         (sql-get-login): Use dolist and pcase.
3632         (sql--completion-table): Rename from sql-try-completion.
3633         Use complete-with-action.
3634         (sql-mode): Don't change abbrev-all-caps globally.
3635         (sql-connect): Don't rely on dynamic scoping for `new-name'.
3636         (sql-postgres-completion-object): Initialize vars in their `let'.
3637         (sql-comint-sybase, sql-comint-sqlite, sql-comint-mysql)
3638         (sql-comint-solid, sql-comint-ms, sql-comint-postgres)
3639         (sql-comint-interbase): Use a single append, without setq.
3640         (sql-comint-linter): Same, and unwind-protect the LINTER_MBX var.
3642         * hi-lock.el: Rework the default face and the serialize regexp code.
3643         (hi-lock--auto-select-face-defaults): Remove.
3644         (hi-lock-string-serialize-serial): Remove.
3645         (hi-lock--hashcons-hash): Rename from hi-lock-string-serialize-hash;
3646         make weak.
3647         (hi-lock--hashcons): Rename from hi-lock-string-serialize, return an
3648         equal string.
3649         (hi-lock-set-pattern): Adjust accordingly.
3650         (hi-lock--regexps-at-point): Simplify accordingly.
3651         (hi-lock--auto-select-face-defaults): Remove.
3652         (hi-lock--last-face): New var to replace it.
3653         (hi-lock-read-face-name): Rewrite (bug#11095).
3654         (hi-lock-unface-buffer): Arrange for the face to be the next default.
3656 2012-12-06  Michael Albinus  <michael.albinus@gmx.de>
3658         * net/tramp.el (tramp-replace-environment-variables):
3659         Hide compiler warning.
3660         (tramp-file-name-for-operation): Remove `executable-find',
3661         `start-process', `call-process' and `call-process-region'.
3663         * net/tramp-compat.el (top): Don't require 'tramp-util and 'tramp-vc.
3665         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error): Ensure backward
3666         compatibility.
3668         * net/tramp-sh.el (top): Remove `tramp-sh-handle-call-process-region'.
3670 2012-12-06  Chong Yidong  <cyd@gnu.org>
3672         * ffap.el (ffap-replace-file-component): Fix typo.
3674 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3676         * progmodes/octave-mod.el (octave-mark-block): Move out of tokens and
3677         fix open-paren-like token test (bug#12785).
3679 2012-12-06  Glenn Morris  <rgm@gnu.org>
3681         * mail/rmailsum.el (rmail-new-summary): Tweak for
3682         rmail-maybe-display-summary changing buffer.  (Bug#13066)
3684 2012-12-06  Juri Linkov  <juri@jurta.org>
3686         * info.el (Info-fontify-node): Don't hide the last newline.
3687         (Bug#12272)
3689 2012-12-06  Katsumi Yamaoka  <yamaoka@jpl.org>
3691         * mail/mailabbrev.el (mail-abbrev-expand-wrapper): Work in minibuffer
3692         so as to enable message-read-from-minibuffer to expand mail aliases.
3694 2012-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3696         * minibuf-eldef.el (minibuf-eldef-update-minibuffer): Don't mess with
3697         the `intangible' property.
3698         Suggested by Christopher Schmidt <christopher@ch.ristopher.com>
3700 2012-12-05  Deniz Dogan  <deniz@dogan.se>
3702         * net/rcirc.el (rcirc-urls): Update documentation.
3703         (rcirc-condition-filter): New function.
3704         (rcirc-browse-url, rcirc-markup-urls): Use only URLs before point
3705         and exclude consecutive duplicate URLs (Bug#6082).
3707 2012-12-05  Michael Albinus  <michael.albinus@gmx.de>
3709         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3710         Check return code of copy command.
3712         * net/tramp-adb.el (tramp-adb-sdk-dir, tramp-adb-prompt):
3713         Use group `tramp'.  Add version.
3715 2012-12-05  Chong Yidong  <cyd@gnu.org>
3717         * ffap.el (ffap-url-regexp): Don't require matching at front of
3718         string (Bug#4952).
3719         (ffap-url-p): If only a substring matches, return that.
3720         (ffap-url-at-point): Use the return value of ffap-url-p.
3721         (ffap-read-file-or-url, ffap-read-file-or-url-internal)
3722         (find-file-at-point, dired-at-point, dired-at-point-prompter)
3723         (ffap-guess-file-name-at-point): Likewise.
3724         (ffap-replace-file-component): Fix typo.
3726         * info.el (info-display-manual): Add existing Info buffers, whose
3727         files may not be in Info-directory-list, to the completion.
3728         (info--manual-names): New helper function.
3730 2012-12-05  Glenn Morris  <rgm@gnu.org>
3732         * vc/vc-hg.el (vc-hg-resolve-when-done, vc-hg-find-file-hook):
3733         New functions, for detecting and resolving conflicts.  (Bug#10709)
3735 2012-12-04  Jambunathan K  <kjambunathan@gmail.com>
3737         * hi-lock.el (hi-lock-auto-select-face): New user variable.
3738         (hi-lock-auto-select-face-defaults): New buffer local variable.
3739         (hi-lock-read-face-name): Honor `hi-lock-auto-select-face'.
3740         (hi-lock-unface-buffer): Prompt user with useful defaults.
3741         With prefix arg, unhighlight all hi-lock patterns in buffer.
3743 2012-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3745         * obsolete/terminal.el, obsolete/longlines.el: Add obsolecence info.
3747 2012-12-04  Michael Albinus  <michael.albinus@gmx.de>
3749         * Makefile.in (TRAMP_SRC):
3750         * makefile.w32-in (TRAMP_SRC): Add tramp-adb.el.
3752 2012-12-04  Juergen Hoetzel  <juergen@archlinux.org>
3754         * net/tramp-adb.el: New package.
3756 2012-12-04  Chong Yidong  <cyd@gnu.org>
3758         * terminal.el: Move to obsolete/.
3760         * longlines.el: Move to obsolete/.
3762         * vc/ediff-diff.el (ediff-extract-diffs, ediff-extract-diffs3):
3763         Remove code referring to longlines mode.
3765 2012-12-03  Juri Linkov  <juri@jurta.org>
3767         * sort.el (delete-duplicate-lines): New command.  (Bug#13032)
3769 2012-12-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
3771         * textmodes/ispell.el (ispell-init-process)
3772         (ispell-start-process, ispell-internal-change-dictionary):
3773         Make sure personal dictionary name is expanded after initial
3774         `default-directory' value. Use expanded strings for
3775         keep/restart checks and for value (Bug#13019).
3777 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
3779         * calc/calc-forms.el (math-date-to-iso-dt): Fix weekday number.
3781 2012-12-03  Leo Liu  <sdl.web@gmail.com>
3783         * files.el (dir-locals-read-from-file): Check file non-empty
3784         before reading.  (Bug#13038)
3786 2012-12-03  Glenn Morris  <rgm@gnu.org>
3788         * jka-cmpr-hook.el (jka-compr-get-compression-info):
3789         Remove any version extension before checking filename.  (Bug#13006)
3790         (jka-compr-compression-info-list): Belated :version bump.
3792 2012-12-03  Chong Yidong  <cyd@gnu.org>
3794         * simple.el (transient-mark-mode): Doc fix (Bug#11523).
3796         * buff-menu.el (Buffer-menu-delete-backwards, Buffer-menu-mode)
3797         (buffer-menu): Doc fix (Bug#12294).
3799 2012-12-03  Roland Winkler  <winkler@gnu.org>
3801         * calendar/diary-lib.el (diary-header-line-format): Use keybinding
3802         of diary-show-all-entries in the diary buffer (Bug#12994).
3804 2012-12-03  Michael Albinus  <michael.albinus@gmx.de>
3806         * net/tramp-sh.el (tramp-perl-encode): Use "read STDIN" instead of
3807         "<STDIN>".  This is binary safe.
3809 2012-12-03  Jay Belanger  <jay.p.belanger@gmail.com>
3811         * calc/calc-forms.el (math-absolute-from-iso-dt)
3812         (math-date-to-iso-dt, math-parse-iso-date-validate)
3813         (math-iso-dt-to-date): New functions.
3814         (math-fd-iso-dt, math-fd-isoyear, math-fd-isoweek)
3815         (math-fd-isoweekday): New variables.
3816         (calc-date-notation, math-parse-standard-date, math-format-date)
3817         (math-format-date-part): Add support for more formatting codes.
3819 2012-12-02  Dmitry Gutov  <dgutov@yandex.ru>
3821         * vc/vc.el (vc-delete-file, vc-rename-file): Default to the
3822         current buffer's file name when called interactively (Bug#12488).
3824 2012-12-02  Juri Linkov  <juri@jurta.org>
3826         * info.el (info-display-manual): Don't clobber an existing Info
3827         buffer (Bug#10770).  Add completion (Bug#10771).
3829 2012-12-01  Yuya Nishihara  <yuya@tcha.org>  (tiny change)
3831         * vc/vc-hooks.el (vc-find-file-hook): Expand buffer-file-truename
3832         before using it for comparison (Bug#5297).
3834 2012-12-01  Jari Aalto  <jari.aalto@cante.net>
3836         * textmodes/css-mode.el (css-current-defun-name): New function.
3837         (css-mode): Use it.
3839         * textmodes/sgml-mode.el (html-current-defun-name): New function.
3840         (html-mode): Use it.
3842 2012-12-01  Chong Yidong  <cyd@gnu.org>
3844         Modularize add-log-current-defun (Bug#2224).
3845         Suggested by Jari Aalto.
3847         * vc/add-log.el (add-log-current-defun-function): Doc fix.
3848         (add-log-current-defun): Move mode-specific code to other files.
3849         (add-log-lisp-like-modes, add-log-c-like-modes)
3850         (add-log-tex-like-modes): Variables deleted.
3852         * emacs-lisp/lisp-mode.el (lisp-current-defun-name): New.
3853         (lisp-mode-variables): Use it.
3855         * progmodes/cc-mode.el (c-common-init):
3856         * progmodes/cperl-mode.el (cperl-mode): Set a value for
3857         add-log-current-defun-function.
3859         * progmodes/m4-mode.el (m4-current-defun-name): New function.
3860         (m4-mode): Use it.
3862         * progmodes/perl-mode.el (perl-current-defun-name): New.
3863         (perl-mode): Use it.
3865         * progmodes/scheme.el (scheme-mode-variables, dsssl-mode):
3866         Use lisp-current-defun-name.
3868         * textmodes/tex-mode.el (tex-current-defun-name): New.
3869         (tex-common-initialization): Use it.
3871         * textmodes/texinfo.el (texinfo-current-defun-name): New.
3872         (texinfo-mode): Use it.
3874 2012-12-01  Chong Yidong  <cyd@gnu.org>
3876         * emacs-lisp/lisp-mode.el (lisp-mode-variables, lisp-mode):
3877         * progmodes/autoconf.el (autoconf-mode):
3878         * progmodes/js.el (js-mode):
3879         * progmodes/make-mode.el (makefile-mode, makefile-makepp-mode)
3880         (makefile-bsdmake-mode, makefile-imake-mode, makefile-browse):
3881         * progmodes/perl-mode.el (perl-mode):
3882         * progmodes/sh-script.el (sh-mode, sh-set-shell):
3883         * textmodes/css-mode.el (css-mode):
3884         * textmodes/sgml-mode.el (html-mode, sgml-mode)
3885         (sgml-tags-invisible, sgml-guess-indent):
3886         * textmodes/tex-mode.el (tex-common-initialization)
3887         (latex-complete-bibtex-keys, tex-shell, tex-main-file)
3888         (doctex-mode, plain-tex-mode, latex-mode):
3889         * textmodes/texinfo.el (texinfo-mode): Use setq-local.
3891 2012-12-01  Kirk Kelsey  <kirk.kelsey@0x4b.net>
3893         * vc/vc-hg.el (vc-hg-next-revision):
3894         Ensure use of default "tip" output format.  (Bug#6968)
3896 2012-12-01  Kim F. Storm  <storm@cua.dk>
3898         * startup.el (fancy-startup-tail): Add a clickable link
3899         (Bug#2176).
3901 2012-12-01  Chong Yidong  <cyd@gnu.org>
3903         * startup.el (fancy-startup-tail): Improve the message about
3904         auto-save files (Bug#2176).
3906         * files.el (recover-session): Improve the descriptive message, and
3907         use substitute-command-keys.
3909 2012-12-01  Glenn Morris  <rgm@gnu.org>
3911         * ido.el (ido-file-internal):
3912         Handle other-window, other-frame for dired.  (Bug#13036)
3914 2012-11-30  Glenn Morris  <rgm@gnu.org>
3916         * icomplete.el (icomplete-separator): Fix :version.
3918 2012-11-30  Chong Yidong  <cyd@gnu.org>
3920         * shell.el (shell): For C-u M-x shell, use an inactive shell
3921         buffer as the default (Bug#1975).
3922         (shell-apply-ansi-color, shell-reapply-ansi-color): New functions.
3923         (shell-mode): Use them to reapply ansi colorization if Shell mode
3924         is re-enabled.
3926 2012-11-30  Yuriy Vostrikov  <delamonpansie@gmail.com>  (tiny change)
3928         * vc/vc-git.el (vc-git-command): Disable the pager (Bug#6137).
3930 2012-11-30  Samuel Bronson  <naesten@gmail.com>
3932         * progmodes/grep.el (grep-compute-defaults): Do not pass the -e
3933         flag to xargs, for compatibility with BSD xargs (Bug#11703).
3935 2012-11-30  Toru TSUNEYOSHI  <t_tuneyosi@hotmail.com>
3937         * textmodes/fill.el (fill-region-as-paragraph): Handle overshoot
3938         by move-to-column (Bug#3234).
3940 2012-11-30  Chong Yidong  <cyd@gnu.org>
3942         * longlines.el (longlines-wrap-line, longlines-encode-region):
3943         Preserve text properties (Bug#1425).
3945 2012-11-30  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
3947         * vc/vc.el (vc-register): Allow registering a file which is
3948         already registered with a different backend (Bug#10589).
3950 2012-11-29  Jambunathan K  <kjambunathan@gmail.com>
3951             Stefan Monnier  <monnier@iro.umontreal.ca>
3953         * icomplete.el: Change separator; add ido-style commands.
3954         (icomplete-show-key-bindings): Remove custom var.
3955         (icomplete-get-keys): Remove function.
3956         (icomplete-forward-completions, icomplete-backward-completions):
3957         New commands.
3958         (icomplete-minibuffer-map): New var.
3959         (icomplete-minibuffer-setup): Use it.
3960         (icomplete-exhibit): Don't delay if the list of completions is known.
3961         (icomplete-separator): New custom.
3962         (icomplete-completions): Use it.
3963         * minibuffer.el (completion-all-sorted-completions): Delete duplicates.
3964         (minibuffer-force-complete-and-exit): New command.
3965         (minibuffer--complete-and-exit): New function extracted from
3966         minibuffer-complete-and-exit.
3967         (minibuffer-complete-and-exit): Use it.
3969         * progmodes/etags.el (visit-tags-table-buffer): Give a more precise
3970         error message when the file doesn't exist (bug#12974).
3972 2012-11-29  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
3974         * simple.el (activate-mark): Run activate-mark-hook (bug#13027).
3976 2012-11-29  Glenn Morris  <rgm@gnu.org>
3978         * files.el (hack-dir-local-variables): Warn if try to set
3979         coding via dir-locals, since it doesn't work.  (Bug#7169)
3981         Add desktop support for restoring vc-dir buffers.  (Bug#10606)
3982         * vc/vc-dir.el (vc-dir-mode): Autoload it (for desktop restore).
3983         Set buffer-local value of desktop-save-buffer.
3984         (vc-dir-desktop-buffer-misc-data, vc-dir-restore-desktop-buffer):
3985         New functions.
3986         (desktop-buffer-mode-handlers): Add vc-dir-mode entry.
3987         * desktop.el (desktop-save-buffer-p): Treat vc-dir like dired.
3989         * files.el (inhibit-local-variables-ignore-case): New.  (Bug#10610)
3990         (inhibit-local-variables-p): Use inhibit-local-variables-ignore-case.
3991         Doc fix.
3992         (inhibit-local-variables-regexps, inhibit-local-variables-suffixes):
3993         Doc fixes.
3995 2012-11-28  Jay Belanger  <jay.p.belanger@gmail.com>
3997         * calc/calc-forms.el (calc-date-notation): Fix regexp
3998         used to find time codes.  Fix symbol for seconds.
4000 2012-11-27  Glenn Morris  <rgm@gnu.org>
4002         * emacs-lisp/derived.el (derived-mode-make-docstring):
4003         Don't mention "abbrev" or "syntax" if nil.  (Bug#11277)
4005 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4007         * textmodes/table.el (table-insert): Don't use `symbol-name' on
4008         lexically scoped variables (bug#13005).
4010 2012-11-27  Glenn Morris  <rgm@gnu.org>
4012         * vc/vc-hooks.el (vc-mistrust-permissions):
4013         Default to t, to avoid data-loss.  (Bug#11490)
4015 2012-11-27  Fabián Ezequiel Gallina  <fgallina@cuca>
4017         * progmodes/python.el (python-indent-guess-indent-offset):
4018         If indentation is guessed make python-indent-offset buffer-local.
4020         Fix Imenu regression.
4021         * progmodes/python.el (python-nav-beginning-of-defun):
4022         Fix forward movement when statement(s) separates point from defun.
4023         (python-imenu-prev-index-position): New function.
4025 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
4027         * subr.el (buffer-file-type): Declare with defvar-local.  Doc fix.
4029         * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
4030         Don't set buffer-file-type.  Return nil.  (Bug#12989)
4032 2012-11-27  Glenn Morris  <rgm@gnu.org>
4034         * hippie-exp.el (hippie-expand-try-functions-list):
4035         Re-autoload it.  (Bug#12982)
4037 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
4039         * descr-text.el (describe-char-padded-string):
4040         Call internal-char-font only on GUI frames.  (Bug#11964)
4042 2012-11-27  Andreas Schwab  <schwab@linux-m68k.org>
4044         * buff-menu.el (Buffer-menu-buffer+size-width): Fix customize type
4045         and obsoletion message.
4047 2012-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4049         * emacs-lisp/cl-macs.el (cl--transform-lambda): Add back `declare' in
4050         the constructs to keep outside of the `cl-block' (bug#12977).
4052 2012-11-27  Chong Yidong  <cyd@gnu.org>
4054         * mouse.el (mouse-drag-line): Even if the line is not draggable,
4055         keep reading until we get the up-event anyway, in order to process
4056         the up-event for mouse-1-click-follows-link (Bug#12971).
4058 2012-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4060         * emacs-lisp/advice.el (ad-should-compile): Don't compile advice if the
4061         base function is not yet defined (bug#12965).
4062         (ad-activate-advised-definition): Use ad-compile-function.
4063         (ad-activate): Use cond.
4065 2012-11-25  Leo Liu  <sdl.web@gmail.com>
4067         * textmodes/sgml-mode.el (sgml-tag): Fix indentation for closing tag.
4068         (Bug#12979)
4070 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4072         * textmodes/reftex-parse.el (reftex-parse-from-file): Use variable
4073         reftex-section-info-function in order to be compatible with
4074         Texinfo integration.
4076         * textmodes/reftex.el (reftex-section-pre-regexp)
4077         (reftex-section-post-regexp, reftex-section-info-function):
4078         New variable.
4079         (reftex-compile-variables): Use variables reftex-section-pre-regexp,
4080         reftex-section-post-regexp, and reftex-section-info-function in order
4081         to be compatible with Texinfo integration.
4083         * textmodes/reftex-toc.el (reftex-toc-promote-action):
4084         use reftex-section-pre-regexp variable in order to be compatible with
4085         Texinfo integration.
4087 2012-11-25  Chong Yidong  <cyd@gnu.org>
4089         * faces.el: Make face-spec-set more analogous to setq.
4090         (face-spec-set): Change the third arg to specify whether this
4091         function is being called via defface, customize, or a third party.
4092         Set the appropriate symbol properties.  Clear the override spec if
4093         setting via Custom.  Initialize face if necessary.  (Bug#4988)
4094         (face-spec-recalc): Allow theme faces to completely replace the
4095         defface spec, in the same way as custom faces (Bug#8454).
4097         * cus-face.el (custom-declare-face): Move face initialization to
4098         face-spec-set.
4099         (custom-theme-set-faces): Don't initialize the face name here, as
4100         that is now done in face-spec-set.
4102         * cus-edit.el (custom-face-set, custom-face-mark-to-save)
4103         (custom-face-reset-saved, custom-face-mark-to-reset-standard):
4104         Simplify by using the new arg to face-spec-set.
4106         * emacs-lisp/lisp-mode.el (eval-defun-1): When evaluating defface,
4107         reset face-override-spec too, and use custom-declare-face.
4109 2012-11-24  Jan Djärv  <jan.h.d@swipnet.se>
4111         * term/ns-win.el (ns-initialize-window-system): Move creation of
4112         fontsets here (Bug#11964).
4114 2012-11-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4116         * ses.el (ses-rename-cell): Correct bug on mode-line update after
4117         cell renaming.
4119 2012-11-24  Chong Yidong  <cyd@gnu.org>
4121         * woman.el (woman-default-faces, woman-monochrome-faces): Mark as
4122         obsolete.
4124         * custom.el (custom-theme-set-variables): Use a topological sort
4125         for ordering by custom dependencies (Bug#12952).
4126         (custom--sort-vars, custom--sort-vars-1): New functions.
4128 2012-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4130         * emacs-lisp/bytecomp.el (byte-compile-file): Setup default value for
4131         lexical-binding (bug#12938).
4133 2012-11-24  Wolfgang Jenkner  <wjenkner@inode.at>
4135         * image-mode.el (image-transform-check-size): Use assertions only
4136         for images of type imagemagick.
4138         Otherwise no error, image-transform-fit-to-{width,height} is
4139         silently ignored, as before.  Doc fix.
4141 2012-11-24  Chong Yidong  <cyd@gnu.org>
4143         * faces.el (color-defined-p): Doc fix (Bug#12853).
4145 2012-11-24  Juri Linkov  <juri@jurta.org>
4147         * dired.el (dired-mark): Add optional arg `interactive'.
4148         Check for `use-region-p' if `interactive' is non-nil.
4149         (dired-unmark, dired-flag-file-deletion): Add optional arg
4150         `interactive'.  Call `dired-mark' with the arg `interactive'.
4151         (Bug#10624)
4153         * wdired.el: Revert 2012-10-17 change partly and replace it with
4154         Patch by Christopher Schmidt <christopher@ch.ristopher.com>.
4155         (wdired-finish-edit): Add marks for new file names to
4156         `wdired-old-marks'.  Restore marks using `dired-mark-remembered'
4157         after `revert-buffer'.
4158         (wdired-do-renames): Remove calls to `dired-remove-file',
4159         `dired-add-file', `dired-add-entry'.  (Bug#11795)
4161 2012-11-24  Alan Mackenzie  <acm@muc.de>
4163         * progmodes/cc-defs.el (c-version): Bump to 5.32.4.
4165         Fix bugs in the state cache.  Enhance a debugging mechanism.
4166         * progmodes/cc-engine.el (c-parse-state-get-strategy): Don't use
4167         "brace at column zero" strategy for C++.
4168         (c-append-lower-brace-pair-to-state-cache): Repair algorithm.
4169         (c-parse-state-point): New variable.
4170         (c-record-parse-state-state): Record old parse state with
4171         `copy-tree'.  Record previous value of point.
4172         (c-debug-parse-state-double-cons): New debugging function.
4173         (c-debug-parse-state): Call the above new function.
4174         (c-toggle-parse-state-debug): Output a confirmatory message.
4176         * progmodes/cc-mode.el (c-before-change, c-after-change):
4177         Call c-invalidate-state-cache from `c-before-change' instead of
4178         `c-after-change'.
4180 2012-11-23  Chong Yidong  <cyd@gnu.org>
4182         * find-cmd.el (find-constituents): Add executable, ipath,
4183         readable, samefile, writable, daystart, regextype (Bug#12856).
4185 2012-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4187         * emacs-lisp/ert.el, emacs-lisp/ert-x.el: Use cl-lib and lexical-binding.
4189 2012-11-22  Paul Eggert  <eggert@cs.ucla.edu>
4191         * calc/calc.el (calc-gregorian-switch): Move to after calc-refresh
4192         definition.  This fixes a bootstrap failure.
4193         (calc-gregorian-switch): In menu, put dates before regions.
4194         This is easier to follow, lines up better in the menu, and lets us
4195         coalesce regions that switch at the same time.  Give country
4196         names, not "Vatican", as that's better for non-expert users.
4197         Use names that are stable between the date of switch and now, e.g.,
4198         Bohemia and Moravia (which existed then and now) and not
4199         Czechoslovakia (which didn't exist then and doesn't exist now).
4200         What is now the U.S. mostly did not switch at the same time as
4201         Britain, so omit the U.S.  Correct spelling of "Britain".
4202         Catholic Switzerland was too much of a mess, so omit it.
4204 2012-11-22  Jay Belanger  <jay.p.belanger@gmail.com>
4206         * calc/calc.el (calc-gregorian-switch): Refresh the Calc buffer
4207         after the variable is changed.
4209 2012-11-21  Daniel Colascione  <dancol@dancol.org>
4211         * progmodes/sql.el (sql-mode-font-lock-object-name): Support IF NOT EXISTS
4212         in SQL declarations for font-lock.
4213         (sql-imenu-generic-expression): Teach imenu about IF NOT EXISTS.
4215 2012-11-21  Glenn Morris  <rgm@gnu.org>
4217         * faces.el (face-underline-p, face-inverse-video-p, face-bold-p)
4218         (face-italic-p): Add optional argument "inherit".
4220         * faces.el (set-face-inverse-video, set-face-bold, set-face-italic):
4221         Remove -p suffix from names, for consistency with other set-face-*.
4222         (set-face-inverse-video): Fix interactive spec.
4223         * play/gamegrid.el (gamegrid-make-mono-tty-face):
4224         * textmodes/table.el (table--update-cell-face):
4225         Use set-face-inverse-video rather than now obsolete alias.
4227 2012-11-21  Eli Zaretskii  <eliz@gnu.org>
4229         * simple.el (line-move): Don't call line-move-partial if
4230         scroll-conservatively is in effect.  (Bug#12927)
4232 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4234         * eshell/em-cmpl.el (eshell-pcomplete): Refine fix for bug#12838:
4235         Fallback on completion-at-point rather than
4236         pcomplete-expand-and-complete, and only if pcomplete actually failed.
4237         (eshell-cmpl-initialize): Setup completion-at-point.
4239         * pcomplete.el (pcomplete--entries): Obey pcomplete-ignore-case.
4241         * emacs-lisp/ert.el (ert--expand-should-1): Adapt to cl-lib.
4243 2012-11-21  Michael Albinus  <michael.albinus@gmx.de>
4245         * net/tramp-sh.el (tramp-do-copy-or-rename-file): If both files
4246         are remote, check out-of-band property for both.
4248 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4250         * window.el (switch-to-buffer): Re-add the warning that was lost in the
4251         code rewrite.
4253 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
4255         More minor time fixes.
4256         * calendar/time-date.el: Commentary fix.
4257         * net/tramp-sh.el (tramp-do-file-attributes-with-ls): Undo last change;
4258         too much other code depends on (0 0) time stamps.
4259         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4260         Add a couple of FIXME comments.
4262         Minor cleanup for times as lists of four integers.
4263         * files.el (dir-locals-directory-cache):
4264         * ps-bdf.el (bdf-file-mod-time, bdf-read-font-info):
4265         Doc fixes.
4266         * net/tramp-sh.el (tramp-do-file-attributes-with-ls):
4267         * ps-bdf.el (bdf-file-newer-than-time):
4268         Process four-integers time stamps, not two.  Doc fixes.
4270 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4272         * uniquify.el (uniquify-managed): Use defvar-local.
4273         (rename-buffer, create-file-buffer): Advise with advice-add.
4274         (uniquify-unload-function): Unadvise accordingly.
4276         * emacs-lisp/trace.el: Rewrite, use nadvice and lexical-binding.
4277         (trace-buffer): Don't purecopy.
4278         (trace-entry-message, trace-exit-message): Add `context' arg.
4279         (trace--timer): New var.
4280         (trace-make-advice): Adjust for use in nadvice.
4281         Add `context' argument.  Delay `display-buffer' via a timer.
4282         (trace-function-internal): Use advice-add.
4283         (trace--read-args): New function.
4284         (trace-function-foreground, trace-function-background): Use it.
4285         (trace-function): Rename to trace-function-foreground and redefine as
4286         an alias to that new name.
4287         (untrace-function, untrace-all): Adjust to the use of nadvice.
4289         * emacs-lisp/bytecomp.el (byte-compile): Fix handling of closures.
4291         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix last change.
4293         * subr.el (called-interactively-p-functions): New var.
4294         (internal--called-interactively-p--get-frame): New macro.
4295         (called-interactively-p, interactive-p): Rewrite in Lisp.
4296         * emacs-lisp/nadvice.el (advice--called-interactively-skip): New fun.
4297         (called-interactively-p-functions): Use it.
4298         * emacs-lisp/edebug.el (edebug--called-interactively-skip): New fun.
4299         (called-interactively-p-functions): Use it.
4300         * allout.el (allout-called-interactively-p): Don't assume
4301         called-interactively-p is a subr.
4303 2012-11-20  Glenn Morris  <rgm@gnu.org>
4305         * profiler.el (profiler-report-mode-map): Add a menu.
4306         No need to bind `q' because we derive from special-mode.
4307         (profiler-report-find-entry): Handle calls from the menu-bar.
4309 2012-11-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4311         * emacs-lisp/byte-run.el (defun-declarations-alist):
4312         Allow a compiler-macro to be a lambda expression.
4314         * progmodes/python.el: Use cl-lib.  Move var declarations outside of
4315         eval-when-compile.
4316         (python-syntax-context): Add compiler-macro.
4317         (python-font-lock-keywords): Simplify with De Morgan.
4319         * vc/diff-mode.el (diff-hunk): Don't make useless timers.
4321         * files.el (load-file): Require match in minibuffer selection, as was
4322         the case in Emacs-20 before we changed the spec to allow .elc files
4323         (bug#12935).
4325         * json.el: Don't require cl since we don't use it.
4326         * color.el: Don't require cl.
4327         (color-complement): `caddr' -> `nth 2'.
4329         * calendar/time-date.el (time-to-seconds): De-obsolete.
4331 2012-11-19  Jay Belanger  <jay.p.belanger@gmail.com>
4333         * calc/calc-forms.el (math-leap-year-p):  Fix formula for negative
4334         year numbers.
4335         (math-date-to-julian-dt): Adjust the initial approximation for the
4336         year to deal with the new definition of the DATE.
4338 2012-11-19  Daniel Colascione  <dancol@dancol.org>
4340         * term/w32-win.el (cygwin-convert-path-from-windows):
4341         Accomodate rename of cygwin_convert_path* to cygwin_convert_file_name*.
4343 2012-11-18  Chong Yidong  <cyd@gnu.org>
4345         * filecache.el (file-cache--read-list): New function.
4346         (file-cache-add-directory-list, file-cache-add-file-list)
4347         (file-cache-delete-file-list, file-cache-delete-directory-list):
4348         Use it to read a list of files or directories (Bug#12846).
4349         (file-cache-add-file, file-cache-add-directory)
4350         (file-cache-delete-file-list, file-cache-delete-file-regexp)
4351         (file-cache-delete-directory): Print an message.
4353 2012-11-18  Jay Belanger  <jay.p.belanger@gmail.com>
4355         * calc/calc-forms.el (math-date-to-dt): Use integer date when
4356         calling `math-date-to-julian-dt' and 'math-date-to-gregorian-dt'.
4358 2012-11-18  Glenn Morris  <rgm@gnu.org>
4360         * image.el (insert-image, insert-sliced-image): Doc fix.
4362 2012-11-18  Chong Yidong  <cyd@gnu.org>
4364         * emacs-lisp/syntax.el (syntax-propertize-function): Doc fix
4365         (Bug#12810).
4367 2012-11-18  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
4369         * vc/vc-svn.el (vc-svn-merge-news): Properly parse the merge
4370         response when the target file is in a subdirectory (Bug#12757).
4372 2012-11-18  Chong Yidong  <cyd@gnu.org>
4374         * filecache.el (file-cache-add-file-list): Doc fix (Bug#12694).
4376 2012-11-18  Glenn Morris  <rgm@gnu.org>
4378         * emacs-lisp/cl-lib.el (face-underline-p):
4379         Use set-face-underline rather than the alias set-face-underline-p.
4381         * window.el (with-temp-buffer-window): Doc fix.
4382         * subr.el (with-output-to-temp-buffer):
4383         Add doc xref to with-temp-buffer-window.
4385 2012-11-18  Juanma Barranquero  <lekktu@gmail.com>
4387         * woman.el (woman-non-underline-faces): Use `set-face-underline'.
4388         * calc/calc.el (math-format-date-cache): Declare.
4390 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4392         Calc by default uses the Gregorian calendar for all dates (Bug#12633).
4393         It also uses January 1, 1 AD as its day number 1.
4394         * calc/calc-forms.el (math-julian-date-beginning)
4395         (math-julian-date-beginning-int): Implement this.
4397 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
4399         * descr-text.el (quail-find-key):
4400         * dired.el (desktop-file-name):
4401         * dirtrack.el (shell-prefixed-directory-name, shell-process-cd):
4402         * generic-x.el (comint-mode, comint-exec):
4403         * image-dired.el (widget-forward):
4404         * info.el (speedbar-add-expansion-list, speedbar-center-buffer-smartly)
4405         (speedbar-change-expand-button-char)
4406         (speedbar-change-initial-expansion-list, speedbar-delete-subblock)
4407         (speedbar-make-specialized-keymap, speedbar-make-tag-line):
4408         * printing.el (easy-menu-add-item, easy-menu-remove-item)
4409         (widget-field-action, widget-value-set):
4410         * speedbar.el (imenu--make-index-alist):
4411         * term.el (ring-empty-p, ring-ref, ring-insert-at-beginning)
4412         (ring-length, ring-insert):
4413         * vcursor.el (compare-windows-skip-whitespace):
4414         * woman.el (dired-get-filename):
4415         Declare functions.
4417         * term/w32-win.el (cygwin-convert-path-from-windows): Fix declaration.
4419 2012-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
4421         * calc/calc.el (calc-gregorian-switch): New variable.
4423         * calc/calc-forms.el (math-day-in-year, math-dt-before-p)
4424         (math-absolute-from-gregorian-dt, math-absolute-from-julian-dt)
4425         (math-date-to-julian-dt, math-date-to-gregorian-dt): New functions.
4426         (math-leap-year-p): Add option to distinguish between Julian
4427         and Gregorian calendars.
4428         (math-day-number): Use `math-day-in-year' to do the computations.
4429         (math-absolute-from-dt): Rename from `math-absolute-from-date'.
4430         Use `math-absolute-from-gregorian' and `math-absolute-from-julian'
4431         to do the computations.
4432         (math-date-to-dt): Use `math-date-to-julian-dt' and
4433         `math-date-to-gregorian-dt' to do the computations.
4434         (calcFunc-weekday, math-format-date-part): Use the new version of
4435         the DATE to determine the weekday.
4436         (calcFunc-newmonth, calcFunc-newyear): Use `calc-gregorian-switch'
4437         when necessary.
4439 2012-11-17  Eli Zaretskii  <eliz@gnu.org>
4441         * term/w32-win.el (w32-handle-dropped-file): Use 'file://' only on
4442         Cygwin; otherwise use 'file:'.  (Bug#12914)
4443         (cygwin-convert-path-from-windows): Declare, to avoid
4444         byte-compiler warnings.
4446 2012-11-17  Andreas Politz  <politza@fh-trier.de>
4448         * ibuffer.el (ibuffer-mark-forward, ibuffer-unmark-forward)
4449         (ibuffer-unmark-backward, ibuffer-mark-interactive): Support plain
4450         prefix and negative numeric prefix args (Bug#12795).
4452 2012-11-17  Stephen Berman  <stephen.berman@gmx.net>
4454         * play/gamegrid.el (gamegrid-add-score-with-update-game-score-1):
4455         Don't signal an error with a score that is too low to add to the
4456         list of top scores. (Bug#12779)
4458 2012-11-17  Chong Yidong  <cyd@gnu.org>
4460         * help-mode.el (help-xref-interned): End on point-min (Bug#12737).
4462         * filecache.el (file-cache-add-file): Handle relative file name in
4463         the argument (Bug#12694).
4465 2012-11-16  Jürgen Hötzel  <juergen@archlinux.org>  (tiny change)
4467         * eshell/em-unix.el (eshell/mkdir): Handle "--parents" (bug#12897).
4469 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4471         * emacs-lisp/advice.el (ad-make-advised-definition): Improve last fix.
4473         * emacs-lisp/cl-lib.el: Set more meaningful version number.
4475 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
4477         * window.el (enlarge-window, shrink-window): Don't mention return
4478         value in doc-string (Bug#12896).
4479         (window--display-buffer): Don't resize frames - it won't work
4480         with all window managers and defeat pop-up-frame-alist.
4481         (display-buffer-alist): In doc-string explain that CONDITION can
4482         be a function and which arguments are passed to it (Bug#12854).
4483         (display-buffer-assq-regexp): New argument ACTION.  Handle lambda
4484         expressions (Bug#12854).
4485         (display-buffer): Pass ACTION argument to
4486         display-buffer-assq-regexp.
4488 2012-11-16  Glenn Morris  <rgm@gnu.org>
4490         * window.el (fit-frame-to-buffer-bottom-margin)
4491         (fit-frame-to-buffer, fit-window-to-buffer): Doc fixes.
4493         * faces.el (face-underline-p): Use face-attribute-specified-or.
4495 2012-11-16  Juanma Barranquero  <lekktu@gmail.com>
4497         * emacs-lisp/cl-macs.el (cl-loop, cl-do, cl-do*): Doc fixes.
4499 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4501         * emacs-lisp/cl-macs.el (cl-flet, cl-flet*): Fix docstring (bug#12895).
4503 2012-11-16  Glenn Morris  <rgm@gnu.org>
4505         * eshell/em-cmpl.el (eshell-pcomplete): New command.  (Bug#12838)
4506         (eshell-cmpl-initialize): Bind eshell-pcomplete to TAB, C-i.
4508         * faces.el (face-underline-p): Doc fix.  Handle :underline being
4509         things other than `t' (a string, a list).
4510         (face-inverse-video-p): Doc fix.
4511         (set-face-underline): Rename it back from set-face-underline-p.
4512         Doc fix.  Allow interactive input of values other than t.
4513         (read-face-attribute): Apply formatting to :underline,
4514         since like :box and :stipple it can take list values.
4516         * term.el (ansi-term): Don't let C-x escape-char binding
4517         clobber the more standard C-c binding.  (Bug#12842)
4519         * subr.el (set-temporary-overlay-map): Doc fix.
4521 2012-11-16  Martin Rudalics  <rudalics@gmx.at>
4523         * window.el (record-window-buffer)
4524         (display-buffer-record-window): When copying the markers to
4525         window-point preserve window-point-insertion-type. (Bug#12588)
4527 2012-11-16  Glenn Morris  <rgm@gnu.org>
4529         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
4530         * net/tramp-gvfs.el (tramp-gvfs-dbus-event-error):
4531         Use new names for hooks rather than obsolete aliases.
4533 2012-11-15  Daniel Colascione  <dancol@dancol.org>
4535         * term/w32-win.el (w32-handle-dropped-file): Use a "file://"
4536         prefix instead of "file:" so that when FILE-NAME begins with "//",
4537         as it does when the target file is on a network share, url-handler
4538         isn't confused.
4540 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4542         * emacs-lisp/advice.el (ad-definition-type): Make sure we don't use
4543         a preactivated advice from an old advice.el; they're not compatible!
4545 2012-11-15  Katsumi Yamaoka  <yamaoka@jpl.org>
4547         * emacs-lisp/nadvice.el (advice--make-interactive-form):
4548         Fix string-spec case.
4550         * emacs-lisp/advice.el (ad-make-advised-definition): Fix undefined case.
4552 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4554         * emacs-lisp/nadvice.el: Add buffer-local support to add-function.
4555         (advice--buffer-local-function-sample): New var.
4556         (advice--set-buffer-local, advice--buffer-local): New functions.
4557         (add-function, remove-function): Use them.
4559 2012-11-15  Drew Adams  <drew.adams@oracle.com>
4561         * imenu.el (imenu--split-submenus): Use imenu--subalist-p (bug#12717).
4563 2012-11-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4565         * emacs-lisp/cl-macs.el (cl--transform-lambda): Defend against
4566         potential binding of print-gensym to t, and prettify (back)quotes in
4567         case they appear in args's default values (bug#12884).
4569 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4571         * emacs-lisp/nadvice.el: Add around advice for interactive specs.
4572         (advice-eval-interactive-spec): New function.
4573         (advice--make-interactive-form): Support around advice (bug#12844).
4575 2012-11-14  Dmitry Gutov  <dgutov@yandex.ru>
4577         * progmodes/ruby-mode.el (ruby-expr-beg): Make heredoc detection
4578         more strict.  Add docstring.
4579         (ruby-expression-expansion-re): Extract from
4580         `ruby-match-expression-expansion'.
4581         (ruby-syntax-propertize-function): After everything else, search
4582         for expansions in string literals, mark their insides as
4583         whitespace syntax and save match data for font-lock.
4584         (ruby-font-lock-keywords): Use the 2nd group from expression
4585         expansion matches.
4586         (ruby-match-expression-expansion): Use the match data saved to the
4587         text property in ruby-syntax-propertize-function.
4589 2012-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4591         * emacs-lisp/gv.el (setf): Fix debug spec for multiple assignments
4592         (bug#12879).
4594 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4596         * progmodes/ruby-mode.el (ruby-move-to-block): Looks for a block
4597         start/end keyword a bit harder.  Works with different values of N.
4598         Add more comments.
4599         (ruby-end-of-block): Update accordingly.
4601 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4603         * woman.el (woman-file-name): Don't mess with unread-command-events
4604         (bug#12861).
4606         * emacs-lisp/advice.el: Layer on top of nadvice.el.
4607         Remove out of date self-require hack.
4608         (ad-do-advised-functions): Use simple `dolist'.
4609         (ad-advice-name, ad-advice-protected, ad-advice-enabled)
4610         (ad-advice-definition): Redefine as functions.
4611         (ad-advice-classes): Move before first use.
4612         (ad-make-origname, ad-set-orig-definition, ad-clear-orig-definition)
4613         (ad-make-mapped-call, ad-make-advised-docstring,ad-make-plain-docstring)
4614         (ad--defalias-fset): Remove functions.
4615         (ad-make-advicefunname, ad-clear-advicefunname-definition): New funs.
4616         (ad-get-orig-definition): Rewrite.
4617         (ad-make-advised-definition-docstring): Change base docstring.
4618         (ad-real-orig-definition): Rewrite.
4619         (ad-map-arglists): Change name of called function.
4620         (ad--make-advised-docstring): Redirect `function' from ad-Advice-...
4621         (ad-make-advised-definition): Simplify.
4622         (ad-assemble-advised-definition): Tweak for new calling context.
4623         (ad-activate-advised-definition): Setup ad-Advice-* i.s.o ad-Orig-*.
4624         (ad--defalias-fset): Rename from ad-handle-definition.  Make it set the
4625         function and call ad-activate if needed.
4626         (ad-activate, ad-deactivate): Don't call ad-handle-definition any more.
4627         (ad-recover): Clear ad-Advice-* instead of ad-Orig-*.
4628         (ad-compile-function): Compile ad-Advice-*.
4629         (ad-activate-on-top-level, ad-with-auto-activation-disabled): Remove.
4630         (ad-start-advice, ad-stop-advice): Remove.
4632 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4634         * progmodes/ruby-mode.el (ruby-add-log-current-method): Print the
4635         period before class method names, not after.  Remove handling of
4636         one impossible case.  Add comments.
4638 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4640         * emacs-lisp/advice.el: Remove support for freezing.
4641         (ad-make-freeze-docstring, ad-make-freeze-definition): Remove functions.
4642         (ad-make-single-advice-docstring, ad-defadvice-flags, defadvice):
4643         Remove support for `freeze'.
4645         * emacs-lisp/cl.el (dolist, dotimes, declare): Use advice-add to
4646         override the default.
4647         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Rewrite without using
4648         cl--dotimes/dolist.
4649         * subr.el (dolist, dotimes, declare): Redefine them normally, even when
4650         `cl' is loaded.
4652         * emacs-lisp/nadvice.el (advice--normalize): New function, extracted
4653         from add-advice.
4654         (advice--strip-macro): New function.
4655         (advice--defalias-fset): Use them to handle macros.
4656         (advice-add): Use them.
4657         (advice-member-p): Correctly handle macros.
4659 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4661         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
4662         Never font-lock the beginning of singleton class as heredoc.
4664 2012-11-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4666         * emacs-lisp/gv.el (gv-define-simple-setter): One more fix (bug#12871).
4668 2012-11-13  Wolfgang Jenkner  <wjenkner@inode.at>
4670         * ansi-color.el (ansi-color-apply-sequence): Implement SGR codes
4671         39 and 49 (bug#12792).  Also, treat unimplemented parameters as 0,
4672         thereby restoring the behavior of revisions prior to 2012-08-15T03:33:55Z!monnier@iro.umontreal.ca.
4674 2012-11-13  Fabián Ezequiel Gallina  <fgallina@cuca>
4676         Fix end-of-defun misbehavior.
4677         * progmodes/python.el (python-nav-beginning-of-defun): Rename from
4678         python-beginning-of-defun-function.  Handle nested defuns
4679         correctly.
4680         (python-nav-end-of-defun): Rename from
4681         python-end-of-defun-function.  Ensure forward movement.
4682         (python-info-current-defun): Reimplement to work as intended
4683         with new fixed python-nav-{end,beginning}-of-defun.  Stop scanning
4684         parent defuns as soon as possible.
4686 2012-11-13  Glenn Morris  <rgm@gnu.org>
4688         * progmodes/flymake.el (flymake-error-bitmap)
4689         (flymake-warning-bitmap, flymake-fringe-indicator-position): Doc fixes.
4690         (flymake-error-bitmap, flymake-warning-bitmap): Fix :types.
4692 2012-11-13  Dmitry Gutov  <dgutov@yandex.ru>
4694         * progmodes/ruby-mode.el (ruby-move-to-block): When moving
4695         backward, always stop at indentation.  Reverts the change from
4696         2012-08-12T22:06:56Z!monnier@iro.umontreal.ca (Bug#12851).
4698 2012-11-13  Glenn Morris  <rgm@gnu.org>
4700         * ibuffer.el (ibuffer-mode-map, ibuffer-mode):
4701         Add ibuffer-filter-by-derived-mode.
4703         * ibuffer.el (ibuffer-mode-map): Don't have two menu items with
4704         the same name shadowing each other.
4706         * window.el (with-temp-buffer-window): Doc tweak.
4708         * emacs-lisp/debug.el (debugger-bury-or-kill): Doc tweak.
4710         * help.el (temp-buffer-max-height):
4711         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-bottom-margin):
4712         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix :version.
4714 2012-11-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4716         * emacs-lisp/nadvice.el: New package.
4717         * subr.el (special-form-p): New function.
4718         * emacs-lisp/elp.el: Use lexical-binding and advice-add.
4719         (elp-all-instrumented-list): Remove var.
4720         (elp-not-profilable): Remove elp-wrapper.
4721         (elp-profilable-p): Use autoloadp and special-form-p.
4722         (elp--advice-name): New const.
4723         (elp-instrument-function): Use advice-add.
4724         (elp--instrumented-p): New predicate.
4725         (elp-restore-function): Use advice-remove.
4726         (elp-restore-all, elp-reset-all): Use mapatoms.
4727         (elp-set-master): Use elp--instrumented-p.
4728         (elp--make-wrapper): Rename from elp-wrapper, return a function
4729         suitable for advice-add.  Use cl-inf.
4730         (elp-results): Use mapatoms+elp--instrumented-p.
4731         * emacs-lisp/debug.el: Use lexical-binding and advice-add.
4732         (debug-function-list): Remove var.
4733         (debug): Rename arg, and then let-bind it explicitly inside.
4734         (debugger-setup-buffer): Rename arg.
4735         (debugger-setup-buffer): Adjust counts to new debug-on-entry setup.
4736         (debugger-frame-number): Adjust to new debug-on-entry setup.
4737         (debug--implement-debug-on-entry): Rename from
4738         implement-debug-on-entry, add argument.
4739         (debugger-special-form-p): Remove, use special-form-p instead.
4740         (debug-on-entry): Use advice-add.
4741         (debug--function-list): New function.
4742         (cancel-debug-on-entry): Use it, along with advice-remove.
4743         (debug-arglist, debug-convert-byte-code, debug-on-entry-1): Remove.
4744         (debugger-list-functions): Use debug--function-list instead of
4745         debug-function-list.
4746         * emacs-lisp/advice.el (ad-save-real-definition): Remove, unused.
4747         (ad-special-form-p): Remove, use special-form-p instead.
4748         (ad-set-advice-info): Use add-function and remove-function.
4749         (ad--defalias-fset): Adjust accordingly.
4751 2012-11-10  Glenn Morris  <rgm@gnu.org>
4753         * mail/emacsbug.el (report-emacs-bug-tracker-url)
4754         (report-emacs-bug-bug-alist, report-emacs-bug-choice-widget)
4755         (report-emacs-bug-create-existing-bugs-buffer)
4756         (report-emacs-bug-parse-query-results)
4757         (report-emacs-bug-query-existing-bugs): Remove.  (Bug#7449)
4759         * term.el (term-default-fg-color, term-default-bg-color):
4760         Make obsolete, rather than just saying "deprecated" in the doc.
4762         * term.el (term): Rename from `term-face'.
4763         (term-current-face, ansi-term-color-vector)
4764         (term-default-fg-color, term-default-bg-color, term-ansi-reset):
4765         Update all users.
4767 2012-11-10  Jan Djärv  <jan.h.d@swipnet.se>
4769         * server.el (server-create-window-system-frame): Handle Nextstep
4770         specially (Bug#12780).
4772 2012-11-10  Glenn Morris  <rgm@gnu.org>
4774         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs):
4775         Unautoload, and make obsolete.  (Bug#7449)
4777 2012-11-10  Chong Yidong  <cyd@gnu.org>
4779         * vc/diff-mode.el (diff-delete-trailing-whitespace): Rewrite, and
4780         rename from diff-remove-trailing-whitespace (Bug#12831).
4782 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4784         * emacs-lisp/advice.el: Require `cl-lib' at run-time to fix
4785         miscompilation of trace.el.
4787 2012-11-10  Glenn Morris  <rgm@gnu.org>
4789         * vc/diff-mode.el (diff-remove-trailing-whitespace): Doc fix.
4791 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4793         * emacs-lisp/gv.el (gv-define-simple-setter): Fix last change
4794         (bug#12812).
4796 2012-11-10  Chong Yidong  <cyd@gnu.org>
4798         * minibuf-eldef.el (minibuffer-eldef-shorten-default): Convert to
4799         a defcustom with an appropriate :set function.
4800         (minibuffer-default--in-prompt-regexps): New function.
4802 2012-11-10  Glenn Morris  <rgm@gnu.org>
4804         * emacs-lisp/cl.el (define-setf-expander, defsetf)
4805         (define-modify-macro): Doc fixes.
4807         * emacs-lisp/gv.el (gv-letplace): Fix doc typo.
4808         (gv-define-simple-setter): Update doc of `fix-return'.
4810 2012-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4812         * emacs-lisp/gv.el (gv-define-simple-setter): Don't evaluate `val'
4813         twice when `fix-return' is set (bug#12813).
4815         * emacs-lisp/cl.el (defsetf): Pass the third arg to
4816         gv-define-simple-setter (bug#12812).
4818         * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4819         (bug#12756).
4821 2012-11-10  Glenn Morris  <rgm@gnu.org>
4823         * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
4825         * emacs-lisp/cl-extra.el (cl-prettyexpand):
4826         * emacs-lisp/cl-lib.el (cl-proclaim, cl-declaim):
4827         * emacs-lisp/cl-macs.el (cl-destructuring-bind, cl-locally)
4828         (cl-the, cl-compiler-macroexpand): Add basic doc strings.
4830         * emacs-lisp/cl-extra.el (cl-maplist, cl-mapcan): Doc fix.
4832 2012-11-10  Leo Liu  <sdl.web@gmail.com>
4834         * ido.el (ido-set-matches-1): Improve flex matching performance by
4835         removing backtracking in the regexp (suggested by Stefan).  (Bug#12796)
4837 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4839         * emacs-lisp/advice.el (ad-set-advice-info): Set defalias-fset-function.
4840         (ad--defalias-fset): New function.
4841         (ad-safe-fset): Remove.
4842         (ad-make-freeze-definition): Use cl-letf*.
4844 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4846         * subr.el (dolist): Don't bind VAR in RESULT.
4848         * emacs-lisp/advice.el: Miscellaneous cleanup.  Use lexical-binding.
4849         (fset, documentation): Don't save real def since we don't advise.
4850         (ad-do-advised-functions): Remove problematic `result-form'.
4851         (ad-safe-fset): `ad-real-fset' => `fset'.
4852         (ad-read-advised-function): Don't assume that ad-do-advised-functions
4853         uses CL's dolist internally.
4854         (ad-arglist): Remove unused arg `name'.
4855         (ad-docstring, ad-make-advised-docstring):
4856         `ad-real-documentation' => `documentation'.
4857         (warning-suppress-types): Declare.
4858         (ad-set-arguments): Simple CSE.
4859         (ad-recover-normality): Sanity check.
4861         * emacs-lisp/bytecomp.el (byte-compile-out-toplevel): Don't turn
4862         (funcall '(lambda ..) ..) into ((lambda ..) ..).
4864 2012-11-09  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4866         * ses.el: symbol to coordinate mapping is made by symbol property
4867         `ses-cell'.  This means that the same mapping is done for all SES
4868         sheets.  That is good enough for cells with standard A1 names, but
4869         not for named cell.  So a hash map is added for the latter.
4870         (defconst ses-localvars): Add local variable ses--named-cell-hashmap
4871         (ses-sym-rowcol): Use hashmap for named cell.
4872         (ses-is-cell-sym-p): New defun.
4873         (ses-decode-cell-symbol): New defun.
4874         (ses-create-cell-variable): Add cell to hashmap when name is not
4875         A1-like.
4876         (ses-rename-cell): Check that cell new name is not already in
4877         spreadsheet with the use of ses-is-cell-sym-p
4878         (ses-rename-cell): Use hash map for named cells, but accept also
4879         renaming back to A1-like.
4881 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4883         * emacs-lisp/advice.el: Use new dynamic docstrings.
4884         (ad-make-advised-definition-docstring, ad-advised-definition-p):
4885         Use dynamic-docstring-function instead of ad-advice-info.
4886         (ad--make-advised-docstring): New function extracted from
4887         ad-make-advised-docstring.
4888         (ad-make-advised-docstring): Use it.
4889         * progmodes/sql.el (sql--make-help-docstring): New function, extracted
4890         from sql-help.
4891         (sql-help): Use it with dynamic-docstring-function.
4893         * env.el (env--substitute-vars-regexp): Don't use rx (for bootstrap).
4895 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4897         * files.el (hack-one-local-variable--obsolete): New function.
4898         (hack-one-local-variable): Use it for obsolete settings.
4900         * subr.el (locate-user-emacs-file): If both old and new name exist, use
4901         the new name.
4903         * progmodes/js.el (js--filling-paragraph): New var.
4904         (c-forward-sws, c-backward-sws, c-beginning-of-macro): Advise.
4905         (js-c-fill-paragraph): Prefer advice to cl-letf so the rebinding is
4906         less sneaky.
4908 2012-11-08  Julien Danjou  <julien@danjou.info>
4910         * progmodes/ruby-mode.el (auto-mode-alist): Add Rakefile in
4911         `auto-mode-alist' (Bug#12835).
4913 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4915         * progmodes/perl-mode.el (perl-prettify-symbols): New defcustom.
4916         (perl--prettify-symbols-alist): New const.
4917         (perl--font-lock-compose-symbol, perl--font-lock-symbols-keywords):
4918         New functions.
4919         (perl-font-lock-keywords-2): Use them.
4920         (perl-electric-noindent-p): New function.
4921         (perl-mode): Use it to set up electric-indent-mode.
4922         (perl-electric-terminator, perl-indent-command): Mark obsolete.
4923         (perl-mode-map): Remove bindings for them.
4924         (perl-imenu-generic-expression, perl-outline-level):
4925         Match functions&packages in column>0.
4927         * env.el (env--substitute-vars-regexp): New const.
4928         (substitute-env-vars): Use it.  Add `only-defined' arg.
4929         * net/tramp.el (tramp-replace-environment-variables): Use it.
4931         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4932         Byte-compile *before* eval in eval-and-compile.
4933         (byte-compile-log-warning): Remove redundant inhibit-read-only.
4934         (byte-compile-file-form-autoload): Don't hide actual definition.
4935         (byte-compile-maybe-guarded): Accept `functionp' as well.
4937         * emacs-lisp/gv.el (gv-ref, gv-deref): New function and macro.
4939 2012-11-07  Michael Albinus  <michael.albinus@gmx.de>
4941         * notifications.el (notifications-get-server-information-method):
4942         New defconst.
4943         (notifications-get-capabilities): Fix docstring.
4944         (notifications-get-server-information): New defun.
4946 2012-11-06  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
4948         * textmodes/ispell.el (ispell-region): Standard re-indent for better
4949         readability.
4951         * textmodes/ispell.el: Experimental support for support debugging.
4952         (ispell-create-debug-buffer): Create a `ispell-debug-buffer' debug
4953         buffer for ispell.
4954         (ispell-print-if-debug): New function to print stuff to
4955         `ispell-debug-buffer' if debugging is enabled.
4956         (ispell-region, ispell-process-line): Use `ispell-print-if-debug' to
4957         show some debugging info.
4958         (ispell-buffer-with-debug): New function that creates a debugging
4959         buffer and calls `ispell-buffer' with debugging enabled.
4961         * textmodes/ispell.el (ispell-region): Do not prefix sent string by
4962         comment in autoconf mode. (Bug#12768)
4964 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
4966         * emacs-lisp/byte-opt.el (toplevel): Add compare-window-configurations,
4967         frame-first-window, frame-root-window, frame-selected-window,
4968         minibuffer-selected-window, minibuffer-window,
4969         window-absolute-pixel-edges, window-at, window-body-height,
4970         window-body-width, window-display-table, window-combination-limit,
4971         window-frame, window-fringes, window-inside-absolute-pixel-edges,
4972         window-inside-edges, window-inside-pixel-edges, window-left-child,
4973         window-left-column, window-margins, window-next-buffers,
4974         window-next-sibling, window-new-normal, window-new-total,
4975         window-normal-size, window-parameter, window-parameters, window-parent,
4976         window-pixel-edges, window-point, window-prev-buffers,
4977         window-prev-sibling, window-redisplay-end-trigger, window-scroll-bars,
4978         window-start, window-text-height, window-top-child, window-top-line,
4979         window-total-height, window-total-width and window-use-time to the list
4980         of functions without side-effects.
4981         (toplevel): Add window-valid-p to the list of error-free functions
4982         without side-effects.
4984 2012-11-05  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
4986         * textmodes/ispell.el (ispell-program-name):
4987         Update spellchecker parameters when customized.
4989 2012-11-04  Glenn Morris  <rgm@gnu.org>
4991         * vc/vc-svn.el (vc-svn-state-heuristic): Avoid calling svn.  (Bug#7850)
4993 2012-11-04  Chong Yidong  <cyd@gnu.org>
4995         * bookmark.el (bookmark-bmenu-switch-other-window): Avoid binding
4996         same-window-* variables.
4998 2012-11-04  Juri Linkov  <juri@jurta.org>
5000         * isearch.el (isearch-help-for-help, isearch-describe-bindings)
5001         (isearch-describe-key, isearch-describe-mode): Use a display
5002         action instead of binding same-window-* variables (Bug#10040).
5004 2012-11-03  Glenn Morris  <rgm@gnu.org>
5006         * emacs-lisp/cl-macs.el (cl-parse-loop-clause):
5007         Rename handler properties back from cl-- to cl-.  (Bug#12788)
5009         * emacs-lisp/cl-macs.el (cl-do-all-symbols): Add doc string.
5011 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
5013         * term/pc-win.el: Don't load term/internal from here.
5015         * loadup.el: Load term/internal from here.
5017 2012-11-03  Fabián Ezequiel Gallina  <fgallina@cuca>
5019         * progmodes/python.el (inferior-python-mode): Fix hang in
5020         jit-lock (Bug#12645).
5022 2012-11-03  Martin Rudalics  <rudalics@gmx.at>
5024         * window.el (switch-to-visible-buffer)
5025         (switch-to-buffer-preserve-window-point): Fix doc-strings.
5027 2012-11-03  Glenn Morris  <rgm@gnu.org>
5029         * emacs-lisp/cl-lib.el (cl--random-time):
5030         Rename from cl-random-time.  (Bug#12773)
5031         (cl--gensym-counter, cl--random-state): Update callers.
5032         * emacs-lisp/cl-extra.el (cl-make-random-state): Update callers.
5034 2012-11-03  Chong Yidong  <cyd@gnu.org>
5036         * cus-start.el: Make cursor-type customizable (Bug#11633).
5038 2012-11-02  Glenn Morris  <rgm@gnu.org>
5040         * filecache.el: No need to load find-lisp when compiling.
5041         (find-lisp-find-files): Autoload it.
5042         (file-cache-add-directory-recursively): Don't require find-lisp.
5044         * image.el (image-type-from-file-name): Trivial simplification.
5046         * emacs-lisp/bytecomp.el (byte-compile-eval):
5047         Decouple "noruntime" and "cl-functions" warnings.
5049 2012-11-01  Stephen Berman  <stephen.berman@gmx.net>
5051         * play/gomoku.el (gomoku-display-statistics): Update mode line
5052         only if in Gomoku buffer; don't capitalize "won" (Bug#12771).
5054 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
5056         * window.el (quit-restore-window): If the window has been
5057         created on an existing frame and ended up as the sole window on
5058         that frame, do not delete it (Bug#12764).
5060 2012-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5062         * progmodes/sh-script.el (sh--inside-noncommand-expression):
5063         Rename from sh--inside-arithmetic-expression, handle more cases
5064         (bug#11263).
5066         * progmodes/sh-script.el (sh--inside-arithmetic-expression): New func.
5067         (sh-font-lock-open-heredoc): Use it (bug#12770).
5069 2012-10-30  Glenn Morris  <rgm@gnu.org>
5071         * emacs-lisp/cl-extra.el (cl-mapc): Add autoload cookie.  Doc fix.
5073         * emacs-lisp/cl.el (letf): Doc fix.  (Bug#12760)
5075 2012-10-29  Chong Yidong  <cyd@gnu.org>
5077         * isearch.el (isearch-other-meta-char): Ensure that a reprocessed
5078         function key is stored in a keyboard macro (Bug#4894).
5080         * thingatpt.el (number-at-point): Apply a thing-at-point property.
5082 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5084         * vc/diff-mode.el (diff-context->unified): Don't get confused by "hunk
5085         header comments".
5086         (diff-unified->context, diff-context->unified)
5087         (diff-reverse-direction, diff-fixup-modifs): Use `use-region-p'.
5089         * emacs-lisp/cl.el (letf): Add missing indent rules (bug#12759).
5091         * files.el (find-alternate-file): Only ask one question (bug#12487).
5093 2012-10-29  Chong Yidong  <cyd@gnu.org>
5095         * vc/vc-hooks.el (vc-file-clearprops): Kill vc-parent-buffer.
5096         Suggested by Dan Nicolaescu (Bug#6326).
5098         * info.el (Info-complete-menu-item): Avoid duplicates (Bug#12705).
5100         * startup.el (fancy-about-screen): Don't message (Bug#12680).
5102         * thingatpt.el (thing-at-point): Doc fix (Bug#12691).
5104         * imenu.el (imenu): Inhibit push-mark message (Bug#12726).
5106         * face-remap.el (face-remap-add-relative): Handle the case where a
5107         face-remapping-alist entry is a cons cell (Bug#12762).
5109 2012-10-29  Kevin Ryde  <user42@zip.com.au>
5111         * woman.el (woman-parse-numeric-value): Handle picas correctly
5112         (Bug#12639).
5114 2012-10-29  Glenn Morris  <rgm@gnu.org>
5116         * emacs-lisp/cl.el (defsetf): Doc fix.
5118 2012-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5120         * progmodes/sh-script.el (sh-font-lock-paren): Also put punctuation
5121         syntax to the matching opener, if any (bug#12547).
5122         (sh-smie-sh-forward-token, sh-smie-sh-backward-token): Recognize this
5123         matching open as a "case-(".
5124         (sh-smie-rc-grammar): Add a corresponding rule for it.
5126 2012-10-28  Daniel Hackney  <dan@haxney.org>
5128         * emacs-lisp/package.el (package-generate-autoloads): Kill buffer
5129         "PKGNAME-autoloads.el" in case we created it.
5131 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5133         * minibuffer.el (completion--sifn-requote): Rewrite to handle things
5134         like Tramp's "/foo:~bar//baz" -> "/scpc:foo:/baz" mapping (bug#11714).
5135         (completion--twq-all): Disable too-strict assertions.
5137         * tmm.el (tmm-prompt): Use map-keymap (bug#12744).
5139 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
5141         * profiler.el (profiler-report-make-entry-part): Fix help-echo
5142         text to match the real keybindings.
5144 2012-10-27  Juri Linkov  <juri@jurta.org>
5146         * wdired.el (wdired-keep-marker-rename): New defcustom.
5147         (wdired-do-renames): Use it instead of `dired-keep-marker-rename'.
5148         (Bug#11795)
5150         * dired.el (dired-keep-marker-rename): Add reference to
5151         `wdired-keep-marker-rename' in the docstring.
5152         Add default character value ?R to display initially in
5153         Customization UI instead of ?@.
5155 2012-10-27  Martin Rudalics  <rudalics@gmx.at>
5157         * window.el (display-buffer): In doc-string describe
5158         window-height and window-width alist entries.
5160         * time.el (display-time-world): Restore fit-window-to-buffer
5161         behavior.
5163 2012-10-27  Chong Yidong  <cyd@gnu.org>
5165         * subr.el (insert-buffer-substring-as-yank): Doc fix.
5167 2012-10-26  Jambunathan K  <kjambunathan@gmail.com>
5169         * minibuffer.el (completion-category-overrides): New completion
5170         category `bookmark' (bug#11131).
5172 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5174         * emacs-lisp/advice.el (ad-assemble-advised-definition):
5175         Silence bogus compiler warnings for ad-do-it.
5177         * bookmark.el (bookmark-completing-read): Set the completion category
5178         to `bookmark' (bug#11131).
5180 2012-10-26  Bastien  <bzg@altern.org>
5181             Stefan Monnier  <monnier@iro.umontreal.ca>
5183         * face-remap.el: Use lexical-binding.
5184         (text-scale-adjust): Improve docstring.  Use itself for the temporary
5185         overlay-map bindings, so as to repeat the "Use..." message each time.
5187 2012-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5189         * emacs-lisp/macroexp.el (macroexp--expand-all):
5190         Obey byte-compile-warning-enabled-p (bug#12486).
5192         * vc/diff-mode.el (diff-end-of-hunk): Also skip potential "no LF at eol".
5193         (diff-refine-hunk): Similarly, handle the "no LF at eol" (bug#12584).
5195 2012-10-26  Martin Rudalics  <rudalics@gmx.at>
5197         * mouse.el (mouse-drag-line): Move last form into preceding when
5198         clause (Bug#12731).
5200         * help.el (resize-temp-buffer-window): Fix doc-string.
5202 2012-10-25  David Engster  <deng@randomsample.de>
5204         * emacs-lisp/eieio.el (eieio-update-lisp-imenu-expression):
5205         Remove.  This feature is already integrated in imenu.
5207         * emacs-lisp/eieio-opt.el: Remove require for `button' since it is
5208         always loaded.  Require `speedbar' unconditionally.
5210 2012-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5212         * dired.el (dired-get-marked-files): Allow ! on . and .. (bug#12725).
5214         * minibuffer.el (minibuffer-force-complete): Fix thinko.
5216         * net/ldap.el (ldap-search-internal): The official ldif format starts
5217         with a "version: 1" header (bug#12724).
5219         * emacs-lisp/package.el (package-installed-p): Warn if not ready
5220         (bug#12721).
5222 2012-10-25  Glenn Morris  <rgm@gnu.org>
5224         * emacs-lisp/cl-macs.el (cl-progv): Doc fix.
5226 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5228         * minibuffer.el (minibuffer-force-complete): Use one more marker
5229         for the temporary-overlay-map command (bug#12619).
5231 2012-10-24  Chong Yidong  <cyd@gnu.org>
5233         * time.el (display-time-world-mode): Derive from special-mode.
5234         (display-time-world): Use display-buffer (Bug#12708).
5235         (display-time-world-mode-map): Variable deleted.
5236         (display-time-world-display): Wrap the final delete-char inside
5237         inhibit-read-only.
5239 2012-10-24  Chong Yidong  <cyd@gnu.org>
5241         * dired.el (dired-mark, dired-unmark, dired-flag-file-deletion):
5242         Doc fix.
5244         * emacs-lisp/easymenu.el (easy-menu-define): Doc fix (Bug#12628).
5246 2012-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5248         * minibuffer.el (completion--all-sorted-completions-location): New var.
5249         (completion--cache-all-sorted-completions)
5250         (completion--flush-all-sorted-completions): Use it.
5251         (completion-in-region, completion-in-region--postch)
5252         (completion-at-point, completion-help-at-point): Use markers in
5253         completion-in-region--data (bug#12619).
5255 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5257         * progmodes/compile.el (compilation-start): Try to handle common
5258         quoting of `cd' argument (bug#12640).
5260         * vc/diff-mode.el (diff-hunk): `save-excursion' while refining
5261         (bug#12671).
5263 2012-10-23  Glenn Morris  <rgm@gnu.org>
5265         * progmodes/gud.el (gud-menu-map):
5266         Check gdb-active-process is bound.  (Bug#12358)
5268 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5270         * repeat.el (repeat): Set real-this-command (bug#12232).
5272         * htmlfontify.el (hfy-post-html-hook):
5273         * filesets.el (filesets-cache-fill-content-hook):
5274         * arc-mode.el (archive-extract-hook):
5275         * progmodes/cc-mode.el (c-prepare-bug-report-hook):
5276         * net/rcirc.el (rcirc-sentinel-functions)
5277         (rcirc-receive-message-functions, rcirc-activity-functions)
5278         (rcirc-print-functions):
5279         * net/dbus.el (dbus-event-error-functions):
5280         * emacs-lisp/eieio.el (eieio-pre-method-execution-functions):
5281         * emacs-lisp/checkdoc.el (checkdoc-style-functions)
5282         (checkdoc-comment-style-functions): Don't use "-hooks" suffix.
5283         * term/sun.el (sun-raw-prefix-hooks):
5284         * mail/sendmail.el (mail-yank-hooks): Use make-obsolete-variable.
5286 2012-10-23  Michael Albinus  <michael.albinus@gmx.de>
5288         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5289         Set `tramp-chunksize' to 1.  This improves the performance.
5290         (tramp-smb-wait-for-output): Add timeout to
5291         `tramp-accept-process-output' calls.
5293 2012-10-23  Chong Yidong  <cyd@gnu.org>
5295         * faces.el (font-list-limit): Define as an obsolete variable.
5297         * startup.el (command-line):
5298         * cus-start.el: Don't refer to font-list-limit.
5300         * newcomment.el (comment-normalize-vars): Doc fix (Bug#12583).
5302 2012-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5304         * subr.el (internal-temp-output-buffer-show): Rename from
5305         temp-output-buffer-show, since previously compiled files expect this name.
5307 2012-10-23  Glenn Morris  <rgm@gnu.org>
5309         * image.el (image-type-from-file-name): If multiple types match,
5310         return the first one that is supported.  (Bug#9045)
5312 2012-10-22  Glenn Morris  <rgm@gnu.org>
5314         * image.el (imagemagick-enabled-types): Doc fix.
5316 2012-10-22  Takafumi Arakaki  <aka.tkf@gmail.com>  (tiny change)
5318         * progmodes/which-func.el (which-func-current): The hash-table may have
5319         an explicit nil (bug#12338).
5321 2012-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5323         * electric.el (electric-pair-delete-selection-self-insert-function):
5324         Rename to electric-pair-will-use-region, return a boolean.
5325         (electric-pair-mode): Adjust accordingly.  Don't require delsel.
5327         * delsel.el (delete-selection-helper): Use a function instead of a hook.
5328         (delete-selection-pre-hook): Use use-region-p.
5329         (delete-selection-self-insert-function): Remove.
5330         (self-insert-command): Obey self-insert-uses-region-functions.
5331         (self-insert-iso): Revert to previous setting, since we don't actually
5332         know what that command does.
5333         (delete-selection-self-insert-hooks): Remove.
5335 2012-10-22  Simon Law  <sfllaw@sfllaw.ca>  (tiny change)
5337         * delsel.el (delete-selection-helper): New function, extracted from
5338         delete-selection-pre-hook.
5339         (delete-selection-pre-hook): Use it.
5340         (delete-selection-self-insert-function): New function.
5341         (delete-selection-self-insert-hooks): New hook.
5342         (self-insert-command, self-insert-iso): Use it.
5343         * electric.el (electric-pair-syntax): New function, extracted from
5344         electric-pair-post-self-insert-function.
5345         (electric-pair-post-self-insert-function): Use it.
5346         (electric-pair-delete-selection-self-insert-function): New function.
5347         (electric-pair-mode): Require delsel and setup
5348         delete-selection-self-insert-hooks (bug#11520).
5350 2012-10-20  Chong Yidong  <cyd@gnu.org>
5352         * vc/vc.el (vc-diff-internal): Set up Diff mode even if there are
5353         no changes to show (Bug#12586).
5355         * eshell/esh-cmd.el (eshell-rewrite-for-command): Copy the body
5356         list explicitly (Bug#12571).
5358 2012-10-20  Arne Jørgensen  <arne@arnested.dk>
5360         * progmodes/flymake.el (flymake-create-temp-inplace):
5361         Use file-truename.
5363 2012-10-20  Eli Zaretskii  <eliz@gnu.org>
5365         * loadup.el: Update comment about uncompiled Lisp files.  (Bug#12395)
5367 2012-10-20  Jay Belanger  <jay.p.belanger@gmail.com>
5369         * calc/calc-units.el (math-extract-units): Properly extract powers
5370         of units.
5372 2012-10-20  Daniel Colascione  <dancol@dancol.org>
5374         * frame.el (make-frame): Set x-display-name as we used to in order
5375         to unbreak creating an X11 frame from an Emacs daemon started
5376         without a display.
5378 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5380         * minibuffer.el (minibuffer-force-complete): Make the next completion use
5381         the same completion-field (bug#12221).
5383 2012-10-19  Martin Rudalics  <rudalics@gmx.at>
5385         * emacs-lisp/debug.el (debug): Record height of debugger window
5386         also when debugger will be back (Bug#8789).
5388 2012-10-18  Chong Yidong  <cyd@gnu.org>
5390         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
5391         Convert to defcustom.
5392         (gdb-get-source-file): Don't bind pop-up-windows.
5394         * progmodes/gud.el (gud-display-line): Don't specially re-use
5395         other frames for the gdb-mi case (Bug#12648).
5397 2012-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
5399         * emacs-lisp/advice.el: Clean up commentary a bit.
5400         (ad-do-advised-functions, ad-with-originals): Use `declare'.
5401         (byte-code-function-p): Never redefine.
5403         * emacs-lisp/gv.el (cond): Same fix as before for `if'.
5405 2012-10-18  Glenn Morris  <rgm@gnu.org>
5407         * dired.el (dired-sort-toggle): Some ls implementations only allow
5408         a single option string.  (Bug#12666)
5410         * minibuffer.el (completion-cycle-threshold): Doc fix.
5412 2012-10-17  Kenichi Handa  <handa@gnu.org>
5414         * international/mule.el (set-keyboard-coding-system):
5415         Recover input meta mode when the new coding system doesn not use 8-bit.
5416         Supply TERMINAL arg to set-input-meta-mode.
5418 2012-10-17  Michael Heerdegen <michael_heerdegen@web.de>
5420         * wdired.el (wdired-old-marks): New variable.
5421         (wdired-change-to-wdired-mode): Locally set wdired-old-marks.
5422         (wdired-do-renames): Move point with renamed file and don't lose
5423         mark status (Bug#11795).
5425 2012-10-16  Juri Linkov  <juri@jurta.org>
5427         * replace.el (query-replace-help): Mention multi-buffer replacement
5428         keys in the Help message.  (Bug#12655)
5430 2012-10-15  Chong Yidong  <cyd@gnu.org>
5432         * emacs-lisp/byte-run.el (defsubst): Doc fix.
5434 2012-10-14  Eli Zaretskii  <eliz@gnu.org>
5436         * window.el (display-buffer): Doc fix.
5438         * progmodes/compile.el (compilation-error-regexp-alist-alist):
5439         Adjust the msft regexp to the output of Studio 2010, and move msft
5440         before edg-1.  See the discussion on emacs-devel,
5441         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00579.html,
5442         for the details.
5444 2012-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
5446         * emacs-lisp/eieio.el (eieio-oset-default, eieio-oset, oset-default)
5447         (oset): Move uses of object-class-fast macro after its definition.
5449         * emacs-lisp/gv.el (if): Don't use closures in non-lexical-binding code.
5451 2012-10-13  Chong Yidong  <cyd@gnu.org>
5453         * textmodes/ispell.el (ispell-pdict-save): If flyspell-mode is
5454         enabled, re-enable it (Bug#11963).
5456 2012-10-13  Martin Rudalics  <rudalics@gmx.at>
5458         * emacs-lisp/debug.el (debug): When debugger-will-be-back is
5459         non-nil, restore window configuration (Bug#12623).
5461 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5463         * help-fns.el (describe-variable, describe-function-1):
5464         * help-mode.el (help-make-xrefs): Remove error handler, made unneeded.
5466         * emacs-lisp/eieio.el (lisp-imenu-generic-expression): Fix typo.
5468 2012-10-12  Glenn Morris  <rgm@gnu.org>
5470         * mail/rmailsum.el (rmail-header-summary):
5471         Fix 2010-11-26 test for multiline Subject: field.  (Bug#12625)
5473 2012-10-12  Fabián Ezequiel Gallina  <fgallina@cuca>
5475         * progmodes/python.el (python-mode-map):
5476         Replace subtitute-key-definition with proper command remapping.
5477         (python-nav--up-list): Fix behavior for blocks on the same level.
5479 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5481         * help-fns.el (describe-function-1): Handle autoloads w/o docstrings.
5483         * emacs-lisp/bytecomp.el (byte-compile-eval): Adjust to long-ago
5484         changes to the format of load-history.
5486         * international/mule-cmds.el (read-char-by-name): Move let-binding of
5487         completion-ignore-case in case that var is buffer-local (bug#12615).
5489 2012-10-11  Kenichi Handa  <handa@gnu.org>
5491         * international/eucjp-ms.el: Re-generated.
5493 2012-10-10  Kenichi Handa  <handa@gnu.org>
5495         * select.el (xselect--encode-string): If a coding is specified for
5496         selection, and that is compatible with COMPOUND_TEXT, use it.
5498 2012-10-10  Martin Rudalics  <rudalics@gmx.at>
5500         * window.el (switch-to-buffer-preserve-window-point): New option.
5501         (switch-to-buffer):
5502         Obey `switch-to-buffer-preserve-window-point' (Bug#4041).
5504 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5506         * newcomment.el (comment-start-skip, comment-end-skip, comment-end):
5507         Don't document nil as a useful value (bug#12583).
5509 2012-10-09  Michael Albinus  <michael.albinus@gmx.de>
5511         * net/tramp.el (tramp-debug-message):
5512         Remove "tramp-with-progress-reporter" from regexp of ignored functions.
5513         (with-tramp-progress-reporter): Rename from
5514         `tramp-with-progress-reporter'.
5515         (with-tramp-file-property, with-tramp-connection-property):
5516         Move from tramp-cache.el, rename from `with-file-property' and
5517         `with-connection-property', respectively.
5519         * net/tramp-cache.el: Remove `with-file-property' and
5520         `with-connection-property'.
5522         * net/tramp.el:
5523         * net/tramp-gvfs.el:
5524         * net/tramp-sh.el:
5525         * net/tramp-smb.el: Adapt callees.
5527         * net/trampver.el: Update release number.
5529 2012-10-09  Glenn Morris  <rgm@gnu.org>
5531         * w32-fns.el (set-message-beep):
5532         * term/w32-win.el (set-message-beep): Update declarations.
5534 2012-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5536         * bindings.el (mode-line-toggle-read-only, mode-line-toggle-modified)
5537         (mode-line-widen, mode-line-input-method-map)
5538         (mode-line-coding-system-map, mode-line-remote)
5539         (mode-line-unbury-buffer, mode-line-bury-buffer)
5540         (mode-line-next-buffer, mode-line-previous-buffer):
5541         Replace save-selected-window+select-window => with-selected-window.
5543         * progmodes/cc-bytecomp.el (cc-bytecomp-defmacro): Remove, unused.
5544         * progmodes/cc-vars.el (bq-process): Remove, unused.
5546         * emacs-lisp/cl-macs.el (cl-defstruct): Obey the :read-only property.
5548 2012-10-09  Fabián Ezequiel Gallina  <fgallina@cuca>
5550         Implemented `backward-up-list'-like navigation.
5551         * progmodes/python.el (python-nav-up-list)
5552         (python-nav-backward-up-list): New functions.
5553         (python-mode-map): Define substitute key for backward-up-list to
5554         python-nav-backward-up-list.
5556 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5558         * progmodes/python.el (python-fill-paragraph): Rename from
5559         python-fill-paragraph-function.  Fixed fill-paragraph for
5560         decorators (Bug#12605).
5562 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5564         * progmodes/python.el (python-shell-output-filter): Handle extra
5565         carriage return in OSX (Bug#12409).
5567 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5569         Fix shell handling of unbalanced quotes and parens in output.
5570         * progmodes/python.el (python-rx-constituents): Add string-delimiter.
5571         (python-syntax-propertize-function): Use it.
5572         (python-shell-output-syntax-table): New var.
5573         (inferior-python-mode): Prevent unbalanced parens/quotes from
5574         previous output mess with current input context.
5576 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
5578         * generic-x.el (javascript-generic-mode, javascript-generic-mode-hook):
5579         Make obsolete aliases of js-mode and js-mode-hook (from js.el).
5581 2012-10-08  Michael Albinus  <michael.albinus@gmx.de>
5583         * ffap.el (ffap-replace-file-component): Support Tramp file name
5584         syntax, not only ange-ftp's one.
5586 2012-10-08  Glenn Morris  <rgm@gnu.org>
5588         * cus-start.el (message-log-max): Set :version.
5590         * calendar/calendar.el (calendar-intermonth-header): Doc fix.
5592 2012-10-08  Martin Rudalics  <rudalics@gmx.at>
5594         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Don't try to split
5595         the minibuffer window (Bug#10851).
5597 2012-10-08  Fabián Ezequiel Gallina  <fgallina@cuca>
5599         Enhancements on forward-sexp movement.
5600         * progmodes/python.el (python-nav-beginning-of-statement)
5601         (python-nav-end-of-statement): Return point-marker.
5602         (python-nav-forward-sexp): lisp-like forward-sexp behavior.
5603         (python-info-current-symbol)
5604         (python-info-statement-starts-block-p): Rename from
5605         python-info-beginning-of-block-p.
5606         (python-info-statement-ends-block-p): Rename from
5607         python-info-end-of-block-p.
5608         (python-info-beginning-of-statement-p)
5609         (python-info-end-of-statement-p)
5610         (python-info-beginning-of-block-p, python-info-end-of-block-p):
5611         New functions.
5613 2012-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5615         * comint.el (comint-preinput-scroll-to-bottom): Preserve the
5616         frame-selected-windows.
5618 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5620         * battery.el (battery-status-function): Check for
5621         w32-battery-status itself, not system-time windows-nt.
5623         * frame.el: Require cl-lib.
5624         (display-format-alist): New variable mapping frame types to
5625         functions that initialize them.
5626         (window-system-for-display): New function: interprets
5627         display-format-alist.
5628         (make-frame-on-display): Remove existing display-selection logic
5629         and just forward to make-frame, which will now DTRT.
5630         (make-frame): Restructure to use window-system-for-display to
5631         figure out how to create a frame on a given display.
5632         (display-mouse-p): Look for frame-type w32, not a particular
5633         system-type.
5635         * loadup.el: Load w32 lisp code when we have the w32 feature.
5637         * mouse.el (mouse-yank-primarY): Look for frame-type w32, not
5638         system-type windows-nt.
5640         * server.el (server-create-window-system-frame): Look for window
5641         type.
5642         (server-proces-filter): Only force a window system when windows-nt
5643         _and_ w32.  Explain why.
5645         * simple.el (normal-erase-is-backspace-mode): Add w32 to the list
5646         of window systems we configure for the mode.
5648         * startup.el (command-line): Mark window system is initialized
5649         after we've done it.
5651         * common-win.el (x-select-text): Look for w32, not windows-nt.
5653         * ns-win.el: Require cl-lib.  Add ourselves to
5654         display-format-alist.
5655         (ns-initialize-window-system): Assert we're not initialized twice.
5657         * w32-win.el: Enable lexical binding; require cl-lib; add
5658         ourselves to display-format-alist.
5659         (w32-handle-dropped-file): Convert incoming dropped files from
5660         Windows paths to Cygwin ones before passing them on to the rest of
5661         Emacs.
5662         (w32-drag-n-drop): New paramter new-frame.  Simplify logic.
5663         (w32-initialize-window-system): Assert we're not initialized twice.
5665         * x-win.el: Require cl-lib; add ourselves to display-format-alist.
5666         (x-initialize-window-system): Assert we're not initialized twice.
5668         * w32-common-fns.el: New File.
5669         (w32-version, w32-using-nt, w32-get-clipboard-data)
5670         (w32-set-clipboard-data, x-set-selection, x-get-selection)
5671         (w32-charset-info-alist, x-last-selected, text)
5672         (x-get-selection-value, x-selection-value): Move here.
5674         * w32-fns.el: Require w32-common-fns.
5675         (w32-version, w32-using-nt, w32-get-clipboard-data)
5676         (w32-set-clipboard-data, x-set-selection, x-get-selection)
5677         (w32-charset-info-alist, x-last-selected, text)
5678         (x-get-selection-value, x-selection-value): Move to
5679         w32-common-fns.
5681         * w32-vars.el:
5682         (w32-allow-system-shell, w32-system-shells): Define only in
5683         non-cygwin case.
5685 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5687         * subr.el (read-passwd-map): Don't use `defconst' (bug#12597).
5688         (read-passwd): Remove a few more potential sources of leaks.
5690 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5692         * progmodes/python.el (inferior-python-mode)
5693         (python-shell-make-comint): Fix initialization of local
5694         variables copied from parent buffer.
5696 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
5698         * term/ns-win.el (ns-read-file-name): Update declaration to match
5699         nsfns.m.
5700         (ns-respond-to-change-font): Change fontsize separately so we are sure
5701         it is set when font is acted upon.
5703 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5705         Enhancements to indentation.
5706         * progmodes/python.el (python-indent-context): Give priority to
5707         inside-string context.  Make comments indentation markers.
5708         (python-indent-region): Do not mess with strings, unless it's the
5709         enclosing set of quotes.
5711 2012-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
5713         * window.el (internal--before-save-selected-window)
5714         (internal--after-save-selected-window): New functions extracted from
5715         save-selected-window.  Make sure we return the `alist' we construct.
5716         (save-selected-window): Use them.
5718         * textmodes/tex-mode.el (tex-recenter-output-buffer):
5719         Use with-selected-window.
5721         * emacs-lisp/autoload.el (make-autoload): Add `cl-defmacro' to the
5722         forms that define macros (bug#12593).
5724 2012-10-07  Kenichi Handa  <handa@gnu.org>
5726         * international/mule-conf.el (compound-text-with-extensions):
5727         Add :mime-charset property as x-ctext.
5729 2012-10-07  Stefan Merten  <smerten@oekonux.de>
5731         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5732         (rst-indent-literal-normal, rst-indent-literal-minimized)
5733         (rst-indent-comment): Correct :version tag.
5734         (rst-official-cvs-rev): Correct version string.
5736 2012-10-07  Glenn Morris  <rgm@gnu.org>
5738         * mail/rmailmm.el (rmail-mime-process-multipart):
5739         Do not confuse a multipart message with an epilogue
5740         with a "truncated" one; fixes 2011-06-27 change.  (Bug#10101)
5742 2012-10-07  Fabián Ezequiel Gallina  <fgallina@cuca>
5744         Fix shell output retrieval and comint-prompt-regexp init.
5745         * progmodes/python.el (inferior-python-mode):
5746         (python-shell-make-comint): Fix initialization of
5747         comint-prompt-regexp from copied file local variables.
5748         (python-shell-fetched-lines): Remove var.
5749         (python-shell-output-filter-in-progress): Rename from
5750         python-shell-fetch-lines-in-progress.
5751         (python-shell-output-filter-buffer): Rename from
5752         python-shell-fetch-lines-string.
5753         (python-shell-fetch-lines-filter): Delete function.
5754         (python-shell-output-filter): New function.
5755         (python-shell-send-string-no-output): Use them.
5757 2012-10-07  Glenn Morris  <rgm@gnu.org>
5759         * hi-lock.el (hi-lock-process-phrase):
5760         Try to make it less fragile.  (Bug#7161)
5762         * hi-lock.el (hi-lock-face-phrase-buffer): Doc fix.
5764 2012-10-06  Glenn Morris  <rgm@gnu.org>
5766         * ehelp.el (electric-help-mode): Use help-mode rather than
5767         non-existent mode `help'.
5768         (electric-help-map): Use button-buffer-map.  (Bug#10917)
5770         * textmodes/reftex-vars.el (reftex-create-bibtex-header)
5771         (reftex-create-bibtex-footer): Fix custom types.
5773         * progmodes/sh-script.el (sh-indent-after-continuation):
5774         Add explicit :group.
5776         * textmodes/rst.el (rst-preferred-decorations)
5777         (rst-shift-basic-offset): Clarify obsolescence versions.
5779         * profiler.el (profiler): Add missing group :version tag.
5780         * avoid.el (mouse-avoidance-banish-position):
5781         * proced.el (proced-renice-command):
5782         * calc/calc.el (calc-ensure-consistent-units):
5783         * calendar/icalendar.el (icalendar-import-format-uid):
5784         * net/tramp.el (tramp-save-ad-hoc-proxies):
5785         * progmodes/bug-reference.el (bug-reference-bug-regexp):
5786         * progmodes/flymake.el (flymake-error-bitmap)
5787         (flymake-warning-bitmap, flymake-fringe-indicator-position):
5788         * progmodes/sh-script.el (sh-indent-after-continuation):
5789         * progmodes/verilog-mode.el (verilog-auto-template-warn-unused)
5790         (verilog-before-save-font-hook, verilog-after-save-font-hook):
5791         * progmodes/vhdl-mode.el (vhdl-makefile-default-targets)
5792         (vhdl-array-index-record-field-in-sensitivity-list)
5793         (vhdl-indent-comment-like-next-code-line):
5794         * textmodes/reftex-vars.el (reftex-ref-style-alist)
5795         (reftex-ref-macro-prompt, reftex-ref-style-default-list)
5796         (reftex-cite-key-separator, reftex-create-bibtex-header)
5797         (reftex-create-bibtex-footer):
5798         * textmodes/rst.el (rst-new-adornment-down, rst-indent-field)
5799         (rst-indent-literal-normal, rst-indent-literal-minimized)
5800         (rst-indent-comment): Add missing custom :version tags.
5802         * calendar/timeclock.el (timeclock-modeline-display):
5803         Add missing obsolete alias for renamed user option.
5805         * strokes.el (strokes-modeline-string):
5806         * emulation/crisp.el (crisp-mode-modeline-string):
5807         * eshell/esh-mode.el (eshell-status-in-modeline):
5808         Aliases to defcustoms must come before the defcustom.
5810         * calendar/cal-tex.el (cal-tex-diary, cal-tex-cursor-week)
5811         (cal-tex-cursor-week2, cal-tex-cursor-week-iso)
5812         (cal-tex-cursor-week-monday): Doc fixes.
5813         (cal-tex-cursor-week2-summary): Doc fix.
5814         Rename from cal-tex-cursor-week-at-a-glance.
5816         * calendar/cal-menu.el (cal-menu-context-mouse-menu):
5817         Tweak week descriptions.  Add cal-tex-cursor-week2-summary.
5819         * calendar/calendar.el (calendar-mode-map):
5820         Add cal-tex-cursor-week2-summary.
5822 2012-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5824         * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
5826         * subr.el (read-passwd-map): New var.
5827         (read-passwd): Use `read-string' again.
5828         * minibuffer.el (delete-minibuffer-contents): Make it interactive.
5830 2012-10-06  Jambunathan K  <kjambunathan@gmail.com>
5832         * register.el (append-to-register, prepend-to-register):
5833         Deactivate mark, as does `copy-to-register' (bug#12389).
5835 2012-10-06  Chong Yidong  <cyd@gnu.org>
5837         * files.el (auto-mode-alist): Add .by and .wy (Semantic grammars).
5839 2012-10-06  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
5841         * international/characters.el: Fix simple mistake ((car chars) ->
5842         elt), delete duplicated code.
5844 2012-10-06  Glenn Morris  <rgm@gnu.org>
5846         * subr.el (read-passwd): Allow C-u to erase entry.  (Bug#12570)
5848 2012-10-06  Julian Scheid  <julians37@gmail.com>  (tiny change)
5850         * color.el (color-hsl-to-rgb): Fix incorrect results for
5851         small and large hue values.  (Bug#12559)
5853 2012-10-05  Fabián Ezequiel Gallina  <fgallina@cuca>
5855         Enhancements to docstring formatting when filling paragraphs.
5856         * progmodes/python.el (python-fill-docstring-style): Rename from
5857         python-fill-string-style.  Added new style.
5858         (python-fill-string): Use new style.  Better checks for
5859         docstrings.
5861 2012-10-05  Glenn Morris  <rgm@gnu.org>
5863         * net/newst-treeview.el (newsticker-group-move-feed): Doc fix.
5865         * color.el (color-name-to-rgb, color-rgb-to-hex)
5866         (color-hue-to-rgb, color-hsl-to-rgb, color-rgb-to-hsv)
5867         (color-rgb-to-hsl, color-srgb-to-xyz, color-saturate-hsl)
5868         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5869         (color-lighten-name, color-darken-hsl, color-darken-name): Doc fixes.
5871         * emacs-lisp/timer.el (with-timeout): Add missing progn.  (Bug#12577)
5873 2012-10-05  Juanma Barranquero  <lekktu@gmail.com>
5875         * ido.el (ido-directory-too-big-p): Pass dir through file-truename
5876         to get the correct size across symlinks.
5878         * ido.el (ido-buffer-disable-smart-matches): Fix typo in docstring.
5880 2012-10-04  Juri Linkov  <juri@jurta.org>
5882         * replace.el (query-replace-interactive): Declare obsolete.
5883         (query-replace-read-from): Add the last incremental search string
5884         to the list of default values accessible via M-n.
5885         (map-query-replace-regexp): Use `read-regexp'.
5886         (query-replace, query-replace-regexp, query-replace-regexp-eval)
5887         (map-query-replace-regexp, replace-string, replace-regexp):
5888         Fix docstrings to replace mentions of `query-replace-interactive'
5889         with alternatives.  (Bug#12526)
5891 2012-10-04  Juri Linkov  <juri@jurta.org>
5893         * dired.el (dired-shrink-to-fit): Declare obsolete.  (Bug#1806)
5894         (dired-pop-to-buffer): Declare obsolete.
5895         (dired-mark-pop-up): Doc fix.
5897 2012-10-04  Fabián Ezequiel Gallina  <fgallina@cuca>
5899         Allow user to set docstring style for fill-paragraph.
5900         * progmodes/python.el
5901         (python-fill-comment-function, python-fill-string-function)
5902         (python-fill-decorator-function, python-fill-paren-function):
5903         Remove :safe for defcustoms.
5904         (python-fill-string-style): New defcustom
5905         (python-fill-paragraph-function): Enhance context detection.
5906         (python-fill-string): Honor python-fill-string-style settings.
5908 2012-10-04  Martin Rudalics  <rudalics@gmx.at>
5910         * emacs-lisp/edebug.el (edebug-pop-to-buffer): Select window
5911         after setting its buffer (Bug#10805).
5913 2012-10-03  Fabián Ezequiel Gallina  <fgallina@cuca>
5915         Fix cornercase for string syntax.
5916         * progmodes/python.el (python-syntax-propertize-function):
5917         Simplify and enhance the regexp for unescaped quotes.  Now it also
5918         matches quotes in weird situations like the single quote in
5919         "something\"'".
5920         (python-syntax-stringify): Simplify num-quotes detecting code.
5922 2012-10-03  Glenn Morris  <rgm@gnu.org>
5924         * help-macro.el (three-step-help):
5925         Revert 2012-09-29 change.  (Bug#12567)
5927 2012-10-03  Martin Rudalics  <rudalics@gmx.at>
5929         * menu-bar.el (kill-this-buffer): Don't do anything when
5930         `menu-frame' is not alive or visible (Bug#8184).
5932         * emacs-lisp/debug.el (debug): When quitting the debugger window
5933         restore current buffer (Bug#12502).
5935 2012-10-02  Chong Yidong  <cyd@gnu.org>
5937         * progmodes/hideif.el (hif-lookup, hif-defined):
5938         Handle semantic-c-takeover-hideif.
5940 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
5942         Change sampling interval units from ms to ns.
5943         * profiler.el (profiler-sampling-interval): Change units
5944         from ms to ns, multiplying the default by 1000000 so that
5945         it remains 1 ms.
5946         (profiler-report-cpu-line-format): Give enough room for
5947         the maximum counters on 64-bit hosts.
5948         (profiler-report-render-calltree-1): Call them "CPU samples",
5949         not "Time (ms)", since they are not milliseconds now (and
5950         never really were).
5952 2012-10-02  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
5954         * net/eudcb-bbdb.el (eudc-bbdb-format-record-as-result):
5955         Fix querying BBDB for entries without a last name (Bug#11580).
5957 2012-10-02  Chong Yidong  <cyd@gnu.org>
5959         * emacs-lisp/eieio.el: Restore Version header.
5961 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5963         * vc/diff-mode.el (diff--auto-refine-data): New var.
5964         (diff-hunk): Use it to delay refinement.
5965         (diff-mode): Remove overlays when we turn off font-lock.
5967         * textmodes/table.el: Use lexical-binding, dolist, define-minor-mode.
5968         (table-initialize-table-fixed-width-mode)
5969         (table-set-table-fixed-width-mode): Remove functions.
5970         (table-command-list): Move initialization into declaration.
5971         (table--tweak-menu-for-xemacs): Move defun outside mapcar.
5972         (table-with-cache-buffer): Use `declare'.
5973         (table-span-cell): Simplify via CSE.
5974         (table-fixed-width-mode): Use define-minor-mode.
5975         (table-call-interactively, table-funcall, table-apply): Remove.
5976         (table-function): New function, to replace them.
5978         * bookmark.el (bookmark-search-pattern): Remove var.
5979         (bookmark-read-search-input): Remove function.
5980         (bookmark-bmenu-search): Reimplement using a minibuffer.
5982         * faces.el (modeline): Remove obsolete face name.
5984         * vc/add-log.el (add-log-buffer-file-name-function): Demote to defvar
5985         and give a non-nil default value.
5986         (add-change-log-entry): Simplify accordingly.
5988 2012-10-01  Dmitry Gutov  <dgutov@yandex.ru>
5990         * vc/vc-git.el (vc-git-log-edit-toggle-signoff): New function.
5991         (vc-git-log-edit-toggle-amend): New function.
5992         (vc-git-log-edit-toggle-signoff): New function.
5993         (vc-git-log-edit-mode): New major mode.
5994         (vc-git-log-edit-mode-map): Keymap for it.
5995         (vc-git-checkin): Handle "Amend" and "Sign-Off" headers.
5997         * vc/log-edit.el (log-edit-font-lock-keywords): Allow hyphens in
5998         header names.
5999         (log-edit-toggle-header): New function.
6000         (log-edit-extract-headers): Accept function values in HEADERS alist.
6002 2012-10-01  David Engster  <deng@randomsample.de>
6004         * emacs-lisp/eieio-opt.el (eieio-describe-class): Add filename
6005         from symbol property and change message to be more consistent with
6006         Emacs proper.
6007         (eieio-describe-generic): Add filename for each implementation.
6008         Fix indices for generic and normal methods.
6009         (eieio-method-def, eieio-class-def): New buttons.
6010         (eieio-help-find-method-definition)
6011         (eieio-help-find-class-definition): New functions.
6012         (eieio-help-mode-augmentation-maybee): Add buttons to filenames of
6013         class, constructor and method definitions.
6015         * emacs-lisp/eieio.el (eieiomt-add, eieio-defclass): Save file
6016         information in symbol property.
6017         (scoped-class): Remove.
6018         (eieio-slot-name-index, call-next-method): Check if it is bound.
6020 2012-10-01  Leo P. White  <lpw25@cam.ac.uk>
6022         * emacs-lisp/eieio-custom.el (eieio-custom-mode-map): New option.
6023         (eieio-custom-mode): New major mode.
6024         (eieio-customize-object): Use it.
6026 2012-10-01  Eric Ludlam  <zappo@gnu.org>
6028         * emacs-lisp/eieio-base.el (eieio-persistent-read): New input args
6029         specifying the expected class, and whether subclassing is allowed.
6030         (eieio-persistent-convert-list-to-object):
6031         (eieio-persistent-validate/fix-slot-value)
6032         (eieio-persistent-slot-type-is-class-p): New functions.
6033         (eieio-named::slot-missing): Doc fix.
6035         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
6036         Stop using unused publd variable.
6038         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
6039         (eieio-speedbar-description, eieio-speedbar-derive-line-path)
6040         (eieio-speedbar-object-buttonname, eieio-speedbar-make-tag-line)
6041         (eieio-speedbar-handle-click): Do not specify a class for the
6042         method.  Fixes method invocation order problems with EDE.
6044 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6046         * emacs-lisp/bytecomp.el (byte-compiler-abbreviate-file): New function.
6047         (byte-compile-warning-prefix, byte-compile-file): Use it (bug#12508).
6049 2012-10-01  Karl Fogel  <kfogel@red-bean.com>
6051         * bookmark.el (bookmark-version-control): Give tags in the
6052         :type choices (Bug#12309), and improve doc string.
6053         (bookmark-write-file): Bind `print-circle' to `t' to allow
6054         circular custom bookmark types.  (Bug#12503)
6056 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
6058         Revert the FOLLOW-SYMLINKS change for file-attributes.
6059         * files.el (remote-file-name-inhibit-cache, after-find-file):
6060         * time.el (display-time-file-nonempty-p): Undo last change.
6062         * profiler.el (profiler-sampling-interval): Change default back to 1.
6063         See Stefan Monnier in
6064         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00863.html>.
6066 2012-10-01  Fabián Ezequiel Gallina  <fgallina@cuca>
6068         Shell output catching a la gud-gdb.
6069         * progmodes/python.el (python-shell-fetch-lines-in-progress)
6070         (python-shell-fetch-lines-string, python-shell-fetched-lines):
6071         New Vars.
6072         (python-shell-fetch-lines-filter): New function.
6073         (python-shell-send-string-no-output): Use them.
6075 2012-09-30  Tomohiro Matsuyama  <tomo@cx4a.org>
6077         * profiler.el (profiler-sampling-interval): Rename from
6078         profiler-sample-interval.
6079         (profiler-sampling-interval): Default to 10.
6080         (profiler-find-profile): New command (was profiler-find-log).
6081         (profiler-find-profile-other-window): New command.
6082         (profiler-find-profile-other-frame): New command.
6083         (profiler-profile): Introduce API-level data structure.
6085 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
6087         file-attributes has a new optional arg FOLLOW-SYMLINKS.
6088         * files.el (remote-file-name-inhibit-cache):
6089         * time.el (display-time-file-nonempty-p): Use it.
6090         * files.el (after-find-file): Don't chase links before calling
6091         file-exists-p, as file-exists-p already does the right thing.
6093 2012-09-30  Ralf Angeli  <angeli@caeruleus.net>
6095         Merge from standalone RefTeX repository.
6097         The following ChangeLog entries are shortened versions of the
6098         original ones with file paths adapted.  A not so strongly edited
6099         version of the original ChangeLog can be found in the commit log.
6101         * textmodes/reftex-auc.el: Move `provide' call to bottom of file.
6102         (reftex-arg-cite): Use `reftex-cite-key-separator'.
6103         Correctly handle new value type returned by `reftex-citation'.
6105         * textmodes/reftex-cite.el (reftex-create-bibtex-file): Make sure
6106         that entries with whitespace at various places are found.
6107         Doc fix. Include entries that are cross-referenced from cited entries.
6108         Include @String definitions in the resulting bib file.  Add header
6109         and footer defined in `reftex-create-bibtex-header' and
6110         `reftex-create-bibtex-footer'.
6111         (reftex-do-citation): Make it possible again to insert
6112         non-existent entries.  Save match data when asking for optional
6113         arguments. Return all keys, not just the first one.
6114         (reftex-all-used-citation-keys): Fix regexp to correctly extract
6115         all citations in the same line.
6116         (reftex-parse-bibtex-entry): Accept additional optional argument
6117         `raw' and keep quotes or braces if it is non-nil.  Match fields
6118         containing hyphens besides word constituents.
6119         (reftex-get-string-refs): New function.
6120         (reftex-extract-bib-entries): Check if BibTeX file changed on disk
6121         and ask if it should be reread in case it did.
6122         (reftex-pop-to-bibtex-entry)
6123         (reftex-extract-bib-entries-from-thebibliography): Match \bibitem
6124         entries with spaces or tabs in front of arguments.
6125         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
6126         (reftex-parse-bibtex-entry, reftex-create-bibtex-file):
6127         Match entries containing numbers and symbol constituents.
6128         (reftex-do-citation, reftex-figure-out-cite-format):
6129         Use `reftex-cite-key-separator'.
6131         * textmodes/reftex-dcr.el: Move provide statement to end of file.
6132         (reftex-mouse-view-crossref): Explain why point is set.
6134         * textmodes/reftex-global.el: Whitespace changes.
6136         * textmodes/reftex-index.el: Move provide statement to end of
6137         file.
6138         (reftex-index-selection-or-word): Use `reftex-region-active-p'.
6139         (reftex-index-visit-phrases-buffer): Set marker when visiting
6140         buffer.  This allows for returning from the phrases file to the
6141         file one was just editing instead of the file where the last
6142         phrases was added from.
6143         (reftex-index-phrases-syntax-table): New variable.  Give ?\"
6144         punctuation syntax as it usually is not used as string quote in
6145         TeX-related modes and may occur unmatched.  The change also
6146         prevents fontification of quoted content.
6147         (reftex-index-phrases-mode): Use it.
6149         * textmodes/reftex-parse.el (reftex-parse-from-file):
6150         Move backward one char if a `\' was matched after a section macro.
6151         (reftex-parse-from-file): Use beginning of match instead of end as
6152         bound.
6154         * textmodes/reftex-ref.el: Adapt creation of
6155         `reftex-<package>-<macro>' functions to new structure of
6156         `reftex-ref-style-alist'.
6157         (reftex-reference): Use `reftex-ref-style-list' function.
6158         Adapt to new structure of `reftex-ref-style-alist'.  Prompt for a
6159         reference macro if `reftex-ref-macro-prompt' is non-nil.
6160         (reftex-reference): Pass refstyle to `reftex-format-special'.
6161         Determine reference macro by looking at
6162         `reftex-ref-style-default-list' and `reftex-ref-style-alist'.
6163         Use only one special format function.
6164         (reftex-varioref-vref, reftex-fancyref-fref)
6165         (reftex-fancyref-Fref): Remove definitions.  The functions are now
6166         generated from `reftex-ref-style-alist'.
6167         (reftex-format-vref, reftex-format-Fref, reftex-format-fref):
6168         Remove.
6169         (reftex-format-special): New function.
6171         * textmodes/reftex-sel.el
6172         (reftex-select-cycle-ref-style-internal): Adapt to new structure
6173         of `reftex-ref-style-alist'. Remove code for testing macro type.
6174         (reftex-select-toggle-varioref)
6175         (reftex-select-toggle-fancyref): Remove.
6176         (reftex-select-cycle-ref-style-internal)
6177         (reftex-select-cycle-ref-style-forward)
6178         (reftex-select-cycle-ref-style-backward): New functions.
6179         (reftex-select-label-map): Use `v' and `V' for general cycling
6180         through reference styles.  Add `p' for switching between number
6181         and page reference types.
6183         * textmodes/reftex-toc.el (reftex-re-enlarge):
6184         Call `enlarge-window' only if there is something to do because in Emacs
6185         the horizontal version throws an error even if the parameter is 0.
6187         * textmodes/reftex-vars.el (reftex-label-alist): Doc fix.
6188         (reftex-plug-into-AUCTeX): Doc fix.
6189         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc
6190         string.  Adapt to new name.
6191         (reftex-ref-style-alist): Change structure so that it is not
6192         possible to use multiple different package names within a style.
6193         Remove the symbols for symbols for macro type distinction.
6194         Add characters for macro selection.
6195         (reftex-ref-macro-prompt, reftex-create-bibtex-header)
6196         (reftex-create-bibtex-footer): New variables.
6197         (reftex-format-ref-function): Mention third argument of special
6198         format function.
6199         (reftex-ref-style-alist, reftex-ref-style-default-list):
6200         New variables.
6201         (reftex-vref-is-default, reftex-fref-is-default): Adapt doc string
6202         to new implementation.  Mark as obsolete.  Add compatibility code
6203         for honoring the variable values in case they are set.
6204         (reftex-cite-format-builtin, reftex-bibliography-commands):
6205         Add support for ConTeXt.
6206         (reftex-format-ref-function, reftex-format-cite-function):
6207         Fix custom type.
6208         (reftex-cite-key-separator): New variable.
6210         * textmodes/reftex.el (reftex-syntax-table-for-bib)
6211         (reftex-mode): Do not derive `reftex-syntax-table-for-bib' from
6212         `reftex-syntax-table' because parens have to retain their paren
6213         syntax in order for parsing of BibTeX entries like @book(...) to
6214         work.
6215         (reftex-in-comment): Do not error out if `comment-start-skip' is
6216         not set.  Deal correctly with escaped comment characters.
6217         (reftex-tie-multifile-symbols): Add doc string.
6218         Initialize `reftex-ref-style-list'.
6219         (reftex-untie-multifile-symbols): Add doc string.
6220         (reftex-add-index-macros): Doc fix.
6221         (reftex-ref-style-activate, reftex-ref-style-toggle)
6222         (reftex-ref-style-list): New functions.
6223         (reftex-mode-menu): Use them.  Adapt to new structure of
6224         `reftex-ref-style-alist'.
6225         (reftex-select-with-char): Kill the RefTeX Select buffer when
6226         done.
6227         (reftex-remove-if): New function.
6228         (reftex-erase-all-selection-and-index-buffers)
6229         (reftex-mode-menu): Reference styles are now computed from
6230         `reftex-ref-style-alist'.  Fix typo.
6231         (reftex-report-bug): New function.
6232         (reftex-uniquify, reftex-uniquify-by-car): Replace O(n^2)
6233         algorithms with O(n log n).  Introduce optional argument SORT (not
6234         yet used).
6236 2012-09-30  Fabián Ezequiel Gallina  <fgallina@cuca>
6238         Enhancements for triple-quote string syntax.
6239         * progmodes/python.el (python-syntax-propertize-function):
6240         Match both quote cases in one regexp.
6241         (python-syntax-stringify): Handle matches properly.
6243 2012-09-30  Juri Linkov  <juri@jurta.org>
6245         * arc-mode.el (archive-summarize): Let-bind `buffer-file-truename'
6246         to nil around the call to `insert' to prevent
6247         directory time modification by lock_file.  (Bug#2295)
6248         * tar-mode.el (tar-summarize-buffer): Idem.
6250 2012-09-30  Juri Linkov  <juri@jurta.org>
6252         * facemenu.el (list-colors-sort): Add option "Luminance".
6253         (list-colors-sort-key): Implement it.
6255         * vc/diff-mode.el (diff-refine-removed):
6256         * vc/ediff-init.el (ediff-fine-diff-A):
6257         * vc/smerge-mode.el (smerge-refined-removed):
6258         Change background color "#ffaaaa" to "#ffbbbb".  (Bug#10181)
6260 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
6262         * term/ns-win.el (x-file-dialog): New function.
6264 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
6266         * ido.el (ido-max-directory-size): Default to nil; the current
6267         default is small for POSIX systems, and impractical on Windows 7
6268         now that lstat returns directory sizes for NTFS.
6270 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
6272         In buffer display functions handle window-height/window-width
6273         alist entries.  Suggested by Juri Linkov as fix for Bug#1806.
6274         * window.el (window--display-buffer): New argument ALIST.
6275         Obey window-height and window-width alist entries.
6276         (window--try-to-split-window): New argument ALIST.
6277         Bind window-combination-limit to t when the window's size shall be
6278         changed and window-combination-limit equals `window-size'.
6279         (display-buffer-in-atom-window)
6280         (display-buffer-in-major-side-window)
6281         (display-buffer-in-side-window, display-buffer-same-window)
6282         (display-buffer-reuse-window, display-buffer-pop-up-frame)
6283         (display-buffer-pop-up-window, display-buffer-below-selected)
6284         (display-buffer-at-bottom, display-buffer-in-previous-window)
6285         (display-buffer-use-some-window): Adjust all callers of
6286         window--display-buffer and window--try-to-split-window.
6287         (fit-frame-to-buffer): New option.
6288         (fit-window-to-buffer): Can resize frames if fit-frame-to-buffer
6289         is non-nil.
6290         (display-buffer-in-major-side-window): Evaluate window-height /
6291         window-width alist entries.
6293         * help.el (temp-buffer-resize-frames)
6294         (temp-buffer-resize-regexps): Remove options.
6295         (temp-buffer-resize-mode): Adjust doc-string.
6296         (resize-temp-buffer-window): Don't consult
6297         temp-buffer-resize-regexps.  Use fit-frame-to-buffer instead of
6298         temp-buffer-resize-frames.
6300         * dired.el (dired-mark-pop-up):
6301         Call display-buffer-below-selected with a fit-window-to-buffer alist
6302         entry.
6304 2012-09-30  Chong Yidong  <cyd@gnu.org>
6306         * server.el (server-host): Document the security implications.
6307         (server-auth-key): Doc fix.
6309         * startup.el (initial-buffer-choice): Doc fix.
6311         * minibuffer.el (minibuffer-local-filename-syntax): Doc fix.
6313         * simple.el (delete-trailing-whitespace): Avoid an unnecessary
6314         restriction change.
6316         * bindings.el (goto-map): Bind M-g TAB to move-to-column.
6318         * help-fns.el (help-fns--obsolete): Fix last change.
6320 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6322         * winner.el (winner-mode-map): Obey winner-dont-bind-my-keys here.
6323         (minor-mode-map-alist): Remove redundant code.
6325         * vc/pcvs.el (cvs-cleanup-collection): Keep entries that are currently
6326         visited in a buffer.
6327         (cvs-insert-visited-file): New function.
6328         (find-file-hook): Use it.
6330         * vc/pcvs-info.el (cvs-fileinfo-pp): Don't use non-existent faces.
6332         * vc/log-edit.el (log-edit-font-lock-keywords): Ignore case to
6333         chose face.
6334         (log-edit-empty-buffer-p): Don't require a space after a header.
6336         * vc/ediff-util.el (ediff-diff-at-point): Don't assume point-min==1.
6338         * tutorial.el (help-with-tutorial): Use minibuffer-with-setup-hook.
6340         * textmodes/text-mode.el (paragraph-indent-minor-mode): Make it
6341         a proper minor-mode.
6343         * textmodes/tex-mode.el (tex-mode-map): Don't bind paren keys.
6345 2012-09-29  Glenn Morris  <rgm@gnu.org>
6347         * winner.el (winner-mode): Remove variable (let define-minor-mode
6348         handle it).
6349         (winner-dont-bind-my-keys, winner-boring-buffers, winner-mode-hook):
6350         Doc fixes.
6351         (winner-mode-leave-hook): Rename to winner-mode-off-hook.
6352         (winner-mode): Use define-minor-mode.
6354         * vc/vc-sccs.el (vc-sccs-registered): Use the progn trick to get
6355         the full definition in loaddefs, rather than duplicating it.
6357         * help-macro.el (three-step-help): No need to autoload defcustom.
6359         * progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
6360         (inferior-lisp-program, inferior-lisp-load-command)
6361         (inferior-lisp-prompt, inferior-lisp-mode-hook):
6362         No need to autoload defcustoms.
6364         * hippie-exp.el (hippie-expand-try-functions-list)
6365         (hippie-expand-verbose, hippie-expand-dabbrev-skip-space)
6366         (hippie-expand-dabbrev-as-symbol, hippie-expand-no-restriction)
6367         (hippie-expand-max-buffers, hippie-expand-ignore-buffers)
6368         (hippie-expand-only-buffers): No need to autoload defcustoms.
6369         * progmodes/vhdl-mode.el (vhdl-line-expand):
6370         Explicitly load hippie-exp, so it does not get autoloaded
6371         while hippie-expand-try-functions-list is let-bound.
6373 2012-09-28  Glenn Morris  <rgm@gnu.org>
6375         * emacs-lisp/cl.el (flet): Fix case of obsolescence message.
6377         * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
6378         Only "cl.el" counts as cl these days.
6380 2012-09-28  Juri Linkov  <juri@jurta.org>
6382         Display archive errors in the echo area instead of inserting
6383         to the file buffer.
6385         * arc-mode.el (archive-extract-by-stdout): Change arg STDERR-FILE
6386         to STDERR-TEST that can be a regexp matching a successful output.
6387         Create a temporary file and redirect stderr to it.  Search for
6388         STDERR-TEST in the stderr output and display it in the echo area
6389         if no match is found.
6390         (archive-extract-by-file): New function like
6391         `archive-extract-by-stdout' but extracting archives to files
6392         and looking for successful matches in stdout.  Function body is
6393         mostly copied from `archive-rar-extract'.
6394         (archive-rar-extract): Use `archive-extract-by-file'.
6395         (archive-7z-extract): Use `archive-extract-by-stdout'.  (Bug#10347)
6397 2012-09-28  Leo Liu  <sdl.web@gmail.com>
6399         * pcomplete.el (pcomplete-show-completions):
6400         Use minibuffer-message to make pcomplete usable in minibuffer.
6402         * ido.el (ido-set-matches-1): Fix 2012-09-11 change.
6404 2012-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6406         * type-break.el: Use lexical-binding.
6407         (type-break-mode): Use define-minor-mode.
6409         * emacs-lisp/pcase.el (pcase--mark-used): New.
6410         (pcase--u1): Use it (bug#12512).
6412         * custom.el (load-theme): Set buffer-file-name so the load is recorded
6413         in load-history with the right file name.
6415 2012-09-28  Tassilo Horn  <tsdh@gnu.org>
6417         * doc-view.el (doc-view-current-cache-doc-pdf): New function.
6418         (doc-view-doc->txt, doc-view-convert-current-doc): Use it.
6419         (doc-view-get-bounding-box): Make bounding box slicing work for
6420         ODF and DVI documents.
6422 2012-09-28  Glenn Morris  <rgm@gnu.org>
6424         * type-break.el (type-break-mode, type-break-interval)
6425         (type-break-good-rest-interval, type-break-keystroke-threshold):
6426         No need to autoload.
6427         (type-break-good-rest-interval, type-break-keystroke-threshold):
6428         Add :set-after.
6430 2012-09-28  Chong Yidong  <cyd@gnu.org>
6432         * progmodes/verilog-mode.el (verilog-auto-inst-interfaced-ports):
6433         Add :version tag.
6435 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6437         * json.el (json-encode-char): Codes 127-160 aren't "ASCII printable".
6439 2012-09-27  Glenn Morris  <rgm@gnu.org>
6441         * faces.el (x-display-name): Declare (for without-x builds).
6443         * linum.el (linum-format): Don't autoload it.  Improve :type.
6445         * progmodes/tcl.el: Don't require outline when compiling.
6446         (outline-regexp, outline-level): Declare.
6447         * textmodes/sgml-mode.el: Don't require outline when compiling.
6448         (outline-regexp, outline-heading-end-regexp, outline-level): Declare.
6450         * term.el (term-ansi-reset):
6451         Try setting term-ansi-face-already-done to nil.  (Bug#11785)
6453         * vc/vc.el (vc-next-action): Only gripe about committing read-only
6454         files for RCS and SCCS.  (Bug#9781)
6456 2012-09-27  Chong Yidong  <cyd@gnu.org>
6458         * progmodes/verilog-mode.el (verilog-mode-release-emacs): Fix last
6459         change; value should be t.
6461 2012-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6463         * image-mode.el: Use lexical-binding.
6464         (image-mode-winprops): Use t to stand for the window of
6465         a buffer that's not displayed.
6466         * doc-view.el (doc-view-new-window-function): Handle the new
6467         t in winprops.
6468         (doc-view-enlarge): Make it a real nop if the size is not changed.
6469         (doc-view-display): Handle the case where the buffer is not (yet?)
6470         displayed in any window.
6471         (doc-view-saved-settings): New var.
6472         (doc-view-mode): Use it.
6473         (doc-view-fallback-mode): Set it.
6475         * minibuf-eldef.el: Make it possible to replace (default ...) with [...].
6476         Set lexical-binding.
6477         (minibuffer-eldef-shorten-default): New var.
6478         (minibuffer-default-in-prompt-regexps): Use it for new default.
6479         (minibuf-eldef-setup-minibuffer): Add replacement functionality.
6481 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
6483         * international/uni-bidi.el:
6484         * international/uni-category.el:
6485         * international/uni-name.el:
6486         * international/uni-numeric.el: Regenerate.
6488 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
6489             Stefan Monnier  <monnier@iro.umontreal.ca>
6491         * profiler.el: New file.
6493 2012-09-26  Stefan Monnier  <monnier@iro.umontreal.ca>
6495         * emacs-lisp/testcover.el (testcover-after): Add gv-expander.
6496         (testcover-reinstrument): Simplify with CSE.
6498 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
6500         * window.el (temp-buffer-window-setup): Fix typo in docstring.
6502 2012-09-25  Wilson Snyder  <wsnyder@wsnyder.org>
6504         * verilog-mode.el (verilog-auto-ascii-enum, verilog-auto-inout)
6505         (verilog-auto-input, verilog-auto-insert-lisp)
6506         (verilog-auto-output, verilog-auto-output-every, verilog-auto-reg)
6507         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-undef)
6508         (verilog-auto-unused, verilog-auto-wire)
6509         (verilog-forward-or-insert-line): Fix AUTOs with no trailing
6510         newline.  Reported by Andrew Jones.
6511         (verilog-auto-inst) Support expanding $clog2 in AUTOINST.
6512         Reported by Brad Dobbie.
6513         (verilog-batch-delete-trailing-whitespace):
6514         Create verilog-batch-delete-trailing-whitespace.
6515         Reported by Brad Dobbie.
6516         (verilog-auto-inout-param): Support AUTOINOUTPARAM for copying
6517         parameters from another module.  Reported by Dan Katz.
6518         (verilog-auto, verilog-auto-assign-modport)
6519         (verilog-auto-inout-modport): Add AUTOASSIGNMODPORT and
6520         AUTOINOUTMODPORT for UVM interface module shell generation.
6521         Reported by Brad Dobbie.
6522         (verilog-auto-inst-interfaced-ports): Make default nil, as more
6523         standard behavior.
6524         (verilog-auto): Fix AUTO parameters with parenthesis arguments.
6525         Reported by Matt Martin.
6527 2012-09-25  Martin Rudalics  <rudalics@gmx.at>
6529         * window.el (window--resize-child-windows): When resizing child
6530         windows proportionally, process them in reverse order to
6531         preserve the "when splitting a window the new one gets the odd
6532         line" behavior.
6533         (window--resize-root-window-vertically): When resizing the
6534         minibuffer window try to affect only windows at the bottom of the
6535         frame.  (Bug#12419)
6537 2012-09-25  Chong Yidong  <cyd@gnu.org>
6539         * subr.el (declare): Doc fix.
6541         * help-fns.el (help-fns--obsolete): Handle macros properly.
6543 2012-09-25  Chong Yidong  <cyd@gnu.org>
6545         * bookmark.el (bookmark-jump-noselect): Use a declare form to mark
6546         this function obsolete.
6548         * calendar/cal-x.el (calendar-two-frame-setup)
6549         (calendar-only-one-frame-setup, calendar-one-frame-setup):
6550         * calendar/calendar.el (american-calendar, european-calendar)
6551         (calendar-for-loop):
6552         * comint.el (comint-dynamic-simple-complete)
6553         (comint-dynamic-complete-as-filename, comint-unquote-filename):
6554         * desktop.el (desktop-load-default):
6555         * dired-x.el (dired-omit-here-always)
6556         (dired-hack-local-variables, dired-default-directory):
6557         * emacs-lisp/derived.el (derived-mode-class):
6558         * emacs-lisp/timer.el (timer-set-time-with-usecs):
6559         * emacs-lock.el (toggle-emacs-lock):
6560         * epa.el (epa-display-verify-result):
6561         * epg.el (epg-sign-keys, epg-start-sign-keys)
6562         (epg-passphrase-callback-function):
6563         * eshell/esh-util.el (eshell-for):
6564         * eshell/eshell.el (eshell-remove-from-window-buffer-names)
6565         (eshell-add-to-window-buffer-names):
6566         * files.el (locate-file-completion):
6567         * imenu.el (imenu-example--create-c-index)
6568         (imenu-example--create-lisp-index)
6569         (imenu-example--lisp-extract-index-name)
6570         (imenu-example--name-and-position):
6571         * international/mule-cmds.el (princ-list):
6572         * international/mule-diag.el (decode-codepage-char):
6573         * international/mule-util.el (detect-coding-with-priority):
6574         * iswitchb.el (iswitchb-read-buffer):
6575         * mail/mailalias.el (mail-complete):
6576         * mail/sendmail.el (mail-sent-via):
6577         * mouse.el (mouse-popup-menubar-stuff, mouse-popup-menubar)
6578         (mouse-major-mode-menu):
6579         * password-cache.el (password-read-and-add):
6580         * pcomplete.el (pcomplete-parse-comint-arguments):
6581         * progmodes/sh-script.el (sh-maybe-here-document):
6582         * replace.el (query-replace-regexp-eval):
6583         * savehist.el (savehist-load):
6584         * simple.el (choose-completion-delete-max-match):
6585         * term.el (term-dynamic-simple-complete):
6586         * vc/ediff-init.el (ediff-check-version):
6587         * vc/ediff-wind.el (ediff-choose-window-setup-function-automatically):
6588         * vc/vc.el (vc-diff-switches-list):
6589         * view.el (view-return-to-alist-update): Likewise.
6591         * subr.el (eval-next-after-load, makehash, insert-string)
6592         (assoc-ignore-representation, assoc-ignore-case): Use declare to
6593         mark obsolete.
6594         (mode-line-inverse-video): Variable deleted.
6596         * international/mule-util.el (string-to-sequence): Remove.
6598         * calendar/calendar.el (calendar-version):
6599         * calendar/icalendar.el (icalendar-extract-ical-from-buffer)
6600         (icalendar-convert-diary-to-ical):
6601         * cus-edit.el (custom-mode):
6602         * ansi-color.el (ansi-color-unfontify-region):
6603         * international/latin1-disp.el (latin1-char-displayable-p):
6604         * progmodes/cwarn.el (turn-on-cwarn-mode):
6605         * progmodes/which-func.el (which-func-update-1):
6606         Use define-obsolete-function-alias.
6608         * net/newst-backend.el (newsticker-cache-filename):
6609         * net/newst-treeview.el (newsticker-groups-filename):
6610         Fix incorrect obsolescence declaration.
6612         * allout.el (allout-passphrase-hint-string): Likewise.
6613         (allout-init): Use a declare form to mark obsolete.
6615         * emacs-lisp/byte-run.el (make-obsolete): Doc fix; emphasize that
6616         this applies to functions.
6618         * iswitchb.el (iswitchb-read-buffer): Move code of
6619         iswitchb-define-mode-map here, and delete that obsolete function.
6621         * net/snmp-mode.el (snmp-font-lock-keywords-3): Don't use obsolete
6622         font-lock-reference-face.
6624 2012-09-25  Glenn Morris  <rgm@gnu.org>
6626         * buff-menu.el (Buffer-menu-name-width, Buffer-menu-size-width):
6627         Doc fixes.
6629         * eshell/em-term.el (eshell-term-name):
6630         Default to term-term-name.  (Bug#12485)
6632 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
6634         * progmodes/python.el (python-shell-send-buffer): Better handling
6635         of "if __name__ == '__main__':" conditionals when sending the buffer.
6637 2012-09-24  Glenn Morris  <rgm@gnu.org>
6639         * eshell/esh-cmd.el (eshell-find-alias-function):
6640         Tighten up file-name regexp.  (Bug#12499)
6642 2012-09-24  Fabián Ezequiel Gallina  <fgallina@cuca>
6644         Enhancements for triple-quote string syntax.
6645         * progmodes/python.el (python-quote-syntax): Remove.
6646         (python-syntax-propertize-function): New value.
6647         (python-syntax-count-quotes, python-syntax-stringify):
6648         New functions.
6650 2012-09-24  Chong Yidong  <cyd@gnu.org>
6652         * mail/supercite.el (sc-version): Remove obsolete function.
6653         (sc-describe): Don't mark as obsolete, since it is bound.
6654         (sc-submit-bug-report): Remove.
6656         * vc/log-edit.el (cvs-changelog-full-paragraphs)
6657         (cvs-commit-buffer-require-final-newline): Remove.
6658         (log-edit-require-final-newline)
6659         (log-edit-changelog-full-paragraphs): Default to t.
6661         * vc/pcvs-defs.el (cvs-diff-buffer-name, cvs-diff-ignore-marks)
6662         * vc/vc-hooks.el (vc-ignore-vc-files, vc-master-templates)
6663         * vc/vc.el (vc-checkout-carefully): Likewise.
6665         * vc/emerge.el (emerge-mode): Make it an obsolete alias.
6666         (emerge-version): Remove.
6668         * progmodes/compile.el (compile-internal): Remove.
6669         (compilation-parse-errors-function): Fix typo.
6671         * international/mule.el (set-char-table-default): Remove.
6672         (set-coding-priority, make-coding-system, generic-char-p)
6673         (charset-list, charset-bytes, charset-id): Use declare to mark
6674         functions as obsolete.
6676         * vc/pcvs-defs.el (cvs-buffer-name-alist)
6677         (cvs-invert-ignore-marks): Remove references to obsolete vars.
6678         * vc/vc-hooks.el (vc-default-registered): Don't use
6679         vc-master-templates.
6681         * font-lock.el (font-lock-reference-face):
6682         Use define-obsolete-variable-alias.
6684         * generic-x.el (rul-generic-mode): Use font-lock-constant-face.
6685         * calendar/calendar.el (calendar-font-lock-keywords):
6686         * calendar/diary-lib.el (diary-font-lock-keywords)
6687         (diary-fancy-font-lock-keywords):
6688         * textmodes/reftex-sel.el (reftex-insert-docstruct):
6689         * textmodes/reftex-index.el (reftex-insert-index):
6690         * textmodes/reftex-cite.el (reftex-format-bib-entry):
6691         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
6692         * progmodes/ps-mode.el (ps-mode-font-lock-keywords-1):
6693         * progmodes/prolog.el (prolog-font-lock-keywords):
6694         * progmodes/idlwave.el (idlwave-idl-keywords):
6695         * progmodes/ada-mode.el (ada-font-lock-keywords):
6696         * net/snmp-mode.el (snmp-font-lock-keywords-3): Likewise.
6698 2012-09-24  Glenn Morris  <rgm@gnu.org>
6700         * mail/emacsbug.el (report-emacs-bug): Include `lsb_release -d'.
6702 2012-09-23  Fabián Ezequiel Gallina  <fgallina@cuca>
6704         * progmodes/python.el (python-indent-line): More consistent cursor
6705         movement behavior.
6707 2012-09-23  Stefan Merten  <smerten@oekonux.de>
6709         * textmodes/rst.el: Fix compiler warning.
6711 2012-09-23  Roland Winkler  <winkler@gnu.org>
6713         * textmodes/bibtex.el (bibtex-autokey-transcriptions):
6714         Transcribe also LaTeX hyphenation.
6715         (bibtex-reformat): Bug fix. Do not quote twice the elements of
6716         bibtex-reformat-previous-options.
6718 2012-09-23  Roland Winkler  <winkler@gnu.org>
6720         * proced.el (proced-renice-command): New variable.
6721         (proced-marked-processes): New function.
6722         (proced-with-processes-buffer): New macro.
6723         (proced-send-signal): Use them.
6724         (proced-renice): New command bound to r.
6726 2012-09-23  Roland Winkler  <winkler@gnu.org>
6728         * ibuf-ext.el (ibuffer-switch-to-saved-filter-groups): If list
6729         ibuffer-saved-filter-groups has one element, shortcut the call of
6730         completing-read.  (Bug#12331)
6732 2012-09-23  Chong Yidong  <cyd@gnu.org>
6734         * bindings.el (mode-line-toggle-read-only):
6735         * bs.el (bs-toggle-readonly):
6736         * buff-menu.el (Buffer-menu-toggle-read-only):
6737         * dired.el (dired-toggle-read-only):
6738         * ibuffer.el (ibuffer-do-toggle-read-only): Use read-only-mode.
6740 2012-09-23  Chong Yidong  <cyd@gnu.org>
6742         * image.el (image-type-available-p): Adapt to init-image-library
6743         argument changes.
6745 2012-09-22  Juri Linkov  <juri@jurta.org>
6747         * dired.el (dired-mode-map): Add [remap read-only-mode] for
6748         `dired-toggle-read-only'.  (Bug#12462)
6750 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
6752         * subr.el (temp-output-buffer-show): New function.
6753         (with-output-to-temp-buffer): Call temp-output-buffer-show
6754         instead of internal-temp-output-buffer-show.
6756 2012-09-22  Chong Yidong  <cyd@gnu.org>
6758         * files.el (ctl-x-map): Bind C-x C-q to read-only-mode
6759         (Bug#12462).
6761         * repeat.el (repeat): Doc fix (Bug#12348).
6763         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix
6764         (Bug#10909).
6766         * simple.el (shell-command-on-region): Doc fix.
6767         (read-only-mode): Doc fix.
6769 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
6771         * emacs-lisp/timer.el (run-with-idle-timer)
6772         (timer-activate-when-idle): Warn against reinvoking an idle timer
6773         from within its own timer action.  (Bug#12447)
6775 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
6777         * cus-start.el (window-combination-limit): Add new optional
6778         values.
6779         * window.el (temp-buffer-window-show)
6780         (window--try-to-split-window): Handle new values of
6781         window-combination-limit (Bug#1806).
6782         (split-window): Test window-combination-limit for t instead of
6783         non-nil.
6784         (display-buffer-at-bottom): New buffer display action function.
6785         * help.el (temp-buffer-resize-regexps): New option.
6786         (temp-buffer-resize-mode): Rewrite doc-string.
6787         (resize-temp-buffer-window): Obey temp-buffer-resize-regexps.
6788         Don't resize reused window.  Suggested by Glenn Morris.
6790 2012-09-22  Stefan Merten  <smerten@oekonux.de>
6792         * textmodes/rst.el: Revamp section title faces.
6793         (rst-official-version)
6794         (rst-package-emacs-version-alist): Sync with official version
6795         V1.4.0.
6796         (rst-faces-defaults, rst-set-level-default)
6797         (rst-level-face-max, rst-level-face-base-color)
6798         (rst-level-face-base-light, rst-level-face-format-light)
6799         (rst-level-face-step-light, rst-define-level-faces): Obsolete.
6800         (rst-adornment-faces-alist): Match new setup.
6801         (rst-level-1, rst-level-2, rst-level-3, rst-level-4)
6802         (rst-level-5, rst-level-6): New faces.
6804 2012-09-22  Chong Yidong  <cyd@gnu.org>
6806         * simple.el (undo): Handle indirect buffers (Bug#8207).
6808 2012-09-21  Leo Liu  <sdl.web@gmail.com>
6810         IDO: Disable match re-ordering for buffer switching.
6811         * ido.el (ido-buffer-disable-smart-matches): New variable.
6812         (ido-set-matches-1): Use it.  (Bug#2042)
6814 2012-09-21  Jose Marino  <marinoj@nso.edu>  (tiny change)
6816         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
6817         Fix 2011-05-17 change.  (Bug#12418)
6819 2012-09-21  Leo Liu  <sdl.web@gmail.com>
6821         * subr.el (ignore-errors): Mention with-demoted-errors in doc-string.
6823 2012-09-21  Glenn Morris  <rgm@gnu.org>
6825         * emacs-lisp/shadow.el (load-path-shadows-font-lock-keywords):
6826         Be more robust about locating simple.el.
6828 2012-09-21  Glenn Morris  <rgm@gnu.org>
6830         * mail/emacsbug.el (report-emacs-bug): Trap load-path-shadows errors.
6832 2012-09-21  Joel Bion  <jpbion@westvi.com>  (tiny change)
6834         * pcmpl-gnu.el (pcmpl-gnu-tarfile-regexp): Add tar.xz.  (Bug#12382)
6836 2012-09-20  Juri Linkov  <juri@jurta.org>
6838         * replace.el (query-replace-read-from): Use `read-regexp' instead
6839         of `read-from-minibuffer' when `regexp-flag' is non-nil.
6840         (occur-read-primary-args): Use `read-regexp' instead of
6841         `read-string'.
6842         (multi-occur-in-matching-buffers): Use `read-regexp' instead of
6843         `read-from-minibuffer'.
6844         * isearch.el (isearch-occur): Use `read-regexp' instead of
6845         `read-string'.
6846         * dired.el (dired-read-regexp): Use `read-regexp' instead of
6847         `read-from-minibuffer'.
6848         * progmodes/grep.el (grep-read-regexp): Use `read-regexp' instead
6849         of `read-string'.  (Bug#7567)
6851         * replace.el (read-regexp): Rename DEFAULT-VALUE arg to DEFAULTS
6852         and allow accepting a list of strings prepended to a list of
6853         standard default values.  Doc fix.  (Bug#12321)
6855         * replace.el (read-regexp): Add HISTORY arg.  (Bug#7567)
6857         * replace.el (read-regexp): Don't add ": " when PROMPT already
6858         ends with a colon and space.  (Bug#12321)
6860 2012-09-20  Tassilo Horn  <tsdh@gnu.org>
6862         * doc-view.el (doc-view-display): Better fix for the cl-assertion
6863         error.
6865 2012-09-20  Stefan Merten  <smerten@oekonux.de>
6867         * textmodes/rst.el: Integrate support for `imenu' and `which-function'.
6868         Fixes feature request bug#11711.
6869         (rst-mode): Create `imenu-create-index-function'.
6870         (rst-get-stripped-line): Delete after refactoring.
6871         (rst-section-tree, rst-section-tree-rec)
6872         (rst-section-tree-point): Refactor and document properly.
6873         (rst-imenu-find-adornments-for-position)
6874         (rst-imenu-convert-cell, rst-imenu-create-index):
6875         New function.
6877 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6879         * emacs-lisp/macroexp.el (macroexp--obsolete-warning): New function.
6880         (macroexp--expand-all): Use it.
6881         (macroexp--funcall-and-return): Remove by folding it into its sole
6882         caller (macroexp--warn-and-return).
6883         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete):
6884         Use macroexp--obsolete-warning.
6886         * calc/calc.el: Fix last change by removing the whole chunk, since it
6887         was only needed back when Calc was not bundled.
6889 2012-09-20  Martin Rudalics  <rudalics@gmx.at>
6891         * emacs-lisp/debug.el (debug): Restore assignment to
6892         debugger-old-buffer removed on 2012-09-08.
6894 2012-09-20  Juri Linkov  <juri@jurta.org>
6896         * dired-aux.el (dired-diff): Remove (require 'diff) since
6897         `diff-latest-backup-file' is now autoloaded.
6899 2012-09-20  Chong Yidong  <cyd@gnu.org>
6901         * vc/diff.el (diff-latest-backup-file): Autoload.
6903 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6905         * calc/calc.el: Remove redundant autoload shape check.
6906         (sel-mode): Don't defvar.
6907         (calc-get-stack-element): Add `sel-mode' arg instead.
6908         (calc-top, calc-top-list): Pass it this additional argument.
6909         * calc/calc-store.el (calc-store-map):
6910         * calc/calc-map.el (calc-apply, calc-reduce, calc-map)
6911         (calc-map-equation, calc-outer-product, calc-inner-product):
6912         * calc/calc-aent.el (calc-alg-entry): Don't bind sel-mode.
6914         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix last change.
6916 2012-09-19  Juri Linkov  <juri@jurta.org>
6918         * dired-aux.el (dired-diff): Add (require 'diff) because
6919         `diff-latest-backup-file' is not autoloaded.
6920         (dired-do-chxxx, dired-do-chmod): Set `no-error-if-not-filep' arg
6921         of `dired-get-filename' to t to not report error when there is
6922         no default file on the current line.
6924 2012-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6926         * emacs-lisp/macroexp.el (macroexp--funcall-if-compiled): Rename from
6927         macroexp--eval-if-compile.
6928         (macroexp--funcall-and-return, macroexp--warn-and-return): New funs.
6929         (macroexp--expand-all): Use them (bug#12371).
6931         * doc-view.el (doc-view-guess-paper-size)
6932         (doc-view-scale-bounding-box): Fix unbound `caddr'.
6934 2012-09-19  Tassilo Horn  <tsdh@gnu.org>
6936         New feature: set optimal slice from BoundingBox information.
6937         * doc-view.el (doc-view-mode-map): Add keybinding.
6938         (doc-view-menu): Add menu entry.
6939         (doc-view-set-slice): Adapt docstring.
6940         (doc-view-get-bounding-box, doc-view-guess-paper-size)
6941         (doc-view-scale-bounding-box)
6942         (doc-view-set-slice-from-bounding-box): New functions.
6943         (doc-view-paper-sizes): New defvar.
6945 2012-09-19  Glenn Morris  <rgm@gnu.org>
6947         * emacs-lisp/macroexp.el (byte-compile-warn-obsolete)
6948         (byte-compile-log-warning): Autoload.  (Bug#12371)
6950         * calendar/calendar.el (calendar-american-month-header)
6951         (calendar-european-month-header, calendar-iso-month-header)
6952         (calendar-month-header): New options.
6953         (calendar-set-date-style): Set calendar-month-header.  Redraw calendar.
6954         (calendar-generate-month): Use calendar-month-header.  (Bug#9510)
6956 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
6958         * startup.el (command-line-ns-option-alist): Add -g and --geometry.
6960 2012-09-18  Juri Linkov  <juri@jurta.org>
6962         * dired-aux.el (dired-diff): Restore original functionality of
6963         getting the default value, but keep new feature of using the
6964         latest existing backup file (`diff-latest-backup-file').
6966 2012-09-18  Juri Linkov  <juri@jurta.org>
6968         * dired.el (dired-mark): If the region is active in Transient Mark
6969         mode, mark all files in the active region.  Doc fix.
6970         (dired-unmark, dired-flag-file-deletion, dired-unmark-backward):
6971         Doc fix.  (Bug#10624)
6973 2012-09-18  Juri Linkov  <juri@jurta.org>
6975         * dired-aux.el (dired-do-chxxx, dired-do-chmod): Default file
6976         attributes for M-n are pulled from the file at point.
6977         (dired-do-chgrp, dired-do-chown, dired-do-touch): Doc fix.
6978         Suggested by Drew Adams.  (Bug#10624)
6980 2012-09-18  Dmitry Gutov  <dgutov@yandex.ru>
6982         * progmodes/ruby-mode.el (ruby-brace-to-do-end): Don't add extra
6983         whitespace after "end".
6984         (ruby-do-end-to-brace): Collapse block to one line if it fits
6985         within fill-column.
6987 2012-09-18  Martin Rudalics  <rudalics@gmx.at>
6989         * emacs-lisp/debug.el (debugger-bury-or-kill): Fix customization
6990         value.
6991         (debug): Don't remove debugger window when debugger is expected
6992         to be back.
6994 2012-09-18  Chong Yidong  <cyd@gnu.org>
6996         * custom.el (defface): Doc fix.
6998         * cus-edit.el (custom-unlispify-remove-prefixes): Add warning.
7000 2012-09-18  Martin Blais  <blais@furius.ca>  (tiny change)
7002         * progmodes/compile.el (compilation-start): Use compilation-always-kill
7003         to initialize query-on-exit; then test that instead (bug#12288).
7005 2012-09-17  Stefan Merten  <smerten@oekonux.de>
7007         * textmodes/rst.el: Add support for `testcover'.
7008         (rst-defcustom-testcover, rst-testcover-add-compose)
7009         (rst-testcover-add-1value): New functions.
7010         (rst-portable-mark-active-p): Replace by `use-region-p'.
7011         (rst-update-section, rst-classify-adornment)
7012         (rst-find-title-line): Mark `1value' forms.
7013         (rst-classify-adornment): Remove superfluous form.
7014         (rst-update-section, rst-get-adornments-around)
7015         (rst-adornment-complete-p, rst-get-next-adornment)
7016         (rst-adjust, rst-promote-region)
7017         (rst-display-adornments-hierarchy, rst-straighten-adornments)
7018         (rst-find-pfx-in-region, rst-section-tree-rec)
7019         (rst-section-tree-point, rst-toc-insert, rst-toc-insert-node)
7020         (rst-toc-node, rst-toc, rst-forward-section)
7021         (rst-iterate-leftmost-paragraphs)
7022         (rst-iterate-leftmost-paragraphs-2, rst-enumerate-region)
7023         (rst-bullet-list-region)
7024         (rst-convert-bullets-to-enumeration, rst-font-lock-keywords)
7025         (rst-compile-find-conf, rst-compile)
7026         (rst-repeat-last-character): Fix style.
7028 2012-09-17  Chong Yidong  <cyd@gnu.org>
7030         * comint.el (comint--complete-file-name-data): Don't add a space
7031         if the status is `sole'; that adds a gratuitous space in the
7032         completion-cycling case (Bug#12092).
7034         * pcomplete.el (pcomplete-completions-at-point): Likewise.
7036 2012-09-17  Richard Stallman  <rms@gnu.org>
7038         * mail/rmailmm.el (rmail-mime-toggle-raw): Do rmail-mime-insert
7039         only in the mime-shown mode, not in raw mode.
7040         (rmail-mime): Toggle off mime by displaying the message without
7041         mime processing.  (Bug#12305)
7043         * mail/rmail.el (rmail-retry-failure):
7044         Turn off mime processing first.  (Bug#12037)
7046         * epa-mail.el (epa-mail-encrypt): Fix bug when a name has no key.
7048 2012-09-17  Chong Yidong  <cyd@gnu.org>
7050         * shell.el (shell-file-name-chars, shell-file-name-quote-list)
7051         (shell-dynamic-complete-functions): Convert to defcustom.
7052         (shell-prompt-pattern, shell-completion-fignore): Doc fix.
7054         * bookmark.el (bookmark-bmenu-toggle-filenames): Doc fixes.
7055         * comint.el (comint-prompt-read-only):
7056         * custom.el (defcustom):
7057         * hi-lock.el (hi-lock-mode):
7058         * ibuffer.el (ibuffer-formats):
7059         * ielm.el (ielm-prompt-read-only):
7060         * novice.el (disable-command):
7061         * saveplace.el (toggle-save-place):
7062         * speedbar.el (speedbar-supported-extension-expressions):
7063         * startup.el (auto-save-list-file-prefix, init-file-user)
7064         (after-init-hook, inhibit-startup-echo-area-message):
7065         * strokes.el (strokes-help):
7066         * time-stamp.el (time-stamp):
7067         * calendar/calendar.el (calendar, diary-file):
7068         * calendar/diary-lib.el (diary-mail-entries, diary)
7069         (diary-list-entries-hook):
7070         * calendar/holidays.el (holidays, calendar-holidays):
7071         * calendar/lunar.el (lunar-phases):
7072         * calendar/solar.el (sunrise-sunset):
7073         * emulation/edt.el (edt-load-keys):
7074         * emulation/viper.el (viper-mode):
7075         * eshell/em-alias.el (eshell-command-aliases-list):
7076         * eshell/esh-util.el (eshell-convert-numeric-arguments):
7077         * international/ogonek.el (ogonek-information):
7078         * net/tramp-cmds.el (tramp-bug):
7079         * net/quickurl.el (quickurl-reread-hook-postfix):
7080         * play/decipher.el (decipher-font-lock-keywords):
7081         * progmodes/cc-styles.el (c-set-style):
7082         * progmodes/idlw-shell.el (idlwave-shell-prompt-pattern):
7083         * progmodes/inf-lisp.el (inferior-lisp-prompt):
7084         * progmodes/octave-mod.el (octave-mode):
7085         * progmodes/sql.el (sql-mode, sql-interactive-mode, sql-password):
7086         * progmodes/verilog-mode.el (verilog-read-defines):
7087         * textmodes/two-column.el (2C-mode): Likewise.
7089 2012-09-16  Katsumi Yamaoka  <yamaoka@jpl.org>
7091         * mail/mailabbrev.el (mail-abbrev-expand-hook): Work for a mail aliasee
7092         that holds many addresses.
7094 2012-09-16  Chong Yidong  <cyd@gnu.org>
7096         * align.el (align-areas): Call the indication function with
7097         positions instead of markers for arguments (Bug#12343).
7099         * files.el (parse-colon-path): Use split-string (Bug#12351).
7101         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
7102         (display-buffer-function): Mark as obsolete.
7104         * progmodes/compile.el (compilation-parse-errors): Accept list
7105         values similar to font-lock-keywords (Bug#12136).
7106         Suggested by Oleksandr Manzyuk.
7107         (compilation-error-regexp-alist): Doc fix.
7109 2012-09-15  Glenn Morris  <rgm@gnu.org>
7111         * version.el (emacs-bzr-version-bzr): New function.
7112         (emacs-bzr-get-version): Add optional EXTERNAL argument.
7114         * vc/vc-bzr.el (vc-bzr-working-revision): For lightweight local
7115         checkouts, check the parent dirstate matches the branch.
7116         Add "--tree" to "bzr revno" arguments.  Don't try to shorten the
7117         empty string.
7119         * version.el (emacs-bzr-version): Doc fix.
7120         (emacs-bzr-version-dirstate): New function.
7121         (emacs-bzr-get-version): For lightweight checkouts, if the parent
7122         is local try and check that it matches the branch.  If not, just
7123         use dirstate information.  (Bug#12441)
7125 2012-09-14  Juri Linkov  <juri@jurta.org>
7127         * dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
7128         (Bug#12399)
7130 2012-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7132         * emacs-lisp/advice.el (ad-prognify): Remove, use macroexp-progn.
7134         * emacs-lisp/edebug.el: Miscellaneous cleanup.
7135         Remove obsolete byte-compiler hack that tried to silence some warnings.
7136         (edebug-submit-bug-report): Remove.
7137         (edebug-get-buffer-window, edebug-sit-for, edebug-input-pending-p):
7138         Remove aliases, use the un-prefixed name instead.
7139         (edebug-pop-to-buffer): Consider other frames.
7140         (edebug-original-read):: Make it more obvious that it's always defined.
7141         (edebug--make-form-data-entry, edebug--form-data-name)
7142         (edebug--form-data-begin, edebug--form-data-end): Rename from the
7143         single-dashed name, and implement with cl-defstruct.
7144         (edebug-set-form-data-entry): Use the standard accessors.
7145         (edebug-make-top-form-data-entry): Use push.
7146         (edebug-no-match): Drop useless `funcall'.
7147         (mapcar, mapconcat, mapatoms, apply, funcall): Don't add debug specs
7148         to functions.
7149         (defsubst, dont-compile, eval-when-compile, eval-and-compile)
7150         (delay-mode-hooks, with-temp-file, with-temp-message, ad-dolist)
7151         (with-syntax-table, push, pop, 1value, noreturn, defadvice)
7152         (easy-menu-define, with-custom-print): Remove redundant specs.
7153         (edebug-outside-overriding-local-map)
7154         (edebug-outside-overriding-terminal-local-map): Remove, unused.
7155         (edebug--display): Bind unread-command-events directly to nil rather
7156         than binding it to unread-command-events and later setting it to nil.
7157         (edebug--display): Kill edebug-eval-buffer here...
7158         (edebug--recursive-edit): ...rather than here.
7159         Bind standard-output and standard-input.
7160         (edebug-eval): Check cl-macroexpand-all is fboundp.
7161         (edebug-temp-display-freq-count): Fix last change.
7163         * emacs-lisp/easymenu.el (easy-menu-define): Add `debug' spec.
7164         * subr.el (noreturn, 1value): Add `debug' spec.
7165         * emacs-lisp/advice.el: Require cl-lib.
7166         (ad-copy-tree): Remove, use copy-tree instead.
7167         (ad-dolist): Remove use dolist or cl-dolist instead.
7168         (ad-do-return): Remove, use cl-return instead.
7169         (defadvice): Add `debug' spec.
7171 2012-09-13  Juri Linkov  <juri@jurta.org>
7173         * dired-aux.el (dired-do-chxxx): Use `eq' to detect empty input.
7174         (Bug#12399)
7176 2012-09-13  Glenn Morris  <rgm@gnu.org>
7178         * calc/calc.el (math-compose-expr):
7179         * calc/calc-ext.el (math-compose-expr):
7180         * progmodes/cc-defs.el (cl-macroexpand-all):
7181         * progmodes/cc-langs.el (delete-duplicates, mapcan)
7182         (cl-macroexpand-all): Update declarations.
7184         * vc/vc.el: No need to require ediff.
7185         (ediff-load-version-control): Declare.
7186         (ediff-vc-internal): Fix declaration.
7187         (vc-version-ediff): Require ediff.
7189 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7191         Use a more backwards-compatible timer format (Bug#12430).
7192         * emacs-lisp/timer.el (timer): PSECS is now at the end, rather than
7193         being right after USECS, as that better supports old code that
7194         inadvisedly looked directly at the timer vector.
7196 2012-09-13  Kenichi Handa  <handa@gnu.org>
7198         * language/chinese.el ("Chinese-GB", "Chinese-BIG5")
7199         ("Chinese-CNS", "Chinese-EUC-TW"): Add chinese-gbk to
7200         `coding-priority' property of these language environment.
7202 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7204         Fix glitches caused by addition of psec to timers (Bug#12430).
7205         * image.el (image-animate-timer):
7206         * time.el (display-time-world-timer):
7207         Use timer--function and timer--args rather than raw access to
7208         timer vector.
7210 2012-09-13  Glenn Morris  <rgm@gnu.org>
7212         * emacs-lisp/bytecomp.el (byte-compile-warning-prefix):
7213         If not compiling a file, try using load-file-name.
7215 2012-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7217         * emacs-lisp/edebug.el (edebug-outside-unread-command-events):
7218         Fix last change.
7219         (edebug-update-eval-list): Use `push'.
7221         * emacs-lisp/edebug.el: Use lexical-binding.
7222         Remove the "edebug-" prefix from non-dynamically-scoped variables.
7223         Mark unused args with underscore.
7224         (edebug-save-restriction, edebug-outside-excursion): Use `declare'.
7225         (edebug-form-data): Use defvar-local.
7226         (edebug-make-before-and-after-form, edebug-make-after-form):
7227         Use backquote.
7228         (edebug-args, edebug-value, edebug-after-index, edebug-arg-mode):
7229         Not dynamically scoped any more.
7230         (edebug--enter-trace): Add arguments `function' and `args'.
7231         Rename from edebug-enter-trace.
7232         (edebug-enter): Call it accordingly.  Bind edebug-function explicitly.
7233         (edebug--update-coverage): Add `after-index' and `value' args.
7234         Rename from edebug-update-coverage.
7235         (edebug-slow-after): Call it accordingly.
7236         (edebug--recursive-edit): Add arg `arg-mode'.  Rename from
7237         edebug-recursive-edit.
7238         (edebug--display): Call it accordingly.  Add args `value',
7239         `offset-index', and `arg-mode'.  Rename from edebug-display.
7240         (edebug-debugger, edebug): Call it accordingly.
7241         (edebug-eval-display-list): Use dolist.
7243 2012-09-12  Juri Linkov  <juri@jurta.org>
7245         * info.el (Info-search): Don't check for isearch-mode and
7246         isearch-regexp before let-binding search-spaces-regexp to
7247         Info-search-whitespace-regexp.
7248         (Info-isearch-search): Let-bind Info-search-whitespace-regexp to
7249         search-whitespace-regexp if isearch-lax-whitespace or
7250         isearch-regexp-lax-whitespace is non-nil.
7251         (Info-mode): Don't set local variable search-whitespace-regexp.
7252         http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00811.html
7254 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7256         * emacs-lisp/debug.el (debugger-outer-unread-command-char, debug)
7257         (debugger-env-macro): Remove support for unread-command-char.
7259         * subr.el (set-temporary-overlay-map): Minimize slightly the impact of
7260         the temporary map re-appearing on emulation-mode-map-alists.
7262         * emacs-lisp/edebug.el (def-edebug-form-spec): Remove, it's been broken
7263         since 22.1.
7265         * ehelp.el (with-electric-help): Accept functions in
7266         electric-help-form-to-execute.
7267         (electric-help-execute-extended, electric-help-ctrl-x-prefix): Use it.
7268         And replace unread-command-char -> unread-command-events.
7270 2012-09-12  Michael Albinus  <michael.albinus@gmx.de>
7272         Sync with Tramp 2.2.6.
7274         * net/tramp.el (tramp-accept-process-output): Don't use
7275         JUST-THIS-ONE in the XEmacs case.
7277         * net/trampver.el: Update release number.
7279 2012-09-12  Martin Rudalics  <rudalics@gmx.at>
7281         * emacs-lisp/debug.el (debugger-previous-window-height):
7282         New variable.
7283         (debug): When debugger-jumping-flag is non-nil try to restore
7284         height of debugger window.  (Bug#8789)
7286 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7288         * emacs-lisp/edebug.el (edebug-enter): Don't mess with
7289         overriding-local-map and pre/post-command-hook here.
7290         (edebug-recursive-edit): Do it here instead (bug#12345).
7291         (edebug-outside-unread-command-char): Remove all uses of
7292         unread-command-char.
7294         * emacs-lisp/debug.el (debug): Don't bind debug-on-error since
7295         inhibit-debugger is bound instead.
7297 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7299         * subr.el (set-temporary-overlay-map): Add a docstring.
7300         (Bug#12346)
7302 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7304         * minibuffer.el (completion-table-subvert): Fix docstring.
7305         (Bug#12347)
7307 2012-09-11  Bastien Guerry  <bzg@gnu.org>
7309         * help-fns.el (describe-variable): Fix typo.  (Bug#12346)
7311 2012-09-10  Michael R. Mauger  <mmaug@yahoo.com>
7313         * progmodes/sql.el: Version 3.1
7314         (sql-db2-escape-newlines): New variable.
7315         (sql-escape-newlines-filter): Use it.
7317 2012-09-10  Juanma Barranquero  <lekktu@gmail.com>
7319         * custom.el (custom-theme-load-confirm): Remove unneeded assignment.
7321 2012-09-10  Dan Nicolaescu  <dann@gnu.org>
7323         * vc/diff-mode.el (diff-mode-menu):
7324         Bind diff-remove-trailing-whitespace.
7326 2012-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7328         * emacs-lisp/lisp-mode.el (emacs-list-byte-code-comment-re): New var.
7329         (emacs-lisp-byte-code-comment, emacs-lisp-byte-code-syntax-propertize)
7330         (emacs-lisp-byte-code-mode): New functions.
7331         (eval-sexp-add-defvars): Don't skip defvars in column >0.
7332         (eval-defun-2): Remove bogus interactive spec.
7333         (lisp-indent-line): Remove redundant whole-exp code, now done in
7334         indent-according-to-mode.
7335         (save-match-data): Remove redundant indent data.
7337         * emacs-lisp/benchmark.el (benchmark-run, benchmark-run-compiled):
7338         Use `declare'.
7340 2012-09-09  Juri Linkov  <juri@jurta.org>
7342         * replace.el (replace-regexp-lax-whitespace): New defcustom.
7343         (replace-lax-whitespace, query-replace-regexp)
7344         (query-replace-regexp-eval, replace-regexp): Doc fix.
7345         (perform-replace, replace-highlight): Let-bind
7346         isearch-lax-whitespace to replace-lax-whitespace and
7347         isearch-regexp-lax-whitespace to replace-regexp-lax-whitespace.
7349         * isearch.el (isearch-query-replace): Let-bind
7350         replace-lax-whitespace to isearch-lax-whitespace and
7351         replace-regexp-lax-whitespace to
7352         isearch-regexp-lax-whitespace.  (Bug#10885)
7354 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7356         * eshell/em-unix.el (eshell/sudo): Explicitly drop return value.
7358 2012-09-09  Alan Mackenzie  <acm@muc.de>
7360         * progmodes/cc-engine.el (c-state-cache-init):
7361         Initialise c-state-semi-nonlit-pos-cache\(-limit\)? properly.
7362         (c-record-parse-state-state):
7363         Record c-state-semi-nonlit-pos-cache\(-limit\)?.
7365 2012-09-09  Andreas Schwab  <schwab@linux-m68k.org>
7367         * register.el (register-separator): Rename from
7368         separator-register.  All uses changed.  Doc fix.
7369         (register): Fix version.
7371 2012-09-09  Chong Yidong  <cyd@gnu.org>
7373         * replace.el (query-replace-map): Bind four new symbols for
7374         requesting window scrolling.
7376         * subr.el (y-or-n-p): Handle the window-scrolling bindings in
7377         query-replace-map (Bug#8948).
7379         * custom.el (custom-theme-load-confirm): Use y-or-n-p.
7381         * emacs-lisp/map-ynp.el (map-y-or-n-p): Don't bind scrolling keys
7382         since they are now in query-replace-map.
7384         * window.el (scroll-other-window-down): Make the arg optional.
7386 2012-09-09  Chong Yidong  <cyd@gnu.org>
7388         * files.el (hack-local-variables-confirm): Use quit-window to kill
7389         the *Local Variables* buffer.
7391 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
7393         * progmodes/ruby-mode.el (ruby-toggle-block): Guess the current block,
7394         not just expect to be at its beginning.  Adjust callees.
7395         Succeed when do-end block has no space before the pipe character.
7396         (ruby-brace-to-do-end): When the original block is one-liner,
7397         convert to multiline.  Reindent the result.
7399 2012-09-08  Jambunathan K  <kjambunathan@gmail.com>
7401         * register.el (register): New group.
7402         (separator-register): New user option.
7403         (increment-register): Route it to `append-to-register', if
7404         register contains text.  Implication is that `C-x r +' can now be
7405         used for appending to a text register (bug#12217).
7406         (append-to-register, prepend-to-register): Add separator based on
7407         `separator-register'.
7409 2012-09-08  Alan Mackenzie  <acm@muc.de>
7411         AWK Mode: make auto-newline work when there's "==" in the pattern.
7412         * progmodes/cc-cmds.el (c-point-syntax): Handle virtual semicolons
7413         correctly.
7414         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5A.3):
7415         Test more rigorously for "=" token.
7417 2012-09-08  Dmitry Gutov  <dgutov@yandex.ru>
7419         * progmodes/ruby-mode.el (ruby-match-expression-expansion):
7420         Only fail when reached LIMIT.
7422 2012-09-08  Chong Yidong  <cyd@gnu.org>
7424         * dired.el (dired-mode-map): Don't bind M-=.
7426         * dired-aux.el (dired-diff): Use backup file as default.
7428 2012-09-08  Drew Adams  <drew.adams@oracle.com>
7430         * subr.el (add-to-history): Fix delete usage (Bug#12314).
7432 2012-09-08  Chong Yidong  <cyd@gnu.org>
7434         * subr.el (syntax-after, syntax-class): Doc fix.
7436 2012-09-08  Martin Rudalics  <rudalics@gmx.at>
7438         * window.el (display-buffer-in-previous-window): New buffer
7439         display action function.
7441         * emacs-lisp/debug.el (debugger-bury-or-kill): New option.
7442         (debugger-previous-window): New variable.
7443         (debug): Rewrite using display-buffer-in-previous-window,
7444         quit-restore-window and debugger-bury-or-kill.  (Bug#8789)
7446 2012-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7448         * emacs-lisp/byte-run.el (defun): Tweak message.  Simplify code.
7450 2012-09-07  Matt McClure  <mlm@aya.yale.edu>  (tiny change)
7452         * progmodes/python.el (python-shell-send-string):
7453         When default-directory is remote, create temp file on remote
7454         filesystem.
7455         (python-shell-send-file): When file is remote, pass local view of
7456         file paths to remote Python interpreter.  (Bug#12340)
7458 2012-09-07  Chong Yidong  <cyd@gnu.org>
7460         * window.el (switch-to-buffer): Doc fix (Bug#12181).
7462         * files.el (after-find-file): Don't fail on a read-only buffer if
7463         require-final-newline is `visit' or `visit-save' (Bug#11156).
7465         * subr.el (read-char-choice): Allow quitting via ESC ESC.
7467         * userlock.el (ask-user-about-supersession-threat):
7468         Use read-char-choice (Bug#12093).
7470 2012-09-07  Chong Yidong  <cyd@gnu.org>
7472         * subr.el (buffer-narrowed-p): New function.
7474         * ses.el (ses-widen):
7475         * simple.el (count-words--buffer-message):
7476         * net/browse-url.el (browse-url-of-buffer): Use it.
7478         * simple.el (count-words-region): Don't signal an error if there
7479         is a non-nil prefix arg and the mark is not set.
7481         * help.el (describe-key-briefly): Allow the message to be seen
7482         when invoked from the minibuffer (Bug#7014).
7484 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
7486         * progmodes/ruby-mode.el (ruby-end-of-defun)
7487         (ruby-beginning-of-defun): Simplify, allow indentation before
7488         block beginning and end keywords.
7489         (ruby-beginning-of-defun): Only consider 3 keywords defun beginners.
7490         (ruby-end-of-defun): Expect that the point is at the beginning of
7491         the defun.
7493 2012-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7495         * emacs-lisp/cl-macs.el (cl--do-arglist): Understand _ on &key args
7496         (bug#12367).
7497         (cl--make-usage-args): Strip _ from argument names.
7499 2012-09-06  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7501         * progmodes/vhdl-mode.el (vhdl-speedbar-initialize): Don't use
7502         obsolete alias speedbar-key-map.
7503         (vhdl-doc-variable, vhdl-doc-mode): Use called-interactively-p.
7504         (vhdl-index-menu-init): Don't use obsolete variable
7505         font-lock-maximum-size.
7507 2012-09-06  Chong Yidong  <cyd@gnu.org>
7509         * frame.el (window-system-version): Mark as obsolete.
7511         * speedbar.el (speedbar-update-flag, speedbar-mode): Remove uses
7512         of obsolete variable speedbar-key-map.
7514 2012-09-06  Juri Linkov  <juri@jurta.org>
7516         * replace.el (replace-lax-whitespace): New defcustom.
7517         (query-replace, query-replace-regexp, query-replace-regexp-eval)
7518         (replace-string, replace-regexp): Mention it in docstrings.
7519         (perform-replace, replace-highlight): Let-bind
7520         isearch-lax-whitespace and isearch-regexp-lax-whitespace according
7521         to the values of replace-lax-whitespace and regexp-flag.
7522         Don't let-bind search-whitespace-regexp.  (Bug#10885)
7524         * isearch.el (isearch-query-replace): Let-bind
7525         replace-lax-whitespace instead of let-binding
7526         replace-search-function and replace-re-search-function.
7527         (isearch-lazy-highlight-search): Let-bind isearch-lax-whitespace
7528         and isearch-regexp-lax-whitespace to lazy-highlight variables.
7529         (isearch-toggle-symbol): Set isearch-regexp to nil
7530         in isearch-word mode (like in isearch-toggle-word).
7532 2012-09-06  Juri Linkov  <juri@jurta.org>
7534         * replace.el (replace-search-function)
7535         (replace-re-search-function): Set default values to nil.
7536         (perform-replace): Let-bind isearch-related variables based on
7537         replace-related values, call `isearch-search-fun' and let-bind
7538         the result to `search-function'.  Remove code that sets
7539         `search-function' and `search-string' separately for
7540         `delimited-flag'.
7541         (replace-highlight): Add new argument `delimited-flag' and
7542         rename other arguments to the names used in `perform-replace'.
7543         Let-bind `isearch-word' to the argument `delimited-flag'.
7544         (Bug#10885, bug#10887)
7546 2012-09-07  Dmitry Gutov  <dgutov@yandex.ru>
7548         * progmodes/ruby-mode.el (ruby-indent-beg-re): Add pieces from
7549         ruby-beginning-of-indent, simplify, allow all keywords to have
7550         indentation before them.
7551         (ruby-beginning-of-indent): Adjust for above.  Search until the
7552         found point is not inside a string or comment.
7553         (ruby-font-lock-keywords): Allow symbols to start with "@"
7554         character, give them higher priority than variables.
7555         (ruby-syntax-propertize-function)
7556         (ruby-font-lock-syntactic-keywords): Remove the "not comments"
7557         matchers.  Expression expansions are not comments when inside a
7558         string, and there comment syntax status is irrelevant.
7559         (ruby-match-expression-expansion): New function.  Check that
7560         expression expansion is inside a string, and it's not escaped.
7561         (ruby-font-lock-keywords): Use it.
7563 2012-09-05  Martin Rudalics  <rudalics@gmx.at>
7565         * help.el (temp-buffer-max-height): New default value.
7566         (temp-buffer-resize-frames): New option.
7567         (resize-temp-buffer-window): Optionally resize frame.
7569         * window.el (fit-frame-to-buffer-bottom-margin): New option.
7570         (fit-frame-to-buffer): New function.
7572 2012-09-05  Glenn Morris  <rgm@gnu.org>
7574         * emulation/cua-rect.el (cua--init-rectangles):
7575         * textmodes/picture.el (picture-mode-map):
7576         * play/blackbox.el (blackbox-mode-map): Remap right-char and left-char
7577         like forward-char and backward-char.  (Bug#12317)
7579 2012-09-05  Leo Liu  <sdl.web@gmail.com>
7581         * progmodes/flymake.el (flymake-warning-re): New variable.
7582         (flymake-parse-line): Use it.
7584 2012-09-05  Glenn Morris  <rgm@gnu.org>
7586         * calendar/holidays.el (holiday-christian-holidays):
7587         Rename an entry.  (Bug#12289)
7589 2012-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
7591         * progmodes/sh-script.el (sh-font-lock-paren): Don't burp at BOB
7592         (bug#12222).
7594 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7596         * loadup.el: Load macroexp.  Remove hack.
7597         * emacs-lisp/macroexp.el (macroexp--eval-if-compile): New function.
7598         (macroexp--expand-all): Use it to get better warnings.
7599         (macroexp--backtrace, macroexp--trim-backtrace-frame)
7600         (internal-macroexpand-for-load): New functions.
7601         (macroexp--pending-eager-loads): New var.
7602         (emacs-startup-hook): New hack to replace one in loadup.el.
7603         * emacs-lisp/cl-macs.el (cl--compiler-macro-list*)
7604         (cl--compiler-macro-cXXr): Move to top, before they can be used.
7605         (cl-psetf): Simplify.
7606         (cl-defstruct): Add indent rule.
7608 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
7610         * mail/smtpmail.el (smtpmail-send-it): Prefer the From: header
7611         over `user-mail-address' for the SMTP MAIL FROM envelope.
7612         (smtpmail-via-smtp): Ditto.
7614 2012-09-04  Dmitry Gutov  <dgutov@yandex.ru>
7616         * progmodes/ruby-mode.el: Clean up keybindings.
7617         (ruby-mode-map): Don't bind ruby-electric-brace,
7618         ruby-beginning-of-defun, ruby-end-of-defun, ruby-mark-defun,
7619         backward-kill-word, reindent-then-newline-and-indent.
7620         (ruby-mark-defun): Remove.
7621         (ruby-electric-brace): Remove.  Obsoleted by electric-indent-chars.
7622         (ruby-mode): Set local beginning-of-defun-function and
7623         end-of-defun-function values.
7625 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
7627         * window.el (temp-buffer-window-setup-hook)
7628         (temp-buffer-window-show-hook): New hooks.
7629         (temp-buffer-window-setup, temp-buffer-window-show)
7630         (with-temp-buffer-window): New functions.
7631         (fit-window-to-buffer): Remove unused optional argument OVERRIDE.
7632         (special-display-popup-frame): Make sure the window used shows BUFFER.
7634         * help.el (temp-buffer-resize-mode): Fix doc-string.
7635         (resize-temp-buffer-window): New optional argument WINDOW.
7637         * files.el (recover-file, save-buffers-kill-emacs):
7638         * dired.el (dired-mark-pop-up): Use with-temp-buffer-window.
7640 2012-09-02  Michael Albinus  <michael.albinus@gmx.de>
7642         * eshell/em-unix.el (eshell/sudo): When we have an ad-hoc
7643         remote definition of `default-directory', ensure we can connect.
7645 2012-09-02  Juri Linkov  <juri@jurta.org>
7647         Toggle whitespace matching mode with M-s SPC.
7648         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00008.html
7650         * isearch.el (search-whitespace-regexp): Doc fix.
7651         Remove cons cell customization.
7652         (isearch-mode-map): Bind "\M-s " to isearch-toggle-lax-whitespace.
7653         (isearch-lax-whitespace, isearch-regexp-lax-whitespace):
7654         New variables.
7655         (isearch-forward, isearch-forward-regexp): Doc fix.
7656         (isearch-toggle-lax-whitespace): New command.
7657         (search-forward-lax-whitespace, search-backward-lax-whitespace)
7658         (re-search-forward-lax-whitespace)
7659         (re-search-backward-lax-whitespace): New functions.
7660         (isearch-whitespace-regexp): Remove function.
7661         (isearch-query-replace): Let-bind replace-search-function and
7662         replace-re-search-function.
7663         (isearch-occur): Let-bind search-spaces-regexp according to the
7664         value of isearch-lax-whitespace and isearch-regexp-lax-whitespace.
7665         (isearch-quote-char): Check isearch-regexp-lax-whitespace in the
7666         condition for C-q SPC.
7667         (isearch-search-fun-default): Use new functions mentioned above.
7668         (isearch-search-forward, isearch-search-backward): Remove functions.
7669         (isearch-search): Don't let-bind search-spaces-regexp.
7670         (isearch-lazy-highlight-space-regexp): Remove variable.
7671         (isearch-lazy-highlight-lax-whitespace)
7672         (isearch-lazy-highlight-regexp-lax-whitespace): New variables.
7673         (isearch-lazy-highlight-new-loop): Use them.
7674         (isearch-lazy-highlight-search): Don't let-bind search-spaces-regexp.
7676 2012-09-02  Chong Yidong  <cyd@gnu.org>
7678         * dired.el (dired-mode-map): Menu string fixes (Bug#11616).
7680 2012-09-02  Glenn Morris  <rgm@gnu.org>
7682         * simple.el (undo): Tweak message in undo-only case.  (Bug#12283)
7684 2012-09-01  Glenn Morris  <rgm@gnu.org>
7686         * term.el: Tidy up menu definitions.
7687         (term-mode-map): Use easymenu for In/Out, Complete menus.
7688         (term-pager-break-map): Initialize in the defvar.
7689         (term-terminal-menu, term-signals-menu): Define with easymenu.
7690         (term-terminal-menu): Also show it in line-mode.  (Bug#11957)
7691         (term-pager-menu): New, extracted from term-process-pager.
7692         (term-mode, term-char-mode, term-process-pager): Use easymenu-add.
7693         (term-update-mode-line): Propertize line/char and page items.
7694         (term-process-pager): Move keymap initialization elsewhere.
7696 2012-09-01  Martin Rudalics  <rudalics@gmx.at>
7698         * window.el (switch-to-prev-buffer): Handle additional values of
7699         BURY-OR-KILL argument.  Don't switch in minibuffer window.
7700         (switch-to-next-buffer): Don't switch in minibuffer window.
7701         (quit-restore-window): New function based on quit-window.
7702         Handle additional values of former KILL argument.
7703         (quit-window): Call quit-restore-window with appropriate
7704         interpretation of KILL argument.
7705         (display-buffer-below-selected): New buffer display action
7706         function.
7708 2012-09-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7710         * minibuffer.el (completion-at-point-functions): Complete docstring
7711         (bug#12254).
7713 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
7715         Better seed support for (random).
7716         * play/5x5.el, play/animate.el, play/cookie1.el, play/dissociate.el:
7717         * play/doctor.el, play/dunnet.el, play/gomoku.el, play/landmark.el:
7718         * play/mpuz.el, play/tetris.el, play/zone.el:
7719         * calc/calc-comb.el (math-init-random-base):
7720         * play/blackbox.el (bb-init-board):
7721         * play/life.el (life):
7722         * server.el (server-use-tcp):
7723         * type-break.el (type-break):
7724         Remove unnecessary call to (random t).
7725         * net/sasl.el (sasl-unique-id-function):
7726         Change (random t) to (random), now that the latter is more random.
7727         * play/life.el (life-initialized): Remove no-longer-needed var.
7729 2012-08-31  Alp Aker  <alp.tekin.aker@gmail.com>
7731         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
7732         Consider frame's buffer predicate when choosing the buffer.
7733         (Bug#12081)
7735 2012-08-30  Richard Stallman  <rms@gnu.org>
7737         * simple.el (special-mode-map): Delete binding for `z'.
7739 2012-08-30  Andreas Schwab  <schwab@linux-m68k.org>
7741         * progmodes/compile.el (compilation-always-kill): Doc fix.
7743 2012-08-30  Chong Yidong  <cyd@gnu.org>
7745         * window.el (display-buffer-reuse-frames): Make the obsolescence
7746         message more informative.
7748 2012-08-30  Glenn Morris  <rgm@gnu.org>
7750         * paren.el (show-paren-delay):
7751         Add a :set function.  Doc fix.  (Bug#12297)
7753 2012-08-29  Martin Blais  <blais@furius.ca>  (tiny change)
7755         * progmodes/compile.el (compilation-always-kill): New var.
7756         (compilation-start): Use it.
7758 2012-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
7760         * simple.el (read-only-mode): Move from files.el for bootstrapping.
7761         * files.el (read-only-mode): Move to simple.el.
7763         * files.el (read-only-mode): New minor mode.
7764         (toggle-read-only): Use it and mark obsolete.
7765         (find-file--read-only):
7766         * vc/vc.el (vc-next-action, vc-checkout):
7767         * vc/vc-cvs.el (vc-cvs-checkout):
7768         * obsolete/vc-mcvs.el (vc-mcvs-update):
7769         * ffap.el (ffap--toggle-read-only): Update callers.
7771 2012-08-29  Michael Albinus  <michael.albinus@gmx.de>
7773         * eshell/esh-ext.el (eshell-external-command): Do not examine
7774         remote shell scripts.
7775         See <https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/1035790>.
7777         * net/tramp-sh.el (tramp-remote-path): Add "/sbin" and
7778         "/usr/local/sbin".
7780 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7782         * emacs-lisp/cl-lib.el (buffer-string): Fix setter macro (bug#12293).
7784 2012-08-28  Leo Liu  <sdl.web@gmail.com>
7786         * progmodes/sh-script.el (sh-dynamic-complete-functions): Adapt to
7787         completion-at-point.  (Bug#12220)
7789         * skeleton.el (skeleton-untabify): Change to nil (bug#12223).
7791         * progmodes/sh-script.el (sh-indent-comment): Change to t (bug#12267).
7793 2012-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7795         * files.el (safe-local-eval-forms): Fix before-save-hook entry to
7796         be buffer-local; add delete-trailing-whitespace (bug#12259).
7798 2012-08-28  Jeremy Moore  <jmoore@ieee.org>  (tiny change)
7800         * progmodes/hideif.el (hif-compress-define-list):
7801         Fix typo.  (Bug#11951)
7803 2012-08-28  Dan Nicolaescu  <dann@gnu.org>
7805         * progmodes/hideshow.el (hs-block-end-regexp): Restore lost
7806         buffer local setting.
7808         * net/rcirc.el (rcirc-split-message): Fix for buffer-local
7809         rcirc-encode-coding-system.
7811 2012-08-28  Leo Liu  <sdl.web@gmail.com>
7813         * net/rcirc.el (rcirc-split-message): New function.
7814         (rcirc-send-message): Use it.  (Bug#12051)
7816 2012-08-28  Juri Linkov  <juri@jurta.org>
7818         * info.el (Info-fontify-node): Hide empty lines at the end of
7819         the node.  (Bug#12272)
7821 2012-08-27  Drew Adams  <drew.adams@oracle.com>
7823         * dired.el (dired-pop-to-buffer): Make window start at beginning
7824         of buffer (Bug#12281).
7826 2012-08-26  Chong Yidong  <cyd@gnu.org>
7828         * window.el (special-display-regexps, special-display-frame-alist)
7829         (special-display-buffer-names, special-display-function)
7830         (display-buffer-reuse-frames): Mark as obsolete.
7832         * progmodes/compile.el: Don't use display-buffer-reuse-frames.
7834         * help.el (help-print-return-message): Don't treat
7835         display-buffer-reuse-frames specially.
7837 2012-08-26  Chong Yidong  <cyd@gnu.org>
7839         * progmodes/gdb-mi.el (gdb-display-buffer-other-frame-action):
7840         New variable, replacing gdb-frame-parameters.
7841         (gdb-frame-io-buffer, gdb-frame-breakpoints-buffer)
7842         (gdb-frame-threads-buffer, gdb-frame-memory-buffer)
7843         (gdb-frame-disassembly-buffer, gdb-frame-stack-buffer)
7844         (gdb-frame-locals-buffer, gdb-frame-registers-buffer): Use it.
7845         (def-gdb-frame-for-buffer): Macro deleted.  It is easier to define
7846         the functions directly with gdb-display-buffer-other-frame-action.
7847         (gdb-display-breakpoints-buffer, gdb-display-threads-buffer)
7848         (gdb-display-memory-buffer, gdb-display-disassembly-buffer)
7849         (gdb-display-stack-buffer, gdb-display-locals-buffer)
7850         (gdb-display-registers-buffer): Define directly.
7851         (def-gdb-display-buffer): Macro deleted.
7852         (gdb-display-buffer): Remove second and third args, callers don't
7853         use them.  Defer to the default display-buffer behavior, apart
7854         from making windows dedicated.
7855         (gdb-setup-windows): Don't call display-buffer unnecessarily.
7857         * progmodes/gud.el (gud-display-line): Just use display-buffer.
7859         * window.el (display-buffer-pop-up-frame): Handle a
7860         pop-up-frame-parameters alist entry.
7861         (display-buffer): Document it.
7863 2012-08-26  Chong Yidong  <cyd@gnu.org>
7865         * isearch.el (search-whitespace-regexp): Make string and nil
7866         values apply to both ordinary and regexp search.  Allow a cons
7867         cell value to distinguish between the two.
7868         (isearch-whitespace-regexp, isearch-search-forward)
7869         (isearch-search-backward): New functions.
7870         (isearch-occur, isearch-search-fun-default, isearch-search)
7871         (isearch-lazy-highlight-new-loop): Use them.
7872         (isearch-forward, isearch-forward-regexp): Doc fix.
7874 2012-08-26  Chong Yidong  <cyd@gnu.org>
7876         * faces.el (help-argument-name): Always inherit from italic
7877         (Bug#12213).
7879 2012-08-25  Martin Rudalics  <rudalics@gmx.at>
7881         * window.el (window--even-window-heights): Even heights when
7882         WINDOW and the selected window form a vertical combination.
7883         (display-buffer-use-some-window): Provide that window used gets
7884         sized back by quit-window.  (Bug#11880) and (Bug#12091)
7886 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
7888         Fix file time stamp problem with bzr and CVS (Bug#12001).
7889         * vc/vc-cvs.el (vc-cvs-parse-entry): Ignore subsecond information
7890         in the file's time stamp, since the version control system loses
7891         that information.
7893 2012-08-22  Juri Linkov  <juri@jurta.org>
7895         * info.el (Info-fontify-node): Hide the suffix of the
7896         Info file name in the header line.  (Bug#12187)
7898 2012-08-22  Glenn Morris  <rgm@gnu.org>
7900         * calendar/cal-tex.el (cal-tex-weekly-common):
7901         Restore leading blank page.
7903 2012-08-22  Le Wang  <l26wang@gmail.com>
7905         * misc.el (forward-to-word, backward-to-word): Activate or extend
7906         the region under `shift-select-mode'.  (Bug#12231)
7908 2012-08-22  Bastien Guerry  <bzg@gnu.org>
7910         * progmodes/executable.el (executable-prefix): Set to "#!" instead
7911         of "#! ".  http://www.in-ulm.de/~mascheck/various/shebang/#details
7912         gives details on why the space is never needed.
7914 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
7916         * window.el (walk-window-tree, window-with-parameter):
7917         New optional argument MINIBUF to control whether these functions
7918         should run on the minibuffer window.
7919         (window-at-side-list): Don't operate on minibuffer window.
7920         (window-in-direction): Simplify and rewrite doc-string.
7921         (window--size-ignore): Rename to window--size-ignore-p.
7922         Update callers.
7923         (display-buffer-in-atom-window, window--major-non-side-window)
7924         (window--major-side-window, display-buffer-in-major-side-window)
7925         (delete-side-window, display-buffer-in-side-window):
7926         New functions.
7927         (window--side-check, window-deletable-p, delete-window)
7928         (delete-other-windows, split-window): Handle side windows and
7929         atomic windows appropriately.
7930         (window--display-buffer): Call display-buffer-record-window also
7931         when the window buffer did not change.
7933 2012-08-22  Christopher Schmidt  <christopher@ch.ristopher.com>
7935         * help-fns.el (help-fns--key-bindings):
7936         Abbreviate non-symbol remap targets.  (Bug#12174)
7938 2012-08-22  Martin Rudalics  <rudalics@gmx.at>
7940         * dired.el (dired-mark-remembered): Don't clobber point.
7941         (Bug#11795)
7943 2012-08-22  Glenn Morris  <rgm@gnu.org>
7945         * progmodes/bug-reference.el (bug-reference): New custom group.
7946         (bug-reference-bug-regexp): Make it a defcustom.
7948 2012-08-22  Daiki Ueno  <ueno@unixuser.org>
7950         * progmodes/js.el (js-indent-level, js-expr-indent-offset)
7951         (js-paren-indent-offset, js-square-indent-offset)
7952         (js-curly-indent-offset): Add :safe (Bug#12257).
7954 2012-08-22  Edward O'Connor  <hober0@gmail.com>
7956         * json.el (json-key-format): Add error properties.
7957         (json-encode-key): New function.
7958         (json-encode-hash-table, json-encode-alist, json-encode-plist):
7959         Use json-encode-key.
7961 2012-08-22  Glenn Morris  <rgm@gnu.org>
7963         * calendar/cal-tex.el (cal-tex-longday): New function, replacing...
7964         (cal-tex-leftday, cal-tex-rightday): Remove functions.
7965         (cal-tex-weekly-common, cal-tex-cursor-filofax-2week):
7966         Update for above change.
7968 2012-08-21  Andreas Schwab  <schwab@linux-m68k.org>
7970         * cus-face.el (custom-face-attributes): Fix customize type for the
7971         :underline attribute.  (Bug#11805)
7973 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
7975         * window.el (window-point-1, set-window-point-1): Remove.
7976         (window-in-direction, record-window-buffer)
7977         (set-window-buffer-start-and-point, split-window-below)
7978         (window--state-get-1, display-buffer-record-window):
7979         Replace calls to window-point-1 and set-window-point-1 by calls to
7980         window-point and set-window-point respectively.
7982 2012-08-21  Glenn Morris  <rgm@gnu.org>
7984         * calendar/cal-tex.el (cal-tex-weekly-common): New function.
7985         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week):
7986         Use it.
7988         * calendar/cal-tex.el (cal-tex-rightday): Add optional funcname arg.
7989         (cal-tex-shortday): New function.
7990         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-week)
7991         (cal-tex-cursor-filofax-daily): Use the above.
7993         * calendar/cal-tex.el (cal-tex-leftday, cal-tex-rightday):
7994         New functions.
7995         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
7996         (cal-tex-cursor-filofax-week): Use them.
7998         * calendar/cal-tex.el (cal-tex-lefthead, cal-tex-righthead):
7999         New constants.
8000         (cal-tex-cursor-week-at-a-glance, cal-tex-cursor-filofax-2week)
8001         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use them.
8003         * calendar/cal-tex.el (cal-tex-preamble): Generate new buffers.
8004         (cal-tex-end-document): Don't rely on buffer name.
8006         * calendar/cal-tex.el (cal-tex-cursor-filofax-year):
8007         Use cal-tex-vspace.
8008         (cal-tex-vspace, cal-tex-hspace, cal-tex-em, cal-tex-bf)
8009         (cal-tex-Huge-bf, cal-tex-large-bf): Use cal-tex-cmd.
8010         (cal-tex-scriptsize, cal-tex-huge, cal-tex-Huge, cal-tex-large):
8011         Use cal-tex-arg.
8013         * calendar/cal-tex.el (cal-tex-cursor-filofax-year)
8014         (cal-tex-cursor-week, cal-tex-cursor-week2)
8015         (cal-tex-cursor-week-iso, cal-tex-cursor-week-at-a-glance)
8016         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8017         (cal-tex-cursor-filofax-daily, cal-tex-cursor-day)
8018         (cal-tex-insert-preamble, cal-tex-b-document)
8019         (cal-tex-e-document, cal-tex-b-center, cal-tex-e-center):
8020         Improve cal-tex-cmd usage.
8022         * calendar/cal-tex.el (cal-tex-filofax-paper): New function.
8023         (cal-tex-cursor-filofax-year, cal-tex-cursor-filofax-2week)
8024         (cal-tex-cursor-filofax-week, cal-tex-cursor-filofax-daily): Use it.
8025         (cal-tex-weekly-paper): New function.
8026         (cal-tex-cursor-week, cal-tex-cursor-week2)
8027         (cal-tex-cursor-week-iso, cal-tex-cursor-week-monday)
8028         (cal-tex-cursor-day): Use it.
8030         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance)
8031         (cal-tex-cursor-filofax-week): Remove leading blank page.
8033         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8034         Add autoload cookie.  For now at least, don't use color, since
8035         no other cal-tex function does.
8037         * calendar/cal-tex.el (cal-tex-cursor-week-iso)
8038         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
8039         (cal-tex-cursor-filofax-daily): Correct start date for diary entries.
8041 2012-08-21  Juri Linkov  <juri@jurta.org>
8043         * info.el (Info-file-attributes): New variable.
8044         (info-insert-file-contents): Add file attributes to
8045         `Info-file-attributes'.  Clear the caches `Info-index-nodes' and
8046         `Info-toc-nodes' when previous modtime of the Info file is less
8047         than new modtime.
8048         (Info-toc-nodes, Info-index-nodes): Move definitions up to the top
8049         of info.el.  (Bug#12230)
8051 2012-08-20  Glenn Morris  <rgm@gnu.org>
8053         * calendar/diary-lib.el (diary-include-files, diary-sexp-entry):
8054         * calendar/holidays.el (calendar-holiday-list):
8055         Report errors with display-warning rather than beep'n'sleep.
8057 2012-08-20  Michael Albinus  <michael.albinus@gmx.de>
8059         * net/tramp.el (tramp-accept-process-output): Accept only output
8060         from PROC.  Otherwise, process filters and sentinels might be
8061         confused.  (Bug#12145)
8063 2012-08-20  Chong Yidong  <cyd@gnu.org>
8065         * descr-text.el (describe-text-properties-1): Use overlays-in to
8066         report on empty overlays (Bug#3322).
8068 2012-08-20  Glenn Morris  <rgm@gnu.org>
8070         * mail/rmailout.el (rmail-output-read-file-name):
8071         Trap and report errors in rmail-output-file-alist elements.
8073         * font-lock.el (font-lock-add-keywords): Doc fix (quote face names
8074         since most non-font-lock faces are not also variables).
8076 2012-08-20  Edward Reingold  <reingold@iit.edu>
8078         * calendar/cal-tex.el (cal-tex-cursor-week-at-a-glance):
8079         New function.  (Bug12160)
8081 2012-08-19  Glenn Morris  <rgm@gnu.org>
8083         * mail/rmailout.el (rmail-output-read-file-name):
8084         Fix previous change (when the alist is nil or does not match).
8086 2012-08-19  Chong Yidong  <cyd@gnu.org>
8088         * xml.el (xml-escape-string): Don't refer to xml-entity-alist
8089         (Bug#12228).
8091 2012-08-18  Chong Yidong  <cyd@gnu.org>
8093         * simple.el (yank-handled-properties): New defcustom.
8094         (yank-excluded-properties): Add font-lock-face and category.
8095         (yank): Doc fix.
8097         * subr.el (remove-yank-excluded-properties):
8098         Obey yank-handled-properties.  The special handling of font-lock-face
8099         and category is now done this way, instead of being hard-coded.
8100         (insert-for-yank-1): Remove font-lock-face handling.
8101         (yank-handle-font-lock-face-property)
8102         (yank-handle-category-property): New function.
8104 2012-08-17  Glenn Morris  <rgm@gnu.org>
8106         * mail/rmailout.el (rmail-output-read-file-name):
8107         Check rmail-output-file-alist against the full message body
8108         in the correct rmail buffer.  (Bug#12214)
8110 2012-08-17  Michael Albinus  <michael.albinus@gmx.de>
8112         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8113         Eliminate superfluous prompt.  (Bug#12203)
8115 2012-08-17  Chong Yidong  <cyd@gnu.org>
8117         * mouse.el (mouse-appearance-menu): If x-select-font returns a
8118         font spec, set the font directly (Bug#3228).
8120 2012-08-17  Martin Rudalics  <rudalics@gmx.at>
8122         * window.el (delete-window): Fix last fix.
8124 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
8126         * window.el (window-valid-p): Move to window.c.
8127         (window-child, window-child-count, window-last-child)
8128         (window-normalize-window, window-combined-p)
8129         (window-combinations, window-atom-root, window-min-size)
8130         (window-sizable, window-sizable-p, window-size-fixed-p)
8131         (window-min-delta, window-max-delta, window--resizable)
8132         (window--resizable-p, window-resizable, window-total-size)
8133         (window-full-height-p, window-full-width-p, window-body-size)
8134         (window-at-side-p, adjust-window-trailing-edge, maximize-window)
8135         (minimize-window, window-deletable-p, delete-window)
8136         (delete-other-windows, set-window-buffer-start-and-point)
8137         (next-buffer, previous-buffer, split-window, balance-windows-2)
8138         (set-window-text-height, window-buffer-height)
8139         (fit-window-to-buffer, shrink-window-if-larger-than-buffer)
8140         (truncated-partial-width-window-p): Minor code adjustments.
8141         In doc-strings state whether the argument window has to denote a
8142         live, valid or any window.
8144 2012-08-16  Phil Sainty  <psainty@orcon.net.nz>  (tiny change)
8146         * progmodes/subword.el (subword-forward-function)
8147         (subword-backward-function, subword-forward-regexp)
8148         (subword-backward-regexp): New variables.
8149         (subword-forward, subword-forward-internal, subword-backward-internal):
8150         Use new variables, eg so that different "word" definitions
8151         can be easily used.  (Bug#11411)
8153 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8155         * vc/vc-mtn.el (vc-mtn-revision-completion-table): Handle completion
8156         for composite selectors.
8157         * vc/vc.el (vc-diff-build-argument-list-internal): Don't prevent
8158         operation just because we can't find a previous revision.
8160 2012-08-15  Chong Yidong  <cyd@gnu.org>
8162         * frame.el (set-frame-font): Accept font objects.
8164 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8166         * textmodes/tex-mode.el (tex-insert-quote): ~ is a space (bug#12137).
8168 2012-08-15  Wolfgang Jenkner  <wjenkner@inode.at>
8170         * man.el (Man-overstrike-face, Man-underline-face)
8171         (Man-reverse-face): Remove variables.
8172         (Man-overstrike, Man-underline, Man-reverse): New faces.
8173         (Man-fontify-manpage): Use them instead of the variables.
8174         (Man-cleanup-manpage): Comment change.
8175         (Man-ansi-color-map): New variable.
8176         (Man-fontify-manpage): Use it.
8177         Call ansi-color-apply-on-region to replace ad hoc code (bug#12147).
8179         Implement ANSI SGR parameters 22-27 (bug#12146).
8180         * ansi-color.el (ansi-colors): Doc fix.
8181         (ansi-color-context, ansi-color-context-region): Doc fix.
8182         (ansi-color--find-face): New function.
8183         (ansi-color-apply, ansi-color-apply-on-region): Use it.
8184         Rename the local variable `face' to `codes' since it is now a list of
8185         ansi codes.  Doc fix.
8186         (ansi-color-get-face): Remove.
8187         (ansi-color-parse-sequence): New function, derived from
8188         ansi-color-get-face.
8189         (ansi-color-apply-sequence): Use it.  Rewrite, and support ansi
8190         codes 22-27.
8192 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
8194         * subr.el (read-passwd): Allow use from a minibuffer.
8196 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
8198         * tooltip.el (tooltip-identifier-from-point): Don't treat tokens
8199         inside comments and strings as identifiers.
8201         * progmodes/gud.el (gud-tooltip-print-command): Quote the
8202         expression to evaluate.  This allows to evaluate expressions with
8203         embedded whitespace.
8204         (gud-tooltip-tips): Add a blank before the newline in the
8205         message-box text, for the benefit of message-box emulation on
8206         MS-Windows.
8208         * progmodes/gdb-mi.el (gdb-tooltip-print): Don't ignore error
8209         messages from GDB, pop them up in a tooltip to give feedback to
8210         user.
8211         (gdb-tooltip-print-1): Quote the expression to evaluate.
8212         This allows to evaluate expressions with embedded whitespace.
8213         (gdb-inferior-io--init-proc): Don't send "-inferior-tty" command
8214         if the TTY name is nil or empty (which happens when communicating
8215         with the inferior via pipes, e.g. on MS-Windows).
8216         (gdb-internals): If GDB sends a "&\n" empty debugging message,
8217         don't send that to the GUD buffer.
8219 2012-08-14  Glenn Morris  <rgm@gnu.org>
8221         * emacs-lisp/bytecomp.el (byte-compile-setq-default):
8222         Optimize away setq-default with no args, as for setq.  (Bug#12195)
8224 2012-08-14  Chong Yidong  <cyd@gnu.org>
8226         * minibuffer.el (read-file-name): Doc fix (Bug#10881).
8228         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Doc fix
8229         (Bug#12085).
8231 2012-08-14  Glenn Morris  <rgm@gnu.org>
8233         * emacs-lisp/bytecomp.el (byte-recompile-file): Doc fix.
8235 2012-08-14  Michael Albinus  <michael.albinus@gmx.de>
8237         * net/tramp-sh.el (tramp-open-shell): Cache the shell name.
8238         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
8239         Use cached shell name.
8241 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
8243         * progmodes/python.el (python-shell-send-string):
8244         (python-shell-send-setup-code): Do not use `format' with `message'.
8246 2012-08-14  Dmitry Gutov  <dgutov@yandex.ru>
8248         * progmodes/ruby-mode.el: Improve percent literals (bug#6286).
8249         (ruby-percent-literal-beg-re): New constant.
8250         (ruby-syntax-general-delimiters-goto-beg): Rename to
8251         `ruby-syntax-enclosing-percent-literal', improve literal type check.
8252         (ruby-syntax-propertize-general-delimiters): Rename to
8253         `ruby-syntax-propertize-percent-literal', it's a shorter and more
8254         popular term.  Adjust comments everywhere.
8255         (ruby-syntax-propertize-percent-literal): Only propertize when not
8256         inside a simple string or comment.  When the literal is unclosed,
8257         leave the text after it unpropertized.
8258         (ruby-syntax-methods-before-regexp): New constant.
8259         (ruby-syntax-propertize-function): Use it to recognize regexps.
8260         Don't look at the text after regexp, just use the whitelist.
8262 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
8264         * emacs-lisp/bytecomp.el (byte-recompile-file): When LOAD is
8265         non-nil always load the compiled file if it exists.  (Bug#12197)
8267 2012-08-14  Chong Yidong  <cyd@gnu.org>
8269         * hi-lock.el (hi-lock-mode): Do not unilaterally enable font lock.
8270         (hi-lock-set-pattern): When deciding whether to use font lock or
8271         overlays, look at font-lock-mode instead of font-lock-fontified
8272         (Bug#12168).
8273         (hi-lock-mode, hi-lock-line-face-buffer, hi-lock-unface-buffer)
8274         (hi-lock-face-buffer, hi-lock-face-phrase-buffer): Doc fix.
8276 2012-08-14  Daiki Ueno  <ueno@unixuser.org>
8278         * subr.el (internal--after-with-selected-window): Fix typo
8279         (Bug#12193).
8281 2012-08-14  Fabián Ezequiel Gallina  <fgallina@cuca>
8283         Use `completion-table-dynamic' for completion functions.
8284         * progmodes/python.el
8285         (python-shell-completion--do-completion-at-point)
8286         (python-shell-completion--get-completions):
8287         Remove functions.
8288         (python-shell-completion-complete-at-point): New function.
8289         (python-completion-complete-at-point): Use it.
8291 2012-08-13  Jambunathan K  <kjambunathan@gmail.com>
8293         * vc/vc-dir.el (vc-dir-hide-state): New command (bug#12159).
8294         (vc-dir-hide-up-to-date): Route it to `vc-dir-hide-state'.
8296 2012-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8298         * subr.el (function-get): Refine `autoload' arg so it can also
8299         autoload functions for gv.el (bug#12191).
8300         * emacs-lisp/edebug.el (get-edebug-spec): Adjust so it only
8301         autoloads macros.
8303         * color.el (color-xyz-to-lab, color-lab-to-xyz, color-cie-de2000):
8304         Prefer pcase-let over destructuring-bind.
8305         * vc/diff-mode.el (diff-remove-trailing-whitespace): Same.
8306         Also, remove whitespace as we go, rather than after accumulating the
8307         various places.
8309         * subr.el (internal--before-with-selected-window)
8310         (internal--after-with-selected-window): Fix typo seleted->selected.
8311         (with-selected-window): Adjust callers.
8312         Reported by Dmitry Gutov <dgutov@yandex.ru>.
8314 2012-08-13  Bastien Guerry  <bzg@gnu.org>
8316         * window.el (special-display-popup-frame): Minor docstring
8317         enhancement.  (Bug#12172)
8319 2012-08-13  Andreas Schwab  <schwab@linux-m68k.org>
8321         * tar-mode.el (tar-header-data-end): Only ignore size for files of
8322         type 1-6.
8323         (tar-header-block-summarize, tar-get-descriptor): Handle pax
8324         extended headers.
8326         * files.el (hack-local-variables-filter): Remove useless eval.
8328 2012-08-13  Martin Rudalics  <rudalics@gmx.at>
8330         * subr.el (with-selected-window): Fix last change.
8332 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8334         * subr.el (internal--before-with-seleted-window)
8335         (internal--after-with-seleted-window): New functions.
8336         (with-selected-window): Use them, to replace dependency on
8337         tty-top-frame.
8339 2012-08-12  Nobuyoshi Nakada  <nobu@ruby-lang.org>
8341         * progmodes/ruby-mode.el (ruby-mode-map): Remove unnecessary
8342         binding for `newline'.
8343         (ruby-move-to-block): When moving backward, stop at block opening,
8344         not indentation.
8345         * progmodes/ruby-mode.el (ruby-brace-to-do-end)
8346         (ruby-do-end-to-brace, ruby-toggle-block): New functions.
8347         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
8348         `ruby-toggle-block'.
8350 2012-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8352         * ibuffer.el (ibuffer-do-toggle-read-only):
8353         * dired.el (dired-toggle-read-only):
8354         * buff-menu.el (Buffer-menu-toggle-read-only):
8355         * bindings.el (mode-line-toggle-read-only):
8356         * bs.el (bs-toggle-readonly): Call toggle-read-only interactively.
8358 2012-08-12  Andreas Schwab  <schwab@linux-m68k.org>
8360         * descr-text.el (describe-char): Put the overlays over the
8361         "displayed as" character.
8363 2012-08-12  Jay Belanger  <jay.p.belanger@gmail.com>
8365         * calc/calc-units.el (math-default-units-table): Give an
8366         initial value.
8367         (math-put-default-units): Add options to put composite units and
8368         unit systems in the default units table.
8369         (calc-convert-units): Send composite units to
8370         `math-put-default-units' when appropriate.
8372 2012-08-11  Glenn Morris  <rgm@gnu.org>
8374         * emacs-lisp/copyright.el (copyright-update-directory): Logic fix.
8376         * tutorial.el (help-with-tutorial):
8377         * emacs-lisp/copyright.el (copyright-update-directory):
8378         * emacs-lisp/autoload.el (autoload-find-generated-file)
8379         (autoload-find-file): Disable local eval: (for insurance).
8381         * files.el (hack-local-variables-filter): If an eval: form is not
8382         known to be safe, and enable-local-variables is :safe, then ignore
8383         the form totally, as is done for non-eval forms.  (Bug#12155)
8384         This is CVE-2012-3479.
8386 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8388         * emacs-lisp/rx.el (rx-constituents): Don't define as constant.
8389         (rx-form): Simplify.
8391 2012-08-09  Dmitry Gutov  <dgutov@yandex.ru>
8393         * progmodes/ruby-mode.el (ruby-expr-beg, ruby-parse-partial):
8394         ?, _, and : are symbol constituents, ! is not (but kinda should be).
8395         (ruby-syntax-propertize-heredoc): Use ruby-singleton-class-p.
8396         (ruby-syntax-propertize-function): Adjust for changes in
8397         `ruby-syntax-propertize-heredoc'.
8399 2012-08-09 Nobuyoshi Nakada  <nobu@ruby-lang.org>
8401         * progmodes/ruby-mode.el (ruby-mode-map): Remove deprecated
8402         binding (use `M-;' instead).
8403         (ruby-singleton-class-p): New function.
8404         (ruby-expr-beg, ruby-in-here-doc-p) Use it.
8406 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8408         * emacs-lisp/cl-macs.el (cl-loop): Improve debug spec.
8410 2012-08-10  Chong Yidong  <cyd@gnu.org>
8412         * progmodes/python.el (python-shell-get-process-name): Don't mess
8413         with same-window-buffer-names.
8415         * eshell/eshell.el (eshell-add-to-window-buffer-names)
8416         (eshell-remove-from-window-buffer-names): Make obsolete.
8417         (eshell-buffer-name, eshell-unload-hook): Don't use them.
8418         (eshell): Just use pop-to-buffer-same-window instead.
8420 2012-08-10  Chong Yidong  <cyd@gnu.org>
8422         * bindings.el: Bind M-= back to count-words-region.
8424         * simple.el (count-words-region): Accept a prefix arg for acting
8425         on the entire buffer.
8426         (count-words--buffer-message): New helper function.
8428 2012-08-10  Stefan Monnier  <monnier@iro.umontreal.ca>
8430         * term/x-win.el (x-menu-bar-open): Always pass last-nonmenu-event.
8431         * subr.el (eventp): `nil' is not an event, and eventp is not hot.
8432         (event-start, event-end): Use posn-at-point to return a more
8433         informative posn.
8434         (posnp): New function.
8435         * mouse.el (popup-menu-normalize-position): Use it.
8437 2012-08-10  Masatake YAMATO  <yamato@redhat.com>
8439         * mouse.el (popup-menu-normalize-position): New function.
8440         (popup-menu): Use `popup-menu-normalize-position' to normalize
8441         the form for POSITION argument.
8443         * term/x-win.el (x-menu-bar-open):
8444         Use the value returend from (posn-at-point) as position
8445         passed to `popup-menu'.
8447 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
8449         * calc/calccomp.el (math-compose-expr): Add extra argument
8450         indicating that parentheses should be put around products in
8451         denominators.  Give multiplication precedence over division during
8452         composition.
8454 2012-08-09  Chong Yidong  <cyd@gnu.org>
8456         * man.el (Man-switches, Man-sed-command, Man-awk-command)
8457         (Man-mode-hook, Man-cooked-hook, Man-untabify-command-args)
8458         (Man-untabify-command, manual-program): Convert to defcustom
8459         (Bug#10429).
8461         * vc/add-log.el (change-log-mode): Bind comment-start to nil.
8463         * descr-text.el (describe-char): Don't insert extra newlines
8464         (Bug#10127).
8466         * vc/log-view.el (log-view-diff): Use use-region-p (Bug#10133).
8467         (log-view-diff-changeset, log-view-minor-wrap): Likewise.
8469         * align.el (align-region): Delete temporary markers (Bug#10047).
8470         Plus some code cleanups.
8472 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
8474         * progmodes/python.el (python-pdbtrack-tracked-buffer)
8475         (python-pdbtrack-buffers-to-kill, python-shell-internal-buffer)
8476         (python-shell-internal-last-output): Use make-local-variable
8477         instead of make-variable-buffer-local.
8479 2012-08-09  Fabián Ezequiel Gallina  <fgallina@cuca>
8481         * progmodes/python.el: Enhancements to forward-sexp.
8482         (python-nav-forward-sexp): Rename from
8483         python-nav-forward-sexp-function.
8484         (python-nav--forward-sexp, python-nav--backward-sexp):
8485         New functions.
8487 2012-08-09  Jay Belanger  <jay.p.belanger@gmail.com>
8489         * calc/calc-menu.el (calc-modes-menu): Add entries for matrix
8490         modes and simplification modes.
8492 2012-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8494         * delsel.el (delete-selection-pre-hook): Don't propagate the
8495         file-supersession signals (bug#12161).
8497 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8499         * emacs-lisp/cl.el (cl-map-keymap-recursively, cl-map-intervals)
8500         (cl-map-extents): Add compatibility aliases (bug#12135).
8502 2012-08-08  Michael Albinus  <michael.albinus@gmx.de>
8504         * net/tramp-sh.el (tramp-find-file-exists-command): Protect the
8505         tests by `ignore-error'.
8506         (tramp-find-shell): Open also a new shell, when cache is already
8507         set.  Reported by Carsten Bormann <cabo@tzi.org>.  (Bug#12148)
8509 2012-08-08  Juri Linkov  <juri@jurta.org>
8511         * bookmark.el: Add `defaults' property to the bookmark record.
8512         (bookmark-current-buffer): Doc fix.
8513         (bookmark-make-record): Add `defaults' property with default values
8514         to the bookmark record.
8515         (bookmark-minibuffer-read-name-map): Remove key binding "\C-u"
8516         with `bookmark-insert-current-bookmark'.
8517         (bookmark-set): Get `defaults' property from the bookmark record
8518         and use it in `read-from-minibuffer'.
8519         (bookmark-insert-current-bookmark): Remove function.
8521         * info.el (Info-bookmark-make-record): Add `defaults' property
8522         with values of canonical Info node name, the current Info file
8523         name and the current Info node name.  (Bug#12107)
8525 2012-08-08  Juri Linkov  <juri@jurta.org>
8527         * files.el (basic-save-buffer): Use `buffer-name' as the default
8528         of `read-file-name' when buffer is not visiting a file (bug#12128).
8530 2012-08-08  Juri Linkov  <juri@jurta.org>
8532         * info.el (Info-isearch-search): Doc fix.
8533         (Info-search): Change search-failed message from "initial node" to
8534         "end of node" (bug#12078).
8535         (Info-isearch-search): Change `isearch-string-state' to
8536         `isearch--state-string'.
8538 2012-08-08  Glenn Morris  <rgm@gnu.org>
8540         * language/persian.el: Remove file.
8541         * language/misc-lang.el: Move unique part of persian.el here.
8542         * loadup.el: Remove language/persian.
8544 2012-08-08  Óscar Fuentes  <ofv@wanadoo.es>
8546         * vc/diff-mode.el (diff-remove-trailing-whitespace): New function.
8548 2012-08-08  Fabián Ezequiel Gallina  <fgallina@cuca>
8550         * progmodes/python.el: Fix defsubst warning.
8551         (python-syntax-context) Rename from python-info-ppss-context.
8552         (python-syntax-context-type): Rename from
8553         python-info-ppss-context-type.
8554         (python-syntax-comment-or-string-p): Rename from
8555         python-info-ppss-comment-or-string-p.
8557 2012-08-08  Jay Belanger  <jay.p.belanger@gmail.com>
8559         * calc/calc-misc.el (calc-record-why): Don't record a message twice.
8561 2012-08-07  Andreas Schwab  <schwab@linux-m68k.org>
8563         * emacs-lisp/lisp-mode.el (eval-defun-1): Handle standard value of
8564         a defcustom that is quoted with backquote.
8566         * calc/calc-prog.el (math-do-defmath): Use backquote forms.
8567         Fix handling of interactive spec when the body uses return.
8568         (math-do-arg-check, math-define-function-body): Use backquote forms.
8569         * calc/calc-ext.el (math-defcache): Likewise.
8570         * calc/calc-rewr.el (math-rwfail, math-rweval): Likewise.
8571         * allout.el (allout-new-exposure): Likewise.
8572         * calc/calcalg2.el (math-tracing-integral): Likewise.
8573         * info.el (Info-last-menu-item): Likewise.
8574         * emulation/vip.el (vip-loop): Likewise.
8575         * textmodes/artist.el (artist-funcall): Likewise.
8576         * menu-bar.el (menu-bar-make-mm-toggle, menu-bar-make-toggle):
8577         Construct menu-item directly.
8579         * progmodes/autoconf.el (font-lock-syntactic-keywords):
8580         Don't declare.
8582 2012-08-07  Chong Yidong  <cyd@gnu.org>
8584         * simple.el (deactivate-mark): Preserve text properties when
8585         saving the primary selection (Bug#8384).
8587 2012-08-07  Kevin Ryde  <user42@zip.com.au>
8589         * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
8590         (woman-parse-numeric-value): On a bad .IP line, issue a warning
8591         and continue processing (Bug#12110).
8593 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8595         * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
8596         syntax-propertize-function (bug#10095).
8598 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8600         * help-fns.el (help-fns--key-bindings, help-fns--signature)
8601         (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
8602         describe-function-1.
8603         (describe-function-1): Use them.  Move compiler macro after sig.
8604         (help-fns--compiler-macro): Use function-get.  Assume we're already in
8605         standard-output.  Adjust layout to new call order.
8607         * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
8608         re-binding a symbol that has a symbol-macro (bug#12119).
8610 2012-08-06  Mohsen BANAN  <libre@mohsen.1.banan.byname.net>
8612         * language/persian.el: New file.  (Bug#11812)
8613         * loadup.el: Add language/persian.el.
8615 2012-08-06  Chong Yidong  <cyd@gnu.org>
8617         * window.el (window--maybe-raise-frame): New function.
8618         (window--display-buffer): Split off from here.
8619         (display-buffer-reuse-window, display-buffer-pop-up-frame)
8620         (display-buffer-pop-up-window, display-buffer-use-some-window):
8621         Obey an inhibit-switch-frame action alist entry.
8622         (display-buffer): Update doc.
8624         * replace.el (occur-after-change-function): Avoid losing focus by
8625         using the inhibit-switch-frame display parameter (Bug#12139).
8627 2012-08-06  Fabián Ezequiel Gallina  <fgallina@cuca>
8629         Make internal shell process buffer names start with space.
8630         * progmodes/python.el (python-shell-make-comint): Add optional
8631         argument INTERNAL.
8632         (run-python-internal): Use it.
8633         (python-shell-internal-get-or-create-process): Check for new
8634         internal buffer names.
8636 2012-08-06  Glenn Morris  <rgm@gnu.org>
8638         * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
8639         Do less getting and setting of environment variables.
8641 2012-08-05  Chong Yidong  <cyd@gnu.org>
8643         * proced.el (proced): Add substitution string to docstring to
8644         trigger autoloading of the proced library on C-h f (Bug#1768).
8646         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
8647         Don't show defvars which have no second argument (Bug#8638).
8649         * imenu.el (imenu-generic-expression): Move documentation here
8650         from imenu--generic-function.
8651         (imenu--generic-function): Refer to imenu-generic-expression.
8653 2012-08-05  Vegard Øye  <vegard_oye@hotmail.com>  (tiny change)
8655         * emulation/viper-init.el (viper-deflocalvar): Add docstring and
8656         indentation declaration.
8657         (viper-loop): Add indentation declaration (Bug#7025).
8659 2012-08-05  Chong Yidong  <cyd@gnu.org>
8661         * help-fns.el (describe-variable): Add hyperlink for
8662         directory-local variables files.  Improve buffer-local and
8663         permanent-local reporting; suggested by MON KEY (Bug#6644).
8665         * help-mode.el (help-dir-local-var-def): New button type.
8667         * files.el (kill-buffer-hook): Provide a defvar.
8669 2012-08-05  Glenn Morris  <rgm@gnu.org>
8671         * eshell/esh-ext.el (eshell/addpath):
8672         Also update eshell-path-env.  (Bug#12013)
8674 2012-08-05  Chong Yidong  <cyd@gnu.org>
8676         * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
8678         * fringe.el (fringe-styles): Add docstring.
8679         (fringe--check-mode): New function.
8680         (set-fringe-mode, set-fringe-style): Use it.
8681         (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
8683         * files.el (set-auto-mode): Fix invalid setq call.
8685 2012-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8687         * isearch.el: Misc simplification; use defstruct.
8688         (isearch-mode-map): Dense maps now work like sparse ones.
8689         (isearch--state): New defstruct.
8690         (isearch-string-state, isearch-message-state, isearch-point-state)
8691         (isearch-success-state, isearch-forward-state)
8692         (isearch-other-end-state, isearch-word-state, isearch-error-state)
8693         (isearch-wrapped-state, isearch-barrier-state)
8694         (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
8695         replaced by defstruct's accessors.
8696         (isearch--set-state): Rename from isearch-top-state and change
8697         calling convention.
8698         (isearch-push-state): Use new isearch--get-state.
8699         (isearch-toggle-word): Disable regexp when enabling word.
8700         (isearch-message-prefix): Remove unused arg _c-q-hack.
8701         (isearch-message-suffix): Remove unused arg _ellipsis.
8703 2012-08-04  Andreas Schwab  <schwab@linux-m68k.org>
8705         * simple.el (list-processes--refresh): For a server use :host or
8706         :local as the address.
8707         (list-processes): Doc fix.
8709 2012-08-04  Michal Nazarewicz  <mina86@mina86.com>
8711         * lisp/mpc.el: Support password in host argument.
8712         (mpc--proc-connect): Parse and use new password element.
8713         Set mpc-proc variable instead of returning process.
8714         (mpc-proc): Adjust accordingly.
8716 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
8718         * whitespace.el (whitespace-display-mappings): Use Unicode
8719         codepoints, instead of emacs-mule codepoints.  See
8720         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
8721         for the details.
8723         * files.el (file-truename): Don't skip symlink-chasing part on
8724         windows-nt.  Incorporate the resolution of 8+3 short aliases on
8725         Windows into the loop that recursively chases symlinks.
8726         Compare directory and its parent case-insensitively on MS-Windows and
8727         MS-DOS.
8729 2012-08-03  Chong Yidong  <cyd@gnu.org>
8731         * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
8733         * sort.el (sort-regexp-fields): Doc fix.
8735 2012-08-03  Tassilo Horn  <tsdh@gnu.org>
8737         * textmodes/reftex.el (reftex-compile-variables): Make keyvals
8738         labels regex position point at the expected place.
8740 2012-08-03  MON KEY  <monkey@sandpframing.com>
8742         * net/imap.el (imap-interactive-login, imap-authenticate)
8743         (imap-mailbox-lsub, imap-mailbox-list)
8744         (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
8745         (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
8746         (imap-parse-response): Doc fix.
8748 2012-08-03  João Távora  <joaotavora@gmail.com>
8750         * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
8751         if sexp scanning does not move point (Bug#5734).
8753 2012-08-02  Tassilo Horn  <tsdh@gnu.org>
8755         * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
8756         Add listings, minted, and ctable packages.
8757         (reftex-label-alist-builtin): Move listings, minted, and ctable
8758         entries before LaTeX.
8759         (reftex-label-alist): Docfix.
8761 2012-08-02  Bastien Guerry  <bzg@gnu.org>
8763         * replace.el (occur): Fix docstring (bug#12122).
8765 2012-08-02  Glenn Morris  <rgm@gnu.org>
8767         * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
8769 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
8771         Obsolete alias inactivate-current-input-method-function (Bug#10150).
8772         * international/mule-cmds.el: Create
8773         inactivate-current-input-method-function as an obsolete alias for
8774         deactivate-current-input-method-function.  See Katsumi Yamaoka in
8775         <http://bugs.gnu.org/10150#46>.
8777 2012-08-01  Jay Belanger  <jay.p.belanger@gmail.com>
8779         * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
8780         of nested `if's.
8782 2012-08-01  Glenn Morris  <rgm@gnu.org>
8784         * progmodes/autoconf.el (autoconf-definition-regexp):
8785         Add AH_TEMPLATE, adjust submatch numbering.
8786         (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
8787         (autoconf-current-defun-function): Update for above change.
8788         (autoconf-current-defun-function): First skip to end of current word.
8790 2012-08-01  Rupert Swarbrick  <rswarbrick@gmail.com>  (tiny change)
8792         * calendar/cal-html.el (cal-html-insert-agenda-days):
8793         Fix typo.  (Bug#12018)
8795 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
8797         Shell processes: enhancements to startup and CEDET compatibility.
8798         * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
8799         (python-shell-make-comint): accept-process-output at startup.
8800         (run-python-internal): Set inferior-python-mode-hook to nil.
8801         (python-shell-internal-get-or-create-process): call sit-for.
8802         (python-preoutput-result): Add obsolete alias.
8803         (python-shell-internal-send-string): Use it.
8804         (python-shell-send-setup-code): Remove call to
8805         accept-process-output.
8807 2012-07-31  Andreas Schwab  <schwab@linux-m68k.org>
8809         * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
8810         (Bug#12108)
8812 2012-07-31  Jay Belanger  <jay.p.belanger@gmail.com>
8814         * calc-mode.el (calc-basic-simplification-mode): Rename from
8815         `calc-limited-simplification-mode'.
8816         (calc-alg-simplification-mode): New function.
8817         (calc-set-simplify-mode): Adjust message.
8819         * calc.el (calc-set-mode-line): Adjust mode line display for
8820         basic simplification mode.
8822         * calc-help.el (calc-m-prefix-help): Update help message.
8824         * calc-ext.el (calc-init-extensions): Add bindings and autoloads
8825         for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
8827 2012-07-31  Bastien Guerry  <bzg@gnu.org>
8829         * man.el (man): Fix comment.  (bug#12101)
8831 2012-07-31  Martin Rudalics  <rudalics@gmx.at>
8833         * window.el (switch-to-prev-buffer, switch-to-next-buffer):
8834         Don't return a non-nil value when no suitable buffer was found.
8836 2012-07-31  Fabián Ezequiel Gallina  <fgallina@cuca>
8838         * progmodes/python.el (run-python-internal): Disable font lock for
8839         internal shells.
8841 2012-07-30  Stefan Merten  <smerten@oekonux.de>
8843         * textmodes/rst.el: Silence `checkdoc-ispell'.
8844         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
8845         (rst-official-version, rst-official-cvs-rev)
8846         (rst-package-emacs-version-alist): Update to upstream V1.3.1.
8847         (rst-mode-map): New key binding.
8849 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
8851         Update .PHONY listings in makefiles.
8852         * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
8853         autoloads, update-subdirs, updates, bzr-update, update-authors,
8854         compile-onefile, compile-calc, backup-compiled-files,
8855         compile-after-backup, compile-one-process, mh-autoloads,
8856         bootstrap-clean, distclean, maintainer-clean.
8858 2012-07-29  Jay Belanger  <jay.p.belanger@gmail.com>
8860         * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
8861         (calc-set-mode-line): Don't display "AlgSimp ".
8863         * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
8864         (calc-lim-simplify-mode): New function.
8865         (calc-set-simplify-mode): Default to 'alg.
8866         (calc-default-simplify-mode): Make algebraic simplifications
8867         the default.
8869         * calc/calc-ext.el (calc-init-extensions): Remove binding for
8870         `calc-alg-simplify-mode'.  Add binding for `calc-lim-simplify-mode'.
8872         * calc/calc-help.el (calc-m-prefix-help): Change messages to
8873         indicate new simplification modes.
8875         * calc/README: Mention new default simplification mode.
8877         * calc/calc.el (math-normalize-error): New variable.
8878         (math-normalize): Set `math-normalize-error' to t
8879         when there's an error.
8881         * calc/calc-alg.el (math-simplify): Don't simplify when
8882         `math-normalize' returns an error.
8884 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
8886         * international/mule-cmds.el (set-locale-environment): Revert last
8887         change, since display-graphic-p returns nil when this function is
8888         called during startup.  Instead...
8890         * term/w32console.el (terminal-init-w32console): ...setup the
8891         keyboard and terminal encoding for TTY sessions here.  (Bug#12082)
8893 2012-07-29  Juri Linkov  <juri@jurta.org>
8895         * simple.el (goto-line): Don't display default line number in the
8896         prompt because it should be displayed by `read-number' (bug#9952).
8897         Add the current line number to the defaults of `goto-line' to
8898         allow its easier modification by users with `M-n' (bug#9201).
8900         * subr.el (read-number): Support multiple default values like in
8901         other minibuffer reading functions.  Replace `read' with
8902         `string-to-number' for consistency with `number-to-string'.
8904 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
8906         deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
8907         * emulation/viper-init.el (viper-deactivate-input-method-action):
8908         Rename from viper-inactivate-input-method-action.
8909         (viper-deactivate-input-method):
8910         Rename from viper-inactivate-input-method.
8911         * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
8912         * international/mule-cmds.el (deactivate-input-method):
8913         Rename from inactivate-input-method.
8914         Also run input-method-deactivate-hook.
8915         (deactivate-current-input-method-function):
8916         Rename from inactivate-current-input-method-function.
8917         (input-method-deactivate-hook): New hook.
8918         (input-method-inactivate-hook): Mark obsolete.
8919         (inactivate-input-method): Mark obsolete.
8921         * international/quail.el (quail-activate):
8922         Also run quail-deactivate-hook.
8923         (quail-deactivate): Rename from quail-inactivate.
8924         * international/robin.el (robin-activate):
8925         Also run robin-deactivate-hook.
8926         (robin-deactivate): Rename from robin-inactivate.
8928 2012-07-29  Chong Yidong  <cyd@gnu.org>
8930         * simple.el (indicate-copied-region): New function.
8931         (kill-ring-save): Split off from here.
8933         * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
8934         (kill-rectangle): Set deactivate-mark to t on read-only error.
8936         * register.el (copy-to-register, copy-rectangle-to-register):
8937         Deactivate the mark, and use indicate-copied-region (Bug#10056).
8938         (append-to-register, prepend-to-register): Call indicate-copied-region.
8940 2012-07-29  Juri Linkov  <juri@jurta.org>
8942         * simple.el (async-shell-command-buffer): New defcustom.
8943         (shell-command): Use it.  (Bug#4719)
8945 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
8947         * international/mule-cmds.el (set-locale-environment): In a
8948         console session on MS-Windows, set up keyboard and terminal
8949         encoding from the OEM codepage, not the ANSI codepage.
8950         (Bug#12055)
8952 2012-07-28  Chong Yidong  <cyd@gnu.org>
8954         * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
8955         gdb-get-location.
8957 2012-07-28  Leo Liu  <sdl.web@gmail.com>
8959         * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
8960         the alist (bug#12029).
8962 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
8964         * makefile.w32-in (custom-deps, finder-data, updates, compile)
8965         (compile-always, compile-first)
8966         ($(lisp)/calendar/cal-loaddefs.el)
8967         ($(lisp)/calendar/diary-loaddefs.el)
8968         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
8969         ($(lisp)/net/tramp-loaddefs.el, bootstrap)
8970         ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
8971         instead of on update-subdirs.
8972         (bootstrap-clean): Delete $(lisp)/subdirs.el.
8974 2012-07-28  Chong Yidong  <cyd@gnu.org>
8976         * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
8977         directory if vc-deduce-backend returns nil (Bug#7350).
8979         * simple.el (delete-trailing-lines): New option.
8980         (delete-trailing-whitespace): Obey it (Bug#11879).
8982 2012-07-28  David Engster  <deng@randomsample.de>
8984         * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
8985         Explanation of new 'symbol-qnames feature in doc-strings.
8986         (xml-maybe-do-ns): Return expanded names as plain symbols if
8987         'symbol-qnames was provided in XML-NS argument (Bug#11916).
8988         (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
8990 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
8992         Consistent completion in inferior python with emacs -nw.
8993         * progmodes/python.el (inferior-python-mode): replace "<tab>"
8994         binding in inferior-python-mode-map with "\t".
8995         (python-shell-completion-complete-at-point)
8996         (python-completion-complete-at-point): Remove interactive spec.
8998 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
9000         * calc/calccomp.el (math-compose-expr): Undo previous change.
9002 2012-07-27  Fabián Ezequiel Gallina  <fgallina@cuca>
9004         * progmodes/python.el (python-mode-map): Add keybinding for
9005         run-python.
9006         (python-shell-make-comint): Fix pop-to-buffer call.
9007         (run-python): Autoload.  New arg SHOW.
9008         (python-shell-get-or-create-process): Do not pop python process
9009         buffer.
9011 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
9013         * notifications.el (notifications-on-action-signal)
9014         (notifications-on-closed-signal): Use also the bus address for the map.
9015         (notifications-notify, notifications-close-notification)
9016         (notifications-get-capabilities): Add optional argument BUS.
9018 2012-07-27  Tassilo Horn  <tsdh@gnu.org>
9020         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
9021         Add support for the lstlisting and minted environments, and for the
9022         ctable macro.
9023         * textmodes/reftex.el (reftex-compile-variables): Also recognize
9024         labels written in keyvals syntax.
9026 2012-07-27  Jay Belanger  <jay.p.belanger@gmail.com>
9028         * calc/calccomp.el (math-compose-expr): Use parentheses when
9029         there is a product in the denominator of a fraction.
9031 2012-07-26  Eli Zaretskii  <eliz@gnu.org>
9033         * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
9034         ($(lisp)/calendar/diary-loaddefs.el)
9035         ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
9036         ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs.
9037         Fixes failures in parallel bootstrap because subdirs.el is being
9038         rewritten while the autoload files are built at the same time,
9039         which needs to load subdirs.el.
9041 2012-07-26  Martin Rudalics  <rudalics@gmx.at>
9043         * mouse.el (popup-menu): Fix doc-string and re-indent code.
9044         (mouse-drag-line): Don't exit tracking when a switch-frame or
9045         switch-window event occurs (Bug#12006).
9047 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9049         * mouse.el (popup-menu): Fix last change.
9051 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9053         Autoload from Lisp with more care.  Follow aliases when looking for
9054         function properties.
9055         * subr.el (autoloadp): New function.
9056         (symbol-file): Use it.
9057         (function-get): New function.
9058         * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
9059         autoload-do-load.
9060         * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
9061         (lisp-indent-function):
9062         * emacs-lisp/gv.el (gv-get):
9063         * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
9064         * emacs-lisp/byte-opt.el (byte-optimize-form):
9065         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
9066         * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
9067         Use function-get.
9068         * emacs-lisp/cl.el: Don't propagate function properties any more.
9070         * speedbar.el (speedbar-add-localized-speedbar-support):
9071         * emacs-lisp/disass.el (disassemble-internal):
9072         * desktop.el (desktop-load-file):
9073         * help-fns.el (help-function-arglist, find-lisp-object-file-name)
9074         (describe-function-1):
9075         * emacs-lisp/find-func.el (find-function-noselect):
9076         * emacs-lisp/elp.el (elp-instrument-function):
9077         * emacs-lisp/advice.el (ad-has-proper-definition):
9078         * apropos.el (apropos-safe-documentation, apropos-macrop):
9079         * emacs-lisp/debug.el (debug-on-entry):
9080         * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
9081         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9082         * calc/calc.el (name): Use autoloadp & autoload-do-load.
9084 2012-07-25  Alp Aker  <alp.tekin.aker@gmail.com>
9086         * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
9087         function, not an obsolete variable (Bug#12046).
9089 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
9091         * faces.el (face-spec-reset-face): Fix last change.  (Bug#12042)
9093 2012-07-25  Christopher Schmidt  <christopher@ch.ristopher.com>
9095         * emacs-lisp/pp.el (pp-display-expression): Select old selected
9096         window only if it is still live (Bug#12034).
9098 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
9100         * subr.el (redirect-frame-focus): Add advertised calling
9101         convention (Bug#12030).
9103 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
9105         Prefer typical American spelling for "acknowledgment".
9106         * vc/add-log.el (change-log-acknowledgment): Rename from
9107         change-log-acknowledgement, with an alias for the old name.
9109 2012-07-25  Jay Belanger  <jay.p.belanger@gmail.com>
9111         * calc-alg.el (math-simplify-divide): Don't cross multiply
9112         in an equation when the lhs is a variable.
9114 2012-07-24  Julien Danjou  <julien@danjou.info>
9116         * net/netrc.el (netrc-find-service-number, netrc-store-data):
9117         Remove, unused.
9119 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
9121         * startup.el (command-line): Don't display an empty user name in
9122         the error message about non-existent home directory, when
9123         init-file-user was set to an empty string.  See
9124         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
9125         for the details and context.
9127 2012-07-22  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9129         * ses.el (ses-cell-formula-aset): New macro.
9130         (ses-cell-references-aset): New macro.
9131         (ses-cell-p): New function.
9132         (ses-rename-cell): Do no longer rely on complex operations like
9133         ses-cell-set-formula or ses-set-cell to change the cell and handle
9134         the undo at the same time, but rather use lower level new macros
9135         `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
9136         the undo directly.  Refresh the mode line.
9138 2012-07-21  Leo Liu  <sdl.web@gmail.com>
9140         * progmodes/cc-cmds.el (c-defun-name):
9141         Use match-string-no-properties instead for consistency.
9143 2012-07-20  Leo Liu  <sdl.web@gmail.com>
9145         * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
9146         (Bug#7879)
9148         * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
9150 2012-07-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9152         * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
9153         * progmodes/bug-reference.el, misearch.el: Provide themselves
9154         (bug#11915).
9156         * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
9157         of narrowed buffer (bug#11966).
9159 2012-07-20  Vincent Belaïche  <vincentb1@users.sourceforge.net>
9161         * ses.el (ses-rename-cell): Set new name also in reference list of
9162         cells of which the renamed cell depends.
9164 2012-07-20  Masatake YAMATO  <yamato@redhat.com>
9166         * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
9167         to check whether menu-bar is shown or not.  If not shown,
9168         show the menu-bar as a popup menu instead of using tmm.
9169         * mouse.el (popup-menu): Accept `point' as `position' argument.
9171 2012-07-20  Dmitry Gutov  <dgutov@yandex.ru>
9173         * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
9174         up inside string symbol literal (bug#11923).
9176 2012-07-20  Eli Zaretskii  <eliz@gnu.org>
9178         * startup.el (fancy-startup-text): Read the whole tutorial, not
9179         just its first 256 bytes.  Prevents gibberish in display of the
9180         tutorial title.
9182 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
9184         Drop idle buffer compaction due to an absence of the
9185         proved efficiency.
9186         * compact.el: Remove.
9188 2012-07-19  Sam Steingold  <sds@gnu.org>
9190         * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
9191         vc-bzr-pull & vc-bzr-merge-branch.
9192         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
9193         (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
9194         for consistency with compilation-error-regexp-alist.
9195         * vc/vc-git.el (vc-git-error-regexp-alist): Add.
9196         (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
9197         * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
9198         (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
9200 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9202         * emacs-lisp/chart.el: Use lexical-binding.
9203         (chart-emacs-storage): Don't hardcode the list of entries.
9205 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
9207         Next round of tweaks caused by Fgarbage_collect changes.
9208         * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
9210 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
9212         Compact buffers when idle.
9213         * compact.el: New file.
9215 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9217         * subr.el (eventp): Presume that if it looks vaguely like an event,
9218         it's an event (bug#10190).
9220 2012-07-19  Fabián Ezequiel Gallina  <fgallina@cuca>
9222         Enhancements to ppss related code (thanks Stefan).
9223         * progmodes/python.el (python-indent-context)
9224         (python-indent-calculate-indentation, python-indent-dedent-line)
9225         (python-indent-electric-colon, python-nav-forward-block)
9226         (python-mode-abbrev-table)
9227         (python-info-assignment-continuation-line-p): Simplify checks
9228         for ppss context.
9229         (python-info-continuation-line-p): Cleanup.
9230         (python-info-ppss-context): Do not catch 'quote.
9231         (python-info-ppss-context-type)
9232         (python-info-ppss-comment-or-string-p): Simplify.
9234 2012-07-18  Fabián Ezequiel Gallina  <fgallina@cuca>
9236         * progmodes/python.el: Enhancements to eldoc support.
9237         (python-info-current-symbol): New function.
9238         (python-eldoc-at-point): Use python-info-current-symbol.
9239         (python-info-current-defun): Fix cornercase on first defun scan.
9240         (python-eldoc--get-doc-at-point): Use python-info-current-symbol
9241         and signal error when no inferior python process is available.
9243 2012-07-18  Dmitry Gutov  <dgutov@yandex.ru>
9245         * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
9246         assume it's always t.
9247         (vc-git-registered): Remove caching, the function is only called
9248         once.
9249         (vc-git-branches): Use `vc-git--call' instead of `call-process'.
9251 2012-07-18  Chong Yidong  <cyd@gnu.org>
9253         * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
9255         * simple.el (count-words): Report on narrowing (Bug#9959).
9257         * bindings.el: Bind M-= to count-words.
9259         * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
9261 2012-07-18  Masatake YAMATO  <yamato@redhat.com>
9263         * progmodes/sh-script.el (sh-imenu-generic-expression):
9264         Capture a function with `function' keyword and without parentheses
9265         like "function FOO" (bug#11856).
9267 2012-07-18  Tassilo Horn  <tassilo@member.fsf.org>
9269         * window.el (split-window-sensibly): Make WINDOW argument
9270         optional.
9272 2012-07-18  Chong Yidong  <cyd@gnu.org>
9274         * subr.el (keyboard-translate): Doc fix (Bug#7261).
9276         * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
9277         and make C-x 8 RET exit isearch (Bug#11439).
9279         * international/iso-transl.el: Move isearch-mode-map key
9280         definitions to isearch.el.
9282 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9284         * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
9285         (eieio-defclass): Use gv-define-setter when possible.
9287 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
9289         Reflect recent changes in Fgarbage_collect.
9290         * emacs-lisp/chart.el (chart-emacs-storage): Change to
9291         reflect new format of data returned by Fgarbage_collect.
9293 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9295         New utility functions + python-info-ppss-context fix (Bug#11910).
9296         * progmodes/python.el (python-info-beginning-of-block-statement-p)
9297         (python-info-ppss-comment-or-string-p): New functions.
9298         (python-info-ppss-context): Small fix for string check.
9300 2012-07-17  Juri Linkov  <juri@jurta.org>
9302         * dired-aux.el (dired-do-async-shell-command): Doc fix.
9303         (dired-do-async-shell-command): Don't add `*' at the end of the
9304         command (Bug#11815).
9305         (dired-do-shell-command): Doc fix.
9306         (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
9307         Join the individual commands using either "&" or ";" as the
9308         separator depending on the values of these trailing characters.
9309         At the end re-add the trailing "&".  (Bug#10598)
9311         * simple.el (async-shell-command): Sync the interactive spec with
9312         `shell-command'.  Doc fix.
9313         (shell-command): Doc fix.
9315 2012-07-17  Juri Linkov  <juri@jurta.org>
9317         * descr-text.el (describe-char): Fix format args.  (Bug#10129)
9319 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9321         Final renames and doc fixes for movement commands (bug#11899).
9322         * progmodes/python.el (python-nav-beginning-of-statement):
9323         Rename from python-nav-statement-start.
9324         (python-nav-end-of-statement): Rename from
9325         python-nav-statement-end.
9326         (python-nav-beginning-of-block): Rename from
9327         python-nav-block-start.
9328         (python-nav-end-of-block): Rename from python-nav-block-end.
9330 2012-07-17  Fabián Ezequiel Gallina  <fgallina@cuca>
9332         * progmodes/python.el (python-shell-send-string-no-output):
9333         Allow accept-process-output to quit, keeping shell process ready for
9334         future interactions (Bug#11868).
9336 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9338         * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
9340         * emacs-lisp/elint.el (elint-find-args-in-code):
9341         Use help-function-arglist, so as to handle lexical byte-code.
9343         * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
9344         change (bug#11826).
9346 2012-07-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9348         * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
9349         Avoid spuriously marking the buffer as modified because of c-is-sws.
9351         * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
9352         as not-a-comment (bug#11946).
9354         * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
9355         for uninterned vars.
9357         * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
9358         Use read-event since we don't really want to read chars but bytes.
9360         * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
9361         $$..$$ but also $..$ using regexps (bug#11953).
9362         Use tex-verbatim for \url and \path.
9363         (tex-font-lock-keywords): Define as defconst like the others.
9364         (tex-common-initialization): Don't use font-lock-syntax-table any more.
9366 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
9368         * international/mule-cmds.el (ucs-insert): Make it an obsolete
9369         alias for insert-char.
9371 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
9373         * progmodes/python.el: Simplified imenu implementation.
9374         (python-nav-jump-to-defun): Remove command.
9375         (python-mode-map): Use `imenu' instead.
9376         (python-nav-list-defun-positions-cache)
9377         (python-imenu-include-defun-type, python-imenu-make-tree)
9378         (python-imenu-subtree-root-label, python-imenu-index-alist):
9379         Remove vars.
9380         (python-nav-list-defun-positions, python-nav-read-defun)
9381         (python-imenu-tree-assoc, python-imenu-make-element-tree)
9382         (python-imenu-make-tree, python-imenu-create-index):
9383         Remove functions.
9384         (python-mode): Update to interact with imenu by setting
9385         `imenu-extract-index-name-function' only.
9387 2012-07-16  Fabián Ezequiel Gallina  <fgallina@cuca>
9389         * progmodes/python.el: Enhancements to navigation commands.
9390         (python-nav-backward-sentence)
9391         (python-nav-forward-sentence): Remove.
9392         (python-nav-backward-statement, python-nav-forward-statement)
9393         (python-nav-statement-start, python-nav-statement-end)
9394         (python-nav-backward-block, python-nav-forward-block)
9395         (python-nav-block-start, python-nav-block-end)
9396         (python-nav-forward-sexp-function)
9397         (python-info-current-line-comment-p)
9398         (python-info-current-line-empty-p): New functions.
9399         (python-indent-context): Use `python-nav-statement-start'.
9401 2012-07-16  Michael Albinus  <michael.albinus@gmx.de>
9403         * eshell/em-ls.el (eshell/ls): Use `apply'.
9405         * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
9406         multi-hops, instead of Tramp internals.
9408         * vc/ediff.el (ediff-directories): Add trailing space to prompts.
9410         * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
9411         when F1 and F2 are located on different hosts.
9413 2012-07-14  Chong Yidong  <cyd@gnu.org>
9415         * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
9416         (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
9417         (xterm-mouse-translate-extended, xterm-mouse-translate-1)
9418         (xterm-mouse--read-event-sequence-1000)
9419         (xterm-mouse--read-event-sequence-1006): New functions.  For old
9420         mouse protocol, handle M-mouse-X events correctly.
9421         (xterm-mouse-event): New arg specifying mouse protocol.
9422         (turn-on-xterm-mouse-tracking-on-terminal)
9423         (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
9424         sequence to toggle extended coordinates on newer XTerms.
9425         This appears to be harmless on terminals which do not support this.
9427 2012-07-14  Leo Liu  <sdl.web@gmail.com>
9429         Add fringe bitmap indicators for flymake.  (Bug#11253)
9430         * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
9431         (flymake-make-overlay): New arg BITMAP.
9432         (flymake-error-bitmap, flymake-warning-bitmap)
9433         (flymake-fringe-indicator-position): New user variables.
9435         * fringe.el: New bitmap exclamation-mark.
9437 2012-07-14  Jan Djärv  <jan.h.d@swipnet.se>
9439         * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
9440         also (Bug#7879).
9442 2012-07-14  Chong Yidong  <cyd@gnu.org>
9444         * electric.el (electric-pair-post-self-insert-function): Fix pair
9445         insertion in empty-region case (Bug#11520).
9447 2012-07-14  Chong Yidong  <cyd@gnu.org>
9449         * bindings.el: Consolidate ctl-x-r-map bindings.
9450         Bind copy-rectangle-as-kill to C-x r w.
9452         * rect.el, register.el: Move bindings to bindings.el.
9454 2012-07-14  Reuben Thomas  <rrt@sc3d.org>
9456         * rect.el (copy-rectangle-as-kill): New command (Bug#739).
9458 2012-07-13  Andreas Schwab  <schwab@linux-m68k.org>
9460         * emacs-lisp/cl.el (labels): Remove spurious quote.  (Bug#11938)
9462 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
9464         * bindings.el (top): Use `mapc' instead of `mapcar'.
9466         * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
9468 2012-07-13  Michael Albinus  <michael.albinus@gmx.de>
9470         * progmodes/sql.el (sql-comint): Suppress the check for program on
9471         remote hosts.  Reported by Francis Devereux <francis@devrx.org>.
9472         (Bug#11908)
9474 2012-07-13  Chong Yidong  <cyd@gnu.org>
9476         * bindings.el: Assign a non-nil permanent-local property to
9477         per-buffer variables which lack a default value (Bug#11930).
9479         * help-fns.el (describe-variable): In the "automatically becomes
9480         local" notice, take note of permanent-local variables.
9482 2012-07-13  Chong Yidong  <cyd@gnu.org>
9484         * files.el (toggle-read-only): Doc fix and code cleanup.  New arg
9485         to allow printing the message when called from Lisp.
9487         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
9488         Remove toggle-read-only.
9490         * bs.el (bs-toggle-readonly):
9491         * buff-menu.el (Buffer-menu-toggle-read-only):
9492         Remove with-no-warnings around toggle-read-only.
9494         * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
9495         Remove with-no-warnings around toggle-read-only.
9496         (ffap-read-only, ffap-read-only-other-window)
9497         (ffap-read-only-other-frame): Callers changed.
9499         * help-mode.el: Don't require view package.
9500         (help-mode-finish): Set buffer-read-only instead of calling
9501         toggle-read-only.
9503         * bindings.el (mode-line-toggle-read-only):
9504         * dired.el (dired-toggle-read-only):
9505         * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
9506         with non-nil second arg.
9508         * emacs-lisp/eieio-custom.el (eieio-customize-object):
9509         * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
9510         directly.
9512 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
9514         * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
9515         not incf.
9517 2012-07-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9519         More CL cleanups and reduction of use of cl.el.
9520         * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
9521         * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
9522         * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
9523         * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
9524         * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
9525         * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
9526         * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
9527         * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
9528         * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
9529         * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
9530         * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
9531         * eshell/em-cmpl.el, eshell/em-banner.el:
9532         * calendar/parse-time.el: Use cl-lib.
9533         * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
9534         * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
9535         * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
9536         * term/ns-win.el, term.el, shell.el, ps-samp.el:
9537         * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
9538         * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
9539         * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
9540         * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
9541         * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
9542         * mail/mailheader.el, mail/feedmail.el: Don't use CL.
9543         * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
9544         * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
9545         `lambda' rather than with `quote'.
9546         (eshell-do-opt): Adjust accordingly.
9547         (eshell-process-option): Simplify.
9548         * eshell/esh-var.el:
9549         * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
9550         * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
9551         (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
9552         to `pcase--dontcare'.
9553         * emacs-lisp/cl.el (labels): Mark obsolete.
9554         (cl--letf, letf): Move to cl-lib.
9555         (cl--letf*, letf*): Remove.
9556         * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
9557         * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
9558         (cl-progv): Rewrite.
9559         (cl--letf, cl-letf): Move from cl.el.
9560         (cl-letf*): New macro.
9561         * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
9563 2012-07-11  Michael Albinus  <michael.albinus@gmx.de>
9565         * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
9567 2012-07-11  Chong Yidong  <cyd@gnu.org>
9569         * vc/log-edit.el (log-edit-vc-backend): New variable.
9570         (log-edit): Doc fix.
9572         * vc/vc-dispatcher.el (vc-log-edit): New args.  Use PARAMS
9573         argument of log-edit to set up all local variables.
9574         (vc-start-logentry): New optional arg specifying VC backend.
9576         * vc/vc.el (vc-checkin): Use it.
9577         (vc-deduce-fileset): Handle Log Edit buffers.
9578         (vc-diff): Make first argument optional too.
9580         * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
9582 2012-07-10  Michael Albinus  <michael.albinus@gmx.de>
9584         * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
9585         command, just in case.  The function is not needed anymore.
9586         (eshell-external-command): Do not call `eshell-remote-command'.
9588 2012-07-10  Stefan Monnier  <monnier@iro.umontreal.ca>
9590         Reduce use of (require 'cl).
9591         * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
9592         * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
9593         * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
9594         * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
9595         * international/quail.el, info-xref.el, imenu.el, image-mode.el:
9596         * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
9597         * battery.el, avoid.el, abbrev.el: Use cl-lib.
9598         * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
9599         * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
9600         * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
9601         * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
9602         * calculator.el, autorevert.el, apropos.el: Don't require CL.
9603         * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
9604         (byte-compile-unfold-bcf, byte-compile-check-variable):
9605         * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
9606         (byte-compile-nilconstp):
9607         * emacs-lisp/autoload.el (make-autoload): Use pcase.
9608         * face-remap.el (text-scale-adjust): Simplify pcase patterns.
9610         * emacs-lisp/gv.el (cond): Make it a valid place.
9611         (if): Simplify slightly.
9613         * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
9614         (pcase--self-quoting-p): New function.
9615         (pcase--u1): Use it.
9617 2012-07-10  Glenn Morris  <rgm@gnu.org>
9619         * emacs-lisp/authors.el (authors-fixed-entries):
9620         (authors-renamed-files-alist): Update for configure.in -> configure.ac.
9622 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
9624         Rename configure.in to configure.ac (Bug#11603).
9625         * emacs-lisp/authors.el (authors-canonical-file-name):
9626         * progmodes/autoconf.el (autoconf-mode):
9627         Prefer configure.ac to configure.in.
9629 2012-07-08  Chong Yidong  <cyd@gnu.org>
9631         * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
9632         Implement the mouse-1-click-follows-link handling properly.
9634         * info.el (Info-link-keymap): Use follow-link mechanism for
9635         header-line links (Bug#374).
9637         * simple.el (deactivate-mark): Do not set the primary selection
9638         if another program has acquired it (Bug#11772).
9640 2012-07-07  Kevin Ryde  <user42@zip.com.au>
9642         * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
9643         (woman-decode-region): Replace escaped-escapes without destroying
9644         bold or underline (Bug#11552).
9645         (woman2-process-escapes): Handle nofill regions (Bug#11591).
9647 2012-07-07  Chong Yidong  <cyd@gnu.org>
9649         * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
9650         (interprogram-cut-function, interprogram-paste-function):
9651         Mention that we typically mean the clipboard.
9653 2012-07-06  Glenn Morris  <rgm@gnu.org>
9655         * kmacro.el (kmacro-call-macro): Restore repeat message.  (Bug#11817)
9657         * files.el (toggle-read-only): Restrict message to interactive use.
9659 2012-07-06  Michael Albinus  <michael.albinus@gmx.de>
9661         * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
9663         * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
9665 2012-07-06  Glenn Morris  <rgm@gnu.org>
9667         * Makefile.in (compile-one-process): Rename from "recompile".
9669         * Makefile.in (bzr-update): "compile" is the same as "recompile
9670         autoloads", but parallelizable, so use that instead.
9672 2012-07-06  Dmitry Gutov  <dgutov@yandex.ru>
9674         * window.el (quit-window): Always restore window height when
9675         it's saved in quit-restore parameter (Bug#11810).
9677 2012-07-06  Glenn Morris  <rgm@gnu.org>
9679         * simple.el (kill-whole-line): Doc tweak.
9681 2012-07-06  Eli Zaretskii  <eliz@gnu.org>
9683         * files.el (file-relative-name): Compare file names
9684         case-insensitively if on MS-Windows or MS-DOS, or if
9685         read-file-name-completion-ignore-case is non-nil.  Don't use
9686         case-fold-search for this purpose.  (Bug#11827)
9688 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
9690         * calendar/cal-dst.el (calendar-current-time-zone):
9691         Return calendar-current-time-zone-cache if non-nil.
9693 2012-07-17  Masatake YAMATO  <yamato@redhat.com>
9694 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
9696         * calendar/cal-dst.el (calendar-current-time-zone):
9697         Return calendar-current-time-zone-cache if non-nil.
9699 2012-07-06  Glenn Morris  <rgm@gnu.org>
9701         * Makefile.in (cvs-update): Remove old alias.
9703 2012-07-05  Michael Albinus  <michael.albinus@gmx.de>
9705         Sync with Tramp 2.2.6-pre.
9707         * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
9708         compatible declaration.
9710         * net/tramp-cmds.el (tramp-append-tramp-buffers):
9711         Protect `list-load-path-shadows' call.
9713         * net/tramp-compat.el (top): Require packages, which aren't
9714         autoloaded anymore for XEmacs.  Protect call of
9715         `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
9716         compiler.  Do not require tramp-util.el and tramp-vc.el anymore,
9717         it hurts at least for SXEmacs.
9718         (tramp-compat-temporary-file-directory): In XEmacs, there is no
9719         standard-value for `temporary-file-directory'.
9721         * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
9722         Redirect stderr to /dev/null.
9723         (tramp-sh-handle-write-region): uid and gid can be floats.
9724         Reported by Russell Sim <russell.sim@gmail.com>.
9725         (tramp-sh-handle-vc-registered): Hide errors.
9726         (tramp-vc-file-name-handler): Use dummy results for `process-file'
9727         and `start-file-process'.
9728         (tramp-maybe-open-connection): Check also whether `non-essential'
9729         is bound.
9731 2012-07-04  Chong Yidong  <cyd@gnu.org>
9733         * xml.el (xml--parse-buffer): Use xml-syntax-table.
9734         (xml-parse-tag): Likewise, and avoid changing entity tables.
9735         (xml-syntax-table): Define from scratch, making sure not to give
9736         x2000 and other Unicode spaces whitespace syntax, since those are
9737         not spaces in XML.
9738         (xml-parse-fragment): Delete unused function.
9739         (xml-name-start-char-re, xml-name-char-re, xml-name-re)
9740         (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
9741         (xml-entity-ref, xml-pe-reference-re)
9742         (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
9743         (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
9744         (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
9745         (xml-entity-value-re): Use syntax references in regexps where
9746         possible; no need to define inside a let-binding.
9747         (xml-parse-dtd): Use xml-pe-reference-re.
9748         (xml-entity-or-char-ref-re): New defconst.
9749         (xml-parse-string, xml-substitute-special): Use it.
9751 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9753         * files.el (locate-dominating-file): Allow `name' to be a predicate.
9754         (find-file--read-only): New function.
9755         (find-file-read-only, find-file-read-only-other-window)
9756         (find-file-read-only-other-frame): Use it.
9757         (insert-file-contents-literally): Don't `fset'.
9758         (get-free-disk-space): Use locate-dominating-file.
9760         * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
9761         function is already compiled.
9763         * xml.el (xml-name-regexp): Remove, redundant.  Use xml-name-re.
9765 2012-07-03  Michael Albinus  <michael.albinus@gmx.de>
9767         * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
9768         files on the same host.
9770 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
9772         * help-fns.el (describe-function-1): Only call
9773         help-fns--autoloaded-p when we have a file name.  (Bug#11848)
9775 2012-07-03  Chong Yidong  <cyd@gnu.org>
9777         * xml.el: Protect parser against XML bombs.
9778         (xml-entity-expansion-limit): New variable.
9779         (xml-parse-string, xml-substitute-special): Use it.
9780         (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
9782 2012-07-03  Glenn Morris  <rgm@gnu.org>
9784         * progmodes/bug-reference.el (bug-reference-bug-regexp):
9785         Allow linking to specific messages in debbugs reports (eg 123#5).
9787 2012-07-02  Chong Yidong  <cyd@gnu.org>
9789         * xml.el: Fix entity and character reference expansion, allowing
9790         them to expand into markup as per XML spec.
9791         (xml-default-ns): New variable.
9792         (xml-entity-alist): Use XML spec definitions for lt and amp.
9793         (xml-parse-region): Make first two arguments optional.
9794         Discard text properties.
9795         (xml-parse-tag-1): New function, spun off from xml-parse-tag.
9796         All callers changed.
9797         (xml-parse-tag): Call xml-parse-tag-1.  For backward
9798         compatibility, this function should not modify buffer contents.
9799         (xml-parse-tag-1): Fix opening-tag regexp.
9800         (xml-parse-string): Rewrite, handling entity and character
9801         references properly.
9802         (xml--entity-replacement-text): Signal an error if a parameter
9803         entity is undefined.
9805 2012-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9807         * comint.el (comint-output-filter): Filter out repeated prompts.
9809         * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
9810         and file-name-absolute-p.
9811         (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
9812         internal calls.
9814 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
9816         Spelling fixes.
9817         * emacs-lisp/bytecomp.el (byte-compile--reify-function):
9818         Rename from byte-compile--refiy-function.  All uses changed.
9820 2012-07-01  Chong Yidong  <cyd@gnu.org>
9822         * xml.el (xml--parse-buffer): New function.  Move most of
9823         xml-parse-region here.
9824         (xml-parse-region): Copy region into a temporary buffer, since
9825         parameter entity substitution requires changing buffer contents.
9826         Use xml--parse-buffer.
9827         (xml-parse-file): Use xml--parse-buffer.
9828         (xml-parse-dtd): Make parameter entity substitution work right.
9829         Use proper regexps for ELEMENT declarations (Bug#7172).
9831 2012-06-30  Glenn Morris  <rgm@gnu.org>
9833         * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
9835         * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
9836         Remove outdated and unnecessary dbus declarations.
9838 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
9840         * emacs-lisp/timer.el (timer-until): Subtract results of
9841         float-time, instead of taking float-time of the result of
9842         time-subtract, since float-time signals an error for negative time
9843         arguments.
9845 2012-06-30  Chong Yidong  <cyd@gnu.org>
9847         * xml.el (xml-*-re): Convert defvars into defconsts, and
9848         eval-and-compile them so eval-and-compile works on derivatives.
9849         (xml--entity-replacement-text): Use eval-and-comple.
9851 2012-06-30  Michael Albinus  <michael.albinus@gmx.de>
9853         * vc/vc-git.el (vc-git-registered): Use cache property
9854         `git-registered'.
9855         (vc-git-mode-line-string): Call `vc-working-revision' instead of
9856         `vc-git-working-revision' in order to benefit from the cache.
9857         (vc-git-root): Use cache property `git-root'.  (Bug#11757)
9859 2012-06-30  Dmitry Gutov  <dgutov@yandex.ru>
9861         * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
9862         removed (likely outside Emacs).  (Bug#11757)
9864 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9866         * emacs-lisp/cl-lib.el: Require macroexp.
9868 2012-06-30  Chong Yidong  <cyd@gnu.org>
9870         * xml.el: Implement XML parameter entities.
9871         (xml-parameter-entity-alist): New variable.
9872         (xml-parse-region, xml-parse-fragment): Preserve previous values
9873         of xml-entity-alist and xml-parameter-entity-alist, so that
9874         repeated calls on different documents do not change them.
9875         (xml-parse-tag): Fix doctype regexp.
9876         (xml--entity-replacement-text): New function.
9877         (xml-parse-dtd): Use it.  Don't handle system entities; doing that
9878         properly requires url retrieval which is unimplemented.
9879         (xml-escape-string): Doc fix.
9881 2012-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9883         * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
9885 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
9887         * fringe.el (fringe-mode): Doc fix.
9889 2012-06-29  Michael Albinus  <michael.albinus@gmx.de>
9891         * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
9892         is non-nil.
9893         (ange-ftp-ignore-errors-if-non-essential): New defmacro.
9894         (ange-ftp-file-name-all-completions): Use it.  (Bug#11808)
9896 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
9898         * calendar/cal-dst.el (calendar-current-time-zone):
9899         Return calendar-current-time-zone-cache if non-nil.
9901 2012-06-29  Masatake YAMATO  <yamato@redhat.com>
9903         * progmodes/which-func.el (which-func-format):
9904         Add mouse-face.  (Bug#11698)
9906 2012-06-29  Leo Liu  <sdl.web@gmail.com>
9908         * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
9910 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9912         * minibuffer.el (minibuffer-confirm-exit-commands):
9913         Add completion-at-point (bug#11725).
9915 2012-06-29  Glenn Morris  <rgm@gnu.org>
9917         * progmodes/f90.el (f90-font-lock-keywords-2):
9918         Add some preprocessor elements.  (Bug#10499)
9920 2012-06-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9922         * progmodes/cperl-mode.el (cperl-update-syntaxification):
9923         Use syntax-propertize (bug#11739).
9925 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
9927         * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
9929 2012-06-28  Julien Danjou  <julien@danjou.info>
9931         * term.el (term-handle-colors-array): Use a set of new faces to
9932         color the terminal.  Also uses :inverse-video property.
9933         (term-default-fg-color): Set to nil by default, deprecate in favor
9934         of `term-face'.
9935         (term-default-bg-color): Set to nil by default, deprecate in favor
9936         of `term-face'.
9937         (term-current-face): Use `term-face' by default.
9938         (term-bold-attribute): Variable deleted.
9940 2012-06-28  Glenn Morris  <rgm@gnu.org>
9942         * simple.el (completion-list-mode-finish):
9943         Don't use toggle-read-only.  (Since completion-list-mode has
9944         a special mode-class, it wasn't doing anything extra anyway.)
9946 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9948         Make inlining of other-mode interpreted functions work (bug#11799).
9949         * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
9950         (byte-compile): Use it to fix compilation of lexical-binding closures.
9951         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
9952         function, if needed.
9954 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9956         * help-mode.el (help-make-xrefs): Don't just withstand
9957         cyclic-variable-indirection but any error in documentation-property.
9959         * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
9960         memory use.
9961         * bindings.el (bindings--define-key): New function.
9962         * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
9963         * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
9964         * bindings.el: Use it to purecopy define-key bindings.
9966         * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
9968         * emacs-lisp/cl.el (flet): Mark obsolete.
9969         * emacs-lisp/cl-macs.el (cl-flet*): New macro.
9970         * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
9971         * progmodes/js.el (js-c-fill-paragraph):
9972         * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
9973         (ebrowse-switch-member-buffer-to-derived-class):
9974         * play/5x5.el (5x5-solver): Use cl-flet.
9976         * emacs-lisp/cl.el: Use lexical-binding.  Fix flet (bug#11780).
9977         (cl--symbol-function): New macro.
9978         (cl--letf, cl--letf*): Use it.
9980         * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
9981         Strip "toggle-" if any.
9983 2012-06-27  Glenn Morris  <rgm@gnu.org>
9985         * info.el (Info-default-directory-list): Move here from paths.el.
9986         * paths.el: Remove file, which is now empty.
9987         * loadup.el: No longer load "paths".
9989         * custom.el (custom-initialize-delay): Doc fix.
9991         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
9992         * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
9993         * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
9994         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
9995         * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
9996         * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
9997         * eshell/eshell.el (eshell-defgroup): Remove alias.
9999 2012-06-27  Chong Yidong  <cyd@gnu.org>
10001         * help.el (help-enable-auto-load): New variable.
10003         * help-fns.el (help-fns--autoloaded-p): New function.
10004         (describe-function-1): Refer to a function as "autoloaded" if it
10005         was autoloaded at any time in the past.  Perform autoloading if
10006         help-enable-auto-load is non-nil.
10008 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
10010         * makefile.w32-in (compile, compile-always): Depend on
10011         update-subdirs, not on subdirs.el.  Otherwise, several different
10012         sub-targets of 'bootstrap' running in parallel could
10013         simultaneously write to subdirs.el, producing a garbled file.
10015 2012-06-26  Sam Steingold  <sds@gnu.org>
10017         * files.el (file-name-base): New convenience function.
10018         * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
10019         * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
10020         * progmodes/cc-defs.el, progmodes/cperl-mode.el:
10021         * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
10022         * textmodes/ispell.el, textmodes/reftex-ref.el:
10023         * textmodes/tex-mode.el: Use it.
10024         Did not touch cedet and org because they are maintained elsewhere.
10026 2012-06-26  Martin Rudalics  <rudalics@gmx.at>
10028         * calendar/calendar.el (calendar-exit): Don't try to delete or
10029         iconify last frame.  See:
10030         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
10032 2012-06-25  Jim Diamond  <Jim.Diamond@AcadiaU.ca>  (tiny change)
10034         * server.el (server-process-filter): Remember dir in the
10035         process's `server-client-directory' properties.
10037 2012-06-24  Chong Yidong  <cyd@gnu.org>
10039         * xml.el (xml-parse-tag): Correctly handle comment embedded in
10040         non-tag text.
10042 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
10044         * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
10046 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10048         * help-fns.el (describe-variable): Don't croak when doc is not found.
10049         * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
10050         * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
10051         * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
10052         * emacs-lisp/smie.el (smie-next-sexp): CSE.
10053         * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
10054         ((lambda ..) ..).
10055         * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
10057 2012-06-23  Chong Yidong  <cyd@gnu.org>
10059         * info.el (Info-mouse-follow-link): Accept symbol values of
10060         link-args.  Select window; suggested by Gerhard Kahl (Bug#11672).
10061         (Info-fontify-node): Use Info-link-keymap for all navigation
10062         buttons, with link-args property to perform the desired action.
10063         (Info-link-keymap): Doc fix.
10064         (Info-next-link-keymap, Info-prev-link-keymap)
10065         (Info-up-link-keymap): Delete now-unused keymaps.
10067 2012-06-23  Chong Yidong  <cyd@gnu.org>
10069         * mouse.el (mouse-drag-track): Deactivate the mark before popping.
10071         * progmodes/python.el (python-skeleton-define): Mark abbrevs as
10072         system abbrevs.
10074         * ansi-color.el (ansi-color-apply-on-region): Doc fix.
10076 2012-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10078         * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
10079         (bug#11719).
10081         * minibuffer.el (completion--twq-try): Try to fail more gracefully when
10082         the requote function doesn't work properly (bug#11714).
10084 2012-06-23  Glenn Morris  <rgm@gnu.org>
10086         * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
10088 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10090         Further GV/CL cleanups.
10091         * emacs-lisp/gv.el (gv-get): Autoload functions to find their
10092         gv-expander.
10093         (gv--defun-declaration): New function.
10094         (defun-declarations-alist): Use it.
10095         (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
10096         (gv-place): Autoload.
10097         * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
10098         original definition of dotimes and dolist.
10099         * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
10100         (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
10101         * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
10102         (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10103         (cl-ninth, cl-tenth): Move gv handler to the function's definition.
10104         * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
10105         to the function's definition.
10106         * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
10107         * window.el:
10108         * files.el:
10109         * faces.el:
10110         * env.el: Don't use CL.
10112 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10114         Support higher-resolution time stamps (Bug#9000).
10116         * calendar/time-date.el (with-decoded-time-value): New arg
10117         PICO-SYMBOL in VARLIST.  It's optional, for backward compatibility.
10118         (encode-time-value): New optional arg PICO.  New type 3.
10119         (time-to-seconds) [!float-time]: Support the new picoseconds
10120         component if it's used.
10121         (seconds-to-time, time-subtract, time-add):
10122         Support ps-resolution time stamps as well.
10124         * emacs-lisp/timer.el (timer): New component psecs.  All uses changed.
10125         (timerp): Timer vectors now have length 9, not 8.
10126         (timer--time): Support new-style (4-part) time stamps.
10127         (timer-next-integral-multiple-of-time): Time stamps now have
10128         picosecond resolution, so take a bit more care about rounding.
10129         (timer-relative-time, timer-inc-time): New optional arg psecs.
10130         (timer-set-time-with-usecs): Set psecs to 0.
10131         (timer--activate): Check psecs component, too.
10133         * proced.el (proced-time-lessp): Support ps-resolution stamps.
10135 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10137         * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
10138         Move the non-essential binding to the post/pre-command-hook where it is
10139         more obviously correct.
10141         * subr.el (read-passwd): Don't use a history at all.
10142         * savehist.el (savehist-save): Remove password saved accidentally
10143         because of the above bug.
10145 2012-06-22  Bastien Guerry  <bzg@gnu.org>
10147         * files.el (toggle-read-only): Display a message telling whether
10148         the buffer is read-only or not (bug#11726).
10150 2012-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10152         * emacs-lisp/gv.el: New file.
10153         * subr.el (push, pop): Extend to generalized variables.
10154         * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
10155         * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
10156         * emacs-lisp/cl-macs.el: Require gv.  Use gv-define-setter,
10157         gv-define-simple-setter, and gv-define-expander.
10158         Remove setf-methods defined in gv.  Rename cl-setf -> setf.
10159         (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
10160         (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
10161         (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
10162         (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
10163         gv-letplace.
10164         (cl-defstruct): Don't define setf-method any more.
10165         * emacs-lisp/cl.el (flet): Don't autoload.
10166         (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
10167         (define-setf-expander, defsetf, define-modify-macro)
10168         (cl-struct-setf-expander): Move from cl-lib.el.
10169         * emacs-lisp/syntax.el:
10170         * emacs-lisp/ewoc.el:
10171         * emacs-lisp/smie.el:
10172         * emacs-lisp/cconv.el:
10173         * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
10174         (timer--time): Use gv-define-simple-setter.
10175         * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
10176         to avoid coding-system problems in subr.el.  Adjust all users.
10177         (macroexp--maxsize, macroexp-small-p): New functions.
10178         * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
10179         * scroll-bar.el (scroll-bar-mode):
10180         * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
10181         (normal-erase-is-backspace-mode): Don't use the `eq' place.
10182         * winner.el (winner-configuration, winner-make-point-alist)
10183         (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
10184         * files.el (locate-file-completion-table): Avoid list*.
10186 2012-06-22  Chong Yidong  <cyd@gnu.org>
10188         * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
10189         (dired-create-files): Doc fix (Bug#11329).
10190         (dired-do-copy): Doc fix (Bug#11334).
10191         (dired-mark-read-string): Doc fix (Bug#11553).
10193         * dired.el (dired-recursive-copies, dired-recursive-deletes):
10194         Doc fix (Bug#11326).
10195         (dired-make-relative): Doc fix (Bug#11332).  Remove unused arg.
10196         (dired-dwim-target): Doc fix.
10198         * wdired.el (wdired-mode): Doc fix.
10200 2012-06-22  Glenn Morris  <rgm@gnu.org>
10202         * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
10203         (pcmpl-rpm-cache-stamp-file): New constant.
10204         (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
10205         (pcmpl-rpm-packages): Optionally cache list of packages.
10207         * pcmpl-rpm.el (pcmpl-rpm): New group.
10208         (pcmpl-rpm-query-options): New option.
10209         (pcmpl-rpm-packages): No need to inline it.
10210         Use pcmpl-rpm-query-options.
10212         * calendar/calendar.el (calendar-in-read-only-buffer):
10213         Avoid some needless mode changes.
10215 2012-06-21  Chong Yidong  <cyd@gnu.org>
10217         * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
10218         (desktop-path): Remove . from the default value (Bug#10977).
10219         (desktop-read): Use user-emacs-directory if desktop-path is nil.
10221 2012-06-20  Chong Yidong  <cyd@gnu.org>
10223         * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
10225 2012-06-20  David Röthlisberger  <david@rothlis.net>  (tiny change)
10227         * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
10228         (bug#11201).
10230 2012-06-20  Chong Yidong  <cyd@gnu.org>
10232         * term.el (term-window-width): Handle the case of a missing right
10233         fringe (Bug#8837).
10234         (term-check-size): Use window-text-height (Bug#5445).
10235         (term-mode): Use define-derived-mode.  Minor cleanups.
10236         Set font-lock-defaults (Bug#7692).
10237         (term-move-columns, term-insert-char, term-emulate-terminal)
10238         (term-erase-in-line, term-insert-spaces): Use font-lock-face.
10240 2012-06-20  Michael Albinus  <michael.albinus@gmx.de>
10242         * net/ange-ftp.el (ange-ftp-get-passwd):
10243         Bind `enable-recursive-minibuffers'.
10244         (ange-ftp-get-process): Throw if `non-essential' is non-nil.
10246 2012-06-19  David Röthlisberger  <david@rothlis.net>  (tiny change)
10248         * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
10250 2012-06-19  Glenn Morris  <rgm@gnu.org>
10252         * progmodes/python.el (python-mode): Derive from prog-mode.
10254 2012-06-19  Kevin Gallagher  <Kevin.Gallagher@boeing.com>
10256         * emulation/edt.el (edt-default-menu-bar-update-buffers)
10257         (edt-user-menu-bar-update-buffers): New functions.
10258         (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
10260 2012-06-19  Chong Yidong  <cyd@gnu.org>
10262         * subr.el (with-selected-window): Preserve the selected window's
10263         terminal's top-frame (Bug#4702).
10265         * window.el (save-selected-window): Likewise.
10267 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10269         * progmodes/python.el (python-rx-constituents): Move backquote.
10270         (python-skeleton-define, python-define-auxiliary-skeleton):
10271         Use `declare'.
10273 2012-06-18  Michael Albinus  <michael.albinus@gmx.de>
10275         * minibuffer.el (read-file-name-default): Revert the patch from
10276         2012-06-17.
10278 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10280         * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
10281         (pcase--u1, pcase--q1): Don't use apply-partially.
10283 2012-06-18  Glenn Morris  <rgm@gnu.org>
10285         * progmodes/python.el (python-proc, python-buffer)
10286         (python-send-receive, python-send-string): Fix obsolete versions.
10288 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
10290         * window.el (special-display-p): Completely remove stringp
10291         check.  Suggested by Andreas Schwab <schwab@linux-m68k.org>.
10293 2012-06-17  Michael Albinus  <michael.albinus@gmx.de>
10295         * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
10297         * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
10299         * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
10300         * net/tramp-sh.el (tramp-maybe-open-connection):
10301         Throw if `non-essential' is non-nil.
10303 2012-06-17  Martin Rudalics  <rudalics@gmx.at>
10305         * window.el (special-display-p): Signal an error if BUFFER-NAME
10306         is not a string (Bug#11713).
10308 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
10310         * progmodes/python.el (python-info-beginning-of-backslash):
10311         Rename from python-info-beginning-of-backlash, as a spelling fix.
10313 2012-06-17  Chong Yidong  <cyd@gnu.org>
10315         * term.el (term-emulate-terminal): If term-check-size is called,
10316         move point to the process mark without resetting point (Bug#4635).
10318 2012-06-17  Glenn Morris  <rgm@gnu.org>
10320         * international/mule-cmds.el (mule-menu-keymap)
10321         (set-language-environment, set-locale-environment): Doc tweaks.
10323 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
10325         * cus-face.el (custom-face-attributes): Add wave-style underline
10326         attribute.
10327         * faces.el (set-face-attribute): Update docstring to describe
10328         wave-style underline attribute.
10330 2012-06-16  Chong Yidong  <cyd@gnu.org>
10332         * term/xterm.el (terminal-init-xterm): Discard input before
10333         querying background mode (Bug#10959).
10335 2012-06-16  Stefan Merten  <smerten@oekonux.de>
10337         * textmodes/rst.el: Added and corrected some comments.
10338         (rst-re-alist-def): Improve symbol syntax.
10339         (rst-mode-syntax-table): Correct syntax entries.
10340         (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
10341         (rst-official-version, rst-official-cvs-rev): Update version
10342         information.
10344 2012-06-15  Juanma Barranquero  <lekktu@gmail.com>
10346         * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
10347         in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
10349 2012-06-15  Fabián Ezequiel Gallina  <fgallina@cuca>
10351         * progmodes/python.el: New python.el merge.
10352         (python-guess-indent): Obsolete var.
10353         (python-indent-guess-indent-offset): New defcustom.
10354         (python-indent): Obsolete var.
10355         (python-indent-offset): New defcustom.
10356         (python-python-command, python-jython-command): Delete var.
10357         (python-shell-interpreter): New defcustom.
10358         (python-pdbtrack-do-tracking-p): Delete var.
10359         (python-pdbtrack-activate): New defcustom.
10360         (python-use-skeletons): Obsolete var.
10361         (python-skeleton-autoinsert): New defcustom.
10362         (inferior-python-filter-regexp, python-continuation-offset)
10363         (python-honour-comment-indentation, python-indent-string-contents)
10364         (python-jython-packages, python-mode-hook)
10365         (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
10366         (python-shell-prompt-alist)
10367         (python-source-modes): Delete defcustoms.
10368         (python-check-buffer-name, python-eldoc-setup-code)
10369         (python-eldoc-string-code, python-ffap-setup-code)
10370         (python-ffap-string-code, python-fill-comment-function)
10371         (python-fill-decorator-function, python-fill-paren-function)
10372         (python-fill-string-function, python-imenu-include-defun-type)
10373         (python-imenu-make-tree, python-imenu-subtree-root-label)
10374         (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
10375         (python-shell-compilation-regexp-alist)
10376         (python-shell-completion-module-string-code)
10377         (python-shell-completion-pdb-string-code)
10378         (python-shell-completion-setup-code)
10379         (python-shell-completion-string-code)
10380         (python-shell-enable-font-lock, python-shell-exec-path)
10381         (python-shell-extra-pythonpaths)
10382         (python-shell-internal-buffer-name, python-shell-interpreter-args)
10383         (python-shell-process-environment)
10384         (python-shell-prompt-block-regexp)
10385         (python-shell-prompt-output-regexp)
10386         (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
10387         (python-shell-send-setup-max-wait, python-shell-setup-codes)
10388         (python-shell-virtualenv-path): New defcustoms.
10389         (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
10390         (inferior-python-mode-syntax-table, python--prompt-regexp)
10391         (python-buffer, python-command python-python-command)
10392         (python-default-template, python-imports, python-indent-index)
10393         (python-indent-list, python-indent-list-length)
10394         (python-mode-running, python-pdbtrack-is-tracking-p)
10395         (python-preoutput-continuation, python-preoutput-leftover)
10396         (python-preoutput-result, python-preoutput-skip-next-prompt)
10397         (python-prev-dir/file, python-recursing)
10398         (python-saved-check-command, python-version-checked)
10399         (python-which-func-length-limit)
10400         (view-return-to-alist): Delete vars.
10401         (python-check-custom-command, python-dotty-syntax-table)
10402         (python-imenu-index-alist, python-indent-current-level)
10403         (python-indent-dedenters, python-indent-levels)
10404         (python-nav-beginning-of-defun-regexp)
10405         (python-nav-list-defun-positions-cache)
10406         (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
10407         (python-shell-internal-buffer)
10408         (python-skeleton-available): New vars.
10409         (def-python-skeleton): Delete macro.
10410         (python-skeleton-define): New macro.
10411         (python-define-auxiliary-skeleton, python-rx): New macros.
10412         (python-insert-class): Delete command.
10413         (python-skeleton-class): New command.
10414         (python-insert-def): Delete command.
10415         (python-skeleton-def): New command.
10416         (python-insert-for): Delete command.
10417         (python-skeleton-for): New command.
10418         (python-insert-if): Delete command.
10419         (python-skeleton-if): New command.
10420         (python-insert-try/except, python-insert-try/finally): Delete commands.
10421         (python-skeleton-try): New command.
10422         (python-insert-while): Delete command.
10423         (python-skeleton-while): New command.
10424         (python-backspace): Delete command.
10425         (python-indent-dedent-line-backspace): New command.
10426         (python-electric-colon): Delete command.
10427         (python-indent-electric-colon): New command.
10428         (python-guess-indent): Delete command.
10429         (python-indent-guess-indent-offset): New command.
10430         (python-shift-left): Delete command.
10431         (python-indent-shift-left): New command.
10432         (python-shift-right): Delete command.
10433         (python-indent-shift-right): New command.
10434         (python-find-function): Delete command.
10435         (python-nav-jump-to-defun): New command.
10436         (python-next-statement): Delete command.
10437         (python-nav-forward-sentence): New command.
10438         (python-previous-statement): Delete command.
10439         (python-nav-backward-sentence): New command.
10440         (python-fill-paragraph): Delete command.
10441         (python-fill-paragraph-function): New command.
10442         (python-send-buffer): Delete command.
10443         (python-shell-send-buffer): New command.
10444         (python-send-defun): Delete command.
10445         (python-shell-send-defun): New command.
10446         (python-send-region, python-send-region-and-go): Delete commands.
10447         (python-shell-send-region)
10448         (python-shell-switch-to-shell): New commands.
10449         (python-send-string): Delete command.
10450         (python-shell-send-string): New command.
10451         (python-switch-to-python): Delete command.
10452         (python-shell-switch-to-shell): New command.
10453         (python-describe-symbol): Delete command.
10454         (python-eldoc-at-point): New command.
10455         (python--set-prompt-regexp, python-args-to-list)
10456         (python-after-info-look, python-check-version)
10457         (python-check-comint-prompt, python-find-imports)
10458         (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
10459         (python-unload-function, python-expand-template)
10460         (python-maybe-jython, python-preoutput-filter)
10461         (python-pdbtrack-get-source-buffer)
10462         (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
10463         (python-pdbtrack-toggle-stack-tracking)
10464         (python-pdbtrack-track-stack-file, python-initial-text)
10465         (python-first-word, python-comment-line-p, python-send-command)
10466         (python-setup-brm, python-sentinel, python-set-proc)
10467         (python-skip-out, python-input-filter, python-outdent-p)
10468         (python-outline-level, python-backslash-continuation-line-p)
10469         (python-end-of-block, python-end-of-statement, python-mark-block)
10470         (python-beginning-of-block, python-beginning-of-statement)
10471         (python-blank-line-p, python-beginning-of-string)
10472         (python-open-block-statement-p): Delete functions.
10473         (python-indent-line, python-indent-line-1): Delete functions.
10474         (python-indent-line): New function.
10475         (python-indentation-levels): Delete function.
10476         (python-indent-calculate-levels): New function.
10477         (python-proc): Delete function.
10478         (python-shell-get-process): New function.
10479         (python-send-receive): Delete function.
10480         (python-shell-send-string-no-output): New function.
10481         (python-module-path): Delete function.
10482         (python-ffap-module-path): New function.
10483         (python-completion-at-point)
10484         (python-symbol-completions): Delete functions.
10485         (python-completion-complete-at-point): New function.
10486         (python-load-file): Delete function.
10487         (python-shell-send-file): New function.
10488         (python-calculate-indentation): Delete function.
10489         (python-indent-calculate-indentation): New function.
10490         (python-skip-comments/blanks): Delete function.
10491         (python-util-forward-comment): New function.
10492         (python-continuation-line-p): Delete function.
10493         (python-info-continuation-line-p): New function.
10494         (python-which-func, python-current-defun): Delete function.
10495         (python-info-current-defun): New function.
10496         (python-beginning-of-defun): Delete function.
10497         (python-nav-beginning-of-defun): New function.
10498         (python-close-block-statement-p)
10499         (python-block-end-p): Delete function.
10500         (python-info-closing-block): New function.
10501         (python-comint-output-filter-function)
10502         (python-eldoc--get-doc-at-point, python-end-of-defun-function)
10503         (python-fill-comment, python-fill-decorator, python-fill-paren)
10504         (python-fill-string, python-imenu-make-element-tree)
10505         (python-imenu-make-tree, python-imenu-tree-assoc)
10506         (python-indent-context, python-indent-dedent-line)
10507         (python-indent-line-function)
10508         (python-indent-post-self-insert-function)
10509         (python-indent-toggle-levels)
10510         (python-info-assignment-continuation-line-p)
10511         (python-info-beginning-of-backlash)
10512         (python-info-block-continuation-line-p)
10513         (python-info-closing-block-message)
10514         (python-info-line-ends-backslash-p)
10515         (python-info-looking-at-beginning-of-defun)
10516         (python-info-ppss-context, python-info-ppss-context-type)
10517         (python-nav-list-defun-positions, python-nav-read-defun)
10518         (python-nav-sentence-end, python-nav-sentence-start)
10519         (python-pdbtrack-comint-output-filter-function)
10520         (python-pdbtrack-set-tracked-buffer)
10521         (python-shell-calculate-exec-path)
10522         (python-shell-calculate-process-environment)
10523         (python-shell-completion--do-completion-at-point)
10524         (python-shell-completion--get-completions)
10525         (python-shell-completion-complete-at-point)
10526         (python-shell-completion-complete-or-indent)
10527         (python-shell-get-or-create-process)
10528         (python-shell-get-process-name)
10529         (python-shell-internal-get-or-create-process)
10530         (python-shell-internal-get-process-name)
10531         (python-shell-internal-send-string, python-shell-make-comint)
10532         (python-shell-parse-command, python-shell-send-setup-code)
10533         (python-skeleton-add-menu-items)
10534         (python-util-clone-local-variables, python-util-position)
10535         (run-python-internal, python-indentation-levels)
10536         (python-nav-beginning-of-defun)
10537         (python-completion-complete-at-point): New functions.
10538         (run-python): Change arguments.  New API requirements.
10540 2012-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10542         * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
10543         (bug#11649).
10545         * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
10546         (macroexp--expand-all): Use it.
10548         * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
10549         (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
10550         Use `cl-function' instead.
10552 2012-06-14  Juanma Barranquero  <lekktu@gmail.com>
10554         * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
10555         Suggested by Stefan Monnier while discussing bug#11657.
10557 2012-06-14  Sam Steingold  <sds@gnu.org>
10559         * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
10561 2012-06-14  Andreas Schwab  <schwab@linux-m68k.org>
10563         * play/doctor.el (doctor-doc): Remove parameter and use
10564         doctor-sent instead of sent.
10565         (doctor-read-print): Use doctor-sent instead of sent.  (Bug#11708)
10567 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10569         * files.el: Require cl-lib.
10570         (file-name-non-special): Replace case -> cl-case.
10572         * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
10574         * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
10575         mapping from #' to function*.
10577 2012-06-13  Chong Yidong  <cyd@gnu.org>
10579         * mouse.el (mouse-drag-track): Do not set the mark if the user
10580         releases the mouse without selecting anything (Bug#11588).
10582 2012-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
10584         * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
10585         as well (bug#11646).
10587         * loadup.el: Count byte-code functions as well.
10589         * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
10590         * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
10592         * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
10593         (bug#11649).  Add cl-defun and cl-defmacro.
10595 2012-06-13  Drew Adams  <drew.adams@oracle.com>
10597         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10598         Fix last change.
10600 2012-06-13  Michael Albinus  <michael.albinus@gmx.de>
10602         * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
10603         Otherwise, it blocks in batch mode.
10605 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
10607         * help-mode.el (bookmark-make-record-default): Declare.
10609 2012-06-13  Chong Yidong  <cyd@gnu.org>
10611         * emacs-lisp/package.el (list-packages): Compute a list of
10612         packages that are newly-available since the last list-packages
10613         invocation.
10614         (package-menu--new-package-list): New var.
10615         (package-menu--generate, package-menu--print-info)
10616         (package-menu--status-predicate, package-menu-mark-install):
10617         Handle new status label "new".
10619 2012-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10621         * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
10622         conversion to backquotes.
10624 2012-06-12  Chong Yidong  <cyd@gnu.org>
10626         * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
10627         Rename from gud-inhibit-global-bindings.
10629         * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
10631         * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
10632         hook from nxml-glyph-set-hook.
10634         * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
10635         declaration.
10637         * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
10639         * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
10640         Convert to defcustom.
10642 2012-06-12  Drew Adams  <drew.adams@oracle.com>
10644         * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
10645         New functions.
10646         (help-mode): Use them.
10648 2012-06-11  Glenn Morris  <rgm@gnu.org>
10650         * progmodes/fortran.el (fortran-font-lock-keywords-3):
10651         Use preprocessor face for directives.
10652         (fortran-directive-re): Doc fix.
10654 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10656         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
10657         conversion to backquotes (bug#11652).
10659         Fix compiler-expansion of CL's cXXr functions (bug#11673).
10660         * emacs-lisp/cl-lib.el (cl--defalias): New function.
10661         (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
10662         (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
10663         (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
10664         (cl-ninth, cl-tenth): Mark them as inlinable.
10665         (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
10666         (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
10667         (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
10668         (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
10669         Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
10670         (cl-list*, cl-adjoin): Don't put an autoload manually.
10671         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
10672         (cl--compiler-macro-list*): Add autoload cookie.
10673         (cl--compiler-macro-cXXr): New function.
10675         * help-fns.el (help-fns--compiler-macro): New function extracted from
10676         describe-function-1; follow aliases and use `compiler-macro' property.
10677         (describe-function-1): Use it.
10679 2012-06-11  Chong Yidong  <cyd@gnu.org>
10681         * startup.el (fancy-splash-head): Use splash.svg even if librsvg
10682         is uninstalled, if imagemagick is installed.
10684 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10686         * emacs-lisp/cl-lib.el: Use lexical-binding.
10687         (cl-map-extents, cl-maclisp-member): Remove.
10688         (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
10689         (cl--set-substring, cl--block-wrapper, cl--block-throw)
10690         (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
10691         * emacs-lisp/cl-extra.el: Use lexical-binding.
10692         (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
10693         (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
10694         (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
10695         (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
10696         * emacs-lisp/cl-seq.el: Use lexical-binding.
10697         (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
10698         (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
10699         (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
10700         * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
10701         * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
10702         CL's internals.
10704 2012-06-11  Michael Albinus  <michael.albinus@gmx.de>
10706         Sync with Tramp 2.2.6-pre.
10708         * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
10709         `print-length' and `print-level' to nil, in order to avoid
10710         truncation.  Reported by Christopher Schmidt
10711         <christopher@ristopher.com>.
10713         * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
10715         * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
10716         New defmacro.
10717         (tramp-compat-copy-directory): Add optional argument
10718         COPY-CONTENTS.  It is not handled yet.
10720         * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
10721         (tramp-ftp-file-name-p): Simplify.
10723         * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
10724         * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
10725         connection vector.
10727         * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
10728         (tramp-methods): Do not use `tramp-password-end-of-line'.
10729         (tramp-completion-function-alist-putty): Handle UNIX case.
10730         (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
10731         (tramp-do-file-attributes-with-stat)
10732         (tramp-do-directory-files-and-attributes-with-stat) Return uid and
10733         gid as real numbers.  They could run out of integer range on cygwin.
10734         (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
10735         (tramp-sh-handle-expand-file-name): Handle hops.
10736         (tramp-open-connection-setup-interactive-shell):
10737         Use `tramp-cleanup'.  Move check for busyboxes ...
10738         (tramp-find-shell): ... here.  Simplify implementation.
10739         Set "remote-shell" property also for alternative shells.
10740         (tramp-remote-coding-commands): Check "test -c /dev/stdout".
10741         If failing, a regular file would be written otherwise.
10742         Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
10743         (tramp-find-inline-encoding): Cache the coding commands in the
10744         process cache.  Apply test command on the remote side, if defined.
10745         (tramp-find-inline-compress): Cache the compress commands in the
10746         process cache.
10747         (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
10748         when requested.  Handle hops.
10749         (tramp-current-connection): New defvar.
10750         (tramp-maybe-open-connection): Use `tramp-cleanup'.
10751         Throw `suppress', if there was a failed connection shortly before.
10752         Handle user interrupt.  (Bug#10187)
10753         (tramp-get-inline-compress, tramp-get-inline-coding):
10754         Read connection properties from the process cache.
10756         * net/tramp-smb.el (tramp-smb-server-version)
10757         (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
10758         New defconsts.
10759         (tramp-smb-prompt): Extend for powershell prompt.
10760         (tramp-smb-file-name-handler-alist): Add handlers for
10761         `process-file', `shell-command' and `start-file-process'.
10762         (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
10763         (tramp-smb-winexe-shell-command-switch): New defcustoms.
10764         (tramp-smb-file-name-p): Simplify.
10765         (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
10766         (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
10767         (tramp-smb-shell-quote-argument): New defuns.
10768         (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
10769         Implement using "tar".  By this, time-stamps are preserved.
10770         (tramp-smb-handle-copy-file): Handle also the case of directories.
10771         (tramp-smb-do-file-attributes-with-stat)
10772         (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
10773         Use `tramp-get-connection-buffer').
10774         (tramp-smb-handle-rename-file): Use "rename", when source and
10775         target are on the same share.
10776         (tramp-smb-maybe-open-connection): Handle wrong passwords.
10777         Use `tramp-smb-server-version'.
10778         (tramp-smb-wait-for-output): Remove prompt.
10780         * net/tramp.el (top): Require 'cl.
10781         (tramp-methods, tramp-rsh-end-of-line):
10782         Remove `tramp-password-end-of-line' from docstring.
10783         (tramp-save-ad-hoc-proxies): New defcustom.
10784         (tramp-completion-function-alist): Adapt docstring.
10785         (tramp-default-password-end-of-line): Remove defcustom.
10786         (tramp-shell-prompt-pattern): Allow "[]" style prompts.  (Bug#11065)
10787         (tramp-user-regexp, tramp-file-name-regexp-unified)
10788         (tramp-file-name-regexp-url): Extend regexp by hop separator.
10789         (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
10790         (tramp-remote-file-name-spec-regexp): New defconst.
10791         (tramp-file-name-structure): Extend structure for hops.
10792         (tramp-get-method-parameter): Move up.
10793         (tramp-file-name-p, tramp-dissect-file-name)
10794         (with-parsed-tramp-file-name): Handle hops.
10795         (tramp-file-name-hop): New defun.
10796         (tramp-make-tramp-file-name): New optional arg HOP.
10797         (tramp-message-show-progress-reporter-message): New defvar.
10798         (tramp-with-progress-reporter): Use it.  We cannot use
10799         `tramp-message-show-message' here, because this suppresses also
10800         error buffers.
10801         (tramp-error-with-buffer): Suppress buffer view, if
10802         `tramp-message-show-message' is nil.
10803         Use `tramp-get-connection-buffer'.
10804         (tramp-cleanup): New defun.
10805         (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
10806         (tramp-file-name-handler): If `debug-on-error' is set, propagate
10807         an error unchanged.
10808         (tramp-completion-handle-file-name-all-completions): Handle hops.
10809         Fix an error when called from ido.
10810         (tramp-completion-dissect-file-name): Use better local variable
10811         name.  Add hop to the vector.
10812         (tramp-handle-insert-file-contents): Use progress-reporter for the
10813         whole scenario.
10814         (tramp-action-password): Let-bind `enable-recursive-minibuffers'
10815         to `t'.
10816         (tramp-check-for-regexp): Simplify search.
10817         (tramp-enter-password): Remove it.  Move implementation ...
10818         (tramp-action-password): ... here.
10819         (tramp-mode-string-to-int, tramp-local-host-p)
10820         (tramp-make-tramp-temp-file, tramp-read-passwd)
10821         (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
10822         Set tramp-autoload cookie.
10824         * net/trampver.el: Update release number.
10826 2012-06-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10827             Michael Albinus  <michael.albinus@gmx.de>
10829         * net/tramp.el (tramp-set-completion-function): Fix docstring.
10830         (tramp-parse-group, tramp-parse-file)
10831         (tramp-parse-shostkeys-sknownhosts): New defuns.
10832         (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
10833         (tramp-parse-shosts-group, tramp-parse-sconfig)
10834         (tramp-parse-sconfig-group, tramp-parse-shostkeys)
10835         (tramp-parse-sknownhosts, tramp-parse-hosts)
10836         (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
10837         Use them.
10838         (tramp-parse-passwd-group, tramp-parse-netrc-group)
10839         (tramp-parse-putty-group): Don't narrow.
10840         (tramp-parse-putty): Make a loop.
10841         (tramp-file-name-handler): Catch the `suppress' signal.
10843 2012-06-11  Chong Yidong  <cyd@gnu.org>
10845         * image.el (imagemagick-register-types): Put the ImageMagick entry
10846         at the end of image-type-file-name-regexps.
10848 2012-06-11  Johan Bockgård  <bojohan@gnu.org>
10850         * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
10851         (pcase, pcase-let*, pcase-dolist): Use them.
10853 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10855         * emacs-lisp/pcase.el (pcase--let*): New function.
10856         (pcase-let*): Use it.  Use pcase--memoize to avoid repeated expansions.
10857         (pcase--expand): Use macroexp-let².
10859 2012-06-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10861         * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
10862         * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
10863         * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
10864         * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
10865         * emacs-lisp/derived.el: Use pcase instead of `cl'.
10866         * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
10868 2012-06-10  Glenn Morris  <rgm@gnu.org>
10870         * mail/rmail.el (rmail-yank-current-message): Leave point at
10871         correct position.  (Bug#11660)
10873 2012-06-10  Chong Yidong  <cyd@gnu.org>
10875         * allout-widgets.el: Fix code header.
10877 2012-06-10  Chong Yidong  <cyd@gnu.org>
10879         * cus-edit.el (customize-changed-options-previous-release):
10880         Bump to 24.1.
10882 2012-06-09  Andreas Schwab  <schwab@linux-m68k.org>
10884         * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
10886 2012-06-09  Chong Yidong  <cyd@gnu.org>
10888         * ebuff-menu.el (electric-buffer-list): Preserve header line.
10890 2012-06-09  Martin Rudalics  <rudalics@gmx.at>
10892         * window.el (special-display-popup-frame): Don't use
10893         window--display-buffer (Bug#11651).
10895 2012-06-09  Eli Zaretskii  <eliz@gnu.org>
10897         Fix parallel builds: make sure loaddefs.el is not being written
10898         while Lisp files are compiled.
10899         (compile): Don't depend on 'mh-autoloads'.
10900         (compile-CMD, compile-SH): Depend on 'autoloads'.
10901         (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
10903         * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200.  (Bug#11649)
10905 2012-06-09  Chong Yidong  <cyd@gnu.org>
10907         * face-remap.el (face-remap-add-relative, face-remap-set-base)
10908         (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
10909         Doc fixes (Bug#11225).
10911 2012-06-09  Stefan Monnier  <monnier@iro.umontreal.ca>
10913         * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
10914         a function if there's a clear indication that it has a compiler-macro.
10915         * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
10916         (macro-declarations-alist): Add arglist to declaration functions.
10917         (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
10918         * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
10919         * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
10920         * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
10921         Also add autoload to find the compiler macro.
10922         * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
10923         (cl--compiler-macro-member, cl--compiler-macro-assoc)
10924         (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
10925         (cl--compiler-macro-get): New functions, replacing calls to
10926         cl-define-compiler-macro.
10927         (cl-typep) [compiler-macro]: Use macroexp-let².
10929 2012-06-08  Nick Dokos  <nicholas.dokos@hp.com>  (tiny change)
10931         * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
10932         string properly, fixes Bug#11473.
10934 2012-06-08  Chong Yidong  <cyd@gnu.org>
10936         * faces.el (set-face-attribute): Doc fix.
10937         (modify-face): Don't use :bold and :italic.
10938         (error, warning, success): Tweak definitions.
10940         * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
10941         (custom-modified, custom-set, custom-changed, custom-themed)
10942         (custom-saved, custom-button, custom-button-mouse)
10943         (custom-button-pressed, custom-state, custom-comment-tag)
10944         (custom-variable-tag, custom-group-tag-1, custom-group-tag)
10945         (custom-group-subtitle): Use new-style face specs.
10946         (custom-invalid-face, custom-rogue-face, custom-modified-face)
10947         (custom-set-face, custom-changed-face, custom-saved-face)
10948         (custom-button-face, custom-button-pressed-face)
10949         (custom-documentation-face, custom-state-face)
10950         (custom-comment-face, custom-comment-tag-face)
10951         (custom-variable-tag-face, custom-variable-button-face)
10952         (custom-face-tag-face, custom-group-tag-face-1)
10953         (custom-group-tag-face): Remove obsolete face alias.
10955         * epa.el (epa-validity-high, epa-validity-medium)
10956         (epa-validity-low, epa-mark, epa-field-name, epa-string)
10957         (epa-field-name, epa-field-body):
10958         * font-lock.el (font-lock-comment-face, font-lock-string-face)
10959         (font-lock-keyword-face, font-lock-builtin-face)
10960         (font-lock-function-name-face, font-lock-variable-name-face)
10961         (font-lock-type-face, font-lock-constant-face):
10962         * ido.el (ido-first-match, ido-only-match, ido-subdir)
10963         (ido-virtual, ido-indicator, ido-incomplete-regexp):
10964         * speedbar.el (speedbar-button-face, speedbar-file-face)
10965         (speedbar-directory-face, speedbar-tag-face)
10966         (speedbar-selected-face, speedbar-highlight-face)
10967         (speedbar-separator-face):
10968         * whitespace.el (whitespace-newline, whitespace-space)
10969         (whitespace-hspace, whitespace-tab, whitespace-trailing)
10970         (whitespace-line, whitespace-space-before-tab)
10971         (whitespace-space-after-tab, whitespace-indentation)
10972         (whitespace-empty):
10973         * emulation/cua-base.el (cua-global-mark):
10974         * eshell/em-prompt.el (eshell-prompt):
10975         * net/newst-plainview.el (newsticker-new-item-face)
10976         (newsticker-old-item-face, newsticker-immortal-item-face)
10977         (newsticker-obsolete-item-face, newsticker-date-face)
10978         (newsticker-statistics-face, newsticker-default-face):
10979         * net/newst-reader.el (newsticker-feed-face)
10980         (newsticker-extra-face, newsticker-enclosure-face):
10981         * net/newst-treeview.el (newsticker-treeview-face)
10982         (newsticker-treeview-new-face, newsticker-treeview-old-face)
10983         (newsticker-treeview-immortal-face)
10984         (newsticker-treeview-obsolete-face)
10985         (newsticker-treeview-selection-face):
10986         * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
10987         (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
10988         (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
10989         (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
10990         * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
10991         (nxml-outline-active-indicator, nxml-outline-ellipsis):
10992         * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
10993         (mpuz-text):
10994         * progmodes/vera-mode.el (vera-font-lock-number)
10995         (vera-font-lock-function, vera-font-lock-interface):
10996         * textmodes/table.el (table-cell): Use new-style face specs, and
10997         don't use the old :bold and :italic attributes.
10999         * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
11000         (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
11001         (ebrowse-member-class, ebrowse-progress): Likewise.
11002         (ebrowse-tree-mark-face, ebrowse-root-class-face)
11003         (ebrowse-file-name-face, ebrowse-default-face)
11004         (ebrowse-member-attribute-face, ebrowse-member-class-face)
11005         (ebrowse-progress-face): Remove obsolete faces.
11007         * progmodes/flymake.el (flymake-errline, flymake-warnline):
11008         Inherit from error and warning faces respectively.
11010         * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
11011         Likewise.
11012         (flyspell-incorrect-face, flyspell-duplicate-face):
11013         Remove obsolete aliases.
11015 2012-06-08  Michael Albinus  <michael.albinus@gmx.de>
11017         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11018         Avoid infloop.
11020 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11022         * startup.el (argv, argi): Make lexically scoped.
11023         * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
11024         * emacs-lisp/cl-macs.el: Use lexical-binding.
11025         Rename cl-bind-* to cl--bind-*.
11026         * files.el: Don't require `cl' since it doesn't use it.
11027         * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
11029 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
11031         * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
11032         (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
11033         instead of calling external sort utility.
11034         (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
11036 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
11038         * descr-text.el (describe-char): Mention how to insert the
11039         character, if the current input method doesn't support it.
11040         See the discussion in this thread for the details:
11041         http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
11043 2012-06-08  Sam Steingold  <sds@gnu.org>
11045         * bindings.el (global-map): Bind XF86Forward to next-buffer and
11046         XF86Back to previous-buffer.
11047         (minibuffer-local-map): Bind them to next-history-element and
11048         previous-history-element respectively.
11049         * help-mode.el (help-mode-map): Bind them to help-go-forward and
11050         help-go-back respectively.
11051         * info.el (Info-mode-map): Bind them to Info-history-forward and
11052         Info-history-back respectively.
11053         These are the keys next to Up on the ThinkPad keyboard.
11055 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11057         Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
11058         * emacs-lisp/cl-macs.el: Provide itself.
11059         (cl--labels-convert-cache): New var.
11060         (cl--labels-convert): New function.
11061         (cl-flet, cl-labels): New implementation with new semantics, relying on
11062         lexical-binding.
11063         * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
11064         (cl-closure-vars, cl--function-convert-cache)
11065         (cl--function-convert): Move from cl-macs.el.
11066         (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
11067         rename by removing the "cl-" prefix.
11068         * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
11070 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11072         * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
11073         (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
11074         (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
11075         (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
11076         (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
11077         (cl-hash-table-count): Add old compatibility aliases.
11079         * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
11080         Use macroexpand-all-environment instead.
11081         (cl--old-macroexpand): New var.
11082         (cl--sm-macroexpand): New function.
11083         (cl-symbol-macrolet): Use it during macro expansion.
11084         (cl--function-convert-cache): New var.
11085         (cl--function-convert): New function, extracted from
11086         cl-macroexpand-all.
11087         (cl-lexical-let): Use it.
11089         * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
11090         (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
11091         (cl-member): Remove old alias.
11093         * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
11094         (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
11095         (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
11096         (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
11097         (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
11098         (cl-macroexpand-cmacs): Remove var.
11099         (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
11100         Use macroexpand-all instead.
11102 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11104         * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
11105         (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
11106         (macroexp-copyable-p): New functions and macros.
11107         * emacs-lisp/edebug.el (edebug-unwrap):
11108         * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
11109         * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
11110         (pcase--let*): Remove.
11111         * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
11112         (byte-compile-constp): Remove.  Use macroexp--const-symbol-p and
11113         macroexp-const-p instead.
11114         * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
11116         * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
11117         instead of "cl-" for internal definitions.  Use macroexp-const-p.
11118         (cl-old-bc-file-form): Remove var.
11119         (cl-const-exprs-p): Remove fun.
11120         (cl-labels, cl-macrolet): Use backquote.
11121         (cl-lexical-let): Use cl-symbol-macrolet.  Don't use cl-defun-expander.
11122         (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
11123         (cl-define-setf-expander): Rename from cl-define-setf-method.
11124         * emacs-lisp/cl.el: Adjust alias for define-setf-method.
11126         * international/mule-cmds.el: Don't require CL.
11127         (view-hello-file): Don't use `letf'.
11129 2012-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11131         * tmm.el (tmm-prompt): Use string-prefix-p.
11132         (tmm-completion-delete-prompt): Don't affect current-buffer outside.
11133         (tmm-add-prompt): Use minibuffer-completion-help.
11134         (tmm-delete-map): Remove.
11136         * subr.el (kbd): Make it its own function.
11138 2012-06-07  Stefan Merten  <smerten@oekonux.de>
11140         * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
11141         Silence compiler warnings.  Fix versions.
11142         (rst-position-if, rst-position, rst-some, rst-signum): New functions.
11143         (rst-shift-region, rst-adornment-level, rst-compute-tabs)
11144         (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
11145         (rst-package-emacs-version-alist): Correct Emacs version to
11146         represent major merge with upstream.
11147         (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
11149 2012-06-06  Glenn Morris  <rgm@gnu.org>
11151         * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
11152         Only print environment variables if set.
11154 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11156         * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
11157         (macroexp--cons): Rename from maybe-cons.
11158         (macroexp--accumulate): Rename from macroexp-accumulate.
11159         (macroexp--all-forms): Rename from macroexpand-all-forms.
11160         (macroexp--all-clauses): Rename from macroexpand-all-clauses.
11161         (macroexp--expand-all): Rename from macroexpand-all-1.
11163 2012-06-06  Sam Steingold  <sds@gnu.org>
11165         * calendar/calendar.el (calendar-in-read-only-buffer):
11166         Call `special-mode' to enable the standard read-only keybindings.
11168 2012-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11170         * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
11171         with "loading" messages (bug#11635).
11173 2012-06-06  Michael Albinus  <michael.albinus@gmx.de>
11175         * files.el (enable-remote-dir-locals): New option.
11176         (hack-dir-local-variables): Use it.  (Bug#1933, Bug#6731)
11178         * net/tramp-compat.el (tramp-compat-temporary-file-directory):
11179         Ensure, that the temp directory is local.
11181         * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
11182         `temporary-file-directory'.
11184         * progmodes/python.el (python-send-region): Ensure, that the
11185         temporary file is created also in the remote case.
11187 2012-06-06  Glenn Morris  <rgm@gnu.org>
11189         * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
11190         (vc-rcs-update-changelog): Use it.
11192         * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
11194         * vc/vc-sccs.el (vc-sccs-write-revision): New function.
11195         (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
11196         (vc-sccs-diff): Replace use of the external vcdiff script.
11198 2012-06-05  Glenn Morris  <rgm@gnu.org>
11200         * ledit.el: Move to obsolete/.
11202 2012-06-05  Sam Steingold  <sds@gnu.org>
11204         * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
11205         patch (Bug#11140).
11207 2012-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11209         * emacs-lisp/cust-print.el: Move to obsolete.
11211         * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
11212         compiler-macro expansion.
11214         Add native compiler-macro support.
11215         * emacs-lisp/macroexp.el (macroexpand-all-1):
11216         Support compiler-macros directly.  Properly follow aliases and apply
11217         the compiler macros more thoroughly.
11218         * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
11219         macroexpand now properly follows aliases.
11220         * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
11221         (cl-compiler-macroexpand): Use new prop.
11222         * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
11224         * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
11226 2012-06-05  Martin Rudalics  <rudalics@gmx.at>
11228         * window.el (get-lru-window, get-mru-window, get-largest-window):
11229         New argument NOT-SELECTED to avoid picking the selected window.
11230         (window--display-buffer-1, window--display-buffer-2): Replace by
11231         new function window--display-buffer
11232         (display-buffer-same-window, display-buffer-reuse-window)
11233         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
11234         Use window--display-buffer.
11235         (display-buffer-use-some-window): Remove temporary dedication
11236         hack by calling get-lru-window and get-largest-window with
11237         NOT-SELECTED argument non-nil.  Call window--display-buffer.
11239 2012-06-05  Glenn Morris  <rgm@gnu.org>
11241         * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
11242         Replace external vcdiff script.
11244 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11246         * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
11248 2012-06-04  Chong Yidong  <cyd@gnu.org>
11250         * image.el (imagemagick-types-inhibit): Revert last change.
11251         Add INFO and M.
11252         (imagemagick-enabled-types): Remove CIN and EPS*.
11254 2012-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11256         * emacs-lisp/cl-lib.el: Rename from cl.el.
11257         * emacs-lisp/cl.el: New compatibility file.
11258         * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
11259         * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
11260         to obey the "cl-" prefix.
11261         * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
11263 2012-06-03  Glenn Morris  <rgm@gnu.org>
11265         * emacs-lisp/authors.el (authors-aliases): Addition.
11267         * cus-start.el (tool-bar-style, tool-bar-max-label-size):
11268         Fix :version.
11270 2012-06-03  Stefan Merten  <smerten@oekonux.de>
11272         * textmodes/rst.el: Add comments.
11273         (rst-transition, rst-adornment): New faces.
11274         (rst-adornment-faces-alist): Make default safe to reevaluate.
11275         Fixes
11276         http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
11277         Improve customization tags.
11278         (rst-define-level-faces): Clarify meaning.
11280 2012-06-03  Chong Yidong  <cyd@gnu.org>
11282         * progmodes/compile.el (compilation-mode-line-fail)
11283         (compilation-mode-line-run, compilation-mode-line-exit):
11284         New faces.
11285         (compilation-start, compilation-handle-exit): Use them (Bug#11032).
11287 2012-06-03  Jack Duthen  <duthen.mac.01@gmail.com>  (tiny change)
11289         * progmodes/which-func.el (which-func-update-ediff-windows):
11290         New function.  Use it in ediff-select-hook (Bug#11478).
11292 2012-06-03  Chong Yidong  <cyd@gnu.org>
11294         * bindings.el: Remove explicit help text from format-mode-line.
11295         It is now supplied by mode-line-default-help-echo.
11296         (mode-line-front-space, mode-line-end-spaces)
11297         (mode-line-misc-info): New variables.
11298         (mode-line-modes, mode-line-position): Move the default value to
11299         the variable definition.
11300         (mode-line-default-help-echo): New defcustom.
11301         (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
11302         (mode-line-modified-help-echo): New functions.
11303         (mode-line-mule-info, mode-line-modified): Use them.
11304         (mode-line-eol-desc, propertized-buffer-identification):
11305         Consistency fixes for help text.
11306         (mode-line-coding-system-map): Allow using mouse-3 to invoke
11307         set-buffer-file-coding-system (Bug#289).
11308         (mode-line-mule-info-help-echo): Update help text.
11310 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11312         * simple.el (execute-extended-command): Set real-this-command
11313         (bug#11506).
11315 2012-06-02  Chong Yidong  <cyd@gnu.org>
11317         Remove incorrect uses of "modeline" in comments, docstrings, and
11318         function/variable names (Bug#10329).
11320         * cus-edit.el (mode-line):
11321         * dframe.el (dframe-mouse-hscroll):
11322         * emacs-lisp/re-builder.el:
11323         * emacs-lisp/easy-mmode.el (define-minor-mode):
11324         * frame.el (set-frame-name):
11325         * help.el (lookup-minor-mode-from-indicator):
11326         * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
11327         * progmodes/cc-cmds.el (c-toggle-auto-newline)
11328         (c-toggle-hungry-state):
11329         * progmodes/antlr-mode.el (antlr-language-alist):
11330         * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
11331         * progmodes/vhdl-mode.el (vhdl-mode):
11332         * progmodes/which-func.el (which-func, which-func-cleanup-function):
11333         * term/ns-win.el (ns-face-at-pos):
11334         * term/sup-mouse.el (sup-mouse-report):
11335         * textmodes/flyspell.el (flyspell-mode-line-string):
11336         * textmodes/ispell.el (ispell-highlight-face):
11337         * textmodes/reftex-global.el:
11338         * vc/vc-arch.el (vc-arch-mode-line-string):
11339         * vc/vc-cvs.el (vc-cvs-mode-line-string):
11340         * vc/vc-git.el (vc-git-mode-line-string):
11341         * vc/vc-hooks.el (vc-display-status)
11342         (vc-default-mode-line-string):
11343         * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
11345         * ansi-color.el (ansi-color-faces-vector): Change default faces.
11347         * dired.el (dired-sort-set-mode-line): Rename from
11348         dired-sort-set-modeline.  All callers changed.
11350         * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
11351         eshell-status-in-modeline.
11353         * foldout.el (foldout-mode-line-string): Rename from
11354         foldout-modeline-string.  All callers changed.
11355         (foldout-update-mode-line): Rename from foldout-update-modeline.
11357         * subr.el (redraw-modeline): Make into obsolete alias.
11359         * calendar/timeclock.el (timeclock-mode-line-display): Rename from
11360         timeclock-modeline-display.  Make old name an alias.
11361         (timeclock-update-mode-line): Likewise.  All callers changed.
11362         (timeclock-mode-line-display): No need to check before using
11363         add-hook.
11364         (timeclock-relative, timeclock-day-over-hook)
11365         (timeclock-use-elapsed, timeclock-mode-string)
11366         (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
11368         * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
11369         crisp-mode-modeline-string.
11371         * play/solitaire.el (solitaire-build-mode-line): Rename from
11372         solitaire-build-modeline.  All callers changed.
11374         * play/zone.el (zone-hiding-mode-line): Rename from
11375         zone-hiding-modeline.  All callers changed.
11376         (zone): Remove unusued `modeline-hidden-level' property.
11378         * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
11379         xscheme-modeline-initialize.  All callers changed.
11381         * strokes.el (strokes-lighter): Rename from
11382         strokes-modeline-string.
11384         * textmodes/sgml-mode.el (html-face-tag-alist)
11385         (html-tag-face-alist): Use mode-line face instead of obsolete
11386         alias modeline.
11388 2012-06-02  Stefan Merten  <smerten@oekonux.de>
11390         * textmodes/rst.el: Always require `cl'.
11391         (rst-mode-map): Fix meaning of C-M-a / C-M-e.
11393 2012-06-02  Chong Yidong  <cyd@gnu.org>
11395         * image.el (imagemagick-enabled-types): Rename from
11396         imagemagick-types-enable.  Add many more types.
11397         (imagemagick-types-inhibit): Change default to nil.
11398         (imagemagick-filter-types): Caller changed.
11400 2012-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11402         * emacs-lisp/cl-macs.el: Use backquotes.
11403         (cl-transform-function-property): Use eval-and-compile rather than
11404         abusing `require'.
11405         (defstruct): Use declare-function instead of with-no-warnings.
11407         * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
11408         (byte-compile-output-docform): Re-add the print-circle bindings.
11409         (byte-compile-fix-header): Use #$ just because it's shorter.
11410         (byte-compile-output-file-form): Remove defun/defmacro.
11412 2012-06-01  Martin Rudalics  <rudalics@gmx.at>
11414         * simple.el (choose-completion): Remove now obsolete binding for
11415         owindow.
11417 2012-06-01  Michael Albinus  <michael.albinus@gmx.de>
11419         * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
11420         in order to avoid "Stack overflow in regexp matcher".
11422 2012-05-31  Glenn Morris  <rgm@gnu.org>
11424         * image.el: For clarity, call imagemagick-register-types at
11425         top-level, rather than relying on a custom :initialize.
11426         (imagemagick-types-enable): New option.  (Bug#11557)
11427         (imagemagick-filter-types): New function.  (Bug#7406)
11428         (imagemagick-register-types): Use imagemagick-filter-types.
11429         If disabling support, remove elements altogether rather
11430         than using an impossible regexp.
11431         (imagemagick-types-inhibit): Give it the default init function.
11433 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11435         * emacs-lisp/bytecomp.el (byte-compile-fix-header):
11436         Handle arbitrary file name lengths (Bug#11585).
11438 2012-05-31  Martin Rudalics  <rudalics@gmx.at>
11440         * desktop.el (desktop-read): Clear previous and next buffers for
11441         all windows and bury *Messages* buffer (bug#11556).
11443 2012-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11445         Add `declare' for `defun'.  Align `defmacro's with it.
11446         * emacs-lisp/easy-mmode.el (define-minor-mode)
11447         (define-globalized-minor-mode): Don't autoload the var definitions.
11448         * emacs-lisp/byte-run.el: Use lexical-binding.
11449         (defun-declarations-alist, macro-declarations-alist): New vars.
11450         (defmacro, defun): Use them.
11451         (make-obsolete, define-obsolete-function-alias)
11452         (make-obsolete-variable, define-obsolete-variable-alias):
11453         Use `declare'.
11454         (macro-declaration-function): Mark obsolete.
11455         * emacs-lisp/autoload.el: Use lexical-binding.
11456         (make-autoload): Add `expansion' arg.  Rely more on macro expansion.
11458 2012-05-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11460         * textmodes/ispell.el (ispell-with-no-warnings):
11461         Define as a macro.
11462         (ispell-kill-ispell, ispell-change-dictionary):
11463         Use `called-interactively-p' for Emacs instead of obsolete
11464         `interactive-p'.
11466 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11468         * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
11469         (macro-declaration-function): Move var from C code.
11470         (macro-declaration-function): Define function with defalias.
11471         * emacs-lisp/macroexp.el (macroexpand-all-1):
11472         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
11473         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
11474         defun/defmacro any more.
11475         * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
11476         Provide fallback for unknown arglist.
11477         (byte-compile-arglist-warn): Change calling convention.
11478         (byte-compile-output-file-form): Move print-vars binding.
11479         (byte-compile-output-docform): Simplify accordingly.
11480         (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
11481         (byte-compile-defmacro-declaration): Remove.
11482         (byte-compile-file-form-defmumble): Generalize to defalias.
11483         (byte-compile-output-as-comment): Return byte-positions.
11484         Simplify callers accordingly.
11485         (byte-compile-lambda): Use `assert'.
11486         (byte-compile-defun, byte-compile-defmacro): Remove.
11487         (byte-compile-file-form-defalias):
11488         Use byte-compile-file-form-defmumble.
11489         (byte-compile-defalias-warn): Remove.
11491 2012-05-29  Stefan Merten  <smerten@oekonux.de>
11493         * textmodes/rst.el: Silence `checkdoc-ispell' errors where
11494         possible.  Fix authors.  Improve comments.  Improve loading of `cl'.
11496         (rst-mode-abbrev-table): Merge definition.
11497         (rst-mode): Make sure `font-lock-defaults' is buffer local.
11498         (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
11500 2012-05-29  Ulf Jasper  <ulf.jasper@web.de>
11502         * calendar/icalendar.el
11503         (icalendar-export-region): Export UID properly.
11505 2012-05-29  Leo Liu  <sdl.web@gmail.com>
11506         * calendar/icalendar.el (icalendar-import-format):
11507         Add `icalendar-import-format-uid' (Bug#11525).
11508         (icalendar-import-format-uid): New.
11509         (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
11510         Export UID.
11512 2012-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11514         * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
11515         different alternative patterns.
11516         (pcase-codegen): Be more careful to preserve identity.
11517         (pcase--u1): Don't forget to mark vars as used.
11519         * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
11520         (byte-compile-close-variables): Bind byte-compile--outbuffer here...
11521         (byte-compile-from-buffer): ...rather than here.
11523         * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
11524         functions from byte-compile-function-environment.
11526 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
11528         * window.el (window-deletable-p): Avoid deleting the root window
11529         of a frame with an active minibuffer.
11531 2012-05-29  Martin Rudalics  <rudalics@gmx.at>
11533         * simple.el (choose-completion): Use quit-window (Bug#11567).
11535 2012-05-29  Chong Yidong  <cyd@gnu.org>
11537         * whitespace.el (whitespace-cleanup): Fix usage of
11538         whitespace-empty-at-bob-regexp (Bug#11492).
11540 2012-05-29  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11542         * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
11543         revert (Bug#11488).
11545 2012-05-29  Juri Linkov  <juri@jurta.org>
11547         * isearch.el (isearch-mode-map): Bind `M-s _' to
11548         `isearch-toggle-symbol'.  Bind `M-s c' to
11549         `isearch-toggle-case-fold'.
11550         (search-map): Bind `M-s _' to `isearch-forward-symbol'.
11551         (isearch-forward): Add `M-s _' to the docstring.
11552         (isearch-forward-symbol, isearch-toggle-case-fold)
11553         (isearch-symbol-regexp): New functions.  (Bug#11381)
11555 2012-05-29  Juri Linkov  <juri@jurta.org>
11557         * isearch.el (isearch-word): Add docstring.  (Bug#11381)
11558         (isearch-occur, isearch-search-and-update): If `isearch-word' is
11559         a function, call it to get the regexp.
11560         (isearch-message-prefix): If `isearch-word' holds a symbol, use its
11561         property `isearch-message-prefix' instead of the string "word ".
11562         (isearch-search-fun-default): For the case of `isearch-word',
11563         return a lambda that calls re-search-forward/re-search-backward
11564         with a regexp returned by `word-search-regexp' or by the function
11565         in `isearch-word'.
11567 2012-05-29  Juri Linkov  <juri@jurta.org>
11569         * isearch.el (isearch-search-fun-default): New function.
11570         (isearch-search-fun): Move default part to the new function
11571         `isearch-search-fun-default'.
11572         (isearch-search-fun-function): Set the default value to
11573         `isearch-search-fun-default'.  (Bug#11381)
11575         * comint.el (comint-history-isearch-end):
11576         Use `isearch-search-fun-default'.
11577         (comint-history-isearch-search): Use `isearch-search-fun-default'
11578         and remove spacial case for `isearch-word'.
11579         (comint-history-isearch-wrap): Remove spacial case for
11580         `isearch-word'.
11582         * hexl.el (hexl-isearch-search-function):
11583         Use `isearch-search-fun-default'.
11585         * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
11586         Use `word-search-regexp' for `isearch-word'.
11588         * misearch.el (multi-isearch-search-fun):
11589         Use `isearch-search-fun-default'.
11591         * simple.el (minibuffer-history-isearch-search):
11592         Use `isearch-search-fun-default' and remove spacial case for
11593         `isearch-word'.
11594         (minibuffer-history-isearch-wrap): Remove spacial case for
11595         `isearch-word'.
11597         * textmodes/reftex-global.el (reftex-isearch-wrap-function):
11598         Remove spacial case for `isearch-word'.
11599         (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
11601 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11603         Decrease XEmacs incompatibilities.
11604         * textmodes/flyspell.el (flyspell-check-pre-word-p):
11605         Use `string-match'.
11606         (flyspell-delete-region-overlays): Use alternative definition for
11607         XEmacs.
11608         (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
11609         (flyspell-word): Use `process-kill-without-query' if XEmacs.
11610         (flyspell-mode-on): Use `interactive-p' if XEmacs.
11611         (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
11612         `define-obsolete-face-alias' under XEmacs, but old method.
11614         * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
11615         `with-no-warnings' definition or Emacs alias.
11616         (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
11617         (ispell-word): Do not use `region-p' if XEmacs.
11619 2012-05-28  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11621         * textmodes/ispell.el (ispell-find-aspell-dictionaries):
11622         Check for `ispell-dictionary-base-alist' instead of full
11623         `ispell-dictionary-alist'.
11624         (ispell-init-process): Show spellchecker when starting new Ispell
11625         process.
11627 2012-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11629         * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
11630         http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
11632 2012-05-27  Juanma Barranquero  <lekktu@gmail.com>
11634         * version.el (motif-version-string, gtk-version-string)
11635         (ns-version-string): Declare.
11637 2012-05-27  Juri Linkov  <juri@jurta.org>
11639         * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
11640         after the `eval-defun-1' specialcaseing
11641         like in `edebug-eval-defun' (bug#10181).
11643         * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
11644         like in `eval-defun-1'.
11646 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
11648         * mail/sendmail.el (mail-yank-region):
11649         Recognize rmail-yank-current-message in addition to insert-buffer.
11650         Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
11651         a *mail* buffer created through rmail-start-mail with sendmail as
11652         mail-user-agent.
11654 2012-05-27  Chong Yidong  <cyd@gnu.org>
11656         * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
11657         Default to 256 (Bug#11267).
11659         * help.el (describe-mode): Doc fix.
11661 2012-05-26  Glenn Morris  <rgm@gnu.org>
11663         * w32-fns.el (w32-init-info): Remove.
11664         * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
11666         * info.el (info-initialize): For self-contained NS builds, put the
11667         included info/ directory at the front.  (Bug#2791)
11669         * paths.el (Info-default-directory-list): Make it a defcustom,
11670         mainly so that we can use custom-initialize-delay.
11672 2012-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11674         * subr.el (buffer-has-markers-at): Mark obsolete.
11676         * subr.el (lambda): Use declare.
11678         * emacs-lisp/lisp-mode.el (lambda):
11679         * emacs-lisp/edebug.el (lambda): Move properties to its definition.
11681 2012-05-26  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
11683         * thingatpt.el (forward-same-syntax): Handle no ARG case.  (Bug#11560)
11685 2012-05-26  Glenn Morris  <rgm@gnu.org>
11687         * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
11689 2012-05-25  Glenn Morris  <rgm@gnu.org>
11691         * paths.el: Remove no-byte-compile.
11692         * loadup.el: No need to load paths.el uncompiled.
11694         * image.el (imagemagick-types-inhibit): Doc fix.
11696         * version.el: Remove no-byte-compile and associated formatting.
11697         * loadup.el: No need to load version.el uncompiled.  AFAICS, this
11698         is ancient code from when there was an "inc-vers.el".
11700 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11702         * progmodes/gdb-mi.el: Minor style changes.
11703         (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
11704         Turn into minor modes.
11705         (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
11706         (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
11707         (gdb-shell): Remove unneeded let-binding.
11708         (gdb-get-many-fields): Eliminate O(n²) behavior.
11710 2012-05-25  Eli Zaretskii  <eliz@gnu.org>
11712         * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
11713         platforms that don't link in fontset.c.
11715 2012-05-25  Juri Linkov  <juri@jurta.org>
11717         Use the same diff color scheme as in modern VCSes (bug#10181).
11719         * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
11720         to avoid confusion with `diff-added' that now uses green colors.
11721         (diff-removed): Use shades of red.
11722         (diff-added): Use shades of green.
11723         (diff-changed): Leave just the yellow color.
11724         (diff-use-changed-face): New variable.
11725         (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
11726         how to highlight context diff changes.
11727         (diff-refine-change): Use shades of yellow.
11728         (diff-refine-removed): New face that uses shades of red.
11729         (diff-refine-added): New face that uses shades of green.
11730         (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
11731         `diff-refine-removed' in the call to `smerge-refine-subst'
11732         depending on the value of `diff-use-changed-face'.
11734         * vc/smerge-mode.el (smerge-mine): Use shades of red.
11735         (smerge-other): Use shades of green.
11736         (smerge-base): Use shades of yellow.
11737         (smerge-refined-change): Empty face.
11738         (smerge-refined-removed): New face that uses shades of red.
11739         (smerge-refined-added): New face that uses shades of green.
11740         (smerge-refine-subst): Rename arg `props' to `props-c'.  Add new
11741         args `props-r' and `props-a', and use them.  Doc fix.
11742         (smerge-refine): Evaluate `smerge-use-changed-face' and depending
11743         on its value use different faces `smerge-refined-change',
11744         `smerge-refined-removed', `smerge-refined-added' in the call to
11745         `smerge-refine-subst'.
11747         * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
11748         Add face condition `min-colors 88' with shades of red.
11749         (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
11750         `min-colors 88' with shades of green.
11751         (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
11752         `min-colors 88' with shades of yellow.
11754 2012-05-24  Glenn Morris  <rgm@gnu.org>
11756         * paths.el (prune-directory-list, remote-shell-program): Move to...
11757         * files.el (prune-directory-list, remote-shell-program): ...here.
11758         For the latter, delay initialization, prefer ssh, just search PATH.
11760         * paths.el (term-file-prefix): Move to faces.el (the only user).
11761         * faces.el (term-file-prefix): Move here, make it a defcustom.
11763         * paths.el (news-directory, news-path, news-inews-program):
11764         Move to gnus/nnspool.el.
11766         * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
11768         * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
11769         * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
11770         Make the latter a defcustom, with a delayed initialization.
11772         * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
11773         These were deleted from Gnus itself late 2010.
11775 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
11777         * progmodes/which-func.el (which-func-ff-hook):
11778         Check against user-error, not error.
11780         * emacs-lisp/edebug.el (top): Do not load or set up loading of
11781         cl-specs.el, which no longer exists.
11783 2012-05-22  Glenn Morris  <rgm@gnu.org>
11785         * info.el (info-emacs-bug): New command.
11786         * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
11787         * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
11789 2012-05-21  Glenn Morris  <rgm@gnu.org>
11791         * makefile.w32-in (update-subdirs-SH):
11792         * Makefile.in (update-subdirs): Update for moved update-subdirs.
11794 2012-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11796         * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
11798         * progmodes/compile.el (compilation-error-regexp-alist-alist):
11799         Simplify Maven regexp, and make sure the file can't start with a space
11800         (bug#11517).
11802 2012-05-21  Glenn Morris  <rgm@gnu.org>
11804         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
11805         Scrap superfluous subshells.
11807 2012-05-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11809         * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
11810         (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
11812 2012-05-19  Jay Belanger  <jay.p.belanger@gmail.com>
11814         * calc/calc.el (calc-ensure-consistent-units): New variable.
11816         * calc/calc-units.el (math-consistent-units-p)
11817         (math-check-unit-consistency): New functions.
11818         (calc-quick-units, calc-convert-units):
11819         Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
11820         is non-nil.
11821         (calc-extract-units): Fix typo.
11823 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11825         * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
11827         * textmodes/flyspell.el: Commenting style, plus code simplifications.
11828         (flyspell-default-deplacement-commands): Don't spell check after
11829         repeated window/frame switches (e.g. triggered by mouse-movement).
11830         (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
11831         (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
11832         (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
11833         (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
11834         Remove unused vars.
11835         (flyspell-get-casechars, flyspell-get-not-casechars):
11836         Simplify; Don't bother removing a ] just to add it back.
11837         * textmodes/ispell.el (ispell-program-name): Use executable-find.
11839 2012-05-18  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11841         * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
11842         New functions.
11843         (math-function-table): Add support for more C functions.
11845 2012-05-18  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11847         * textmodes/flyspell.el (flyspell-check-pre-word-p)
11848         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11849         Protect delay handling for otherchars against empty otherchars.
11851 2012-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11853         * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
11854         their respective macro declarations.
11855         * skeleton.el (define-skeleton):
11856         * progmodes/compile.el (define-compilation-mode):
11857         * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
11858         (define-ibuffer-filter):
11859         * emacs-lisp/generic.el (define-generic-mode):
11860         * emacs-lisp/easy-mmode.el (define-minor-mode)
11861         (define-globalized-minor-mode):
11862         * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
11863         * emacs-lisp/byte-run.el (defsubst):
11864         * custom.el (deftheme): Add doc-string metadata.
11866 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11868         * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
11870 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11872         * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
11874         * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
11875         * emacs-lisp/cl-macs.el: Idem.
11876         * emacs-lisp/cl-specs.el: Remove.
11878 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11880         Minor renaming of internal CL functions and variables.
11881         * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
11882         (cl--position): Rename from cl-position.
11883         (cl--delete-duplicates): Rename from cl-delete-duplicates.
11884         * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
11885         (cl--random-state): Rename from *random-state*.
11887 2012-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11889         * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
11890         parens around the arg list (bug#11499).
11892 2012-05-17  Juri Linkov  <juri@jurta.org>
11894         * isearch.el (word-search-regexp, word-search-backward)
11895         (word-search-forward, word-search-backward-lax)
11896         (word-search-forward-lax): Move functions from search.c
11897         (bug#10145, bug#11381).
11899 2012-05-16  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
11901         * textmodes/flyspell.el (flyspell-check-pre-word-p)
11902         (flyspell-check-word-p, flyspell-debug-signal-word-checked):
11903         Delay for otherchars as for normal word components.
11905 2012-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
11907         * minibuffer.el (completion--sifn-requote): Fix last change.
11908         (minibuffer-local-must-match-filename-map):
11909         Move define-obsolete-variable-alias before its var.
11911 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11913         * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
11915         * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
11916         behavior.
11917         (completion--string-equal-p): New function.
11918         (completion--twq-all): Use it to get better assertion failure data.
11920         Only handle ".." and '..' quoting in shell-mode (bug#11466).
11921         * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
11922         (shell--requote-argument): New functions.
11923         (shell-completion-vars): Use them.
11924         (shell--parse-pcomplete-arguments): Rename from
11925         shell-parse-pcomplete-arguments.
11926         * comint.el (comint-word): Obey comint-file-name-quote-list.  Simplify.
11927         (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
11928         Obey comint-file-name-quote-list.
11930         * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
11931         (smie-indent-keyword): Use it.
11933 2012-05-14  Stefan Merten  <smerten@oekonux.de>
11935         * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
11937 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11939         * net/rlogin.el (rlogin-mode-map): Fix last change.
11941 2012-05-14  Jason L. Wright  <jason.wright@inl.gov>  (tiny change)
11943         * mail/smtpmail.el (smtpmail-send-command): Send the command and
11944         the following \r\n using a single `process-send-string', since the
11945         Lotus SMTP server refuses to accept any commands if they are sent
11946         with two `process-send-string's (Bug#11444).
11948 2012-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11950         * shell.el (shell-parse-pcomplete-arguments):
11951         Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
11953 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
11955         * image-mode.el: Fit to width/height for rotated images (Bug#11431).
11956         (image-transform-scale, image-transform-right-angle-fudge): New vars.
11957         (image-transform-width, image-transform-fit-width): New functions.
11958         (image-transform-properties): Use them.
11959         (image-transform-check-size): New function.
11960         (image-toggle-display-image): Use it (for testing).
11961         (image-transform-set-rotation): Reduce angle mod 360.
11962         Delete obsolete comment.
11964 2012-05-14  Wolfgang Jenkner  <wjenkner@inode.at>
11966         * image-mode.el: Fix scaling (bug#11399).
11967         (image-transform-resize): Doc fix.
11968         (image-transform-properties): Default scale is 1 and height should
11969         be an integer.
11971 2012-05-13  Johan Bockgård  <bojohan@gnu.org>
11973         * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
11974         than hard-coding `car', to fix misbehavior when moving forward.
11976 2012-05-13  Chong Yidong  <cyd@gnu.org>
11978         * emacs-lisp/tabulated-list.el (tabulated-list-format)
11979         (tabulated-list-entries, tabulated-list-padding)
11980         (tabulated-list-sort-key): Make permanent-local.
11982         * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
11983         (electric-buffer-list): Put electric buffer menu
11984         command descriptions in this docstring, instead of the docstring
11985         of electric-buffer-menu-mode.  Code cleanups.
11986         (electric-buffer-menu-mode): Use define-derived-mode.  Rename from
11987         Electric-buffer-menu-mode.
11988         (electric-buffer-update-highlight): Minor code cleanup.
11990 2012-05-13  Michael Albinus  <michael.albinus@gmx.de>
11992         * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
11993         (Bug#11447)
11995 2012-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11997         Move define-obsolete-variable-alias before the var's definition.
11998         * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
11999         * tooltip.el (tooltip-hook):
12000         * textmodes/reftex-toc.el (reftex-toc-map):
12001         * textmodes/reftex-sel.el (reftex-select-label-map)
12002         (reftex-select-bib-map):
12003         * textmodes/reftex-index.el (reftex-index-map)
12004         (reftex-index-phrases-map):
12005         * speedbar.el (speedbar-syntax-table, speedbar-key-map):
12006         * progmodes/meta-mode.el (meta-mode-map):
12007         * novice.el (disabled-command-hook):
12008         * loadhist.el (unload-hook-features-list):
12009         * frame.el (blink-cursor):
12010         * files.el (find-file-not-found-hooks, write-file-hooks)
12011         (write-contents-hooks):
12012         * emulation/tpu-edt.el (GOLD-map):
12013         * emacs-lock.el (emacs-lock-from-exiting):
12014         * emacs-lisp/generic.el (generic-font-lock-defaults):
12015         * emacs-lisp/chart.el (chart-map):
12016         * dos-fns.el (register-name-alist):
12017         * dired-x.el (dired-omit-files-p):
12018         * desktop.el (desktop-enable):
12019         * cus-edit.el (custom-mode-hook):
12020         * buff-menu.el (buffer-menu-mode-hook):
12021         * bookmark.el (bookmark-read-annotation-text-func)
12022         (bookmark-exit-hooks):
12023         * allout.el (allout-mode-deactivate-hook)
12024         (allout-exposure-change-hook, allout-structure-added-hook)
12025         (allout-structure-deleted-hook, allout-structure-shifted-hook):
12026         * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
12027         (dirtrack-debug): Move call to define-obsolete-variable-alias so it
12028         comes before the corresponding variable's definition.
12030 2012-05-12  Chong Yidong  <cyd@gnu.org>
12032         * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
12033         (Buffer-menu-mouse-select): Restore function (Bug#11459).
12034         (Buffer-menu-mode-map): Bind it.
12035         (Buffer-menu--pretty-name): Add a mouse-face property.
12037 2012-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12039         * progmodes/prolog.el: Use SMIE.  Cleanup regexp setup.
12040         (prolog-upper-case-string, prolog-lower-case-string)
12041         (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
12042         (prolog-use-smie, prolog-smie-grammar): New vars.
12043         (prolog-smie-forward-token, prolog-smie-backward-token)
12044         (prolog-smie-rules): New funs.
12045         (prolog-comment-indent): Remove.
12046         (prolog-mode-variables): Use default comment indentation instead.
12047         Setup SMIE.
12048         (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
12049         (prolog-mode): Don't call them any more.
12050         (prolog-electric-colon, prolog-electric-dash)
12051         (prolog-edit-menu-insert-move): Use indent-according-to-mode.
12053         * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
12055         * minibuffer.el (completion--twq-all): Again, allow case differences.
12057         * term.el: Move keymap initialization code to be more idiomatic.
12058         (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
12059         (term-terminal-menu): Move initialization into declaration.
12060         (term-escape-char): Let the user set it in her .emacs.
12062         * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
12063         Provide SMIE-based indentation (not enabled by default yet).
12064         (sh-mode-map): Don't bind electric keys.
12065         Use electric-pair-mode instead of skeleton-pair.
12066         (sh-assignment-regexp): Fit within 80 columns.
12067         (sh-indent-supported): Specify actual shell name instead of boolean.
12068         (sh--maybe-here-document): New fun, from sh-maybe-here-document.
12069         (sh-maybe-here-document): Use it.  Make obsolete.
12070         (sh-electric-here-document-mode) New minor mode.
12071         (sh-mode): Use it.  Don't set sh-indent-supported-here here.
12072         (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
12073         (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
12074         (sh-smie-rc-grammar, sh-use-smie): New vars.
12075         (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
12076         (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
12077         (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
12078         (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
12079         (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
12080         (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
12081         (sh-set-shell): Use smie-setup if requested.
12083         * term.el (term-set-escape-char): Properly set term-escape-char.
12084         See http://stackoverflow.com/questions/10524656.
12086 2012-05-10  Chong Yidong  <cyd@gnu.org>
12088         * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
12089         Use url-generic-parse-url, and handle host names and Windows
12090         filenames properly.
12091         (ffap-url-unwrap-remote): Use url-generic-parse-url.
12092         (ffap-url-unwrap-remote): Accept list values, specifying a list of
12093         URL schemes to work on.
12094         (ffap--toggle-read-only): New function.
12095         (ffap-read-only, ffap-read-only-other-window)
12096         (ffap-read-only-other-frame): Use it.
12097         (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
12098         necessary for ffap-url-unwrap-remote.
12100 2012-05-10  Dave Abrahams  <dave@boostpro.com>
12102         * cus-start.el (create-lockfiles): Add it.
12104 2012-05-09  Chong Yidong  <cyd@gnu.org>
12106         * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
12107         (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
12109 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12111         * shell.el (shell-completion-vars): Fix last change (bug#11348).
12113 2012-05-09  Chong Yidong  <cyd@gnu.org>
12115         * ansi-color.el (ansi-color-process-output): Check for validity of
12116         comint-last-output-start before using it.  This avoids a bad
12117         interaction with gdb-mi's input/output buffer.
12119 2012-05-09  Glenn Morris  <rgm@gnu.org>
12121         * files.el (dir-locals-read-from-file):
12122         Mention dir-locals in any error message.
12124 2012-05-09  Chong Yidong  <cyd@gnu.org>
12126         * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
12127         package (Bug#11410).
12129         * emacs-lisp/package.el (package-buffer-info): Avoid putting local
12130         variables into description.
12132 2012-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12134         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
12135         shell-delimiter-argument-list (bug#11348).
12136         (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
12138 2012-05-09  Juanma Barranquero  <lekktu@gmail.com>
12140         * textmodes/rst.el: Silence byte-compiler warnings.
12141         (rst-re-alist, rst-reset-section-caches): Move around.
12142         (rst-re): Use `characterp', not `char-valid-p'.
12143         (font-lock-beg, font-lock-end): Declare.
12145         * progmodes/idlw-shell.el (specs): Remove reference to deleted
12146         variable `idlwave-shell-activate-alt-keybindings' and simplify.
12148         * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
12150 2012-05-08  Glenn Morris  <rgm@gnu.org>
12152         * files.el (auto-mode-alist): Treat ".make" like ".mk".
12154 2012-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12156         * vc/log-edit.el: Add GNU coding standards highlighting.
12157         (log-edit-font-lock-gnu-style)
12158         (log-edit-font-lock-gnu-keywords): New vars.
12159         (log-edit-font-lock-keywords): New fun.
12160         (log-edit-mode): Don't fold case in font-lock.
12161         (log-edit-font-lock-keywords): Do not assume case-folding.
12163         * imenu.el: Misc cleanup.  Make docstrings out of comments.
12164         Use lexical-binding.
12165         (imenu--index-alist, imenu--last-menubar-index-alist)
12166         (imenu-menubar-modified-tick): Use defvar-local.
12167         (imenu--split-menu): Remove unused var.
12168         (imenu--cleanup-seen): Declare as global.
12169         (imenu--cleanup): Use dolist.
12171         * subr.el (defvar-local): Add debug spec and doc-string position.
12173 2012-05-08  Glenn Morris  <rgm@gnu.org>
12175         * language/burmese.el, language/cham.el, language/czech.el:
12176         * language/english.el, language/georgian.el, language/greek.el:
12177         * language/japanese.el, language/khmer.el, language/korean.el:
12178         * language/lao.el, language/misc-lang.el, language/romanian.el:
12179         * language/sinhala.el, language/slovak.el, language/tai-viet.el:
12180         * language/thai.el, language/utf-8-lang.el:
12181         Remove no-byte-compile setting.
12183         * play/zone.el (zone-pgm-stress): Don't pollute kill-ring.  (Bug#11388)
12185 2012-05-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12187         * progmodes/make-mode.el (makefile-browse):
12188         Remove unnecessary interactive.  (Bug#11324)
12190 2012-05-07  Glenn Morris  <rgm@gnu.org>
12192         * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
12194         * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
12196 2012-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12198         * loadup.el: Preload newcomment.el.
12199         * newcomment.el: Move autoload-only code to toplevel.
12201         * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
12202         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
12203         Handle new :right-align column property.
12204         (tabulated-list-print-col): Idem, plus use `display' text-property to
12205         try and preserve alignment for variable pitch fonts.
12207 2012-05-07  Chong Yidong  <cyd@gnu.org>
12209         * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
12210         (tabulated-list-use-header-line): New var.
12211         (tabulated-list-init-header): Use it.
12212         (tabulated-list-print-fake-header): New function.
12213         (tabulated-list-print): Use it.
12214         (tabulated-list-sort-button-map): Add non-header-line commands.
12215         (tabulated-list-init-header): Add column name property to basic
12216         labels as well.
12217         (tabulated-list-col-sort): Handle non-header-line button case.
12218         (tabulated-list--sort-by-column-name): Fix a corner case.
12220         * buff-menu.el (list-buffers--refresh):
12221         Handle Buffer-menu-use-header-line.
12223 2012-05-06  Chong Yidong  <cyd@gnu.org>
12225         * buff-menu.el: Convert to Tabulated List mode.
12226         (Buffer-menu-buffer+size-width): Make obsolete.
12227         (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
12228         (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
12229         (Buffer-menu-mode): Derive from tabulated-list-mode.  Move command
12230         documentation into docstring of buffer-menu.
12231         (Buffer-menu-toggle-files-only): Add an informative message.
12232         (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
12233         (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
12234         (Buffer-menu-unmark, Buffer-menu-backup-unmark)
12235         (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
12236         (Buffer-menu-execute, Buffer-menu-select)
12237         (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
12238         (Buffer-menu-bury): Use Tabulated List machinery.
12239         (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
12240         (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
12241         Delete.
12242         (list-buffers--refresh): New function.
12243         (list-buffers-noselect): Use it.
12244         (tabulated-list-entry-size->, Buffer-menu--pretty-name)
12245         (Buffer-menu--pretty-file-name): New helper functions.
12247         * loadup.el: Preload tabulated-list.
12249         * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
12250         tabulated-list-sort-column.
12251         (tabulated-list-init-header): Add the initial aligning space even
12252         if tabulated-list-padding is zero.
12254 2012-05-06  Christopher Schmidt  <christopher@ch.ristopher.com>
12256         * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
12257         whose cdr is not a cons cell correctly (bug#11038).
12259 2012-05-06  Chong Yidong  <cyd@gnu.org>
12261         * emacs-lisp/tabulated-list.el (tabulated-list-format):
12262         Accept additional plist in column descriptors.
12263         (tabulated-list-init-header): Obey it.
12264         (tabulated-list-get-entry): New function.
12265         (tabulated-list-put-tag): Use it.  Use string-width instead of
12266         length.
12267         (tabulated-list--column-number): New function.
12268         (tabulated-list-print): Use it.
12269         (tabulated-list-print-col): New function.
12270         Set `tabulated-list-column-name' property on each column's text.
12271         (tabulated-list-print-entry): Use it.
12272         (tabulated-list-delete-entry, tabulated-list-set-col):
12273         New functions.
12274         (tabulated-list-sort-column): New command (Bug#11337).
12276         * buff-menu.el (list-buffers): Move C-x C-b binding from
12277         buff-menu.el to bindings.el.
12279         * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
12280         :advertised-binding feature.
12282 2012-05-06  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
12284         * progmodes/compile.el (compilation-internal-error-properties):
12285         Calculate start position correctly when end-col is set but
12286         end-line is not (Bug#11382).
12288 2012-05-06  Wolfgang Jenkner  <wjenkner@inode.at>
12290         * man.el (Man-unindent): Use text-property-default-nonsticky to
12291         prevent untabify from inheriting face properties (Bug#11408).
12293 2012-05-05  Stefan Merten  <smerten@oekonux.de>
12295         * textmodes/rst.el: Major merge with upstream development up to
12296         Docutils SVN r7399 / rst.el V1.2.1.
12298         Clarify maintainership and authors.
12300         (rst-extract-version, rst-cvs-header, rst-cvs-rev)
12301         (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
12302         (rst-official-version, rst-official-cvs-rev, rst-version)
12303         (rst-package-emacs-version-alist): New functions and variables
12304         for version information.
12306         (rst-bullets, rst-uri-schemes, rst-adornment-chars)
12307         (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
12308         (rst-mode-syntax-table, rst-mode): New and corrected functions
12309         and variables representing reStructuredText features.
12311         (rst-re): New function for reStructuredText regexes.  Use in
12312         many places.
12314         (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
12315         (rst-mode-map): Rebind keys.
12317         (rst-mode-lazy, rst-font-lock-keywords)
12318         (rst-font-lock-extend-region)
12319         (rst-font-lock-extend-region-internal)
12320         (rst-font-lock-extend-region-extend)
12321         (rst-font-lock-find-unindented-line-limit)
12322         (rst-font-lock-find-unindented-line-match)
12323         (rst-adornment-level, rst-font-lock-adornment-level)
12324         (rst-font-lock-adornment-match)
12325         (rst-font-lock-handle-adornment-pre-match-form)
12326         (rst-font-lock-handle-adornment-matcher): Major revision of
12327         font-locking.  Integrate with other code.  Use `jit-lock-mode'.
12329         (rst-preferred-adornments, rst-adjust-hook)
12330         (rst-new-adornment-down, rst-preferred-bullets)
12331         (rst-preferred-bullets, rst-indent, rst-indent-width)
12332         (rst-indent-field, rst-indent-literal-normal)
12333         (rst-indent-literal-minimized, rst-indent-comment): Change,
12334         extend and improve customization.
12336         (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
12337         (rst-normalize-cursor-position, rst-get-decoration)
12338         (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
12339         (rst-rstrip, rst-toc-insert-find-delete-contents)
12340         (rst-shift-fill-region, rst-compute-bullet-tabs)
12341         (rst-debug-print-tabs, rst-debug-mark-found)
12342         (rst-shift-region-guts, rst-shift-region-right)
12343         (rst-shift-region-left, rst-use-char-classes)
12344         (rst-font-lock-keywords-function)
12345         (rst-font-lock-indentation-point)
12346         (rst-font-lock-find-unindented-line-begin)
12347         (rst-font-lock-find-unindented-line-end)
12348         (rst-font-lock-find-unindented-line)
12349         (rst-font-lock-adornment-point, rst-font-lock-level)
12350         (rst-adornment-level-alist): Remove functions and variables.
12352         (rst-compare-adornments, rst-get-adornment-match)
12353         (rst-suggest-new-adornment, rst-get-adornments-around)
12354         (rst-adornment-complete-p, rst-get-next-adornment)
12355         (rst-adjust-adornment, rst-display-adornments-hierarchy)
12356         (rst-straighten-adornments): Standardize function names to
12357         use "adornment" instead of "decoration".  Correct callers.
12358         Similar standardizing in many places.
12360         (rst-update-section, rst-adjust, rst-promote-region)
12361         (rst-enumerate-region, rst-bullet-list-region)
12362         (rst-repeat-last-character): Correct use of `interactive'.
12364         (rst-classify-adornment, rst-find-all-adornments)
12365         (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
12366         (rst-find-leftmost-column, rst-repeat-last-character):
12367         Refactor functions.
12369         (rst-find-title-line, rst-reset-section-caches)
12370         (rst-get-adornments-around, rst-adjust-adornment-work)
12371         (rst-arabic-to-roman, rst-roman-to-arabic)
12372         (rst-insert-list-pos, rst-insert-list-new-item)
12373         (rst-insert-list-continue, rst-insert-list, rst-forward-line):
12374         New functions.
12376         (rst-all-sections, rst-section-hierarchy)
12377         (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
12378         New variables.
12380         (rst-toc-return-wincfg, rst-toc-quit-window): Use window
12381         configuration instead of only buffer.  Change where necessary.
12383         (rst-line-tabs, rst-compute-tabs, rst-indent-line)
12384         (rst-shift-region, rst-adaptive-fill): New functions for
12385         indentation and filling.
12387         (rst-comment-line-break, rst-comment-indent)
12388         (rst-comment-insert-comment, rst-comment-region)
12389         (rst-uncomment-region): New functions for handling comments.
12391         (rst-compile): Quote shell arguments.
12393         (rst-compile-pdf-preview, rst-compile-slides-preview):
12394         Delete temporary files after use.
12396 2012-05-05  Glenn Morris  <rgm@gnu.org>
12398         * calendar/cal-html.el: Optionally include holidays in the output.
12399         Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
12400         (cal-html-holidays): New option.
12401         (cal-html-css-default): Add holiday entry.
12402         (holiday-in-range): Autoload it.
12403         (cal-html-htmlify-entry): Add optional class argument.
12404         (cal-html-htmlify-list): Add optional holidays argument.
12405         (cal-html-insert-agenda-days): Include holidays in the output.
12406         (cal-html-one-month): Maybe include holidays.
12408         * calendar/holidays.el (holiday-in-range):
12409         Move here from cal-tex-list-holidays.
12410         * calendar/cal-tex.el (cal-tex-list-holidays):
12411         Make it an obsolete alias for holiday-in-range.  Update all callers.
12413 2012-05-05  Chong Yidong  <cyd@gnu.org>
12415         * select.el (xselect--encode-string): Always use utf-8 for TEXT on
12416         Nextstep.
12418 2012-05-05  Ransom Williams  <auvergnerw@gmail.com>  (tiny change)
12420         * files.el (file-auto-mode-skip): New var.
12421         (set-auto-mode-1): Use it.
12423 2012-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12425         * repeat.el: Use lexical-binding.
12426         (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
12427         (repeat-undo-count): Remove.
12428         (repeat):
12429         * progmodes/octave-mod.el (octave-abbrev-start):
12430         * progmodes/f90.el (f90-abbrev-start):
12431         * face-remap.el (text-scale-adjust):
12432         * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
12434         * emacs-lisp/pcase.el (pcase--let*): New function.
12435         (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
12436         a bit more.
12437         (pcase--split-pred): Be more clever about ruling out overlap between
12438         a predicate and some constant pattern.
12439         (pcase--q1): Use `null' instead of (eq foo nil).
12441         * subr.el (setq-local, defvar-local): New macros.
12442         (kbd): Redefine as an alias.
12443         (with-selected-window): Leave unrelated frames alone.
12444         (set-temporary-overlay-map): New function.
12446 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12448         * subr.el (user-error): New function.
12449         * window.el (switch-to-buffer):
12450         * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
12451         (smerge-match-conflict):
12452         * simple.el (previous-matching-history-element)
12453         (next-matching-history-element, goto-history-element, undo-more)
12454         (undo-start):
12455         * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
12456         (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
12457         (next-file, tags-loop-scan, list-tags, complete-tag):
12458         * progmodes/compile.el (compilation-loop):
12459         * mouse.el (mouse-minibuffer-check):
12460         * man.el (Man-bgproc-sentinel, Man-goto-page):
12461         * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
12462         (Info-history-forward, Info-follow-reference, Info-menu)
12463         (Info-extract-menu-item, Info-extract-menu-counting)
12464         (Info-forward-node, Info-backward-node, Info-next-menu-item)
12465         (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
12466         (Info-next-reference, Info-prev-reference, Info-index)
12467         (Info-index-next, Info-follow-nearest-node)
12468         (Info-copy-current-node-name):
12469         * imenu.el (imenu--make-index-alist)
12470         (imenu-default-create-index-function, imenu-add-to-menubar):
12471         * files.el (basic-save-buffer, recover-file):
12472         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
12473         * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
12474         (checkdoc-message-text, checkdoc-defun):
12475         * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
12476         * cus-edit.el (customize-changed-options, customize-rogue)
12477         (customize-saved, custom-variable-set, custom-variable-mark-to-save)
12478         (custom-variable-mark-to-reset-standard)
12479         (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
12480         (custom-file):
12481         * completion.el (check-completion-length):
12482         * comint.el (comint-search-arg)
12483         (comint-previous-matching-input-string-position)
12484         (comint-previous-matching-input)
12485         (comint-replace-by-expanded-history-before-point, comint-send-input)
12486         (comint-copy-old-input, comint-backward-matching-input)
12487         (comint-goto-process-mark, comint-set-process-mark):
12488         * calendar/calendar.el (calendar-cursor-to-date): Use it.
12489         * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
12491 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12493         * dabbrev.el (dabbrev--ignore-case-p): New function.
12494         (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
12495         Use it.
12497         * files.el (automount-dir-prefix): Mark as obsolete.
12499 2012-05-04  Glenn Morris  <rgm@gnu.org>
12501         * patcomp.el, play/bruce.el: Move to obsolete/.
12503 2012-05-04  Paul Eggert  <eggert@cs.ucla.edu>
12505         Fix minor Y10k bugs.
12506         * arc-mode.el (archive-unixdate):
12507         * autoinsert.el (auto-insert-alist):
12508         * calc/calc-forms.el (math-this-year):
12509         * emacs-lisp/copyright.el (copyright-current-year)
12510         (copyright-update-year, copyright):
12511         * tar-mode.el (tar-clip-time-string):
12512         * time.el (display-time-update):
12513         Don't assume years have 4 digits.
12515 2012-05-04  Chong Yidong  <cyd@gnu.org>
12517         * dos-w32.el (file-name-buffer-file-type-alist)
12518         (direct-print-region-use-command-dot-com):
12519         * ffap.el (ffap-menu-regexp):
12520         * find-file.el (ff-special-constructs):
12521         * follow.el (follow-debug):
12522         * forms.el (forms--debug):
12523         * iswitchb.el (iswitchb-all-frames):
12524         * ido.el (ido-all-frames):
12525         * emacs-lisp/timer.el (timer-max-repeats):
12526         * mail/feedmail.el (feedmail-mail-send-hook)
12527         (feedmail-mail-send-hook-queued):
12528         * mail/footnote.el (footnote-signature-separator):
12529         * mail/mailabbrev.el (mail-alias-separator-string)
12530         (mail-abbrev-mode-regexp):
12531         * mail/rmail.el (rmail-speedbar-match-folder-regexp):
12532         * progmodes/idlwave.el (idlwave-libinfo-file)
12533         (idlwave-default-completion-case-is-down)
12534         (idlwave-library-routines): Convert defvars to defcustoms.
12536         * mail/rmail.el (rmail-decode-mime-charset):
12537         * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
12538         (idlwave-shell-fix-inserted-breaks)
12539         (idlwave-shell-activate-alt-keybindings)
12540         (idlwave-shell-use-breakpoint-glyph):
12541         * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
12543 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12545         * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
12547 2012-05-03  Wilson Snyder  <wsnyder@wsnyder.org>
12549         * progmodes/verilog-mode.el (font-lock-keywords):
12550         Fix mis-highligting auto.  Reported by Craig Barner.
12551         (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
12552         defines from global name space.  Reported by Dan Dever.
12553         (verilog-auto-reset, verilog-auto-reset-widths)
12554         (verilog-auto-tieoff): Support using unbased numbers for
12555         AUTORESET and AUTOTIEOFF.
12556         (verilog-submit-bug-report): Update variable list.
12557         (verilog-read-auto-params): Fix AUTOINPUT regexps containing
12558         parenthesis from not matching.  Reported by Michael Rytting.
12559         (verilog-auto-template-lint): Fix hash error when linting modules
12560         with no used templates.
12561         (verilog-warn, verilog-warn-error)
12562         (verilog-warn-fatal): When non-interactive report multiple
12563         warnings before exiting.  Suggested by Brad Dobbie.
12564         (verilog-auto-template-lint, verilog-auto-template-warn-unused)
12565         (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
12566         to report unused template errors.  Reported by Brad Dobbie.
12567         (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
12568         nets, bug438.  Reported by Vns Blore.
12569         (verilog-auto-inout-module, verilog-auto-reg)
12570         (verilog-read-decls, verilog-read-sub-decls-sig)
12571         (verilog-signals-edit-wire-reg, verilog-signals-with):
12572         Fix passing of Verilog data types in ANSI input/output ports
12573         such as "output logic" into the AUTOs.  Special case "wire" and
12574         "reg" for backwards compatibility presuming Verilog 2001.
12575         (verilog-auto-ascii-enum): Add "auto enum" as alias.
12576         (verilog-preprocess): Fix replication of preprocess output.
12577         Reported by Brad Dobbie.
12578         (verilog-auto-inst-interfaced-ports):
12579         Create verilog-auto-inst-interfaced-ports, bug429.
12580         Reported by Julian Gorfajn.
12581         (verilog-after-save-font-hook)
12582         (verilog-before-save-font-hook): New variable.
12583         (verilog-modi-cache-results, verilog-save-font-mod-hooked)
12584         (verilog-save-font-mods): Wrap disabling fontification, reported
12585         by David Rogoff.
12586         (verilog-do-indent, verilog-pretty-declarations-auto)
12587         (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
12588         Reported by Pierre-David Pfister.
12589         (verilog-set-auto-endcomments): Fix endtask auto comments outside
12590         of class declarations, bug292.  Reported by Kevin Heilman.
12591         (verilog-read-decls): Fix 'parameter type' not appearing in
12592         AUTOINSTPARAM, bug340.  Reported by Jonathan Greenlaw.
12593         (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
12594         AUTOINPUTs, bug411.  Reported by Jonathan Greenlaw.
12595         (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
12596         Reported by David Kravitz.
12598 2012-05-03  Michael McNamara  <mac@mail.brushroad.com>
12600         * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
12601         assignment with tests in ifs and for loops.
12602         (verilog-extended-complete-re, verilog-complete-reg): Change so
12603         that DPI inport functions don't look like fuction declarations.
12604         (verilog-pretty-expr): Don't line up assignment
12605         operations to the test and increment in if and for loops
12606         (verilog-extended-complete-re, verilog-complete-reg): Change so
12607         that DPI inport functions don't look like fuction declarations.
12609 2012-05-03  Kenichi Handa  <handa@m17n.org>
12611         * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
12612         decoding, and show a warning message without signaling an error
12613         (Bug#11282).
12615 2012-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12617         * emacs-lisp/bytecomp.el
12618         (byte-compile-file-form-custom-declare-variable): Compile all elements,
12619         since cconv.el might have introduced :fun-body, internal-make-closure,
12620         and friends for bytecomp to handle (bug#11391).
12621         * custom.el (defcustom): Avoid ((λ ..) ..).
12623 2012-05-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12625         * subr.el (read-passwd): Better clean after ourselves (bug#11392).
12627 2012-05-02  Juanma Barranquero  <lekktu@gmail.com>
12629         * notifications.el (dbus-debug):
12630         * term/linux.el (gpm-mouse-enable):
12631         * term/screen.el (xterm-register-default-colors): Declare.
12633 2012-05-02  Chong Yidong  <cyd@gnu.org>
12635         * cus-start.el (gc-cons-percentage, exec-suffixes)
12636         (dos-display-scancodes, dos-hyper-key, dos-super-key)
12637         (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
12638         (make-cursor-line-fully-visible, void-text-area-pointer)
12639         (font-list-limit): Add customization data.
12641         * allout.el (allout-exposure-change-functions)
12642         (allout-structure-added-functions)
12643         (allout-structure-deleted-functions)
12644         (allout-structure-shifted-functions): Rename abnormal hooks from
12645         *-hook, and convert to defcustoms.
12646         (allout-after-copy-or-kill-hook, allout-post-undo-hook):
12647         Convert to defcustoms.
12648         (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
12650         * allout-widgets.el: Hook callers changed.
12652 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
12654         * mail/rmail.el (rmail-yank-current-message): Use the encoding of
12655         the yanked message in preference to the default value of
12656         buffer-file-coding-system.
12658 2012-05-02  Martin Rudalics  <rudalics@gmx.at>
12660         * window.el (display-buffer--action-function-custom-type):
12661         Fix entry.
12663 2012-05-02  Alan Mackenzie  <acm@muc.de>
12665         * progmodes/cc-defs.el (c-version): Update to 5.32.3.
12667 2012-05-01  Glenn Morris  <rgm@gnu.org>
12669         * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
12671         * eshell/esh-cmd.el (eshell-debug-command): Doc fix.  Add :set.
12673         * cus-edit.el (custom-variable-documentation): Simplify with format.
12675 2012-05-01  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
12676             Stefan Monnier  <monnier@iro.umontreal.ca>
12678         * simple.el (suggest-key-bindings, execute-extended-command):
12679         Move from keyboard.c.
12681 2012-05-01  Chong Yidong  <cyd@gnu.org>
12683         * follow.el: Eliminate advice.
12684         (set-process-filter, process-filter, sit-for): Advice deleted.
12685         (follow-mode-off-hook): Obsolete hook removed.
12686         (follow-avoid-tail-recenter-p, follow-process-filter-alist):
12687         Vars deleted.
12688         (follow-auto): Use a :set function.
12689         (follow-mode): Rewritten.  Don't advise process filters.
12690         (follow-switch-to-current-buffer-all, follow-scroll-up)
12691         (follow-scroll-down): Assume follow-mode is bound.
12692         (follow-comint-scroll-to-bottom)
12693         (follow-align-compilation-windows): New functions.
12694         (follow--window-sorter): New function.
12695         (follow-all-followers): Use it to explicitly sort windows by their
12696         positions; don't make assumptions about next-window order.
12697         (follow-windows-start-end, follow-delete-other-windows-and-split)
12698         (follow-calc-win-start): Doc fix.
12699         (follow-windows-aligned-p, follow-select-if-visible): Don't call
12700         vertical-motion unnecessarily.
12701         (follow-adjust-window): New function.
12702         (follow-post-command-hook): Use it.
12703         (follow-call-set-process-filter, follow-call-process-filter)
12704         (follow-intercept-process-output, follow-tidy-process-filter-alist)
12705         (follow-stop-intercept-process-output, follow-generic-filter):
12706         Functions deleted.
12707         (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
12708         (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
12709         New functions, replacing advice on scroll-bar-* commands.
12710         (follow-mwheel-scroll): New function (Bug#4112).
12712         * comint.el (comint-adjust-point): New function.
12713         (comint-postoutput-scroll-to-bottom): Use it.
12714         Call follow-comint-scroll-to-bottom for Follow mode buffers.
12716 2012-05-01  Glenn Morris  <rgm@gnu.org>
12718         * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
12719         * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
12720         * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
12721         * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
12722         * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
12723         Remove no-byte-compile setting.
12725 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12727         * minibuffer.el (completion-table-with-quoting): Fix compatibility
12728         all-completions code to not return a number in the last cdr.
12730 2012-04-30  Leo Liu  <sdl.web@gmail.com>
12732         * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
12733         read-only error.
12735 2012-04-29  Chong Yidong  <cyd@gnu.org>
12737         * follow.el (follow-calc-win-end): Rewrite to handle partial
12738         screen lines correctly (Bug#8390).
12739         (follow-avoid-tail-recenter): Minor cleanup.
12741 2012-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12743         Avoid the obsolete `assoc' package.
12744         * speedbar.el (speedbar-refresh): Avoid adelete.
12745         (speedbar-file-lists): Simplify and avoid aput.
12746         * man.el (Man--sections, Man--refpages): New vars, replacing
12747         Man-sections-alist and Man-refpages-alist.
12748         (Man-build-section-alist, Man-build-references-alist):
12749         Use them; avoid aput.
12750         (Man--last-section, Man--last-refpage): New vars.
12751         (Man-follow-manual-reference): Use them.
12752         Use the `default' arg of completing-read.
12753         (Man-goto-section): Idem.  Move prompt to the `interactive' spec.
12755 2012-04-27  Chong Yidong  <cyd@gnu.org>
12757         * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
12759         * startup.el (x-apply-session-resources): New function.
12761         * term/ns-win.el (ns-initialize-window-system):
12762         * term/w32-win.el (w32-initialize-window-system):
12763         * term/x-win.el (x-initialize-window-system): Use it to properly
12764         set menu-bar-mode and other vars from X resources, even if the
12765         initial frame is not a window-system frame (Bug#2299).
12767         * subr.el (read-key): Avoid running filter function when setting
12768         up temporary tool bar entries (Bug#9922).
12770 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
12772         * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
12773         (Bug#11344)
12775 2012-04-27  Chong Yidong  <cyd@gnu.org>
12777         * select.el (xselect--encode-string): New function, split from
12778         xselect-convert-to-string.
12779         (xselect-convert-to-string): Use it.
12780         (xselect-convert-to-filename, xselect-convert-to-os)
12781         (xselect-convert-to-host, xselect-convert-to-user): Ensure that
12782         returned strings are properly encoded (Bug#11315).
12784 2012-04-27  Chong Yidong  <cyd@gnu.org>
12786         * simple.el (delete-active-region): Move to killing custom group.
12788 2012-04-27  Andreas Schwab  <schwab@linux-m68k.org>
12790         * progmodes/which-func.el (which-func-current): Quote %
12791         characters for mode-line processing.
12793 2012-04-27  Chong Yidong  <cyd@gnu.org>
12795         * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
12796         reaching eob (Bug#11286).
12798 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
12800         * progmodes/gdb-mi.el (gdb-control-level): New variable.
12801         (gdb): Make it buffer-local and init to zero.
12802         (gdb-control-commands-regexp): New variable.
12803         (gdb-send): Don't wrap in "-interpreter-exec console" if
12804         gdb-control-level is positive.  Increment gdb-control-level
12805         whenever the command matches gdb-control-commands-regexp, and
12806         decrement it each time the command is "end".  (Bug#11279)
12808 2012-04-27  Martin Rudalics  <rudalics@gmx.at>
12810         * window.el (adjust-window-trailing-edge, enlarge-window)
12811         (shrink-window, window-resize):
12812         * mouse.el (mouse-drag-line): Fix resizing of minibuffer
12813         windows (Bug#11276).
12815 2012-04-27  Chong Yidong  <cyd@gnu.org>
12817         * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
12818         fix "missing prefix" warning.  All callers changed.
12820 2012-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12822         * emacs-lisp/assoc.el: Move to obsolete/.
12824 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12826         * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
12828         * term/ns-win.el (ns-define-service):
12829         * progmodes/pascal.el (pascal-goto-defun):
12830         * progmodes/js.el (js--read-tab):
12831         * progmodes/etags.el (tags-lazy-completion-table):
12832         * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
12833         * emacs-lisp/ewoc.el (ewoc--wrap):
12834         * emacs-lisp/assoc.el (aput, adelete, amake):
12835         * doc-view.el (doc-view-convert-current-doc):
12836         * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
12838 2012-04-26  Chong Yidong  <cyd@gnu.org>
12840         * image.el (image-type-from-buffer): Only return supported image
12841         type (Bug#9045).
12843         * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
12844         value, for symmetry with diff-end-of-hunk.
12845         (diff-split-hunk, diff-find-source-location)
12846         (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
12847         (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
12848         (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
12849         compute the relevant hunk or file properly (Bug#6005).
12850         (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
12852 2012-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12854         * vc/vc-mtn.el:
12855         * vc/vc-hg.el:
12856         * vc/vc-git.el:
12857         * vc/vc-dir.el:
12858         * vc/vc-cvs.el:
12859         * vc/vc-bzr.el:
12860         * vc/vc-arch.el:
12861         * vc/vc.el: Replace lexical-let by lexical-binding.
12862         * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
12863         * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
12864         * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
12866 2012-04-26  Chong Yidong  <cyd@gnu.org>
12868         * vc/diff-mode.el (diff-undo): New command (Bug#5302).
12869         (diff-mode-shared-map): Bind it to / and [remap undo].
12871         * vc/ediff-wind.el (ediff-setup-windows-default): New function.
12872         (ediff-window-setup-function): Use it as the default, to set up
12873         windows based on whether the current frame is graphical (Bug#2138).
12874         (ediff-choose-window-setup-function-automatically): Make obsolete.
12876         * vc/ediff-init.el: Always define ediff-pixel-width/height.
12878 2012-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12880         * ffap.el: Remove old code for obsolete package.
12881         (ffap-complete-as-file-p): Remove.
12883         Use completion-table-with-quoting for comint and pcomplete.
12884         * comint.el (comint--unquote&requote-argument)
12885         (comint--unquote-argument, comint--requote-argument): New functions.
12886         (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
12887         (comint-quote-filename): Use regexp-opt-charset.
12888         (comint--common-suffix, comint--common-quoted-suffix)
12889         (comint--table-subvert): Remove.
12890         (comint-unquote-function, comint-requote-function): New vars.
12891         (comint--complete-file-name-data): Use them with
12892         completion-table-with-quoting.
12893         * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
12894         * pcomplete.el (pcomplete-arg-quote-list)
12895         (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
12896         (pcomplete-unquote-argument-function): Default to non-nil.
12897         (pcomplete-unquote-argument): Simplify.
12898         (pcomplete--common-quoted-suffix): Remove.
12899         (pcomplete-requote-argument-function): New var.
12900         (pcomplete--common-suffix): New function.
12901         (pcomplete-completions-at-point): Use completion-table-with-quoting
12902         and completion-table-subvert.
12904         * minibuffer.el: Use completion-table-with-quoting for read-file-name.
12905         (minibuffer--double-dollars): Preserve properties.
12906         (completion--sifn-requote): New function.
12907         (completion--file-name-table): Rewrite using it and c-t-with-quoting.
12909         * minibuffer.el: Add support for completion of quoted/escaped data.
12910         (completion-table-with-quoting, completion-table-subvert): New funs.
12911         (completion--twq-try, completion--twq-all): New functions.
12912         (completion--nth-completion): New function.
12913         (completion-try-completion, completion-all-completions): Use it.
12915 2012-04-25  Leo Liu  <sdl.web@gmail.com>
12917         * progmodes/python.el (python-pdbtrack-get-source-buffer):
12918         Use compilation-message if available to find real filename.
12920 2012-04-25  Chong Yidong  <cyd@gnu.org>
12922         * vc/diff-mode.el (diff-setup-whitespace): New function.
12923         (diff-mode): Use it.
12925         * vc/diff.el (diff-sentinel):
12926         * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
12927         Whitespace mode variables based on diff style (Bug#8612).
12929 2012-04-25  Leo Liu  <sdl.web@gmail.com>
12931         * progmodes/python.el (python-send-region): Add suffix .py to the
12932         temp file.
12934         * files.el (auto-mode-alist): Use javascript-mode instead.
12936 2012-04-25  Alex Harsanyi  <AlexHarsanyi@gmail.com>
12938         Sync with soap-client repository.  Support SOAP simpleType (Bug#10331).
12940         * net/soap-client.el (soap-resolve-references-for-sequence-type)
12941         (soap-resolve-references-for-array-type): Hack to prevent self
12942         references, see Bug#9.
12943         (soap-parse-envelope): Report the contents of the 'detail' node
12944         when receiving a fault reply.
12945         (soap-parse-envelope): Report the contents of the entire 'detail' node.
12947         * net/soap-inspect.el (soap-sample-value-for-simple-type)
12948         (soap-inspect-simple-type): New function.
12950         * net/soap-client.el (soap-simple-type): New struct.
12951         (soap-default-xsd-types, soap-default-soapenc-types)
12952         (soap-decode-basic-type, soap-encode-basic-type):
12953         support unsignedInt and double basic types.
12954         (soap-resolve-references-for-simple-type)
12955         (soap-parse-simple-type, soap-encode-simple-type): New function.
12956         (soap-parse-schema): Parse xsd:simpleType declarations.
12958         * net/soap-client.el (soap-default-xsd-types)
12959         (soap-default-soapenc-types): Add integer, byte and anyURI types.
12960         (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
12961         the local name of "soapenc:Array".
12962         (soap-decode-basic-type, soap-encode-basic-type): Support encoding
12963         decoding integer, byte and anyURI xsd types.
12965 2012-04-25  Chong Yidong  <cyd@gnu.org>
12967         * cus-edit.el (custom-buffer-create-internal): Update header text.
12969 2012-04-25  Eli Zaretskii  <eliz@gnu.org>
12971         * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
12972         settings on 'system-type', not on 'window-system'.  On MS-Windows,
12973         set interactive-mode on in GDB.
12975 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12977         * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
12978         (ruby-syntax-propertize-regexp): Remove.
12979         (ruby-syntax-propertize-function): Split regexp into chunks.
12980         Match following code directly.
12982 2012-04-24  Dmitry Gutov  <dgutov@yandex.ru>
12984         * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
12985         (ruby-syntax-propertize-regexp): New function.
12986         (ruby-syntax-propertize-function): Use it to handle regexp not preceded
12987         by a special keyword.
12989         * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
12990         (ruby-syntax-general-delimiters-goto-beg)
12991         (ruby-syntax-propertize-general-delimiters): New functions.
12992         (ruby-syntax-propertize-function): Use them to handle GDL.
12993         (ruby-font-lock-keywords): Move old handling of GDL...
12994         (ruby-font-lock-syntactic-keywords): .. to here.
12995         (ruby-calculate-indent): Adjust indentation for GDL.
12997 2012-04-24  Michael Albinus  <michael.albinus@gmx.de>
12999         * notifications.el (top): Remove unneeded declarations.
13000         (notifications-specification-version): Change to "1.2".
13001         (notifications-interface, notifications-notify-method)
13002         (notifications-close-notification-method): Fix docstring.
13003         (notifications-get-capabilities-method): New defconst.
13004         (notifications-notify): Add :action-items, :resident and
13005         :transient hints.  Change "image_data" to "image-data" and
13006         "image_path" to "image-path".
13007         (notifications-get-capabilities): New defun.
13009 2012-04-24  Leo Liu  <sdl.web@gmail.com>
13011         * progmodes/python.el: Move hideshow setup to the end.
13013 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
13015         * window.el (handle-select-window): Clear echo area since this is
13016         no more done by read_char (Bug#11304).
13018 2012-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
13020         * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
13021         and `/ M' to filter-derived-mode.
13022         * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
13023         (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
13024         (ibuffer-mark-by-mode): Use default rather than initial-input.
13025         (ibuffer-filter-by-derived-mode): Autoload and require-match.
13027 2012-04-24  Ivan Andrus  <darthandrus@gmail.com>  (tiny change)
13029         * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
13030         (ibuffer-filter-by-derived-mode): New filter.
13031         * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
13033 2012-04-23  Andreas Politz  <politza@fh-trier.de>
13035         * subr.el (accept-change-group): Fix arg usage (Bug#6095).
13037 2012-04-23  Chong Yidong  <cyd@gnu.org>
13039         * cus-edit.el (customize-apropos, customize-apropos-options):
13040         Disable matching of non-option variables (Bug#11176).
13041         (customize-option, customize-option-other-window)
13042         (customize-changed-options): Doc fix.
13043         (customize-apropos-options, customize-apropos-faces)
13044         (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
13046         * apropos.el (apropos-read-pattern): Make prompt less cryptic.
13047         Fix word list splitting (Bug#11132).
13048         (apropos-symbol, apropos-keybinding, apropos-label)
13049         (apropos-property, apropos-function-button)
13050         (apropos-variable-button, apropos-misc-button): New faces.
13051         (apropos-symbol-face, apropos-keybinding-face)
13052         (apropos-label-face, apropos-property-face, apropos-match-face):
13053         Variables removed (Bug#8396).
13054         (apropos-library-button, apropos-format-plist, apropos-print)
13055         (apropos-print-doc, apropos-describe-plist): Callers changed.
13057 2012-04-23  Michael Albinus  <michael.albinus@gmx.de>
13059         * net/xesam.el (xesam-mode-map): Use let-bound map in
13060         initialization.  (Bug#11292)
13062 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13064         Preserve ispell session localwords when switching back to
13065         original buffer.
13067         * textmodes/ispell.el (ispell-buffer-session-localwords):
13068         New buffer-local variable to hold buffer session localwords.
13069         (ispell-kill-ispell): Add option 'clear to delete session
13070         localwords.
13071         (ispell-command-loop, ispell-change-dictionary)
13072         (ispell-buffer-local-words): Preserve session localwords when
13073         needed.
13075         * textmodes/flyspell.el (flyspell-process-localwords)
13076         (flyspell-do-correct): Preserve session localwords when needed.
13078 2012-04-23  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13080         * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
13081         using obsolete `translation-table-for-input'.
13082         (ispell-word, ispell-process-line, ispell-complete-word):
13083         Use plain `insert' instead of removed `ispell-insert-word'.
13085 2012-04-22  Chong Yidong  <cyd@gnu.org>
13087         * cus-edit.el (custom-variable-menu)
13088         (custom-variable-reset-saved, custom-face-menu)
13089         (custom-face-reset-saved): If there is no saved value, make the
13090         "reset-saved" operation bring back the default (Bug#9509).
13091         (custom-face-state): Properly detect themed faces.
13093         * faces.el (face-spec-set): Stop supporting deprecated form of
13094         third arg.
13096 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
13098         Move functions from C to Lisp.  Make non-blocking method calls
13099         the default.  Implement further D-Bus standard interfaces.
13101         * net/dbus.el (dbus-message-internal): Declare function.
13102         Remove unneeded function declarations.
13103         (defvar dbus-message-type-invalid, dbus-message-type-method-call)
13104         (dbus-message-type-method-return, dbus-message-type-error)
13105         (dbus-message-type-signal): Declare variables.  Remove local
13106         definitions.
13107         (dbus-interface-dbus, dbus-interface-peer)
13108         (dbus-interface-introspectable, dbus-interface-properties)
13109         (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
13110         Adapt docstring.
13111         (dbus-interface-objectmanager): New defconst.
13112         (dbus-call-method, dbus-call-method-asynchronously)
13113         (dbus-send-signal, dbus-method-return-internal)
13114         (dbus-method-error-internal, dbus-register-service)
13115         (dbus-register-signal, dbus-register-method): New defuns, moved
13116         from dbusbind.c
13117         (dbus-call-method-handler, dbus-setenv)
13118         (dbus-get-all-managed-objects, dbus-managed-objects-handler):
13119         New defuns.
13120         (dbus-call-method-non-blocking): Make it an obsolete function.
13121         (dbus-unregister-object, dbus-unregister-service)
13122         (dbus-handle-event, dbus-register-property)
13123         (dbus-property-handler): Obey the new structure of
13124         `bus-registered-objects'.
13125         (dbus-introspect): Use `dbus-call-method'.  Use a timeout.
13126         (dbus-get-property, dbus-set-property, dbus-get-all-properties):
13127         Use `dbus-call-method'.
13129 2012-04-22  Chong Yidong  <cyd@gnu.org>
13131         * cus-edit.el (custom-commands, custom-reset-menu)
13132         (Custom-reset-standard): Tweak labels.
13133         (custom-reset-button-menu): Change default to t.
13134         (custom-buffer-create-internal): For the custom-reset-button-menu
13135         case, put the revert button first.
13136         (custom-group-subtitle): New face.
13137         (custom-group-value-create): Align docstring to a specific column.
13139         * wid-edit.el (widget-documentation-link-add): Don't handle
13140         indentation in this function.
13141         (widget-documentation-string-indent-to): New function.
13142         (widget-documentation-string-value-create): Use it.
13144         * autorevert.el (auto-revert):
13145         * epg-config.el (epg):
13146         * ibuffer.el (ibuffer):
13147         * mpc.el (mpc):
13148         * ses.el (ses):
13149         * eshell/eshell.el (eshell):
13150         * net/ange-ftp.el (ange-ftp):
13151         * progmodes/ebnf2ps.el (postscript):
13152         * progmodes/flymake.el (flymake):
13153         * progmodes/prolog.el (prolog):
13154         * progmodes/verilog-mode.el (verilog-mode):
13155         * progmodes/which-func.el (which-func):
13156         * term/xterm.el (xterm):
13157         * textmodes/picture.el (picture):
13158         * textmodes/tildify.el (tildify):
13159         * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
13160         customization buffers.
13162 2012-04-22  Alan Mackenzie  <acm@muc.de>
13164         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
13165         Adding a ) can hide the resulting (..) from searches.  Fix it.
13166         Bound the backward search to the position of the existing (.
13168 2012-04-21  Juanma Barranquero  <lekktu@gmail.com>
13170         * progmodes/verilog-mode.el (verilog-mode): Check whether
13171         which-func-modes is t before adding verilog-mode.
13172         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
13174 2012-04-21  Leo Liu  <sdl.web@gmail.com>
13176         * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
13178 2012-04-21  Michael Vehrs  <Michael.Burschik@gmx.de>
13180         * woman.el: Add support for "T{ T}" tbl syntax, and fix the
13181         filling of the last column of a table (Bug#5635).
13182         (woman-find-next-control-line): New arg, specifying an additional
13183         regexp component for the control line.
13184         (woman2-roff-buffer): Use it.
13185         (woman-break-table): New function.
13186         (woman2-TS): Use it.
13188 2012-04-21  Chong Yidong  <cyd@gnu.org>
13190         * woman.el (woman-set-buffer-display-table, woman-decode-region)
13191         (woman-horizontal-escapes, woman-negative-vertical-space)
13192         (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
13193         (WoMan-warn-ignored): Use ?\s instead of ?\ .
13195 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13197         * minibuffer.el (completion-file-name-table): Complete user names.
13199 2012-04-20  Leo Liu  <sdl.web@gmail.com>
13201         * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
13202         and pcase-let*.
13204 2012-04-20  Chong Yidong  <cyd@gnu.org>
13206         * server.el (server-execute): Respect initial-buffer-choice if it
13207         is a string and there are no files to open (Bug#2825).
13208         (server-create-window-system-frame, server-create-tty-frame):
13209         Don't switch buffers here.
13210         (server-process-filter): Only try to open a window system frame if
13211         compiled with graphical support (Bug#8314).
13213 2012-04-20  Dan Nicolaescu  <dann@gnu.org>
13215         * battery.el (battery-echo-area-format): Display remaining time
13216         for sysfs backend too (Bug#11269).
13217         (battery-linux-sysfs): Fix conditional for the charge.
13219 2012-04-20  Chong Yidong  <cyd@gnu.org>
13221         * progmodes/gdb-mi.el (gdb): Revert previous change.
13222         (gdb-inferior-io--init-proc): New function.
13223         (gdb-init-1): Use it.
13224         (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
13225         responsible for allocating a new pty and hooking it to gdb when
13226         the old pty gets an EIO due to process exit.
13227         (gdb-delchar-or-quit): New command.  Bind it in gdb-mi buffers.
13228         (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
13229         (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
13231 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
13233         * window.el (window-min-size, window-sizable, window-min-delta)
13234         (window-max-delta, window--resizable, window-resizable)
13235         (window-total-size, window-full-height-p, window-full-width-p)
13236         (window-in-direction, window--resize-mini-window, window-resize)
13237         (window--resize-child-windows-normal)
13238         (window--resize-child-windows, window--resize-siblings)
13239         (window--resize-this-window, adjust-window-trailing-edge)
13240         (enlarge-window, shrink-window): Doc fixes.
13242 2012-04-20  Chong Yidong  <cyd@gnu.org>
13244         * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
13245         New function to call delete-process on the gdb-inferior buffer's pty.
13246         (gdb-reset): Use it, instead of relying on kill-buffer to kill the
13247         pty process (Bug#11273).
13248         (gdb-update): New arg to suppress talking to the gdb process.
13249         (gdb-done-or-error): Use it.
13250         (gdb-stopped-functions): Rename from gdb-stopped-hooks.
13251         (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
13252         sentinel not being called.
13254         * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
13256         * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
13258 2012-04-20  Glenn Morris  <rgm@gnu.org>
13260         * net/network-stream.el (open-network-stream): Doc fix.
13262 2012-04-20  Chong Yidong  <cyd@gnu.org>
13264         * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
13266 2012-04-20  Alan Mackenzie  <acm@muc.de>
13268         Ensure searching for keywords is case sensitive.
13270         * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
13271         (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
13272         (c-defun-name, c-mark-function, c-cpp-define-name)
13273         (c-comment-indent, c-scan-conditionals, c-indent-defun)
13274         (c-context-line-break): Bind case-fold-search to nil.
13276         * progmodes/cc-mode.el (c-font-lock-fontify-region):
13277         Bind case-fold-search to nil.
13279 2012-04-20  Chong Yidong  <cyd@gnu.org>
13281         * mail/sendmail.el (mail-bury): Call return action with the right
13282         Rmail buffer (Bug#11242).
13284         * server.el (server-process-filter): Handle corner case where both
13285         tty and nowait options are present (Bug#11102).
13287 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
13289         * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
13290         (top level): Put into the executable the ident-style '$Id:' tag on
13291         windows-nt as well.
13293 2012-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13295         * electric.el (electric-indent-post-self-insert-function): Check that
13296         electric-indent-mode is enabled in current buffer.
13298 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
13300         * imenu.el (imenu-progress-message): Restore; it is "used" in
13301         erc/erc-imenu.el and net/snmp-mode.el.
13303 2012-04-19  Juanma Barranquero  <lekktu@gmail.com>
13305         * avoid.el (mouse-avoidance-mode): Mark unused arg.
13306         (mouse-avoidance-nudge-mouse): Remove unused binding.
13308         * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
13310         * descr-text.el (describe-char):
13311         * progmodes/python.el (python-describe-symbol):
13312         Don't call `toggle-read-only', set `buffer-read-only'.
13314         * imenu.el (imenu-default-goto-function): Mark unused args.
13315         (imenu-progress-message): Remove obsolete macro; all callers changed.
13317         * subr.el (keymap-canonicalize): Remove unused binding.
13318         (read-passwd): Mark unused arg.
13320         * tutorial.el (tutorial--display-changes): Remove unused binding.
13321         (tutorial--save-tutorial-to): Remove unused variable.
13323         * emacs-lisp/package.el (define-package, package-menu-mark-delete)
13324         (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
13325         (package-generate-autoloads, package-menu--generate)
13326         (package-menu--find-upgrades): Remove unused bindings.
13328         * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
13329         (cua-restrict-prefix-rectangle): Doc fixes.  Remove unused bindings.
13330         (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
13331         (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
13332         (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
13333         (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
13334         (cua--rectangle-aux-replace, cua--left-fill-rectangle)
13335         (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
13336         (cua-delete-char-rectangle): Mark unused args.
13337         (cua-align-rectangle): Remove unused binding.
13339         * mail/rmail.el (compilation--message->loc)
13340         (epa--find-coding-system-for-mime-charset): Declare.
13342         * net/dbus.el (dbus-register-service): Declare.
13343         (dbus-name-owner-changed-handler): Remove unused binding.
13345         * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
13346         (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
13347         (nxml-scan-backward-within): Mark unused arg.
13348         (nxml-dynamic-markup-word): Remove unused binding.
13350         * mouse.el (mouse-menu-major-mode-map):
13351         * emacs-lisp/authors.el (authors-scan-change-log)
13352         (authors-add-to-author-list):
13353         * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
13354         * emacs-lisp/smie.el (smie-auto-fill):
13355         * mail/sendmail.el (mail-bury):
13356         * mail/unrmail.el (unrmail):
13357         * net/tls.el (open-tls-stream):
13358         * textmodes/picture.el (picture-mouse-set-point):
13359         Remove unused bindings.
13361 2012-04-19  Michael Albinus  <michael.albinus@gmx.de>
13363         * net/tramp.el (tramp-action-password): Let-bind
13364         `enable-recursive-minibuffers' to t.
13366 2012-04-18  Sam Steingold  <sds@gnu.org>
13368         * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
13369         instead of 'string to accommodate values like [f11].
13370         Always use `vconcat' instead of `concat' on it, like in `gud-def'.
13371         * progmodes/gdb-mi.el: Likewise.
13373 2012-04-18  Leo Liu  <sdl.web@gmail.com>
13375         * abbrev.el (edit-abbrevs): Move point to the abbrev table of
13376         current buffer.
13377         (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
13378         LOCAL is nil.
13380 2012-04-18  Chong Yidong  <cyd@gnu.org>
13382         * simple.el (line-move): Use forward-line if in batch mode
13383         (Bug#11053).
13385 2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
13387         * files.el (after-find-file): Do not try to add a final newline if
13388         the buffer is read-only (Bug#11156).
13390 2012-04-17  Richard Stallman  <rms@gnu.org>
13392         * mail/rmail.el (rmail-start-mail):
13393         Pass (rmail-mail-return...) for the return-action.
13394         Pass (rmail-yank-current-message...) for the yank-action.
13395         (rmail-yank-current-message): New function.
13396         (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
13397         (rmail-reply): Likewise.
13398         (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
13400         * mail/sendmail.el (mail-bury): Choose the first rmail-mode
13401         buffer, not the last.  Reject temp buffers.  Use the rmail-mode
13402         buffer, not newbuf.
13404 2012-04-17  Juanma Barranquero  <lekktu@gmail.com>
13406         * server.el (server-ensure-safe-dir): Simplify.
13408 2012-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13410         * emacs-lisp/smie.el: Provide smarter auto-filling.
13411         (smie-auto-fill): New function.
13412         (smie-setup): Use it.
13414         * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
13416 2012-04-17  Philipp Haselwarter  <philipp.haselwarter@gmx.de>  (tiny change)
13418         * newcomment.el (comment-inline-offset): New custom var (bug#11090).
13419         (comment-indent): Use it.
13421 2012-04-17  Vincent Belaïche  <vincentb1@users.sourceforge.net>
13423         * ses.el: The overall change is to add cell renaming, that is
13424         setting fancy names for cell symbols other than name matching
13425         "\\`[A-Z]+[0-9]+\\'" regexp .
13426         (ses-localvars): Add ses--renamed-cell-symb-list.
13427         (ses-create-cell-variable): New defun.
13428         (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
13429         (ses-relocate-formula): Relocate formulas only for cells the
13430         symbols of which are not renamed, i.e. symbols whose names do not
13431         match regexp "\\`[A-Z]+[0-9]+\\'".
13432         (ses-relocate-all): Relocate values only for cells the symbols of
13433         which are not renamed.
13434         (ses-load): Create cells variables as the (ses-cell ...) are read,
13435         in order to check row col consistency with cell symbol name only
13436         for cells that are not renamed.
13437         (ses-replace-name-in-formula): New defun.
13438         (ses-rename-cell): New defun.
13440 2012-04-17  Peter Oliver  <bzr@mavit.org.uk>  (tiny change)
13442         * progmodes/perl-mode.el (perl-indent-parens-as-block):
13443         New option (bug#11118).
13444         (perl-calculate-indent): Respect it.
13446 2012-04-17  Glenn Morris  <rgm@gnu.org>
13448         * dired-aux.el (dired-mark-read-string): Doc fix.
13450 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
13452         * dired-aux.el (dired-mark-read-string): Offer optional completion.
13453         (dired-do-chxxx): Complete chown, chgrp over users, groups.  (Bug#7900)
13455 2012-04-17  Glenn Morris  <rgm@gnu.org>
13457         * mouse.el (mouse-drag-track):
13458         * speedbar.el (speedbar-frame-mode):
13459         Use auto-hscroll-mode rather than the alias automatic-hscrolling.
13461 2012-04-16  Leo Liu  <sdl.web@gmail.com>
13463         * progmodes/python.el: Trivial cleanup.
13465 2012-04-16  Glenn Morris  <rgm@gnu.org>
13467         * vc/vc.el (vc-string-prefix-p):
13468         * vc/pcvs-util.el (cvs-string-prefix-p):
13469         * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
13470         * mpc.el (mpc-string-prefix-p):
13471         Make all of these into obsolete aliases for string-prefix-p.
13472         Update callers.
13473         * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
13475         * textmodes/two-column.el: Move custom options to the start.
13476         (frame-width): Remove compat definition.
13477         (2C-associate-buffer, 2C-dissociate):
13478         Use with-current-buffer rather than save-excursion.
13479         (2C-dissociate): Force a mode-line update.
13480         (2C-autoscroll): Use ignore-errors.
13482         * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
13483         Autoload trivia.
13485         * emacs-lisp/cl-extra.el (*random-state*):
13486         Remove unnecessary declaration.
13488         * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
13490         * play/cookie1.el (cookie-snarf):
13491         Give an explicit error if input file cannot be read.
13493         * play/yow.el (yow-file): Use expand-file-name rather than concat.
13495         * progmodes/perl-mode.el (c-macro-expand):
13496         Remove unnecessary autoload (it is in loaddefs.el).
13498         * textmodes/picture.el (picture-desired-column)
13499         (picture-update-desired-column): Convert comments to doc-strings.
13500         (picture-substitute): Remove function.
13501         (picture-mode-map): Initialize in the defvar.
13503         * woman.el: Remove eval-after-load for tar-mode.
13504         * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
13505         (woman-tar-extract-file): Autoload it.
13507         * frame.el (automatic-hscrolling): Make this alias obsolete.
13509 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13511         * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
13512         `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
13513         (ispell-dictionary-base-alist): Revert to original XEmacs
13514         friendly version for default.  [:alpha:] will be added in
13515         `ispell-set-spellchecker-params' if needed.
13517 2012-04-16  Chong Yidong  <cyd@gnu.org>
13519         * image.el (imagemagick--file-regexp): New variable.
13520         (imagemagick-register-types): Use it.
13521         (imagemagick-types-inhibit): Add :set function.  Allow new value
13522         of t to inhibit all types.
13524         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
13525         so we can preload it.
13527         * loadup.el (fboundp): Preload regexp-opt, needed by
13528         imagemagick-register-types.
13530 2012-04-15  Chong Yidong  <cyd@gnu.org>
13532         * frame.el (scrolling): Remove nearly unused customization group.
13534         * scroll-all.el (scroll-all-mode): Move to windows group.
13536 2012-04-15  Chong Yidong  <cyd@gnu.org>
13538         * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
13540 2012-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13542         Avoid the use of ((lambda ...) ...) in lexical-binding code.
13543         * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
13545 2012-04-15  Glenn Morris  <rgm@gnu.org>
13547         * simple.el (process-file-side-effects): Doc fix.
13549 2012-04-15  Glenn Morris  <rgm@gnu.org>
13551         * international/mule-cmds.el (set-language-environment): Doc fix.
13553 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
13555         * server.el (server-auth-key, server-generate-key): Doc fixes.
13556         (server-get-auth-key): Doc fix.  Use `string-match-p'.
13557         (server-start): Reflow docstring.
13559 2012-04-14  Lars Ingebrigtsen  <larsi@gnus.org>
13561         * server.el (server-generate-key): `called-interactively-p'
13562         requires a parameter.
13564 2012-04-14  Michal Nazarewicz  <mina86@mina86.com>
13566         * server.el (server-auth-key): New variable.
13567         (server-generate-key, server-get-auth-key): New function.
13568         (server-start): Use the new variable and functions to allow
13569         setting a permanent server key (bug#9423).
13571 2012-04-14  Leo Liu  <sdl.web@gmail.com>
13573         * vc/diff-mode.el (diff-file-prev/next): Fix typo.
13575 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
13577         Spelling fixes.
13578         * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
13579         Emacs uses American spelling.
13581 2012-04-14  Juanma Barranquero  <lekktu@gmail.com>
13583         * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
13584         (emacs-lock--exit-locked-buffer): Return the locked buffer.  Doc fix.
13585         (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
13586         (emacs-lock--kill-buffer-query-functions): Run new hook.  (Bug#11017)
13588 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13590         * progmodes/which-func.el (which-func-modes): Change default.
13592 2012-04-14  Kim F. Storm  <storm@cua.dk>
13594         * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
13595         exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
13597 2012-04-14  Chong Yidong  <cyd@gnu.org>
13599         * custom.el (custom-theme-set-variables): Doc fix.
13601 2012-04-14  Glenn Morris  <rgm@gnu.org>
13603         * international/mule.el (set-auto-coding-for-load): Doc fix.
13605 2012-04-14  Alan Mackenzie  <acm@muc.de>
13607         * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
13608         imenu work again for Objective C Mode.  Correct the *-index values,
13609         these having been disturbed by a previous change in 2011-08.
13611         * progmodes/cc-engine.el (c-before-change-check-<>-operators):
13612         Correct two search limits.
13614 2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13616         * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
13618 2012-04-14  Andreas Schwab  <schwab@linux-m68k.org>
13620         * international/characters.el: Fix sorting.
13622 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13624         * international/characters.el: Add more missing Latin case pairs.
13626 2012-04-14  Glenn Morris  <rgm@gnu.org>
13628         * files.el (dir-locals-set-class-variables): Doc fix.
13630 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13632         * international/characters.el: Add set-case-syntax-pair call for
13633         LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
13634         counterpart.  (Bug#11209)
13636         * simple.el (shell-command-on-region): Doc fix.  (Bug#11208)
13638 2012-04-14  Glenn Morris  <rgm@gnu.org>
13640         * calendar/holidays.el (calendar-check-holidays): Doc fix.
13642 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13644         * textmodes/ispell.el (ispell-dictionary-base-alist):
13645         Add data for Hebrew.
13647 2012-04-14  Chong Yidong  <cyd@gnu.org>
13649         * net/rcirc.el (rcirc-cmd-quit):
13650         Revert 2012-03-18 change (Bug#11192).
13652 2012-04-14  Glenn Morris  <rgm@gnu.org>
13654         * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
13656 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
13658         * minibuffer.el (completion-in-region-mode-map):
13659         Bind completion-help-at-point to M-? rather than ?.  (Bug#11182)
13661 2012-04-13  Vivek Dasmohapatra  <vivek@etla.org>
13663         * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
13665 2012-04-13  Masatake YAMATO  <yamato@redhat.com>
13667         * minibuffer.el (minibuffer-local-filename-syntax): New variable
13668         to allow `C-M-f' and `C-M-b' to move to the nearest path
13669         separator (bug#9511).
13671 2012-04-13  Lars Ingebrigtsen  <larsi@gnus.org>
13673         * avoid.el: Require cl when compiling.  And also move the
13674         `provide' to the end.
13676 2012-04-13  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
13678         * avoid.el (mouse-avoidance-banish-position): New variable.
13679         (mouse-avoidance-banish-destination): Use it (bug#10165).
13681 2012-04-13  Leo Liu  <sdl.web@gmail.com>
13683         * progmodes/which-func.el (which-func-modes): Add objc-mode.
13685 2012-04-13  Ken Brown  <kbrown@cornell.edu>
13687         * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
13688         this is no longer needed now that cygstart understands file:// URLs.
13689         (browse-url-filename-alist): For the same reason, don't modify
13690         file:// URLs on Cygwin.
13692 2012-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13694         * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
13695         the region on shift if the binding is already shifted (bug#11221).
13697 2012-04-12  Glenn Morris  <rgm@gnu.org>
13699         * mail/mailpost.el: Move to obsolete/.
13701 2012-04-12  Drew Adams  <drew.adams@oracle.com>
13703         * imenu.el (imenu--generic-function): Ignore invisible definitions
13704         (bug#10123).
13706 2012-04-12  Vivek Dasmohapatra  <vivek@etla.org>
13708         * hexl.el (hexl-bits): New variable.
13709         (hexl-options): Mention the variable in the doc string.
13710         (hexl-rulerise, hexl-line-displen): New functions.
13711         (hexl-mode): Mention the new variable.
13712         (hexl-mode, hexl-current-address, hexl-current-address):
13713         Use the displen.
13714         (hexl-ascii-start-column): New function.
13715         (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
13716         (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
13718 2012-04-12  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13720         * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
13721         '("-i" ENCODING), in 2 separate command-line arguments, to specify
13722         the encoding, as expected by hunspell.
13724 2012-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13726         * battery.el (battery--linux-sysfs-regexp): New const.
13727         (battery-status-function): Use it.  Remove yeeloong special case.
13728         (battery-yeeloong-sysfs): Remove.
13729         (battery-echo-area-format): Remove yeeloong special case.
13731 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13733         * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
13734         Reported by Noah Friedman.
13736         * subr.el (read-passwd): Use read-string.
13738 2012-04-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13740         * vcursor.el (vcursor-move): Increase the priority of the overlay
13741         (bug#9663).
13743 2012-04-11  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
13745         * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
13746         (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
13748 2012-04-11  William Stevenson  <yhvh2000@gmail.com>
13750         * textmodes/artist.el (artist-mode): Convert artist-mode to use
13751         define-minor-mode (bug#10760).
13753 2012-04-11  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
13755         * progmodes/grep.el (rgrep): Tweak the find command line so
13756         that directories matching `grep-find-ignored-files' won't be
13757         pruned (bug#10351).
13759 2012-04-11  Chong Yidong  <cyd@gnu.org>
13761         * startup.el (command-line): Remove support for long-obsolete
13762         variable font-lock-face-attributes.
13764 2012-04-11  Glenn Morris  <rgm@gnu.org>
13766         * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
13768 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13770         * window.el (window--state-get-1): Obey window-point-insertion-type.
13772 2012-04-11  Lennart Borgman  <lennart.borgman@gmail.com>
13774         * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
13775         to previous function when point is on the first character of a
13776         function.  Take care of that in `narrow-to-defun' (bug#6157).
13778 2012-04-11  Glenn Morris  <rgm@gnu.org>
13780         * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
13781         not just file-errors.
13783         * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
13784         (vc-bzr-sha1): Use internal sha1.
13786 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13788         * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
13790 2012-04-10  Sébastien Gross  <seb@chezwam.org>  (tiny change)
13792         * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
13793         that start in the middle of the line (bug#10496).
13795 2012-04-10  Dan Nicolaescu  <dann@gnu.org>
13797         * battery.el (battery-linux-proc-acpi): Only one battery is
13798         discharged at a time, but that seems to confuse battery.el when
13799         computing `rate-type' for the battery not being discharged
13800         (bug#10332).
13802 2012-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13804         * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
13806         * international/quail.el: Use dolist and simplify.
13807         (quail-define-package, quail-update-keyboard-layout)
13808         (quail-define-rules): Use dolist.
13809         (quail-insert-kbd-layout, quail-get-translation): CSE.
13811         * tmm.el: Use dolist, remove left over hook.
13812         (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
13813         Use dolist.
13814         (calendar-load-hook): Don't mess with it.
13816         * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
13817         Use derived-mode-p.  Run the diff asynchronously.
13819 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13821         * obsolete/mouse-sel.el: Add an Obsolete-since header.
13823 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
13825         * misc.el: Display absolute path of loaded DLLs (bug#10424).
13826         (list-dynamic-libraries--loaded): New function.
13827         (list-dynamic-libraries--refresh): Use it.
13829 2012-04-10  Nathan Weizenbaum  <nweiz@google.com>
13831         * progmodes/python.el (python-fill-paragraph):
13832         Make python-fill-region in a multiline string work when font-lock is
13833         disabled (bug#7018).
13835 2012-04-10  Laimonas Vėbra  <laimonas.vebra@gmail.com>  (tiny change)
13837         * language/european.el (cp775): Add oem/legacy (en)coding on
13838         DOS/MS Windows for the Baltic languages.  There are still plenty
13839         of texts written in this encoding/codepage (bug#6519).
13841 2012-04-10  Glenn Morris  <rgm@gnu.org>
13843         * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
13844         Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
13846 2012-04-10  Florian Adamsky  <florian@adamsky.it>  (tiny change)
13848         * recentf.el (recentf-dialog-mode-map): Add two keybindings for
13849         next-line "n" and previous-line "p" in order to make recentf more
13850         consistent with ibuffer, dired or org-mode (bug#9387).
13852 2012-04-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13854         * image.el (put-image): Return the overlay created instead of the
13855         optional input string (bug#7834).  Note that this may break code
13856         that is (for some reason or other) depending on `put-image'
13857         returning the string.
13859         * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
13861         * simple.el (zap-to-char): Allow zapping using input methods
13862         (bug#1580).
13864         * textmodes/fill.el (fill-region): Leave point and mark where they
13865         were before filling (bug#5399).
13867 2012-04-09  Glenn Morris  <rgm@gnu.org>
13869         * version.el (emacs-bzr-get-version):
13870         Handle lightweight checkouts of local branches.
13872 2012-04-09  Andreas Schwab  <schwab@linux-m68k.org>
13874         * international/characters.el: Recover lost case pairs.  (Bug#11209)
13876 2012-04-09  Chong Yidong  <cyd@gnu.org>
13878         * custom.el (custom-variable-p): Return nil for non-symbol
13879         arguments instead of signaling an error.
13880         (user-variable-p): Obsolete alias for custom-variable-p.
13882         * apropos.el (apropos-variable):
13883         * files-x.el (read-file-local-variable):
13884         * simple.el (set-variable):
13885         * woman.el (woman-mini-help):
13886         * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
13888 2012-04-09  Glenn Morris  <rgm@gnu.org>
13890         * startup.el (normal-top-level): Don't look for leim-list.el
13891         in places where it will not be found.  (Bug#910)
13893         * international/mule-cmds.el (set-default-coding-systems):
13894         * files.el (normal-mode):
13895         Remove guarded calls to ucs-set-table-for-input.  (Bug#9821)
13896         This function was removed with ucs-tables.el in 2008.
13898 2012-04-08  Eli Zaretskii  <eliz@gnu.org>
13900         * textmodes/ispell.el (ispell-check-version): For hunspell, set
13901         ispell-encoding8-command to "-i", without a trailing space.
13902         (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
13903         separate command-line arguments, to specify the encoding, since
13904         that's how hunspell expects it.
13906 2012-04-08  Glenn Morris  <rgm@gnu.org>
13908         * loadup.el: Load bindings before cus-start.
13909         This reduces somewhat the number of "rogue" settings in emacs -Q.
13911 2012-04-07  Glenn Morris  <rgm@gnu.org>
13913         * version.el (emacs-bzr-get-version): New function.
13914         (emacs-bzr-version): New variable.
13915         * loadup.el (emacs-bzr-version): Set it.  (Bug#8054)
13916         * mail/emacsbug.el (report-emacs-bug): Include bzr version.
13918 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
13920         * international/uni-bidi.el, international/uni-category.el:
13921         * international/uni-combining.el, international/uni-decimal.el:
13922         * international/uni-decomposition.el, international/uni-digit.el:
13923         * international/uni-lowercase.el, international/uni-mirrored.el:
13924         * international/uni-name.el, international/uni-numeric.el:
13925         * international/uni-titlecase.el, international/uni-uppercase.el:
13926         Update for Unicode 6.1.
13928 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
13930         * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
13932 2012-04-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13934         * window.el (shrink-window): Mention the `window-min-height'
13935         variable in the doc string.
13937 2012-04-05  Bastien Guerry  <bzg@altern.org>
13939         * color.el (color-lighten-name): Fix typo.
13941 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13943         * server.el (server--on-display-p): New function.
13944         (server--on-display-p): Use it.
13946 2012-04-04  Gábor Vida  <vidagabor@gmail.com>  (tiny change)
13948         * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
13949         (bug#11145).
13951 2012-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13953         * comint.el (comint--common-quoted-suffix): Check string boundary
13954         before comparing (bug#11158).
13955         * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
13957 2012-04-04  Chong Yidong  <cyd@gnu.org>
13959         * minibuffer.el (completion-extra-properties): Doc fix.
13961         * subr.el (delayed-warnings-hook): Doc fix.
13963 2012-04-04  Daiki Ueno  <ueno@unixuser.org>
13965         * epa.el (epa--select-keys): Bind C-c C-c to finish the key
13966         selection (Bug#11159).
13967         (epa-insert-keys): Inform that the default public key will be
13968         exported if no key is selected.
13970 2012-04-04  Richard Stallman  <rms@gnu.org>
13972         * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
13974 2012-04-03  Chong Yidong  <cyd@gnu.org>
13976         * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
13977         mail-insert-file, not its obsolete alias mail-attach-file.
13979 2012-04-03  Michael Albinus  <michael.albinus@gmx.de>
13981         * notifications.el (notifications-notify): Fix docstring.
13983 2012-04-02  Glenn Morris  <rgm@gnu.org>
13985         * emacs-lisp/authors.el (authors-aliases): Another addition.
13987 2012-04-02  Michael Albinus  <michael.albinus@gmx.de>
13989         * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
13990         `tramp-compat-call-process' instead of `tramp-local-call-process'.
13991         Reported by Magnus Henoch <magnus.henoch@gmail.com>.
13993 2012-04-01  Chong Yidong  <cyd@gnu.org>
13995         * files.el (file-in-directory-p): Rename from file-subdir-of-p.
13996         Handle root directory properly.
13997         (copy-directory): Caller changed.
13999         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14000         * net/tramp.el (tramp-file-name-for-operation): Callers changed.
14002 2012-03-31  Glenn Morris  <rgm@gnu.org>
14004         * term/xterm.el (xterm-extra-capabilities): Doc fix.
14006         * language/indian.el ("Devanagari"): Fix typo.  (Bug#11103)
14008         * calendar/calendar.el (calendar-window-list)
14009         (calendar-hide-window): Restore.  (Bug#11140)
14010         (calendar-exit): Use calendar-window-list, calendar-hide-window again.
14012         * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
14014 2012-03-30  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14016         * dired-aux.el (dired-copy-file-recursive, dired-create-files):
14017         Check if file is a symlink (Bug#10489).
14019         * files.el (copy-directory): Likewise.
14021 2012-03-30  Chong Yidong  <cyd@gnu.org>
14023         * image.el (imagemagick-types-inhibit)
14024         (imagemagick-register-types): Doc fix.
14026 2012-03-30  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
14028         * textmodes/ispell.el (ispell-get-extended-character-mode):
14029         Disable extended-char-mode for hunspell.  hunspell does not support it
14030         and treats ~word as ordinary words in pipe mode.
14032 2012-03-30  Glenn Morris  <rgm@gnu.org>
14034         * tutorial.el (help-with-tutorial): Ensure local variables don't
14035         happen to make the buffer read-only.  (Bug#11127)
14037 2012-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14039         * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
14040         (perl-calculate-indent): Return `noindent' in strings.
14042 2012-03-28  Sam Steingold  <sds@gnu.org>
14044         * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
14045         instead of the broken adhockery which does not prevent calendar
14046         buffers from being displayed at random after exit.
14047         (calendar-window-list, calendar-hide-window): Remove the broken
14048         adhockery.
14050 2012-03-28  Glenn Morris  <rgm@gnu.org>
14052         * replace.el (query-replace-map): Doc fix.
14054 2012-03-28  Andreas Schwab  <schwab@linux-m68k.org>
14056         * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
14057         contents.  (Bug#11109)
14059 2012-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14061         * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
14062         (bug#11077).
14063         (avl-tree--check, avl-tree--check-node): New funs.
14065 2012-03-27  Martin Rudalics  <rudalics@gmx.at>
14067         * window.el (switch-to-visible-buffer): New option.
14068         (switch-to-prev-buffer, switch-to-next-buffer):
14069         Observe switch-to-visible-buffer.  Make sure that checking for a window
14070         showing a buffer already is done on the same frame.
14072 2012-03-27  Glenn Morris  <rgm@gnu.org>
14074         * startup.el (mail-host-address): Doc fix.
14076 2012-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
14078         * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
14079         than 197 variables.
14081 2012-03-26  Ami Fischman  <ami@fischman.org>
14083         * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
14085 2012-03-26  Glenn Morris  <rgm@gnu.org>
14087         * files.el (save-buffers-kill-emacs): Doc fix.
14089         * startup.el (normal-top-level, command-line, command-line-1):
14090         Give them doc strings.
14092 2012-03-25  Eli Zaretskii  <eliz@gnu.org>
14094         * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
14095         of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
14097 2012-03-25  Chong Yidong  <cyd@gnu.org>
14099         * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
14100         theme if it was previously enabled before (Bug#11031).
14102         * cus-theme.el (custom-theme-write-faces): Retrieve current face
14103         spec with custom-face-get-current-spec if its :shown-value is not
14104         determined yet (Bug#9337).
14105         (customize-create-theme, custom-theme-revert): Doc fixes.
14107         * button.el (button-at): Minor addition to docstring.
14109 2012-03-24  Simon Leinen  <simon.leinen@gmail.com>
14111         * vc/vc.el (vc-merge): Fix a prompt.
14113 2012-03-24  Chong Yidong  <cyd@gnu.org>
14115         * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
14116         point (Bug#9623).
14118         * button.el (button-at): Minor addition to docstring.
14120 2012-03-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14122         * newcomment.el (comment-choose-indent): No space after BOL.
14124 2012-03-22  Sam Steingold  <sds@gnu.org>
14126         * window.el (switch-to-prev-buffer): Revert last patch because the
14127         bug turned out to be an advertised feature (Elisp manual 28.14).
14129 2012-03-22  Glenn Morris  <rgm@gnu.org>
14131         * vc/vc-bzr.el (vc-bzr-status-switches): New option.  (Bug#6724)
14132         (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
14134 2012-03-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14136         * net/network-stream.el (network-stream-open-starttls): Make error
14137         message under Windows be less misleading.
14139 2012-03-22  Liang Wang  <netcasper@gmail.com>  (tiny change)
14141         * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
14142         understands (bug#9942).
14144 2012-03-22  Chong Yidong  <cyd@gnu.org>
14146         * simple.el (end-of-visible-line): Handle return value of
14147         next-single-property-change properly (Bug#9371).
14149 2012-03-22  Kenichi Handa  <handa@m17n.org>
14151         * international/quail.el (quail-insert-kbd-layout): Fix previous
14152         change.  To avoid unwanted bidi reordering, use
14153         bidi-string-mark-left-to-right instead of inserting LRO and PDF.
14155 2012-03-21  Dmitry Gutov  <dgutov@yandex.ru>
14157         * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
14158         (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
14159         (ruby-beginning-of-indent): Be more careful with the difference
14160         between word-boundary and symbol boundary.
14161         (ruby-mode-syntax-table): Make : a symbol constituent.
14163 2012-03-21  Andreas Politz  <politza@fh-trier.de>
14165         * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
14167 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14169         * progmodes/etags.el (tags-completion-at-point-function):
14170         Improve last fix.
14172         * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
14174 2012-03-21  Sam Steingold  <sds@gnu.org>
14176         * progmodes/etags.el (tags-completion-at-point-function):
14177         Avoid the error when point is inside the pattern.
14179 2012-03-21  John Yates  <john@yates-sheets.org>  (tiny change)
14181         * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
14182         line (Bug#10855).
14184 2012-03-21  Drew Adams  <drew.adams@oracle.com>
14186         * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
14188 2012-03-21  Anmol Khirbat  <anmol@khirbat.net>  (tiny change)
14190         * ido.el (ido-set-current-directory, ido-read-internal)
14191         (ido-choose-completion-string, ido-completion-help): Handle nil
14192         value of ido-completion-buffer (Bug#11008).
14194 2012-03-21  Sam Steingold  <sds@gnu.org>
14196         * window.el (switch-to-prev-buffer): Do not switch to a visible
14197         window previous buffer, just like with the frame previous buffers.
14199 2012-03-21  Chong Yidong  <cyd@gnu.org>
14201         * faces.el (make-face, make-empty-face, copy-face):
14202         * face-remap.el (face-remap-add-relative, face-remap-set-base):
14203         Doc fixes.
14205 2012-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14207         * wid-edit.el (widget-complete-field): Remove (bug#11051).
14208         (widget-complete): Remove broken use of it.
14210 2012-03-20  Chong Yidong  <cyd@gnu.org>
14212         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14213         Use string-width and truncate-string-width to handle arbitrary
14214         characters.
14216 2012-03-20  Tassilo Horn  <tassilo@member.fsf.org>
14218         * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
14219         to draw rectangles, not squares.  (Regression introduced by revno
14220         2011-03-02T03:48:01Z!cyd@stupidchicken.com)
14222 2012-03-18  Chong Yidong  <cyd@gnu.org>
14224         * faces.el (face-spec-reset-face): Don't call display-graphic-p if
14225         it is not yet defined (for temacs).
14227 2012-03-18  Leo Liu  <sdl.web@gmail.com>
14229         * net/rcirc.el (rcirc-cmd-quit): Allow quitting all servers with
14230         prefix.
14232 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
14234         * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
14235         (ispell-choices-win-default-height, ispell-silently-savep)
14236         (ispell-dictionary-alist, ispell-encoding8-command)
14237         (ispell-check-version, ispell-aspell-find-dictionary)
14238         (ispell-valid-dictionary-list, ispell-words-keyword)
14239         (ispell-get-word, ispell-internal-change-dictionary)
14240         (ispell-region, ispell-skip-region-list)
14241         (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
14242         (ispell-process-line, ispell-minor-mode, ispell-minor-check)
14243         (ispell-message-text-end, ispell-message)
14244         (ispell-buffer-local-parsing): Doc fix.
14246 2012-03-13  Jambunathan K  <kjambunathan@gmail.com>
14248         * htmlfontify.el: Add support for code block fontification for ODT
14249         export (Bug #9914).
14250         (hfy-optimisations): Define new option
14251         `body-text-only'
14252         (hfy-fontify-buffer): Honor above setting.
14253         (hfy-begin-span, hfy-end-span): New routines factored out form
14254         `hfy-fontify-buffer'.
14255         (hfy-begin-span-handler, hfy-end-span-handler): New variables
14256         that permit insertion of custom tags.
14257         (hfy-fontify-buffer): Use above handlers.
14258         (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
14259         (hfy-face-to-css): Re-defined to be a variable.
14260         (hfy-compile-stylesheet): Modify.  Allow stylesheet to be built
14261         over multiple runs.  This is made possible by having the caller let
14262         bind a special variable `hfy-user-sheet-assoc'.
14263         (htmlfontify-string): New defun.
14264         (hfy-compile-face-map): Make sure that the last char in the
14265         buffer is correctly fontified.
14266         (hfy-face-resolve-face): Whitespace only change.
14268 2012-03-17  Eli Zaretskii  <eliz@gnu.org>
14270         * textmodes/ispell.el (ispell-get-decoded-string): Make the error
14271         message more clear.
14273 2012-03-16  Leo Liu  <sdl.web@gmail.com>
14275         * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
14277 2012-03-16  Alan Mackenzie  <acm@muc.de>
14279         Further optimize the handling of large macros.
14281         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
14282         limit to a call of `c-literal-limits'.
14283         (c-determine-+ve-limit): New function.
14284         (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
14285         (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
14286         In CASE 5B, restrict a search limit to 500.
14287         (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
14289         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
14290         Restrict macro bounds to +-500 from after-change's BEG END.
14292 2012-03-16  Leo Liu  <sdl.web@gmail.com>
14294         * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
14296 2012-03-16  Aaron S. Hawley  <Aaron.S.Hawley@gmail.com>
14298         * tar-mode.el (tar-mode): Fix saving by conditionally undoing
14299         `special-mode' setting of `buffer-read-only'.  (Bug#11010)
14301 2012-03-16  Glenn Morris  <rgm@gnu.org>
14303         * view.el (view-buffer, view-buffer-other-window)
14304         (view-buffer-other-frame): Doc fixes re special mode-class.
14306         * subr.el (eval-after-load): If named feature is provided not from
14307         a file, run after-load forms.  (Bug#10946)
14309         * calendar/calendar.el (calendar-insert-at-column):
14310         Handle non-unit-width characters a bit better.  (Bug#10978)
14312 2012-03-15  Chong Yidong  <cyd@gnu.org>
14314         * emacs-lisp/ring.el (ring-extend): New function.
14315         (ring-insert+extend): Extend the ring correctly (Bug#11019).
14317         * comint.el (comint-read-input-ring)
14318         (comint-add-to-input-history): Grow comint-input-ring lazily.
14320 2012-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14322         * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
14323         Fix up parsing of multiline twoarg non-paired elements (bug#11014).
14325         * imenu.el: Fix multiple inheritance breakage (bug#9199).
14326         (imenu-add-to-menubar): Don't add a redundant index.
14327         (imenu-update-menubar): Handle a dynamically composed keymap.
14329 2012-03-13  Katsumi Yamaoka  <yamaoka@jpl.org>
14331         * mail/sendmail.el (mail-encode-header):
14332         Bind rfc2047-encode-encoded-words to nil.
14334 2012-03-13  Glenn Morris  <rgm@gnu.org>
14336         * calendar/calendar.el (calendar-string-spread):
14337         Handle non-unit-width characters a bit better.  (Bug#10978)
14339 2012-03-13  Leo Liu  <sdl.web@gmail.com>
14341         * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
14342         directory and file as argument (Bug#10822).
14344 2012-03-13  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
14346         * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
14347         For dynamically generated code, follow $PC.
14348         (gdb-disassembly-handler-custom): Handle no function name case.
14350 2012-03-13  Tim Landscheidt  <tim@tim-landscheidt.de>  (tiny change)
14352         * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
14353         * emulation/ws-mode.el (ws-query-replace):
14354         * sort.el (sort-regexp-fields):
14355         Fix missing trailing whitespace in interactive prompts.  (Bug#11002)
14357 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14359         * dabbrev.el: Fix cycle completion order (bug#10963).
14360         (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
14361         (dabbrev-completion): Don't use an obarray; provide
14362         a cycle-sort-function.
14364 2012-03-12  Leo Liu  <sdl.web@gmail.com>
14366         * simple.el (kill-new): Use equal-including-properties for comparison.
14367         (kill-do-not-save-duplicates): Doc fix.
14369 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14371         * dabbrev.el: Fix cycle completion (bug#10963).
14372         Use lexical binding and wrap to 80 columns.
14373         (dabbrev-completion): Delay computing the list of completions.
14375 2012-03-12  Kenichi Handa  <handa@m17n.org>
14377         * international/quail.el (quail-insert-kbd-layout): Surround each
14378         row by LRO and PDF instead of inserting many LRMs.  Pad the left
14379         and right of each non-spacing marks.  Insert invisible space
14380         between lower and upper characters to prevent composition.
14382 2012-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14384         * minibuffer.el (minibuffer-complete): Don't get confused when the
14385         function is run twice via different commands (bug#10958).
14386         (complete-with-action): Fix docstring.
14388 2012-03-12  Chong Yidong  <cyd@gnu.org>
14390         * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
14391         (nxml-completion-at-point-function): New function.
14392         (nxml-mode): Use it.
14393         (nxml-bind-meta-tab-to-complete-flag): Default to t.
14395         * emacs-lisp/package.el (package-unpack, package-unpack-single):
14396         Load generated autoloads file before byte compiling (Bug#10970).
14397         (package--make-autoloads-and-compile): New helper fun.
14399 2012-03-12  Christopher Schmidt  <christopher@ch.ristopher.com>
14401         * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
14403 2012-03-11  Michael Albinus  <michael.albinus@gmx.de>
14405         * autorevert.el (auto-revert-handler): Ensure, that
14406         file-readable-p is applied only for local files or in
14407         auto-revert-tail-mode.
14409 2012-03-11  Andreas Schwab  <schwab@linux-m68k.org>
14411         * server.el (server-eval-at): Handle non-tcp connections.
14412         Decode result string.
14414         * server.el (server-msg-size): New constant.
14415         (server-reply-print): New function.
14416         (server-eval-and-print): Use it.
14417         (server-eval-at): Use server-quote-arg and server-unquote-arg.
14418         Handle -print-nonl.
14420 2012-03-11  Christopher Schmidt  <christopher@ch.ristopher.com>
14422         * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
14423         (Bug#10987).
14425 2012-03-11  Chong Yidong  <cyd@gnu.org>
14427         * simple.el (goto-line): Doc fix (Bug#9938).
14429         * subr.el (save-window-excursion): Doc fix (Bug#9979).
14431         * dabbrev.el (dabbrev--find-expansion): Update progress reporter
14432         when finished (Bug#10963).
14434 2012-03-11  Martin Rudalics  <rudalics@gmx.at>
14436         * window.el (split-window-below): Fix bug in case where
14437         split-window-keep-point is nil (Bug#10971).
14439 2012-03-11  Juri Linkov  <juri@jurta.org>
14441         * replace.el (replace-highlight): Set isearch-word to nil
14442         unconditionally.  (Bug#10887)
14444 2012-03-10  Eli Zaretskii  <eliz@gnu.org>
14446         * net/mairix.el (mairix-replace-invalid-chars): Rename from
14447         mairix-replace-illegal-chars; all callers changed.  Don't remove
14448         ^, ~, and = characters: they are meaningful in mairix search specs.
14449         (mairix-widget-create-query): Add usage information about mairix
14450         search forms: negating words, searching for substrings, etc.
14452 2012-03-10  Jae-hyeon Park  <jae-hyeon.park@desy.de>  (tiny change)
14454         * international/fontset.el (font-encoding-alist): Add an entry for
14455         ksx1001 (Bug#5667).
14457 2012-03-10  Richard Stallman  <rms@gnu.org>
14459         * mail/sendmail.el (mail-encode-header):
14460         Set rfc2047-encode-encoded-words.
14462         * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
14464         * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
14465         view buffer means not swapped.
14466         (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
14467         (rmail-write-region-annotate): Error if real text has disappeared.
14469         * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
14471 2012-03-10  Chong Yidong  <cyd@gnu.org>
14473         * emulation/cua-rect.el (cua--init-rectangles):
14474         * emulation/cua-base.el (cua--init-keymaps):
14475         Add delete-forward-char to remappings (Bug#9666).
14477 2012-03-10  Martin Rudalics  <rudalics@gmx.at>
14479         * speedbar.el (speedbar-unhighlight-one-tag-line):
14480         Avoid unhighlighting due to frame switching (Bug#10275).
14482 2012-03-10  Chong Yidong  <cyd@gnu.org>
14484         * minibuffer.el (completion-in-region, completion-help-at-point):
14485         Give the completion field overlay a high priority (Bug#6830).
14487         * dired.el (dired-goto-file): Recognize absolute file name
14488         listings (Bug#7126).
14489         (dired-goto-file-1): New helper function.
14490         (dired-toggle-read-only): Inhibit warnings.
14492 2012-03-09  Michael Albinus  <michael.albinus@gmx.de>
14494         * net/dbus.el (dbus-property-handler): Return empty array if
14495         there are no properties.
14497 2012-03-09  Leo Liu  <sdl.web@gmail.com>
14499         * savehist.el (savehist-printable): Stricter check for string
14500         value (Bug#10937).
14502 2012-03-09  Eli Zaretskii  <eliz@gnu.org>
14504         * mail/smtpmail.el (smtpmail-send-it):
14505         Bind coding-system-for-write to *-unix, so that FCC files are kept in
14506         valid mbox format.
14508 2012-03-09  Glenn Morris  <rgm@gnu.org>
14510         * files.el (dir-locals-find-file):
14511         Don't check result is regular, readable.
14512         (dir-locals-read-from-file): Demote errors.
14514 2012-03-08  Eli Zaretskii  <eliz@gnu.org>
14516         * international/quail.el (quail-insert-kbd-layout):
14517         Insert invisible LRM characters before each character in a keyboard
14518         layout cell, to prevent their reordering by bidi display engine.
14519         For details, see the discussion in
14520         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
14522 2012-03-08  Alan Mackenzie  <acm@muc.de>
14524         * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
14525         the starting position; make it extend the marked region when
14526         invoked repeatedly - all under appropriate circumstances.
14527         Fixes bugs #5525, #10906.
14529 2012-03-08  Glenn Morris  <rgm@gnu.org>
14531         * files.el (locate-dominating-file, dir-locals-find-file):
14532         Undo 2012-03-06 change.
14534 2012-03-07  Eli Zaretskii  <eliz@gnu.org>
14536         * international/quail.el (quail-help):
14537         Force bidi-paragraph-direction be left-to-right.  See discussion in
14538         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
14539         for the reason.
14541 2012-03-07  Michael Albinus  <michael.albinus@gmx.de>
14543         Avoid superfluous registering of signals.  (Bug#10807)
14545         * notifications.el (notifications-on-action-object)
14546         (notifications-on-close-object): New defvars.
14547         (notifications-on-action-signal, notifications-on-closed-signal):
14548         Unregister the signal if not needed any longer.
14549         (notifications-notify): Register `notifications-action-signal' or
14550         `notifications-closed-signal', if :on-action or :on-close has been
14551         passed as argument.
14553 2012-03-07  Chong Yidong  <cyd@gnu.org>
14555         * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
14556         non-X platforms.
14558 2012-03-06  Glenn Morris  <rgm@gnu.org>
14560         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
14561         (x-disown-selection-internal, x-get-selection-internal):
14562         Doc fix (add arglist signatures).  (Bug#10783)
14564 2012-03-06  Kaushik Srenevasan  <ksrenevasan@gmail.com>  (tiny change)
14566         * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
14567         Handle breakpoints with no "type".
14569 2012-03-06  Glenn Morris  <rgm@gnu.org>
14571         * files.el (locate-dominating-file): Add optional predicate argument.
14572         (dir-locals-find-file): Make use of above change.
14574 2012-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>
14576         * info.el (Info-insert-dir): Also try "dir.gz".
14578 2012-03-06  Glenn Morris  <rgm@gnu.org>
14580         * files.el (dir-locals-find-file):
14581         Ignore non-readable or non-regular files.  (Bug#10928)
14583         * files.el (locate-dominating-file): Doc fix.
14585 2012-03-06  Adam Spiers  <emacs@adamspiers.org>  (tiny change)
14587         * calendar/calendar.el (calendar-set-mode-line):
14588         `getenv' returns a string.  (Bug#10951)
14590 2012-03-05  Leo Liu  <sdl.web@gmail.com>
14592         * simple.el (backward-delete-char-untabify): Constrain point to
14593         field (Bug#10939).
14595         * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
14597 2012-03-05  Chong Yidong  <cyd@gnu.org>
14599         * simple.el (count-words): If called from Lisp, return the word
14600         count, for symmetry with `count-lines'.  Arglist changed.
14601         (count-words--message): Args changed.  Consolidate counting code
14602         from count-words and count-words-region.
14603         (count-words-region): Caller changed.
14604         (count-lines-region): Make it an obsolete alias.
14606 2012-03-04  Tassilo Horn  <tassilo@member.fsf.org>
14608         * saveplace.el (save-place-to-alist)
14609         (save-place-ignore-files-regexp): Allow value nil to disable this
14610         feature.
14612 2012-03-04  Chong Yidong  <cyd@gnu.org>
14614         * faces.el (face-spec-reset-face): For the default face, reset the
14615         attributes to default values (Bug#10748).
14617 2012-03-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14619         * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
14620         previous patch: Check `message-send-mail-function', and not the
14621         default function (bug#10897).
14623 2012-03-04  Michael Albinus  <michael.albinus@gmx.de>
14625         * notifications.el (notifications-on-action-signal)
14626         (notifications-on-closed-signal): Check for unique service name of
14627         incoming event.  Fix error in removing entry.
14628         (top): Register for signals with wildcard service name.
14629         (notifications-notify): Use daemon unique service name for map entries.
14631 2012-03-04  Chong Yidong  <cyd@gnu.org>
14633         * cus-start.el: Make x-select-enable-clipboard-manager customizable.
14635 2012-03-04  Glenn Morris  <rgm@gnu.org>
14637         * abbrev.el (copy-abbrev-table, abbrev-table-p)
14638         (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
14639         (expand-abbrev, define-abbrev-table): Doc fixes.
14641 2012-03-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14643         * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
14644         `message-default-send-mail-function' and not `send-mail-function'
14645         when doing the prompting for `sendmail-query-once' before sending
14646         in Message buffers (bug#10897).
14648         * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
14649         This is inconsistent with all the other stream functions, which leave
14650         the setting up to the higher levels (if so wanted) (bug#10931).
14652 2012-03-02  Alan Mackenzie  <acm@muc.de>
14654         Depessimize the handling of very large macros.
14656         * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
14657         (c-macro-cache-syntactic): New variables to implement a one
14658         element macro cache.
14659         (c-invalidate-macro-cache): New function.
14660         (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
14661         Adapt to use the new cache.
14662         (c-state-safe-place): Use better the cache of safe positions.
14663         (c-state-semi-nonlit-pos-cache)
14664         (c-state-semi-nonlit-pos-cache-limit):
14665         New variables for...
14666         (c-state-semi-safe-place): New function.  Here, in a macro is "safe".
14667         (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
14668         (c-in-literal, c-literal-limits, c-determine-limit-get-base):
14669         Use c-state-semi-safe-place.
14671         * progmodes/cc-langs.el (c-get-state-before-change-functions):
14672         Add c-invalidate-macro-cache to the C, C++, Obj entries.
14674 2012-03-02  Michael Albinus  <michael.albinus@gmx.de>
14676         * jka-compr.el (jka-compr-call-process):
14677         Apply `file-accessible-directory-p' only when the default directory is
14678         not remote.
14680 2012-03-01  Michael Albinus  <michael.albinus@gmx.de>
14682         * files.el (file-equal-p): Fix docstring.  Avoid unnecessary
14683         access of FILE2, if FILE1 does not exist.
14685         * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
14686         Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
14688         * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
14689         Add "PAGER=" to `process-environment'.
14691 2012-03-01  Michael R. Mauger  <mmaug@yahoo.com>
14693         * progmodes/sql.el: Bug fix
14694         (sql-get-login-ext): Save login values in globals.
14695         (sql-get-login): Use new version of `sql-get-login-ext'.
14696         (sql-interactive-mode): Set global `sql-connection' to nil.
14697         (sql-connect): Set global values for connection.
14698         (sql-product-interactive): Save global values as buffer local.
14700 2012-02-29  Leo Liu  <sdl.web@gmail.com>
14702         * abbrev.el (define-abbrevs): Reset sys to nil.
14704 2012-02-28  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14706         * files.el (file-equal-p): Rename from `files-equal-p'.
14707         Return nil when one or both files don't exist.
14708         (file-subdir-of-p): Now only top directory must exists,
14709         return nil if it doesn't.
14710         (copy-directory): No need to test with `file-subdir-of-p' after
14711         creating dir.
14712         * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
14713         to `file-equal-p'.
14715 2012-02-28  Glenn Morris  <rgm@gnu.org>
14717         * shell.el (shell-mode):
14718         * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
14719         * play/landmark.el (landmark-font-lock-face-O):
14720         * play/handwrite.el (handwrite):
14721         * play/gomoku.el (gomoku-O):
14722         * net/browse-url.el (browse-url-browser-display):
14723         * international/mule.el (define-charset):
14724         * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
14725         * filesets.el (filesets-find-file-delay):
14726         * eshell/em-xtra.el (eshell-xtra):
14727         * eshell/em-unix.el (eshell-grep):
14728         * emulation/viper.el (viper-mode):
14729         * emacs-lisp/regexp-opt.el (regexp-opt-group):
14730         * emacs-lisp/easymenu.el (easy-menu-define):
14731         * calendar/timeclock.el (timeclock-use-display-time):
14732         * bs.el (bs-mode):
14733         * bookmark.el (bookmark-save-flag):
14734         Doc fix (standardize possessive apostrophe usage).
14736 2012-02-27  Chong Yidong  <cyd@gnu.org>
14738         * emulation/viper-cmd.el (viper-intercept-ESC-key):
14739         Fix key-binding lookup for ESC key (Bug#9146).
14741         * font-lock.el (font-lock-specified-p): Rename from
14742         font-lock-spec-present.  Callers changed.
14744 2012-02-27  Daniel Hackney  <dan@haxney.org>
14746         * emacs-lisp/package.el (package-compute-transaction):
14747         Handle holding a package version to t in package-load-list.
14749 2012-02-26  Michael Albinus  <michael.albinus@gmx.de>
14751         * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
14752         (tramp-get-inode, tramp-get-device): Use cached values.
14754 2012-02-26  Alan Mackenzie  <acm@muc.de>
14756         Check there is a font-lock specification before doing initial
14757         fontification.
14759         * font-core.el (font-lock-mode): Move the conditional from
14760         :after-hook to font-lock-initial-fontify.
14761         (font-lock-default-function): Move the check for a specification
14762         to font-lock-spec-present.
14764         * font-lock.el (font-lock-initial-fontify): Call ...
14765         (font-lock-spec-present): New function.
14767 2012-02-26  Jim Blandy  <jimb@red-bean.com>
14769         * progmodes/gdb-mi.el (gdb-mi-quote): New function.
14770         (gdb-send): Apply it to the operand of the '-interpreter-exec
14771         console' command, so that we can pass arguments with (say) quotes
14772         in them.  Store exact string sent in gdb-debug-log (Bug#10765).
14774 2012-02-26  Chong Yidong  <cyd@gnu.org>
14776         * help-fns.el (describe-function-1): Clarify description of
14777         remapping (Bug#10844).
14779         * files.el (files-equal-p): Doc fix.
14780         (file-subdir-of-p): Doc fix.  Convert loop macro to plain Lisp,
14781         and quit the loop once a mismatch is found.
14783 2012-02-25  Juanma Barranquero  <lekktu@gmail.com>
14785         * bs.el (bs--show-with-configuration): Don't throw an error
14786         if the window cannot be split; otherwise, subsequent calls to
14787         bs-show fail, restoring a stale window config.  (Bug#10882)
14789 2012-02-25  Jan Djärv  <jan.h.d@swipnet.se>
14791         * term/ns-win.el (global-map): Bind ns-drag-file to
14792         ns-find-file (Bug#5855, Bug#10050).
14794 2012-02-25  Andreas Schwab  <schwab@linux-m68k.org>
14796         * calendar/parse-time.el (parse-time-string): Allow extractor to
14797         return nil.
14799 2012-02-25  Michael Albinus  <michael.albinus@gmx.de>
14801         * net/tramp.el (tramp-file-name-for-operation):
14802         Add `files-equal-p' and `file-subdir-of-p'.
14804         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
14805         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
14806         Add COPY-CONTENTS argument.
14808 2012-02-25  Chong Yidong  <cyd@gnu.org>
14810         Add custom groups for VC backends, for consistency with vc-bzr.
14812         * vc/vc-arch.el (vc-arch):
14813         * vc/vc-cvs.el (vc-cvs):
14814         * vc/vc-git.el (vc-git):
14815         * vc/vc-hg.el (vc-hg):
14816         * vc/vc-mtn.el (vc-mtn):
14817         * vc/vc-rcs.el (vc-rcs):
14818         * vc/vc-sccs.el (vc-sccs):
14819         * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
14820         All relevant defcustoms reassigned.
14822 2012-02-25  Chong Yidong  <cyd@gnu.org>
14824         * newcomment.el (comment-styles): Add autoload (Bug#10868).
14826         * term/x-win.el (x-initialize-window-system): Reduce default for
14827         x-selection-timeout to 5 seconds (Bug#8869).
14829 2012-02-24  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
14831         * files.el (files-equal-p, file-subdir-of-p): New functions.
14832         (copy-directory): Error when trying to copy a directory on itself.
14833         Add missing copy-contents arg to tramp handler.
14834         * dired-aux.el (dired-copy-file-recursive): Same.
14835         (dired-create-files): Modify destination when source is equal to
14836         dest when copying files.
14837         Return also when dest is a subdir of source.  (Bug#10489)
14839 2012-02-24  Michael Albinus  <michael.albinus@gmx.de>
14841         * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
14842         (Bug#10874)
14844 2012-02-23  Alan Mackenzie  <acm@muc.de>
14846         * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
14847         parameter "after-hook:" to allow the expansion to run code after
14848         the execution of the mode hooks.
14850         * font-lock.el (font-lock-initial-fontify): New function extracted
14851         from font-lock-mode-internal.
14853         * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
14854         :after-hook.
14856 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14858         * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
14859         (completion--cache-all-sorted-completions): New function.
14860         (completion-all-sorted-completions): Use it.
14861         (completion--do-completion, minibuffer-force-complete):
14862         Use it to re-instate the flush hook.
14864         * icomplete.el (icomplete-completions): Replace last fix with a better
14865         one (bug#10850).
14867 2012-02-23  Dmitry Gutov  <dgutov@yandex.ru>
14869         * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
14870         when it might call us back infinitely (bug#10797).
14872 2012-02-23  Glenn Morris  <rgm@gnu.org>
14874         * minibuffer.el (completion-category-overrides): Doc fix.
14876 2012-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
14878         * minibuffer.el (completion-table-with-context): Fix inf-loop.
14879         Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
14881 2012-02-23  Glenn Morris  <rgm@gnu.org>
14883         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
14884         (authors-obsolete-files-regexps, authors-ignored-files)
14885         (authors-ambiguous-files, authors-renamed-files-alist):
14886         Add more entries.
14888 2012-02-23  Juri Linkov  <juri@jurta.org>
14890         * isearch.el (isearch-occur): Sync interactive spec with occur's
14891         new feature in `occur-read-primary-args'.  Doc fix.  (Bug#10705)
14893         * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
14895 2012-02-22  Juri Linkov  <juri@jurta.org>
14897         * international/mule-cmds.el (read-char-by-name): Use \` and \'.
14898         (ucs-insert): Doc fix.  Check for hex digits in the string.
14899         Don't display `nil' in the error message.  (Bug#10857)
14901 2012-02-22  Alan Mackenzie  <acm@muc.de>
14903         * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
14905 2012-02-22  Glenn Morris  <rgm@gnu.org>
14907         * ffap.el (ffap-c-path):
14908         * man.el (Man-header-file-path): Handle multiarch.  (Bug#10702)
14910 2012-02-22  Chong Yidong  <cyd@gnu.org>
14912         * custom.el (load-theme): Doc fix.
14914 2012-02-22  Glenn Morris  <rgm@gnu.org>
14916         * dired-x.el (dired-guess-shell-alist-default):
14917         Remove escape sequences from nroff output.  (Bug#172)
14919 2012-02-21  Glenn Morris  <rgm@gnu.org>
14921         * vc/emerge.el (emerge-defvar-local):
14922         Set `permanent-local' property rather than unused `preserved'.
14924         * textmodes/picture.el (picture-delete-char): New alias.
14925         (picture-mode-map): Use it.  (Bug#10860)
14926         (picture-mode): Doc fix.
14928 2012-02-21  Juanma Barranquero  <lekktu@gmail.com>
14930         * newcomment.el (uncomment-region-default): Remove unused binding.
14932 2012-02-21  Glenn Morris  <rgm@gnu.org>
14934         * textmodes/picture.el (picture-motion, picture-motion-reverse)
14935         (picture-self-insert, picture-tab-chars): Doc fix.
14936         (picture-mode-map): Fix C-a, C-e.
14938 2012-02-20  Glenn Morris  <rgm@gnu.org>
14940         * emacs-lisp/authors.el (authors-aliases): Add another entry.
14942 2012-02-20  Leo Liu  <sdl.web@gmail.com>
14944         * icomplete.el (icomplete-completions): Check FROM arg before
14945         passing to substring (Bug#10850).
14947 2012-02-19  Chong Yidong  <cyd@gnu.org>
14949         * comint.el: Require ansi-color.
14950         (comint-output-filter-functions): Add ansi-color-process-output.
14952         * ansi-color.el: Don't set comint-output-filter-functions; it is
14953         now in the initial value defined in comint.el.
14954         (ansi-color-apply-face-function): New variable.
14955         (ansi-color-apply-on-region): Use it.
14956         (ansi-color-apply-overlay-face): New function.
14958         * shell.el (shell): No need to require ansi-color.
14959         (shell-mode): Use ansi-color-apply-face-function to highlight
14960         color escapes using font-lock-face property (Bug#10835).
14962 2012-02-19  Chong Yidong  <cyd@gnu.org>
14964         * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
14965         mode-line formats (Bug#10839).
14967 2012-02-18  Glenn Morris  <rgm@gnu.org>
14969         * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
14971         * mail/undigest.el (unforward-rmail-message): Doc fix.
14973         * saveplace.el (save-place-ignore-files-regexp): Add :version.
14975 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
14977         * international/characters.el (script-list): Sync with the latest
14978         Unicode Character Database.
14980 2012-02-18  Andreas Schwab  <schwab@linux-m68k.org>
14982         * international/titdic-cnv.el: Remove duplicate coding tag.
14983         * language/cham.el: Likewise.
14984         * language/tai-viet.el: Likewise.
14986 2012-02-18  Glenn Morris  <rgm@gnu.org>
14988         * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
14989         * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
14990         (calendar-bahai-all-holidays-flag, calendar-other-dates):
14991         * calendar/diary-lib.el (diary-abbreviated-year-flag):
14992         * calendar/holidays.el (holiday-bahai-holidays)
14993         (calendar-holidays, list-holidays):
14994         Use utf-8 Bahá'í in doc-strings, menus, etc.
14996 2012-02-17  Tassilo Horn  <tassilo@member.fsf.org>
14998         * saveplace.el (save-place-ignore-files-regexp): New variable
14999         allowing for excluding files from saving their location of point.
15000         The default value matches the temporary commit message editing
15001         files from Git, SVN, Bazaar, and Mercurial.
15002         (save-place-to-alist): Use it.
15004 2012-02-17  Lawrence Mitchell  <wence@gmx.li>
15005             Stefan Monnier  <monnier@iro.umontreal.ca>
15007         * newcomment.el (uncomment-region-default): Don't leave extra space
15008         when an arg is provided (bug#8150).
15010 2012-02-17  Teodor Zlatanov  <tzz@lifelogs.com>
15012         * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
15014 2012-02-17  Glenn Morris  <rgm@gnu.org>
15016         * net/socks.el: Require network-stream.  (Bug#10599)
15018 2012-02-17  Kenichi Handa  <handa@m17n.org>
15020         * international/charprop.el:
15021         * international/uni-name.el:
15022         * international/uni-old-name.el:
15023         * international/uni-comment.el: Regenerate.
15025 2012-02-16  Glenn Morris  <rgm@gnu.org>
15027         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
15028         Interactively in calendar buffer, give an error if not on a date.
15030 2012-02-15  Glenn Morris  <rgm@gnu.org>
15032         * shell.el (shell-delimiter-argument-list):
15033         Revert 2011-02-17 change.  (Bug#8027)
15035 2012-02-15  Chong Yidong  <cyd@gnu.org>
15037         * minibuffer.el (completion-at-point-functions): Doc fix.
15039         * custom.el (defcustom): Doc fix; note use of defvar.
15041 2012-02-15  Glenn Morris  <rgm@gnu.org>
15043         * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
15044         Doc fixes.
15046 2012-02-14  Glenn Morris  <rgm@gnu.org>
15048         * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
15050 2012-02-14  Lars Ingebrigtsen  <larsi@gnus.org>
15052         * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
15053         way the ports list is computed.
15054         (smtpmail-query-smtp-server): Prompt the user for a port number if
15055         we can't connect to any of the standard ports (bug#10810).
15057 2012-02-14  Teodor Zlatanov  <tzz@lifelogs.com>
15059         * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
15061 2012-02-13  Glenn Morris  <rgm@gnu.org>
15063         * minibuffer.el (read-file-name): Doc fix.  (Bug#10798)
15065 2012-02-13  Teodor Zlatanov  <tzz@lifelogs.com>
15067         * net/gnutls.el (gnutls-trustfiles): New variable.
15068         (gnutls-negotiate): Use it.
15070 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
15072         * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
15073         does its stuff if Gnus is running.
15075 2012-02-13  Alan Mackenzie  <acm@muc.de>
15077         Fix a loop in c-set-fl-decl-start.
15079         * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
15080         c-backward-syntactic-ws actually moves backwards.
15082 2012-02-13  Leo Liu  <sdl.web@gmail.com>
15084         * net/rcirc.el (rcirc-markup-attributes): Move point to the
15085         beginning so that all \C-o chars are removed.
15087 2012-02-12  Teodor Zlatanov  <tzz@lifelogs.com>
15089         * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
15091 2012-02-12  Alan Mackenzie  <acm@muc.de>
15093         Fix infinite loop with long macros.
15094         * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
15096 2012-02-12  Chong Yidong  <cyd@gnu.org>
15098         * window.el (display-buffer): Doc fix (Bug#10785).
15100 2012-02-12  Glenn Morris  <rgm@gnu.org>
15102         * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
15103         (x-disown-selection-internal, x-get-selection-internal):
15104         Sync docs with the xselect.c versions.
15106         * allout-widgets.el: Add missing license notice.
15108 2012-02-11  Glenn Morris  <rgm@gnu.org>
15110         * select.el (x-get-selection-internal, x-own-selection-internal)
15111         (x-disown-selection-internal):
15112         * x-dnd.el (x-get-selection-internal): Update declarations.
15114         * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
15116         * window.el (window-sides-slots):
15117         * tool-bar.el (tool-bar-position):
15118         * term/xterm.el (xterm-extra-capabilities):
15119         * ses.el (ses-self-reference-early-detection):
15120         * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
15121         (verilog-auto-wire-type)
15122         (verilog-auto-delete-trailing-whitespace)
15123         (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
15124         (verilog-auto-tieoff-declaration):
15125         * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
15126         (sql-oracle-statement-starters, sql-oracle-scan-on):
15127         * progmodes/prolog.el (prolog-align-comments-flag)
15128         (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
15129         (prolog-left-indent-regexp, prolog-paren-indent-p)
15130         (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
15131         (prolog-types, prolog-mode-specificators)
15132         (prolog-determinism-specificators, prolog-directives)
15133         (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
15134         (prolog-electric-dot-flag)
15135         (prolog-electric-dot-full-predicate-template)
15136         (prolog-electric-underscore-flag, prolog-electric-tab-flag)
15137         (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
15138         (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
15139         (prolog-program-switches, prolog-prompt-regexp)
15140         (prolog-debug-on-string, prolog-debug-off-string)
15141         (prolog-trace-on-string, prolog-trace-off-string)
15142         (prolog-zip-on-string, prolog-zip-off-string)
15143         (prolog-use-standard-consult-compile-method-flag)
15144         (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
15145         (prolog-imenu-max-lines, prolog-info-predicate-index)
15146         (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
15147         (prolog-char-quote-workaround):
15148         * progmodes/cc-vars.el (c-defun-tactic):
15149         * net/tramp.el (tramp-encoding-command-interactive)
15150         (tramp-local-end-of-line):
15151         * net/soap-client.el (soap-client):
15152         * net/netrc.el (netrc-file):
15153         * net/gnutls.el (gnutls):
15154         * minibuffer.el (completion-category-overrides)
15155         (completion-cycle-threshold)
15156         (completion-pcm-complete-word-inserts-delimiters):
15157         * man.el (Man-name-local-regexp):
15158         * mail/feedmail.el (feedmail-display-full-frame):
15159         * international/characters.el (glyphless-char-display-control):
15160         * eshell/em-ls.el (eshell-ls-date-format):
15161         * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
15162         (lisp-lambda-list-keyword-parameter-indentation)
15163         (lisp-lambda-list-keyword-parameter-alignment):
15164         * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
15165         * dired-x.el (dired-omit-verbose):
15166         * cus-theme.el (custom-theme-allow-multiple-selections):
15167         * calc/calc.el (calc-highlight-selections-with-faces)
15168         (calc-lu-field-reference, calc-lu-power-reference)
15169         (calc-note-threshold):
15170         * battery.el (battery-mode-line-limit):
15171         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15172         (archive-7z-update):
15173         * allout.el (allout-prefixed-keybindings)
15174         (allout-unprefixed-keybindings)
15175         (allout-inhibit-auto-fill-on-headline)
15176         (allout-flattened-numbering-abbreviation):
15177         * allout-widgets.el (allout-widgets-auto-activation)
15178         (allout-widgets-icons-dark-subdir)
15179         (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
15180         (allout-widgets-theme-dark-background)
15181         (allout-widgets-theme-light-background)
15182         (allout-widgets-item-image-properties-emacs)
15183         (allout-widgets-item-image-properties-xemacs)
15184         (allout-widgets-run-unit-tests-on-load)
15185         (allout-widgets-time-decoration-activity)
15186         (allout-widgets-hook-error-post-time)
15187         (allout-widgets-track-decoration):
15188         Add missing :version tags to new defcustoms and defgroups.
15190         * progmodes/sql.el (sql-ansi-statement-starters)
15191         (sql-oracle-statement-starters): Add custom type.
15193         * progmodes/prolog.el: Remove leading '*' from defcustom docs.
15194         (prolog-system-version): Give it a type.
15196 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
15198         * term/pc-win.el (x-select-text, x-selection-owner-p)
15199         (x-own-selection-internal, x-disown-selection-internal)
15200         (x-get-selection-internal): Sync doc strings and argument lists
15201         with xselect.c, common-win.el and x-win.el.  (Bug#10783)
15203 2012-02-11  Leo Liu  <sdl.web@gmail.com>
15205         * progmodes/python.el (python-end-of-statement): Fix infinite
15206         loop.  (Bug#10788)
15208 2012-02-10  Glenn Morris  <rgm@gnu.org>
15210         * international/mule-cmds.el (unify-8859-on-encoding-mode)
15211         (unify-8859-on-decoding-mode): Properly mark as obsolete.
15213 2012-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
15215         * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
15216         about SMTP before checking the From header.
15218         * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
15219         into own function for reuse by emacsbug.el.
15221 2012-02-10  Leo Liu  <sdl.web@gmail.com>
15223         * subr.el (condition-case-unless-debug): Rename from
15224         condition-case-no-debug.  All callers changed.
15225         (with-demoted-errors): Fix caller.
15227         * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
15228         * nxml/rng-valid.el (rng-do-some-validation):
15229         * emacs-lisp/package.el (package-refresh-contents)
15230         (package-menu-execute):
15231         * desktop.el (desktop-create-buffer):
15232         * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
15234 2012-02-10  Glenn Morris  <rgm@gnu.org>
15236         * textmodes/bibtex.el:
15237         Add missing :version tags for new/changed defcustoms.
15239         * files.el (remote-file-name-inhibit-cache): Doc fixes.
15241 2012-02-09  Lars Ingebrigtsen  <larsi@rusty>
15243         * mail/smtpmail.el (smtpmail-user-mail-address): New function.
15244         (smtpmail-via-smtp): Use it, or fall back on the From address.
15245         (smtpmail-send-it): Ditto.
15247 2012-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15249         * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
15250         Don't fallback on byte-compile-defvar.  Optimize (defvar foo) away.
15251         (byte-compile-tmp-var): New const.
15252         (byte-compile-defvar): Use it to minimize .elc size.
15253         Just use `defvar' rather than simulate it (bug#10761).
15255 2012-02-09  Glenn Morris  <rgm@gnu.org>
15257         * files.el (rename-uniquely): Doc fix.  (Bug#3806)
15259         * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
15260         Add :version tags.
15262         * progmodes/compile.el (compilation-error-screen-columns)
15263         (compilation-first-column, compilation-filter-start): Doc fixes.
15265         * vc/log-view.el (log-view-toggle-entry-display):
15266         * vc/vc.el (vc-merge, vc-pull): Doc fixes.
15268         * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
15269         (report-emacs-bug-can-use-xdg-email):
15270         (report-emacs-bug-insert-to-mailer): Doc fixes.
15271         (report-emacs-bug): Message fix.
15273         * net/browse-url.el (browse-url-can-use-xdg-open)
15274         (browse-url-xdg-open): Doc fixes.
15276         * electric.el (electric-indent-mode, electric-pair-mode)
15277         (electric-layout-rules, electric-layout-mode): Doc fixes.
15278         (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
15280 2012-02-08  Martin Rudalics  <rudalics@gmx.at>
15282         * server.el (server-unselect-display): Don't inadvertently kill
15283         the current buffer.  (Bug#10729)
15285 2012-02-08  Glenn Morris  <rgm@gnu.org>
15287         * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
15288         (sql-list-table): Doc fixes.
15290         * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
15291         Comment out (does nothing).
15293         * completion.el (dynamic-completion-mode):
15294         * dirtrack.el (dirtrack-debug-mode):
15295         * electric.el (electric-layout-mode):
15296         * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
15297         * face-remap.el (text-scale-mode, buffer-face-mode):
15298         * iimage.el (iimage-mode):
15299         * image-mode.el (image-transform-mode):
15300         * minibuffer.el (completion-in-region-mode):
15301         * scroll-lock.el (scroll-lock-mode):
15302         * simple.el (next-error-follow-minor-mode):
15303         * tar-mode.el (tar-subfile-mode):
15304         * tooltip.el (tooltip-mode):
15305         * vcursor.el (vcursor-use-vcursor-map):
15306         * wid-browse.el (widget-minor-mode):
15307         * emulation/tpu-edt.el (tpu-edt-mode):
15308         * emulation/tpu-extras.el (tpu-cursor-free-mode):
15309         * international/iso-ascii.el (iso-ascii-mode):
15310         * language/thai-util.el (thai-word-mode):
15311         * mail/supercite.el (sc-minor-mode):
15312         * net/goto-addr.el (goto-address-mode):
15313         * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
15314         * progmodes/cwarn.el (cwarn-mode):
15315         * progmodes/flymake.el (flymake-mode):
15316         * progmodes/glasses.el (glasses-mode):
15317         * progmodes/hideshow.el (hs-minor-mode):
15318         * progmodes/pascal.el (pascal-outline-mode):
15319         * textmodes/enriched.el (enriched-mode):
15320         * vc/smerge-mode.el (smerge-mode):
15321         Doc fixes (minor mode argument).
15323 2012-02-07  Eli Zaretskii  <eliz@gnu.org>
15325         * ls-lisp.el (ls-lisp-sanitize): New function.
15326         (ls-lisp-insert-directory): Use it to fix or remove any elements
15327         in file-alist with missing attributes.  (Bug#4673)
15329 2012-02-07  Alan Mackenzie  <acm@muc.de>
15331         Fix spurious recognition of c-in-knr-argdecl.
15333         * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
15334         putative K&R region.
15336 2012-02-07  Alan Mackenzie  <acm@muc.de>
15338         * progmodes/cc-engine.el (c-forward-objc-directive):
15339         Prevent looping in "#pragma mark @implementation".
15341 2012-02-07  Michael Albinus  <michael.albinus@gmx.de>
15343         * notifications.el (notifications-on-closed-signal): Make `reason'
15344         optional.  (Bug#10744)
15346 2012-02-07  Glenn Morris  <rgm@gnu.org>
15348         * emacs-lisp/easy-mmode.el (define-minor-mode):
15349         Doc fixes for the macro and the mode it defines.
15351         * image.el (imagemagick-types-inhibit): Doc fix.
15353         * cus-start.el (imagemagick-render-type): Add it.
15355 2012-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
15357         * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
15358         Set the default at load time, too, so that `font-lock-fontify-buffer'
15359         can be called without setting up the entire mode first.  This fixes
15360         a bug in `mm-inline-text' with C MIME parts.
15362 2012-02-06  Chong Yidong  <cyd@gnu.org>
15364         * simple.el (list-processes--refresh): Delete exited processes
15365         (Bug#8094).
15367         * comint.el (comint-next-prompt): next-single-char-property-change
15368         and prev-single-char-property-change never return nil (Bug#8657).
15370         * custom.el (defcustom): Doc fix (Bug#9711).
15372 2012-02-05  Chong Yidong  <cyd@gnu.org>
15374         * cus-edit.el (custom-variable-reset-backup): Quote the value
15375         before storing it in the customized-value property (Bug#6712).
15376         (custom-display): Add a customization type tag.
15377         (custom-buffer-create-internal): Improve tooltip message.
15379         * wid-edit.el (widget-field-value-get): New optional arg to
15380         suppress trailing whitespace truncation.
15381         (character): Use it (Bug#2689).
15383 2012-02-05  Andreas Schwab  <schwab@linux-m68k.org>
15385         * progmodes/gud.el (gud-pv): Use pv instead of pv1.
15386         * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
15388 2012-02-05  Chong Yidong  <cyd@gnu.org>
15390         * cus-edit.el (custom-variable-value-create): For mismatched
15391         types, show the current value (Bug#7600).
15393         * custom.el (defcustom): Doc fix.
15395 2012-02-05  Glenn Morris  <rgm@gnu.org>
15397         * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
15399 2012-02-05  Juanma Barranquero  <lekktu@gmail.com>
15401         * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
15402         (pp-buffer): Use `ignore-errors', `looking-at-p'.
15403         (pp-last-sexp): Use `looking-at-p'.
15405 2012-02-04  Glenn Morris  <rgm@gnu.org>
15407         * files.el (revert-buffer):
15408         Doc fix (mention revert-buffer-in-progress-p).
15410         * emacs-lisp/ert-x.el (ert-simulate-command):
15411         Check deferred-action-list (which is obsolete) is bound.
15413         * subr.el (with-wrapper-hook): Doc fixes.
15415         * simple.el (filter-buffer-substring-functions)
15416         (buffer-substring-filters, filter-buffer-substring): Doc fixes.
15418 2012-02-04  Lars Ljung  <lars@matholka.se>  (tiny change)
15420         * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
15421         anywhere in shell-file-name, not just at the beginning.  (Bug#10523)
15423 2012-02-04  Leo Liu  <sdl.web@gmail.com>
15425         * emacs-lisp/smie.el: Fix dead link (Bug#10711).
15427 2012-02-04  Glenn Morris  <rgm@gnu.org>
15429         * image.el (image-extension-data): Add obsolete alias.
15431         * isearch.el (isearch-update): Doc fix.
15433         * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
15435         * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
15437 2012-02-03  Glenn Morris  <rgm@gnu.org>
15439         * image.el (image-animated-p): Doc fix.  Use image-animated-types.
15440         (image-animate-timeout): Doc fix.
15442         * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
15444 2012-02-02  Glenn Morris  <rgm@gnu.org>
15446         * server.el (server-auth-dir): Doc fix.
15447         (server-eval-at): Doc fix.  Give an explicit error if !server-use-tcp.
15449         * subr.el (run-mode-hooks): Doc fix.
15451 2012-02-02  Juri Linkov  <juri@jurta.org>
15453         * image-mode.el (image-toggle-display-image): Remove tautological
15454         `major-mode' from the `derived-mode-p' test.
15456 2012-02-02  Kenichi Handa  <handa@m17n.org>
15458         * composite.el (compose-region): Cancel previous change.
15460 2012-02-02  Kenichi Handa  <handa@m17n.org>
15462         * composite.el (compose-region, compose-string): Signal error for
15463         a null string component (Bug#6988).
15465 2012-02-01  Chong Yidong  <cyd@gnu.org>
15467         * view.el (view-buffer-other-window, view-buffer-other-frame):
15468         Handle special modes like view-buffer (Bug#10650).
15469         (view-buffer): Simplify.
15471         * frame.el (set-frame-font): Tweak meaning of third argument.
15473         * dynamic-setting.el (font-setting-change-default-font):
15474         Use set-frame-font (Bug#9982).
15476 2012-02-01  Glenn Morris  <rgm@gnu.org>
15478         * progmodes/compile.el (compilation-internal-error-properties):
15479         Respect compilation-first-column in the "*compilation*" buffer.
15481         * emacs-lisp/easy-mmode.el (define-minor-mode):
15482         Relax :variable's test for a named function.
15484 2012-01-31  Alan Mackenzie  <acm@muc.de>
15486         * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
15487         off by one error.
15489 2012-01-31  Chong Yidong  <cyd@gnu.org>
15491         * frame.el (set-frame-font): New arg ALL-FRAMES.
15493         * menu-bar.el (menu-set-font): Use set-frame-font.
15495         * faces.el (face-spec-reset-face): Don't apply unspecified
15496         attribute values to the default face.
15498 2012-01-31  Juanma Barranquero  <lekktu@gmail.com>
15500         * progmodes/cwarn.el (cwarn): Remove dead link.
15501         (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
15502         Remove * from defcustom docstrings.
15503         (turn-on-cwarn-mode): Make obsolete.
15504         (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
15505         (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
15507 2012-01-31  Glenn Morris  <rgm@gnu.org>
15509         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
15510         Fix :variable handling of mode a symbol not equal to modefun.
15511         Allow named functions to be used as the cdr of :variable.
15513 2012-01-30  Glenn Morris  <rgm@gnu.org>
15515         * emacs-lisp/authors.el (authors-fixed-entries):
15516         Remove reference to deleted file rnewspost.el.
15518 2012-01-29  Juanma Barranquero  <lekktu@gmail.com>
15520         * window.el (window-with-parameter): Remove unused variable `windows'.
15521         (window--side-check): Remove unused variable `code'.
15522         (window--resize-siblings): Remove unused variable `first'.
15523         (adjust-window-trailing-edge): Remove unused variable `failed'.
15524         (window-deletable-p, window--delete): Remove unused variable `buffer'.
15525         Use `let', not `let*'.
15526         (balance-windows-2): Remove unused variable `found'.
15527         (window--state-put-2): Remove unused variable `splits'.
15528         (window-state-put): Remove unused variable `selected'.
15529         (same-window-p): Use `string-match-p'.
15530         (display-buffer-assq-regexp): Remove unused variable `value'.
15531         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
15532         Mark argument ALIST as ignored.
15533         (pop-to-buffer): Remove unused variable `old-window'.
15535 2012-01-29  Eli Zaretskii  <eliz@gnu.org>
15537         * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
15538         and .lzma compressed files.
15540 2012-01-29  Chong Yidong  <cyd@gnu.org>
15542         * frame.el (window-system-default-frame-alist): Doc fix.
15544         * dynamic-setting.el (font-setting-change-default-font): Don't
15545         change the default face if SET-FONT argument is non-nil (Bug#9982).
15547 2012-01-29  Samuel Bronson  <naesten@gmail.com>
15549         * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
15551 2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
15553         * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
15554         breakpoints in files outside current directory (Bug#6098).
15556 2012-01-29  Chong Yidong  <cyd@gnu.org>
15558         * progmodes/python.el: Require ansi-color at top-level.
15560         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
15561         Define and use in Emacs Lisp mode (Bug#9360).
15562         (lisp-mode-abbrev-table): Add doc.
15563         (lisp-mode-variables): Don't set local-abbrev-table.
15564         (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
15566 2012-01-28  Roland Winkler  <winkler@gnu.org>
15568         * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
15570 2012-01-28  Roland Winkler  <winkler@gnu.org>
15572         * textmodes/bibtex.el (bibtex-entry-alist): New function.
15573         (bibtex-set-dialect): Use it.  Either set global values of
15574         dialect-dependent variables or bind these variables buffer-locally
15575         (Bug#10254).
15576         (bibtex-mode): Call bibtex-set-dialect via
15577         hack-local-variables-hook.
15578         (bibtex-dialect): Update docstring.
15579         Add safe-local-variable predicate.
15580         (bibtex-entry-alist, bibtex-field-alist): Initialize via
15581         bibtex-set-dialect.
15582         (bibtex-mode-map): Define menu for each dialect.
15583         (bibtex-entry): Fix docstring.
15585 2012-01-28  Chong Yidong  <cyd@gnu.org>
15587         * eshell/esh-arg.el (eshell-quote-argument): New function.
15589         * eshell/esh-ext.el (eshell-invoke-batch-file):
15590         * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
15591         first arg to eshell-parse-command (Bug#10523).
15593 2012-01-28  Drew Adams  <drew.adams@oracle.com>
15595         * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
15596         `default-directory' is non-nil.
15598 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
15600         * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
15601         line that displays system-configuration-options.  (Bug#9924)
15603 2012-01-28  Drew Adams  <drew.adams@oracle.com>
15605         * descr-text.el (describe-char): Show information about POS, in
15606         addition to information about the character at POS.  Improve and
15607         update the doc string.  Change "code point" to "code point in
15608         charset", to avoid confusion with the character's Unicode code
15609         point shown above that.  (Bug#10129)
15611 2012-01-28  Eli Zaretskii  <eliz@gnu.org>
15613         * descr-text.el (describe-char): Show the raw character, not only
15614         its display form at POS.  Suggested by Kenichi Handa <handa@m17n.org>.
15615         See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
15616         for the reasons.
15618 2012-01-28  Phil Hagelberg  <phil@hagelb.org>
15620         * emacs-lisp/package.el (package-install):
15621         Run package-refresh-contents if there is no archive yet (Bug#9798).
15623 2012-01-28  Chong Yidong  <cyd@gnu.org>
15625         * emacs-lisp/package.el (package-maybe-load-descriptor):
15626         New function, split from package-maybe-load-descriptor.
15627         (package-maybe-load-descriptor): Use it.
15628         (package-download-transaction): Fully load required packages
15629         inside the loop, so that `require' calls work (Bug#10593).
15630         (package-install): No need to call package-initialize now.
15632 2012-01-28  Chong Yidong  <cyd@gnu.org>
15634         * simple.el (deactivate-mark): Doc fix (Bug#8614).
15636         * tooltip.el (tooltip-mode): Doc fix.
15637         (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
15639         * frame.el (set-cursor-color): Doc fix (Bug#352).
15641         * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
15642         (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
15644         * cus-edit.el (custom-buffer-create-internal): Fix search button
15645         action (Bug#10542).
15646         (customize-unsaved, customize-saved): Doc fix (Bug#10541).
15648 2012-01-27  Eduard Wiebe  <usenet@pusto.de>
15650         * dired.el (dired-mark-files-regexp):
15651         Include any subdirectory components.  (Bug#10445)
15653 2012-01-27  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
15655         * pcmpl-unix.el (pcmpl-ssh-known-hosts):
15656         Handle [host]:port syntax.  (Bug#10533)
15658 2012-01-27  Alex Harsanyi  <harsanyi@mac.com>
15660         * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
15662 2012-01-26  Glenn Morris  <rgm@gnu.org>
15664         * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
15665         * term.el (term-raw-escape-map): Use Control-X-prefix.
15666         * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map.  (Bug#10566)
15668 2012-01-25  Martin Rudalics  <rudalics@gmx.at>
15670         * window.el (window-state-get, window--state-get-1): Don't deal
15671         with fixed-sizeness of windows.  Simplify code.
15673 2012-01-25  Jérémy Compostella  <jeremy.compostella@gmail.com>
15675         * window.el (window--state-get-1, window--state-put-2):
15676         Don't save and restore the mark.
15678 2012-01-25  Chong Yidong  <cyd@gnu.org>
15680         * custom.el (custom-variable-p): Doc fix.
15682 2012-01-25  Glenn Morris  <rgm@gnu.org>
15684         * dired.el (dired-goto-file): Handle some of the more common
15685         characters that `ls -b' escapes.  (Bug#10596)
15687         * progmodes/compile.el (compilation-next-error-function):
15688         Respect compilation-first-column in the "*compilation*" buffer.
15689         * progmodes/grep.el (grep-first-column): New variable.  (Bug#10594)
15691         * vc/vc.el (vc-modify-change-comment): Scoping fix.  (Bug#10513)
15693 2012-01-24  Glenn Morris  <rgm@gnu.org>
15695         * pcmpl-gnu.el (pcomplete/tar): Handle " - ".  (Bug#10457)
15697 2012-01-24  Julien Danjou  <julien@danjou.info>
15699         * color.el (color-rgb-to-hsl): Fix value computing.
15700         (color-hue-to-rgb): New function.
15701         (color-hsl-to-rgb): New function.
15702         (color-clamp, color-saturate-hsl, color-saturate-name)
15703         (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
15704         (color-lighten-name, color-darken-hsl, color-darken-name): New function.
15706 2012-01-24  Glenn Morris  <rgm@gnu.org>
15708         * vc/vc-rcs.el (vc-rcs-create-tag):
15709         * vc/vc-sccs.el (vc-sccs-create-tag):
15710         Fix argument spec to be what vc-create-tag expects.  (Bug#10515)
15712 2012-01-23  Mike Lamb  <mrlamb@gmail.com>  (tiny change)
15714         * eshell/esh-util.el (eshell-read-hosts-file):
15715         Skip comment lines.  (Bug#10549)
15717         * eshell/em-unix.el (pcomplete/ssh): Remove.  (Bug#10548)
15719 2012-01-23  Juanma Barranquero  <lekktu@gmail.com>
15721         * subr.el (display-delayed-warnings): Doc fix.
15722         (collapse-delayed-warnings): New function to collapse identical
15723         adjacent warnings.
15724         (delayed-warnings-hook): Add it.
15726 2012-01-22  Michael Albinus  <michael.albinus@gmx.de>
15728         * net/tramp.el (tramp-action-login): Set connection property "login-as".
15730         * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
15731         (tramp-default-user-alist): Don't add "pscp".
15732         (tramp-do-copy-or-rename-file-out-of-band): Use connection
15733         property "login-as", if set.  (Bug#10530)
15735 2012-01-21  Michael Albinus  <michael.albinus@gmx.de>
15737         * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
15738         "plink1" and "psftp".  (Bug#10530)
15740 2012-01-21  Kenichi Handa  <handa@m17n.org>
15742         * international/mule-cmds.el (prefer-coding-system): Show a
15743         warning message if the default value of file-name-coding-system
15744         was not changed.
15746 2012-01-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
15748         * windmove.el (windmove-reference-loc):
15749         Fix windmove-reference-loc miscalculation.
15751 2012-01-21  Jay Belanger  <jay.p.belanger@gmail.com>
15753         * calc/calc-units.el (math-put-default-units): Don't use "1" as a
15754         default unit.
15756 2012-01-21  Glenn Morris  <rgm@gnu.org>
15758         * international/mule.el (auto-coding-alist): Add .tbz.
15760         * files.el (local-enable-local-variables): Doc fix.
15761         (inhibit-local-variables-regexps): Rename from
15762         inhibit-first-line-modes-regexps.  Keep old name as obsolete alias.
15763         Doc fix.  Add some extensions from auto-coding-alist.
15764         (inhibit-local-variables-suffixes):
15765         Rename from inhibit-first-line-modes-suffixes.  Doc fix.
15766         (inhibit-local-variables-p):
15767         New function, extracted from set-auto-mode-1.
15768         (set-auto-mode): Doc fix.  Respect inhibit-local-variables-regexps.
15769         (set-auto-mode-1): Doc fix.  Use inhibit-local-variables-p.
15770         (hack-local-variables): Doc fix.  Make the mode-only case
15771         respect enable-local-variables and friends.
15772         Respect inhibit-local-variables-regexps for file-locals, but
15773         not for directory-locals.
15774         (set-visited-file-name):
15775         Take account of inhibit-local-variables-regexps.
15776         Whether it applies may change as the file name is changed.
15777         * jka-cmpr-hook.el (jka-compr-install):
15778         * jka-compr.el (jka-compr-uninstall):
15779         Update for inhibit-first-line-modes-suffixes name change.
15781 2012-01-20  Martin Rudalics  <rudalics@gmx.at>
15783         * help-macro.el (make-help-screen): Temporarily restore original
15784         binding for minor-mode-map-alist (Bug#10454).
15786 2012-01-19  Julien Danjou  <julien@danjou.info>
15788         * color.el (color-name-to-rgb): Use the white color to find the max
15789         color component value and return correctly computed values.
15790         (color-name-to-rgb): Add missing float conversion for max value.
15792 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
15794         * window.el (window--state-get-1, window-state-get): Do not use
15795         special state value for window-persistent-parameters.
15796         Rename argument IGNORE to WRITABLE.  Rewrite doc-string.
15797         (window--state-put-2): Reset all window parameters to nil before
15798         assigning values of persistent parameters.
15800 2012-01-18  Alan Mackenzie  <acm@muc.de>
15802         Eliminate sluggishness and hangs in fontification of "semicolon
15803         deserts".
15805         * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
15806         Change value 10000 -> 3000.
15807         (c-state-safe-place): Reformulate so it doesn't stack up an
15808         infinite number of wrong entries in c-state-nonlit-pos-cache.
15809         (c-determine-limit-get-base, c-determine-limit): New functions to
15810         determine backward search limits disregarding literals.
15811         (c-find-decl-spots): Amend commenting.
15812         (c-cheap-inside-bracelist-p): New function which detects "={".
15814         * progmodes/cc-fonts.el
15815         (c-make-font-lock-BO-decl-search-function): Give a limit to a
15816         backward search.
15817         (c-font-lock-declarations): Fix an occurrence of point being
15818         undefined.  Check additionally for point being in a bracelist or
15819         near a macro invocation without a semicolon so as to avoid a
15820         fruitless time consuming search for a declarator.  Give a more
15821         precise search limit for declarators using the new
15822         c-determine-limit.
15824 2012-01-18  Glenn Morris  <rgm@gnu.org>
15826         * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
15827         (set-auto-mode): Doc fixes.
15829 2012-01-17  Glenn Morris  <rgm@gnu.org>
15831         * isearch.el (search-nonincremental-instead): Fix doc typo.
15833         * dired.el (dired-insert-directory): Handle newlines in directory name.
15834         (dired-build-subdir-alist): Unescape newlines in directory name.
15836 2012-01-17  Michael Albinus  <michael.albinus@gmx.de>
15838         * net/tramp.el (tramp-local-end-of-line): New defcustom.
15839         (tramp-action-login, tramp-action-yesno, tramp-action-yn)
15840         (tramp-action-terminal): Use it.  (Bug#10530)
15842 2012-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15844         * minibuffer.el (completion--replace): Strip properties (bug#10062).
15846 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
15848         * window.el (window-state-ignored-parameters): Remove variable.
15849         (window--state-get-1): Rename argument MARKERS to IGNORE.
15850         Handle persistent window parameters.  Make copy of clone-of
15851         parameter only if requested.  (Bug#10348)
15852         (window--state-put-2): Install a window parameter only if it has
15853         a non-nil value or an existing parameter shall be overwritten.
15855 2012-01-15  Michael Albinus  <michael.albinus@gmx.de>
15857         * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
15859 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
15861         * info.el (Info-toc-build): If the Info file has no "Up" pointer,
15862         don't pass the (nil) value of `upnode' to string-match.
15864 2012-01-14  Chong Yidong  <cyd@gnu.org>
15866         * startup.el (command-line): Fix X resource class for cursorColor.
15867         Fix values recognized by the cursorBlink resource.
15869 2012-01-14  Paul Eggert  <eggert@cs.ucla.edu>
15871         * epg.el (epg--make-temp-file): Avoid permission race condition
15872         when running on old Emacs versions (bug#10403).
15874 2012-01-14  Glenn Morris  <rgm@gnu.org>
15876         * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
15878 2012-01-13  Alan Mackenzie  <acm@muc.de>
15880         Fix filling for when filladapt mode is enabled.
15882         * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
15883         c-mask-paragraph, pass in `fill-paragraph' rather than
15884         `fill-region-as-paragraph'.  (This is a reversion of a previous
15885         change.)
15886         * progmodes/cc-mode.el (c-basic-common-init):
15887         Make fill-paragraph-handle-comment buffer local and set it to nil.
15889 2012-01-13  Glenn Morris  <rgm@gnu.org>
15891         * dired.el (dired-switches-escape-p): New function.
15892         (dired-insert-directory): Use dired-switches-escape-p.
15893         (dired-get-filename): Undo "\ " quoting if needed.  (Bug#10469)
15895         * find-dired.el (find-ls-option): Doc fix.  (Bug#10262)
15897 2012-01-12  Glenn Morris  <rgm@gnu.org>
15899         * mail/sendmail.el (mail-mode): Update paragraph-separate for
15900         changes in adaptive-fill-regexp.  (Bug#10276)
15902 2012-01-11  Alan Mackenzie  <acm@muc.de>
15904         Fix Emacs bug #10463 - put `widen's around the critical spots.
15906         * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
15907         widen around each invocation of c-state-pp-to-literal.  Remove an
15908         unused let variable.
15910 2012-01-11  Glenn Morris  <rgm@gnu.org>
15912         * dired-aux.el (dired-do-shell-command): Fix */? logic.  (Bug#6561)
15913         Doc fix.
15915 2012-01-10  Chong Yidong  <cyd@gnu.org>
15917         * net/network-stream.el (network-stream-open-starttls):
15918         Avoid emitting a confusing error message when the server gives a bad
15919         response to the capability command.
15921 2012-01-10  Glenn Morris  <rgm@gnu.org>
15923         * mail/unrmail.el (unrmail): Tweak previous change.
15925 2012-01-09  Chong Yidong  <cyd@gnu.org>
15927         * custom.el (custom-safe-themes): Use SHA-256 for hashing.
15929 2012-01-08  Alan Mackenzie  <acm@muc.de>
15931         Optimize font locking in long enum definitions.
15933         * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
15934         arm to a cond form to handle enums.
15935         * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
15936         * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
15938 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
15940         * files.el (move-file-to-trash): Preserve default file modes on error.
15941         (Bug#10401)
15943 2012-01-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15945         * faces.el (set-face-attribute): Clarify the meaning of the nil
15946         frame (bug#10294).
15948         * subr.el (with-selected-frame): Mention that the selected frame
15949         is restored (bug#9980).
15951         * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
15952         (bug#9759).
15954         * mail/smtpmail.el (password-cache-add): Remove unused declaration.
15955         (password-read): Don't autoload unused function.
15957 2012-01-07  Juanma Barranquero  <lekktu@gmail.com>
15959         * progmodes/which-func.el (which-func-mode): Turn into a
15960         non-interactive function and mark as obsolete (bug#10428).
15962 2012-01-06  Chong Yidong  <cyd@gnu.org>
15964         * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
15965         (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
15966         functions, along with 1 and -1.
15968 2012-01-06  Eli Zaretskii  <eliz@gnu.org>
15970         * time.el (display-time-load-average)
15971         (display-time-default-load-average): Doc fixes.  See the thread
15972         starting at
15973         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
15974         for the details.
15976 2012-01-06  Glenn Morris  <rgm@gnu.org>
15978         * mail/unrmail.el (unrmail): Give an explicit error if the input file
15979         has no messages.  (Bug#10377)
15981         * info.el (Info-mode-map): Bind e to end-of-buffer, rather
15982         than Info-edit.  (Bug#10385)
15984         * time.el (display-time-load-average, display-time-next-load-average):
15985         Doc fixes.
15987         * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
15988         local setting of buffer-read-only to the input buffer.  (Bug#10419)
15990         * calendar/calendar.el (calendar-mode):
15991         Locally set scroll-margin to 0.  (Bug#10379)
15993 2012-01-06  Ulrich Mueller  <ulm@gentoo.org>
15995         * play/doctor.el (doctor-death): Escape "," characters.  (Bug#10370)
15997 2012-01-05  Glenn Morris  <rgm@gnu.org>
15999         * eshell/em-unix.el (diff-no-select): Autoload it.
16000         (eshell/diff): Use diff-no-select.  (Bug#10420)
16002 2012-01-05  Chong Yidong  <cyd@gnu.org>
16004         * shell.el (shell-dynamic-complete-functions): Revert last change.
16005         (shell-command-completion-function): New function.
16006         (shell-completion-vars): Use it to implement
16007         shell-completion-execonly (Bug#10417).
16009         * custom.el (enable-theme): Don't set custom-safe-themes.
16011         * cus-theme.el (custom-theme-merge-theme):
16012         Ignore custom-enabled-themes and custom-safe-themes.
16014 2012-01-05  Michael R. Mauger  <mmaug@yahoo.com>
16016         * progmodes/sql.el (sql-login-hook): Add hook to respond to the
16017         first prompt in `sql-interacive-mode'.
16018         (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
16019         keywords.
16020         (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
16021         (sql-product-interactive): Bug fix: Set `sql-buffer' in
16022         context of original buffer.  Invoke `sql-login-hook'.
16024 2012-01-04  Eli Zaretskii  <eliz@gnu.org>
16026         * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
16027         letters in cite-prefix.
16029 2012-01-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16031         * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
16033 2012-01-03  Chong Yidong  <cyd@gnu.org>
16035         * shell.el (shell-dynamic-complete-functions):
16036         Put pcomplete-completions-at-point, so as to try
16037         comint-filename-completion first (Bug#10417).
16039 2012-01-02  Richard Stallman  <rms@gnu.org>
16041         * battery.el (battery-status-function):
16042         Detect when to use battery-yeeloong-sysfs.
16043         (battery-echo-area-format): Add string for Yeeloong.
16044         (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
16045         (battery-yeeloong-sysfs): New function.
16047 2012-01-02  Chong Yidong  <cyd@gnu.org>
16049         * dirtrack.el (dirtrack-list): Eliminate unused third element.
16050         (dirtrack): Merge code for handling relative filenames in prompt
16051         from shell-dir-cookie-watcher.
16052         (dirtrack-debug-message): New arg to avoid excess format calls.
16054         * shell.el (shell-dir-cookie-re): Variable deleted.
16055         (shell-dir-cookie-watcher): Function deleted.
16056         (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
16057         with dirtrack-mode.
16059 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
16061         * term/w32-win.el (dynamic-library-alist) <gnutls>:
16062         Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
16063         libgnutls-26.dll.
16065 2011-12-31  Andreas Schwab  <schwab@linux-m68k.org>
16067         * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
16069 2011-12-31  Eli Zaretskii  <eliz@gnu.org>
16071         * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
16072         headers of non-MIME messages, when rmail-enable-mime is non-nil.
16074 2011-12-29  Michael Albinus  <michael.albinus@gmx.de>
16076         * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
16077         also for alternative shells.
16078         (tramp-open-connection-setup-interactive-shell): Check, whether
16079         the shell is a busybox.
16080         (tramp-send-command): Don't suppress multiple prompts for
16081         busyboxes, it hurts.
16083 2011-12-28  Chong Yidong  <cyd@gnu.org>
16085         * progmodes/gdb-mi.el (gdb-get-source-file-list)
16086         (gdb-get-source-file): Move mode line update to
16087         gdb-get-source-file (Bug#10087).
16089 2011-12-25  Chong Yidong  <cyd@gnu.org>
16091         * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
16092         gud-gdb-marker-filter without taking it as an argument.
16093         (gud-gdb-run-command-fetch-lines): Caller changed.
16094         (gud-gdb-completion-function): New variable.
16095         (gud-gdb-completion-at-point): Use it.
16096         (gud-gdb-completions-1): Split from gud-gdb-completions.
16098         * progmodes/gdb-mi.el (gdb-input): Accept command and handler
16099         function as separate arguments.
16100         (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
16101         (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
16102         (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
16103         (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
16104         (gdb-stopped, def-gdb-auto-update-trigger)
16105         (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
16106         (gdb-get-changed-registers, gdb-get-main-selected-frame):
16107         Callers changed.
16108         (gud-gdbmi-completions): New function.
16109         (gdb): Use it for generating the completion table.
16111 2011-12-24  Alan Mackenzie  <acm@muc.de>
16113         Introduce a mechanism to widen the region used in context font
16114         locking.  Use this to protect declarations from losing their contexts.
16116         * progmodes/cc-langs.el (c-before-font-lock-functions):
16117         Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
16118         (c-before-context-fontification-functions): New defvar, a list of
16119         functions to be run just before context (etc.) font locking.
16121         * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
16122         New, functionality extracted from
16123         c-neutralize-syntax-in-and-mark-CPP.
16124         (c-in-after-change-fontification): New variable.
16125         (c-after-change): Set c-in-after-change-fontification.
16126         (c-set-fl-decl-start): Rejig its interface, so it can be called
16127         from both after-change and context fontifying.
16128         (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
16129         New functions.
16130         (c-standard-font-lock-fontify-region-function): New variable.
16131         (c-font-lock-fontify-region): New function.
16133 2011-12-24  Juri Linkov  <juri@jurta.org>
16135         * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
16136         (Bug#10348)
16138 2011-12-23  Michael Albinus  <michael.albinus@gmx.de>
16140         * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
16141         existence of source file.  (Bug#10325)
16143 2011-12-23  Alan Mackenzie  <acm@muc.de>
16145         Fix unstable fontification inside templates.
16147         * progmodes/cc-langs.el (c-before-font-lock-functions):
16148         Newly created from the singular version.  The (c c++ objc) entry now
16149         additionally has c-set-fl-decl-start.  The other languages (apart
16150         from AWK) have that as a single entry.
16152         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
16153         The functionality for "local" declarations has been extracted to
16154         c-set-fl-decl-start.
16156         * progmodes/cc-mode.el (c-common-init, c-after-change):
16157         Changes due to pluralisation of c-before-font-lock-functions.
16158         (c-set-fl-decl-start): New function, extracted from
16159         c-font-lock-enclosing-decls and enhanced.
16161 2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
16163         * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
16165 2011-12-22  Juri Linkov  <juri@jurta.org>
16167         * progmodes/grep.el (rgrep): Fix docstring.  (Bug#10185)
16169 2011-12-22  Chong Yidong  <cyd@gnu.org>
16171         * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
16173 2011-12-21  Drew Adams  <drew.adams@oracle.com>
16175         * files.el (file-remote-p): Fix docstring.  (Bug#10319)
16177 2011-12-21  Jérémy Compostella  <jeremy.compostella@gmail.com>
16179         * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
16181 2011-12-21  Teodor Zlatanov  <tzz@lifelogs.com>
16183         * progmodes/cfengine.el: Add Version.  Improve CFEngine 3.x syntax
16184         highlighting and support.  Fix up comments for capitalization.
16185         (cfengine-mode-debug): New var.
16186         (cfengine3-mode): Change the modeline indicator to "CFE3".
16187         (cfengine3-font-lock-keywords): Improve defun highlighting.
16188         (cfengine2-actions): Rename from `cfengine-actions'.
16189         (cfengine2-font-lock-keywords): Rename from
16190         `cfengine-font-lock-keywords'.
16191         (cfengine2-imenu-expression): Rename from
16192         `cfengine-imenu-expression'.
16193         (cfengine2-outline-level): Rename from `cfengine-outline-level'.
16194         (cfengine2-beginning-of-defun): Rename from
16195         `cfengine-beginning-of-defun'.
16196         (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
16197         (cfengine2-indent-line): Rename from `cfengine-indent-line'.
16198         (cfengine2-mode): Rename from `cfengine-mode'.  Change the
16199         modeline indicator to "CFE2".
16200         (cfengine-mode): Defalias to `cfengine-auto-mode'.
16201         (cfengine-mode-abbrevs): Mark obsolete.
16203 2011-12-21  Chong Yidong  <cyd@gnu.org>
16205         * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
16206         filename argument.
16208 2011-12-20  Martin Rudalics  <rudalics@gmx.at>
16210         * window.el (window-normalize-buffer-to-display): Remove.
16211         (display-buffer): Handle buffer-or-name argument as in Emacs 23.
16213 2011-12-19  Chong Yidong  <cyd@gnu.org>
16215         * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
16216         Don't signal an error in a predicate function; return non-nil.
16217         (vc-dir-mark-file): Move the error here.
16218         (vc-dir-mark-unmark): If acting on the region, keep going if one
16219         of the entries cannot be marked/unmarked.
16220         (vc-dir-mark-all-files): If current entry is a directory, mark
16221         only child files, as documented.
16223 2011-12-19  Vincent Belaïche  <vincentb1@users.sourceforge.net>
16225         * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
16226         branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
16227         addition.
16229 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
16231         * term/ns-win.el (ns-get-selection-internal)
16232         (ns-store-selection-internal): Declare.
16233         (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
16234         Declare as obsolete.
16235         (ns-get-pasteboard, ns-paste-secondary):
16236         Use ns-get-selection-internal.
16237         (ns-set-pasteboard, ns-copy-including-secondary):
16238         Use ns-store-selection-internal.
16240 2011-12-17  Chong Yidong  <cyd@gnu.org>
16242         * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
16243         (vc-deduce-fileset): Doc fix.
16245 2011-12-16  Andreas Schwab  <schwab@linux-m68k.org>
16247         * calc/calc-misc.el (calc-help): Avoid wrapping help message.
16249 2011-12-13  Sam Steingold  <sds@gnu.org>
16251         * man.el (Man-getpage-in-background): When running under a
16252         window-system, ignore $MANWIDTH and $COLUMNS.
16254 2011-12-15  Kenichi Handa  <handa@m17n.org>
16256         * language/ethio-util.el: Change coding tag to utf-8-emacs.
16257         (setup-ethiopic-environment-internal): Comment out key-binding for
16258         ethio-toggle-punctuation.
16260 2011-12-13  Alan Mackenzie  <acm@muc.de>
16262         Add the switch statement to AWK Mode.
16264         * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
16265         "default" to the keywords regexp.
16267         * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
16268         expression as the rest.
16269         (c-nonlabel-token-key): Allow string literals for AWK.
16270         Refactor for the other modes.
16272         Large brace-block initialisation makes CC Mode slow: Fix.
16273         Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
16274         routines.  Limit backward searching in c-font-lock-enclosing.decl.
16276         * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
16277         pp-state and literal type in addition to the limits.
16278         (c-state-safe-place): New defun, extracted from c-state-literal-at.
16279         (c-state-literal-at): Use the above new defun.
16280         (c-slow-in-literal, c-fast-in-literal): Remove.
16281         (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
16283         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
16284         being in a literal.  Add a limit for backward searching.
16286         * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
16287         c-slow-in-literal.
16289 2011-12-13  Stefan Monnier  <monnier@iro.umontreal.ca>
16291         * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
16293 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
16295         * window.el (delete-other-windows): Use correct frame in call to
16296         window-with-parameter.
16298 2011-12-12  Daniel Pfeiffer  <occitan@t-online.de>
16300         * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
16301         (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
16302         (makefile-gmake-statements, makefile-makepp-statements):
16303         Use it and add new makepp keywords.
16304         (makefile-makepp-font-lock-keywords): Add new patterns.
16305         (makefile-match-function-end): Match new [...] and [[...]].
16307 2011-12-11  Juanma Barranquero  <lekktu@gmail.com>
16309         * ses.el (ses-call-printer-return, ses-cell-property-get)
16310         (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
16311         (ses-create-cell-variable, ses-reset-header-string)
16312         (ses-cell-set-formula, ses-repair-cell-reference-all)
16313         (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
16314         (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
16315         (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
16316         (ses-aset-with-undo, ses-load, ses-truncate-cell)
16317         (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
16318         (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
16319         (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
16320         (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
16321         (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
16322         (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
16323         (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
16324         (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
16326 2011-12-11  Vincent Belaïche  <vincentb1@users.sourceforge.net>
16328         * ses.el: The overall change is to add cell renaming, that is
16329         setting fancy names for cell symbols other than name matching
16330         "\\`[A-Z]+[0-9]+\\'" regexp .
16331         (ses-create-cell-variable): New defun.
16332         (ses-relocate-formula): Relocate formulas only for cells the
16333         symbols of which are not renamed, i.e. symbols whose names do not
16334         match regexp "\\`[A-Z]+[0-9]+\\'".
16335         (ses-relocate-all): Relocate values only for cells the symbols of
16336         which are not renamed.
16337         (ses-load): Create cells variables as the (ses-cell ...) are read,
16338         in order to check row col consistency with cell symbol name only
16339         for cells that are not renamed.
16340         (ses-replace-name-in-formula): New defun.
16341         (ses-rename-cell): New defun.
16343 2011-12-11  Chong Yidong  <cyd@gnu.org>
16345         * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
16346         for completion via gud-gdb-fetch-lines-filter (Bug#10274).
16348 2011-12-11  Eric Hanchrow  <eric.hanchrow@gmail.com>
16350         * window.el (other-window): Fix docstring.
16352 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
16354         * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
16355         `from' or `to' address before taking its substring.
16356         Fixes incorrect display in Rmail summary buffer whereby an RFC2047
16357         encoded name is chopped in the middle of the encoded string, and
16358         thus displayed encoded.
16360 2011-12-10  Juanma Barranquero  <lekktu@gmail.com>
16362         * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
16364 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
16366         * textmodes/texnfo-upd.el: Update commentary.  Add a warning not
16367         to use texinfo-update-node and commands that call it if the
16368         Texinfo file uses @node lines without next/prev/up pointers.
16369         Correct outdated description about texinfo-master-menu.
16370         (texinfo-all-menus-update, texinfo-master-menu)
16371         (texinfo-update-node, texinfo-every-node-update)
16372         (texinfo-multiple-files-update): Doc fix.  Warn against updating
16373         all the @node lines.
16374         (texinfo-master-menu): Only call texinfo-update-node if the prefix
16375         argument is numeric.  Explain better in the doc string what the
16376         function really does.
16377         (texinfo-insert-master-menu-list): Improve the error message
16378         displayed if there's no menu in the Top node.
16379         (Bug#2975)  See also this thread:
16380         http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
16382 2011-12-09  Manuel Gómez  <mgrojo@gmail.com>  (tiny change)
16384         * speedbar.el (speedbar-supported-extension-expressions):
16385         Add .adb and .ads, commonly used for Ada source code (bug#10256).
16387 2011-12-09  Juanma Barranquero  <lekktu@gmail.com>
16389         * printing.el (pr-mode-alist):
16390         * simple.el (filter-buffer-substring-functions)
16391         (completion-list-insert-choice-function):
16392         * window.el (window-with-parameter, window-atom-root)
16393         (window-sides-slots, window-size-fixed, window-min-delta)
16394         (window-max-delta, window--resize-mini-window)
16395         (window--resize-child-windows-normal, window-tree)
16396         (delete-other-windows, quit-window, split-window)
16397         (display-buffer-record-window, special-display-buffer-names)
16398         (special-display-regexps, special-display-popup-frame)
16399         (same-window-p, split-window-sensibly)
16400         (display-buffer-overriding-action, display-buffer-alist)
16401         (display-buffer-base-action, display-buffer, switch-to-buffer)
16402         (switch-to-buffer-other-window, switch-to-buffer-other-frame)
16403         (fit-window-to-buffer, recenter-positions)
16404         (mouse-autoselect-window-state, mouse-autoselect-window-select):
16405         * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
16406         and remove unneeded backslashes in docstrings.
16408 2011-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16410         * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
16412         * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
16413         (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
16414         end in ".mk".
16415         (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
16416         when reading the makefile (bug#10116).
16418 2011-12-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16420         * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
16421         (bug#10116).
16423 2011-12-06  Glenn Morris  <rgm@gnu.org>
16425         * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
16427 2011-12-06  Chong Yidong  <cyd@gnu.org>
16429         * progmodes/cc-fonts.el (c-annotation-face): Use defface.
16431 2011-12-06  Juanma Barranquero  <lekktu@gmail.com>
16433         * textmodes/table.el (table-shorten-cell): Fix typo.
16435 2011-12-05  Christopher Genovese  <genovese.cr@gmail.com>  (tiny change)
16437         * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
16439 2011-12-05  Eli Zaretskii  <eliz@gnu.org>
16441         * descr-text.el (describe-char): Fix display of strong
16442         right-to-left characters and directional embeddings and overrides.
16444         * simple.el (what-cursor-position): Fix display of codepoints of
16445         strong right-to-left characters.
16447 2011-12-05  Chong Yidong  <cyd@gnu.org>
16449         * faces.el (read-color): Doc fix.
16451 2011-12-05  Glenn Morris  <rgm@gnu.org>
16453         * align.el (align--set-marker): Add doc-string.
16454         Don't try to move something that is not a marker.  (Bug#10216)
16456 2011-12-04  Glenn Morris  <rgm@gnu.org>
16458         * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
16459         overly zealous deletion of trailing whitespace.
16461 2011-12-04  Juanma Barranquero  <lekktu@gmail.com>
16463         * server.el (server-delete-client): On Windows, do not try to delete
16464         the only terminal.
16465         (server-process-filter): On Windows, treat requests for a tty frame as
16466         if they were for a GUI frame if the running server is in GUI mode.
16468 2011-12-03  Glenn Morris  <rgm@gnu.org>
16470         * textmodes/texinfmt.el (batch-texinfo-format): Doc fix.  (Bug#10207)
16472 2011-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16474         * electric.el: Streamline electric-indent's hook.
16475         (electric-indent-chars): Revert to simple list.
16476         (electric-indent-functions): New var.
16477         (electric-indent-post-self-insert-function): Use it.
16479         * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
16480         there's no inferior buffer (bug#10196).
16481         (prolog-consult-compile): Don't use toggle-read-only.
16483 2011-12-02  Michael Albinus  <michael.albinus@gmx.de>
16485         * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
16486         interrupt.  (Bug#10187)
16488 2011-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16490         * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
16491         (bug#9160).
16493         * dired-aux.el (dired-query): Don't assume help-char is modifier-free
16494         (bug#10191).
16496 2011-12-02  Juri Linkov  <juri@jurta.org>
16498         * info.el (Info-search): Display "end of manual" when Isearch
16499         reaches the end of single-file Info manual.  (Bug#9918)
16501 2011-12-02  Eli Zaretskii  <eliz@gnu.org>
16503         * isearch.el (isearch-message-prefix): Run the input method part
16504         of the prompt through bidi-string-mark-left-to-right.  (Bug#10183)
16506 2011-12-02  Juri Linkov  <juri@jurta.org>
16508         * isearch.el (isearch-occur): Use `word-search-regexp' for
16509         `isearch-word'.
16510         (isearch-search-and-update): Add condition for `isearch-word' and
16511         call `word-search-regexp'.  (Bug#10145)
16513 2011-12-01  Glenn Morris  <rgm@gnu.org>
16515         * eshell/em-hist.el (eshell-hist-initialize):
16516         Handle eshell-history-size nil and HISTSIZE set or unset.
16517         (eshell-history-file-name, eshell-history-size): Fix custom type.
16519 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16521         * man.el (Man-completion-table): Fix the lambda case (bug#10168).
16523 2011-12-01  Michael McNamara  <mac@mail.brushroad.com>
16525         * progmodes/verilog-mode.el (verilog-pretty-expr):
16526         Rework verilog-pretty-expr to handle new assignment operators in system
16527         verilog, such as += *= and the like.
16528         (verilog-assignment-operator-re): Regular expression to find the
16529         assigment operator in a verilog assignment.
16530         (verilog-assignment-operation-re): Regular expression to find an
16531         assignment statement for pretty-expr.
16532         (verilog-in-attribute-p): Query returns true if point is in an
16533         attribute context; used to skip these for expression line up from
16534         pretty-expr.
16535         (verilog-in-parameter-p): Query returns true if point is in an
16536         parameter definition context; used to skip these for expression
16537         line up from pretty-expr.
16538         (verilog-in-parenthesis-p): Query returns true if point is in a
16539         parenthetical expression, specifically ( ) but not [ ] or { };
16540         used by pretty-expr.
16541         (verilog-just-one-space): If there is no space, don't add one.
16542         (verilog-get-lineup-indent-2): Specifically skip just attribute
16543         contexts for expression lineup, rather than skipping all
16544         parenthetical expressions.
16545         (verilog-calculate-indent): Fix comment, and fix indent.
16546         (verilog-do-indent): Indent declarations in lists (suggested by
16547         Joachim Lechner).
16548         (verilog-mode-abbrev-table): Populate abbrev mode with the various
16549         skeleton items.
16550         (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
16551         by Alain Mellan).
16553 2011-12-01  Wilson Snyder  <wsnyder@wsnyder.org>
16555         * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
16556         parameters with embedded comments.  Reported by Ray Stevens.
16557         (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
16558         verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
16559         Reported by Tim Holt.
16560         (verilog-auto): Fix AUTOing a upper module then AUTOing module
16561         instantiated by upper module causing wrong expansion until AUTOed a
16562         second time.  Reported by K C Buckenmaier.
16563         (verilog-diff-auto): Fix showing .* as a difference when
16564         `verilog-auto-star-save' off.  Reported by Dan Dever.
16565         (verilog-auto-reset, verilog-read-always-signals)
16566         (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
16567         temporary signals in reset list if
16568         verilog-auto-reset-blocking-in-non is nil, and match assignment
16569         style to each signal's assignment type, bug381.
16570         Reported by Thomas Esposito.
16571         (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
16572         (verilog-uvm-statement-re): Support UVM indentation and
16573         highlighting, with old OVM keywords only.
16574         (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
16575         Support AUTOTIEOFF creating non-wire data types.
16576         Suggested by Jonathan Greenlaw.
16577         (verilog-auto-insert-lisp, verilog-delete-to-paren)
16578         (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
16579         (verilog-inject-sense, verilog-read-inst-pins)
16580         (verilog-read-sub-decls, verilog-read-sub-decls-line):
16581         Fix mismatching parenthesis inside commented out code when deleting
16582         AUTOINST, bug383.  Reported by Jonathan Greenlaw.
16583         (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
16584         non-numeric vector width.  Reported by Alex Reed.
16585         (verilog-auto-ascii-enum): Add "onehot" option to work around not
16586         detecting signals with parameter widths.  Reported by Alex Reed.
16587         (verilog-auto-delete-trailing-whitespace):
16588         With `verilog-auto-delete-trailing-whitespace' remove trailing
16589         whitespace in auto expansion, bug371.  Reported by Brad Dobbie.
16590         (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
16591         Fix verilog-scan-cache corruption when running user AUTO expansion
16592         hooks that call indentation routines.
16593         (verilog-simplify-range-expression): Fix typo ignoring lower case
16594         identifiers.
16595         (verilog-delete-auto): Fix delete-autos to also remove user created
16596         automatics, as long as they start with AUTO.
16597         (verilog-batch-diff-auto, verilog-diff-auto)
16598         (verilog-diff-function): Add `verilog-diff-auto' and bind to
16599         "C-c?"  to report differences in AUTO expansion, ignoring spaces.
16600         (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
16601         (verilog-in-paren-quick, verilog-re-search-backward-quick)
16602         (verilog-re-search-forward-quick, verilog-syntax-ppss):
16603         Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
16604         is disabled and its cache will get corrupt, causing AUTOS not to
16605         expand.  Instead use only -quick functions.
16606         (verilog-scan-region): Fix scanning over escaped quotes.
16607         (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
16608         (verilog-re-search-backward-quick)
16609         (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
16610         related functions now ignore strings, to fix misparsing of strings
16611         with magic comments embedded in them.
16612         (verilog-read-auto-template):
16613         Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
16614         Reported by Brad Dobbie.
16615         (verilog-read-auto-template):
16616         Fix 'verilog-auto-inst-template-numbers' with comments.
16617         Reported by Brad Dobbie.
16618         (verilog-auto-inst, verilog-auto-inst-param)
16619         (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
16620         merge conflicts with AUTOINST, bug358.  Reported by Brad Dobbie.
16621         (verilog-auto-inst-template-numbers): Add 'lhs' policy for
16622         debugging templates without merge conflicts, bug357.
16623         Reported by Brad Dobbie.
16624         (verilog-read-auto-template):
16625         Fix verilog-auto-inst-template-numbers with multiple templates.
16626         Reported by Brad Dobbie.
16627         (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
16628         abbrevs so user won't be asked to save.
16629         (verilog-read-auto-lisp-present): Fix to start at beginning of
16630         buffer in case called outside of verilog-auto.
16631         (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
16632         to "X-2".  Reported by Matthew Myers.
16633         (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
16634         all inputs from module templates.  Reported by Leith Johnson.
16635         (verilog-module-inside-filename-p): Fix locating programs as with
16636         modules.
16637         (verilog-auto-inst-port): Fix vl-width expressions when using
16638         verilog-auto-inst-param-value, bug331.  Reported by Julian Gorfajn.
16639         (verilog-decls-get-regs, verilog-decls-get-signals,
16640         verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
16641         verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
16642         verilog-read-decls): Combine reg and wire structures into one var
16643         structure to represent SystemVerilog concepts.
16644         (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
16645         (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
16646         (verilog-auto-wire-type, verilog-insert-definition):
16647         Add verilog-auto-wire-type and AUTOLOGIC to support using
16648         SystemVerilog "logic" keyword instead of "wire"/"reg".
16649         (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
16650         to declares outputs that also have assignments (presumably in an
16651         ifdef or generate if so there's not a driver conflict).
16652         Reported by Matthew Myers.
16653         (verilog-auto-declare-nettype, verilog-insert-definition):
16654         Add verilog-auto-declare-nettype to fix declarations using
16655         `default_nettype none.  Reported by Julian Gorfajn.
16656         (verilog-read-always-signals-recurse, verilog-read-decls)
16657         (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
16658         malformed end statement, bug325.  Reported by Joshua Wise and
16659         Andrew Drake.
16660         (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
16661         (verilog-inst-comment-re): Fix not deleting Interfaced comment
16662         when expanding .* in interfaces, bug320.
16663         Reported by Pierre-David Pfister.
16664         (verilog-read-module-name): Fix import statements between module
16665         name and open parenthesis, bug317.
16666         Reported by Pierre-David Pfister.
16667         (verilog-simplify-range-expression): Fix simplification of
16668         multiplications inside AUTOWIRE connections, bug303.
16669         (verilog-auto-inst-port): Support parameter expansion in
16670         multidimensional arrays.
16671         (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
16672         after "assert property".  Reported by Julian Gorfajn.
16673         (verilog-simplify-range-expression): Fix "couldn't merge" errors
16674         with multiplication, bug303.
16675         (verilog-read-decls): Fix parsing of unsigned data types, bug302.
16676         Reported by Jan Frode Lonnum.
16678 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
16680         * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
16681         (hfy-shell-file-name, hfy-shell):
16682         * international/fontset.el (x-decompose-font-name): Fix typos.
16684 2011-11-29  Ken Brown  <kbrown@cornell.edu>
16686         * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
16687         (gdb-version): Remove defvar.
16688         (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
16689         (gdb-gud-context-command, gdb-non-stop-handler)
16690         (gdb-current-context-command, gdb-stopped): Use it.
16691         (gdb-init-1): Enable pretty printing here.
16692         (gdb-non-stop-handler): Don't enable pretty-printing here.
16693         Check to see if the target supports non-stop mode; if not, turn off
16694         non-stop mode.  Use the following.
16695         (gdb-check-target-async): New defun.
16696         (gud-watch, gdb-stopped): Fix whitespace.
16697         (gdb-get-source-file): Don't try to display the source file if
16698         `gdb-main-file' is nil.
16700 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16702         * align.el: Try to generate fewer markers (bug#10047).
16703         (align--set-marker): New macro.
16704         (align-region): Use it.
16706 2011-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16708         * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
16710 2011-11-29  Chong Yidong  <cyd@gnu.org>
16712         * indent.el (indent-for-tab-command, indent-according-to-mode):
16713         Doc fix.
16714         (indent-region): Doc fix.  Switch nested ifs to equivalent cond.
16716 2011-11-29  Michael Albinus  <michael.albinus@gmx.de>
16718         * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
16719         aware of remote file names.  (Bug#10124)
16721 2011-11-29  Chong Yidong  <cyd@gnu.org>
16723         * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
16725 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16727         * files.el (find-file): Don't use force-same-window (bug#10144).
16728         * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
16729         use pop-to-buffer if the selected window can't be used.
16730         (pop-to-buffer-same-window): Use display-buffer--same-window-action.
16732 2011-11-28  Eli Zaretskii  <eliz@gnu.org>
16734         * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
16735         special-mode-map.
16737 2011-11-28  Chong Yidong  <cyd@gnu.org>
16739         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
16741 2011-11-27  Nick Roberts  <nickrob@snap.net.nz>
16743         * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
16744           gdb-get-source-file-list on gdb-create-source-file-list.
16746 2011-11-26  Eli Zaretskii  <eliz@gnu.org>
16748         * whitespace.el (whitespace-newline): Use a different foreground
16749         color for 16-color light-background displays.
16751 2011-11-24  Chong Yidong  <cyd@gnu.org>
16753         * window.el (display-buffer--special-action): Doc fix.
16755 2011-11-25  Juanma Barranquero  <lekktu@gmail.com>
16757         * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
16758         (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
16759         (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
16760         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
16761         (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
16762         (avl-tree-stack-first):
16763         * emacs-lisp/cconv.el (cconv--analyse-use):
16764         * net/gnutls.el (gnutls-negotiate): Fix typos.
16766 2011-11-24  Glenn Morris  <rgm@gnu.org>
16768         * lpr.el (lpr-windows-system, lpr-lp-system):
16769         * mail/binhex.el (binhex-begin-line):
16770         * progmodes/grep.el (grep-history, grep-find-history):
16771         * textmodes/flyspell.el:
16772         * vc/pcvs-defs.el (cvs-global-menu):
16773         * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
16774         * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
16775         * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
16777         * net/tls.el: Fix case of "GnuTLS".
16779         * paths.el (rmail-file-name): Format doc-string for make-docfile.
16781         * version.el (emacs-build-system): Give it a doc-string.
16783 2011-11-24  Juri Linkov  <juri@jurta.org>
16785         * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
16787 2011-11-24  Glenn Morris  <rgm@gnu.org>
16789         * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
16790         if called on a non-mime message just toggle the headers.  (Bug#8006)
16792 2011-11-24  Juanma Barranquero  <lekktu@gmail.com>
16794         * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
16795         (allout-lead-with-comment-string, allout-structure-deleted-hook)
16796         (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
16797         (allout-rebullet-heading, allout-open-sibtopic)
16798         (allout-toggle-current-subtree-encryption)
16799         (allout-toggle-subtree-encryption, allout-encrypt-string)
16800         (allout-next-topic-pending-encryption, allout-adjust-file-variable)
16801         (allout-distinctive-bullets-string, allout-auto-activation):
16802         * window.el (window-normalize-buffer-to-display):
16803         * progmodes/verilog-mode.el (verilog-batch-indent):
16804         * textmodes/bibtex.el (bibtex-field-braces-opt)
16805         (bibtex-field-strings-opt):
16806         * vc/cvs-status.el (cvs-tree-merge):
16807         Fix typos.
16809 2011-11-23  Michael Albinus  <michael.albinus@gmx.de>
16811         * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
16812         `non-essential' to t, in order to avoid remote connections.
16814 2011-11-23  Eli Zaretskii  <eliz@gnu.org>
16816         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16817         On MS-DOS and MS-Windows, compare with loaddefs.el
16818         case-insensitively.
16820 2011-11-23  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
16822         * mail/unrmail.el (unrmail): Always add blank line.  (Bug#7743)
16824 2011-11-23  Glenn Morris  <rgm@gnu.org>
16826         * paths.el (rmail-file-name): Reformat the doc-string so that it
16827         is picked up.
16829         * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
16830         (rmail-auto-file): Ignore case in the "special" field names,
16831         as mail-fetch-field does for all others.
16833         * mail/rmail.el (rmail-forward):
16834         * mail/rmailkwd.el (rmail-set-label):
16835         * mail/rmailout.el (rmail-output, rmail-output-as-seen)
16836         (rmail-output-body-to-file): Give error if no message.  (Bug#10082)
16838         * mail/rmail.el (rmail-current-message): Doc fix.
16840         * mail/rmail.el (rmail-message-filter): Mark as obsolete.  (Bug#2624)
16842 2011-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16844         * server.el (server-eval-and-print): Allow C-g (bug#6585).
16846 2011-11-22  Glenn Morris  <rgm@gnu.org>
16848         * mail/rmailmm.el (test-rmail-mime-handler)
16849         (test-rmail-mime-bulk-handler)
16850         (test-rmail-mime-multipart-handler): Move tests to test/ directory.
16852 2011-11-21  Juri Linkov  <juri@jurta.org>
16854         * calc/calc.el (calc-read-key-sequence):
16855         Let-bind `input-method-function' to nil.  (Bug#10018)
16857 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16859         * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
16860         Tell the caller that the next line needs recomputation, even
16861         though it doesn't start a sexp (bug#10094).
16863 2011-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16865         * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
16867 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16869         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
16870         Use force-same-window.
16872 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
16874         * descr-text.el (describe-char-unicode-data):
16875         * json.el (json-string-escape):
16876         * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
16877         (Footnote-unicode, Footnote-style-p):
16878         * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
16880 2011-11-20  Chong Yidong  <cyd@gnu.org>
16882         * window.el (replace-buffer-in-windows): Restore interactive spec.
16884 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16886         * electric.el (electric-indent-mode): Fix last change (too optimistic).
16888         * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
16889         (byte-compile-global-not-obsolete-vars): New var.
16890         (byte-compile-check-variable, byte-compile-make-obsolete-variable):
16891         Use it.
16892         (byte-compile-warn-obsolete): Align text with the one in *Help*.
16894 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
16896         * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
16897         * progmodes/pascal.el (electric-pascal-equal):
16898         * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
16899         * xml.el (xml-substitute-special): Fix typos.
16901 2011-11-20  Glenn Morris  <rgm@gnu.org>
16903         * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
16904         (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
16905         Doc fixes.
16906         (rmail-decode-mime-charset): Mark as obsolete.
16908         * mail/rmailsum.el (rmail-message-regexp-p-1):
16909         * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
16910         Before using mime functions, check they are set.  (Bug#10077)
16912 2011-11-19  Juri Linkov  <juri@jurta.org>
16914         * info.el (Info-finder-find-node): Use `package--builtins' instead
16915         of `package-alist'.  Use node names formed by the pattern "Keyword "
16916         and the keyword name.
16918 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
16920         * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
16922 2011-11-19  Juri Linkov  <juri@jurta.org>
16924         * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
16925         that calls `revert-buffer' on all Info buffers.  (Bug#9915)
16926         (Info-revert-find-node): Remove let-bindings `old-buffer-name',
16927         `old-history', `old-history-forward'.  Add let-binding
16928         `window-selected'.  Remove calls to `kill-buffer',
16929         `switch-to-buffer' and `Info-mode'.  Set `Info-current-file' to nil
16930         before calling `Info-find-node', so `Info-find-node-2' will reread
16931         the Info file.  Restore window positions only when `window-selected'
16932         is non-nil.
16934 2011-11-19  Juri Linkov  <juri@jurta.org>
16936         * isearch.el (isearch-lazy-highlight-new-loop):
16937         Remove condition `(not isearch-error)'.  (Bug#9918)
16939         * misearch.el (multi-isearch-search-fun): Add condition
16940         `(not bound)' to ignore lazy-highlighting search.
16941         Add the search-failed message "end of multi" when the end of
16942         multi-sequence is reached.  Uncapitalize the search-failed
16943         message "Repeat for next buffer".
16945         * info.el (Info-search): Add the search-failed message
16946         "end of the manual" when the end of the manual is reached
16947         in Isearch mode.
16949 2011-11-19  Juri Linkov  <juri@jurta.org>
16951         * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
16952         Use non-destructive `remove' instead of `delete' because
16953         `Info-history-list' stored to `Info-isearch-initial-history-list' in
16954         `Info-isearch-start' might need to be restored in `Info-isearch-end'.
16956 2011-11-19  Juri Linkov  <juri@jurta.org>
16958         * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
16959         to nil instead of binding `search-ring' and `regexp-search-ring'.
16960         (Bug#9185)
16962 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
16964         * simple.el (line-move): Force movement by logical lines for any
16965         hscrolled window, not only when auto-hscroll-mode is on.
16966         (line-move-visual): Update doc string to that effect.  (Bug#10076)
16968 2011-11-19  Andreas Schwab  <schwab@linux-m68k.org>
16970         * language/european.el (macintosh): Define as alias for mac-roman.
16972 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
16974         * mail/rmailmm.el (rmail-mime-display-header)
16975         (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
16976         (rmail-mime-entity-segment, rmail-mime-toggle-raw)
16977         (rmail-mime-toggle-hidden, rmail-mime-insert-text)
16978         (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
16979         (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
16980         of a raw aref.
16981         (rmail-mime-entity-segment): To get past the tagline, move forward
16982         2 more lines, to account for the 2 empty lines that precede and
16983         follow the line with the buttons.
16984         (rmail-mime-update-tagline): Move one more line, to get past the
16985         empty line that follows the buttons in the tagline.  (Bug#9520)
16987 2011-11-19  Martin Rudalics  <rudalics@gmx.at>
16989         * window.el (window-max-delta-1, window-min-delta-1)
16990         (window-min-size-1, window-state-get-1, window-state-put-1)
16991         (window-state-put-2): Use "window--" prefix.
16993 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
16995         * emacs-lisp/smie.el: Improve warnings and conflict detection.
16996         (smie-warning-count): New var.
16997         (smie-set-prec2tab): Use it.
16998         (smie-bnf->prec2): Improve warnings.  Add docstring.
16999         (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
17000         (smie-bnf--set-class): New function.
17001         (smie-bnf--classify): Rename from smie-bnf-classify.  Rewrite to fix
17002         corner case.
17004         * progmodes/compile.el: Obey compilation-first-column in dest buffer.
17005         (compilation-error-properties, compilation-move-to-column):
17006         Handle compilation-first-column while in the target buffer.
17008         * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
17009         Don't hardcode point-min==1.
17011         * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
17012         (eshell-rewrite-for-command): Remove workaround.
17013         (eshell-do-pipelines, eshell-do-pipelines-synchronously)
17014         (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
17015         * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
17017         * files-x.el (modify-file-local-variable): Obey commenting conventions.
17019 2011-11-17  Glenn Morris  <rgm@gnu.org>
17021         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
17022         Ignore buffer-local generated-autoload-file if it is the same
17023         as the global value.  (Bug#10049)
17025 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
17027         * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
17028         (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
17029         (reftex-toc-previous-heading, reftex-toc-max-level)
17030         (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
17031         (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
17032         (reftex-toc-do-promote, reftex-toc-promote-prepare)
17033         (reftex-toc-promote-action, reftex-toc-extract-section-number)
17034         (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
17035         (reftex-toc-rename-label, reftex-toc-visit-location)
17036         (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
17037         (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
17038         (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
17039         leaving "*toc*" only for references to the buffer.
17041 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
17043         * window.el (window-resize, delete-window, split-window):
17044         Replace window-splits by window-combination-resize.
17045         * cus-start.el (window-splits): Replace by window-combination-resize.
17047 2011-11-17  Glenn Morris  <rgm@gnu.org>
17049         * progmodes/sh-script.el (sh-font-lock-keywords-var):
17050         Make bash entry derive from sh entry, not shell entry.
17052 2011-11-16  Michael Albinus  <michael.albinus@gmx.de>
17054         * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
17055         local file name.
17057 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
17059         * menu-bar.el (menu-bar-file-menu):
17060         * printing.el (pr-ps-utility):
17061         * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
17062         (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
17063         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
17064         (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
17065         (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
17066         (icalendar--convert-cyclic-to-ical)
17067         (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
17068         (icalendar--convert-ical-to-diary)
17069         (icalendar--convert-recurring-to-diary)
17070         (icalendar--convert-non-recurring-all-day-to-diary)
17071         (icalendar-import-format-sample):
17072         * progmodes/idlw-shell.el (idlwave-shell-mode):
17073         * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
17074         (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
17075         (vhdl-ps-print-init): Fix typos.
17077 2011-11-16  Ken Manheimer  <ken.manheimer@gmail.com>
17079         * allout.el, allout-widgets.el (file metadata): Attribute copyright to
17080         FSF and collapse date sequence, obscure author/maintainer email address
17081         better, remove extra version line, track relocation of author's webpage.
17083         * progmodes/python.el (python-pdbtrack-input-prompt)
17084         (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
17085         regular python pdb prompts.  Adjustments shamelessly taken exactly as
17086         suggested in EmacsWiki page (tiny change):
17087         http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
17089 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
17091         * expand.el (expand-pos, expand-index, expand-point):
17092         Remove redundant info from docstring.
17093         (expand-add-abbrevs): Doc fix.
17094         (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
17095         (expand-sample-perl-mode-expand-list): Fix typos.
17097         * net/dbus.el (dbus-event-member-name):
17098         * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
17099         * term/pc-win.el (msdos-create-frame-with-faces):
17100         * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
17102 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
17104         * window.el (split-window, window-state-get-1)
17105         (window-state-put-1, window-state-put-2): Rename occurrences of
17106         window-nest to window-combination-limit.
17107         * cus-start.el (window-nest): Rename to window-combination-limit.
17109 2011-11-16  Chong Yidong  <cyd@gnu.org>
17111         * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
17112         regexp (Bug#10033).
17114 2011-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17116         * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
17117         `completing-read' will remove *Completions* and will preserve
17118         current-buffer for us.
17119         (tmm-add-prompt): Users of *Completions* will always (re)set its
17120         major mode.
17121         (tmm-old-comp-map): Remove.
17123 2011-11-16  Glenn Morris  <rgm@gnu.org>
17125         * mail/rmailedit.el: Require rmailmm when compiling.
17126         (rmail-old-mime-state): New declaration.
17127         (rmail-edit-current-message): If editing a mime message,
17128         edit the "raw" message from the mbox buffer.
17129         (rmail-cease-edit): Handle mime messages.  (Bug#9840)
17131 2011-11-15  Glenn Morris  <rgm@gnu.org>
17133         * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
17134         which wasn't being used.  Add optional arg to force given state.
17135         (rmail-mime): Add optional arg to force given state.
17137 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
17139         * allout.el (allout-encryption-plaintext-sanitization-regexps):
17140         * frame.el (display-mm-dimensions-alist):
17141         * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
17142         (outline-move-subtree-down):
17143         * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
17144         (newsticker--treeview-do-get-node):
17145         * net/quickurl.el (quickurl-list-buffer-name):
17146         * progmodes/dcl-mode.el (dcl-mode):
17147         * progmodes/gdb-mi.el (gdb-mapcar*):
17148         * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
17150 2011-11-15  Glenn Morris  <rgm@gnu.org>
17152         * mail/rmail.el (rmail-file-coding-system): It's only ever used
17153         in a boolean sense, so just make it a boolean, and fix the doc.
17154         (rmail-show-mime-function, rmail-mime-feature)
17155         (rmail-require-mime-maybe): Doc fixes.
17156         (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
17158         * mail/rmailmm.el (rmail-show-mime): Doc fix.
17160 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
17162         * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
17163         (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
17164         (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
17165         (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
17167 2011-11-15  Glenn Morris  <rgm@gnu.org>
17169         * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
17170         (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
17171         (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
17172         (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
17173         (rmail-mime, rmail-show-mime): Doc fixes.
17175         * term/ns-win.el (mode-line-frame-identification):
17176         Leave it alone.  (Bug#10051)
17178         * simple.el (mark-whole-buffer): Doc fix.  (Bug#10023)
17180         * mail/rmailout.el (rmail-output-to-rmail-buffer):
17181         Handle empty buffers.  (Bug#9978)
17183 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
17185         * international/mule.el (define-charset):
17186         * mail/rmailmm.el (rmail-mime-find-header-encoding):
17187         * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
17188         * progmodes/verilog-mode.el (verilog-backward-token):
17189         * textmodes/ispell.el (lookup-words):
17190         * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
17192 2011-11-14  Glenn Morris  <rgm@gnu.org>
17194         * progmodes/executable.el
17195         (executable-make-buffer-file-executable-if-script-p):
17196         Handle file-modes returning nil.
17198         * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
17199         message - not necessary, and causes problems.  (Bug#9831)
17201         * mail/rmailsum.el (rmail-new-summary): Preserve message number.
17203         * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
17205         * mail/rmailsum.el (rmail-summary, rmail-new-summary)
17206         (rmail-new-summary-1): Allow empty summaries.  (Bug#9964)
17207         (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
17209 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
17211         * window.el (window-resize, delete-window): Use window-splits
17212         variable instead of function.
17213         (window-state-get-1, window-state-put-2, window-state-put):
17214         Don't deal with windows' splits status.
17216 2011-11-12  Glenn Morris  <rgm@gnu.org>
17218         * apropos.el (apropos-do-all, apropos-library, apropos-value)
17219         (apropos-documentation): Doc fixes.
17221 2011-11-11  Juanma Barranquero  <lekktu@gmail.com>
17223         * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
17224         * textmodes/sgml-mode.el (html-tag-help): Fix typos.
17226 2011-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17228         * electric.el (electric-indent-post-self-insert-function): Make it
17229         possible for a char to only indent in some circumstances.
17230         (electric-indent-mode): Simplify.
17232 2011-11-11  Martin Rudalics  <rudalics@gmx.at>
17234         * window.el (windows-with-parameter): Remove unused function.
17235         (windows-at-side): Rename to window-at-side-list.
17236         (window-check, window-atom-check, window-atom-check-1)
17237         (window-side-check, window-size-ignore, window-size-fixed-1)
17238         (window-in-direction-2): Prefix with "window--".
17239         (window-tree-1): Rename to window--subtree, fix doc-string.
17241 2011-11-11  Glenn Morris  <rgm@gnu.org>
17243         * subr.el (eval-after-load): If FILE is already loaded,
17244         evaluate FORM before it gets wrapped in more stuff.  (Bug#10009)
17246 2011-11-10  Glenn Morris  <rgm@gnu.org>
17248         * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
17249         Call svn via vc-svn-command rather than vc-do-command.
17250         (vc-svn-command): Add --non-interactive.  (Bug#9993)
17251         (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
17253         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
17254         Add toggle-read-only.  (Bug#7292)
17255         * files.el (toggle-read-only): Mention that it should only
17256         be used interactively.  (Bug#10006)
17258 2011-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
17260         * progmodes/compile.el (compilation-error-regexp-alist-alist):
17261         Adjust regexp for OCaml warnings.
17263         * electric.el (electric-pair-post-self-insert-function): Let user
17264         turn it off buffer-locally (bug#9932).
17266         * progmodes/python.el (python-beginning-of-statement):
17267         Rewrite (bug#2703).
17269         * progmodes/compile.el: Better handle TABs (bug#9749).
17270         (compilation-internal-error-properties)
17271         (compilation-next-error-function): Obey the target buffer's
17272         compilation-error-screen-columns.
17274 2011-11-09  Juanma Barranquero  <lekktu@gmail.com>
17276         * progmodes/meta-mode.el: Remove obsolete comments.
17277         (meta-right-comment-regexp, meta-ignore-comment-regexp):
17278         Fix typos in docstrings.
17280 2011-11-09  Martin Rudalics  <rudalics@gmx.at>
17282         * window.el (window-size-fixed-p): Rewrite doc-string.
17283         (window-resizable-p): Rename to window--resizable-p.  Update callers.
17284         (window--resizable): New function.  Make all callers of
17285         window-resizable call window--resizable instead.
17286         (window-resizable): Rewrite in terms of window--resizable.
17288 2011-11-08  Glenn Morris  <rgm@gnu.org>
17290         * progmodes/delphi.el (delphi-mode-syntax-table):
17291         Let define-derived-mode define a proper syntax table.  (Bug#9994)
17293 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17295         * window.el: Stay away from defsubst.
17296         (window-list-no-nils): Remove.
17297         (window-state-get-1, window-state-get): Use backquote instead.
17299 2011-11-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
17301         * emacs-lisp/find-func.el (find-function-read):
17302         Fix incorrect use of default argument in `completing-read'.
17304 2011-11-08  Martin Rudalics  <rudalics@gmx.at>
17306         * window.el (display-buffer-function, special-display-function):
17307         Mention display-buffer-record-window but do not mention
17308         help-setup parameter in doc-strings.
17309         (window-min-delta): Fix doc-string typo.
17311 2011-11-08  Chong Yidong  <cyd@gnu.org>
17313         * window.el (window-total-height, window-total-width): Doc fix.
17314         (window-body-size): Move from C.
17315         (window-body-height, window-body-width): Move to C.
17317 2011-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17319         * window.el: Make special-display like display-buffer-alist (bug#9532).
17320         (display-buffer--special-action): New function, morphed
17321         from display-buffer--special.
17322         (display-buffer): Use it to handle special-display-buffers at higher
17323         priority (just after display-buffer-alist).
17324         (display-buffer-fallback-action, display-buffer--other-frame-action)
17325         (pop-to-buffer-same-window): Remove display-buffer--special.
17327 2011-11-07  Glenn Morris  <rgm@gnu.org>
17329         * calendar/cal-menu.el (cal-menu-set-date-title):
17330         Do nothing if not in a calendar.  (Bug#9976)
17332 2011-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
17334         * files.el (find-file): Always use selected-window.
17336 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
17338         * window.el (window-combinations): Make WINDOW argument
17339         mandatory.  Rewrite doc-string.
17340         (walk-window-subtree, window-atom-check, window-min-delta)
17341         (window-max-delta, window--resize-this-window)
17342         (window--resize-root-window-vertically, window-tree)
17343         (balance-windows, window-state-put): Rewrite doc-strings as to
17344         not mention the term "subwindow".
17345         (window--resize-subwindows-skip-p): Rename to
17346         window--resize-child-windows-skip-p.
17347         (window--resize-subwindows-normal): Rename to
17348         window--resize-child-windows-normal.
17349         (window--resize-subwindows): Rename to
17350         window--resize-child-windows.
17351         (window-or-subwindow-p): Rename to window--in-subtree-p.
17353 2011-11-07  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
17355         * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
17356         Ensure that mbox format messages end in two newlines (Bug#9974).
17358 2011-11-06  Chong Yidong  <cyd@gnu.org>
17360         * window.el (window-combination-p): Function deleted; its
17361         side-effect is not used in any existing code.
17362         (window-combinations, window-combined-p): Call window-*-child
17363         directly.
17365 2011-11-05  Chong Yidong  <cyd@gnu.org>
17367         * window.el (window-valid-p): Rename from window-any-p.
17368         (window-size-ignore, window-state-get): Callers changed.
17369         (window-normalize-window): Rename from window-normalize-any-window.
17370         New arg LIVE-ONLY, replacing window-normalize-live-window.
17371         (window-normalize-live-window): Delete.
17372         (window-combination-p, window-combined-p, window-combinations)
17373         (walk-window-subtree, window-atom-root, window-min-size)
17374         (window-sizable, window-sizable-p, window-size-fixed-p)
17375         (window-min-delta, window-max-delta, window-resizable)
17376         (window-resizable-p, window-full-height-p, window-full-width-p)
17377         (window-current-scroll-bars, window-point-1, set-window-point-1)
17378         (window-at-side-p, window-in-direction, window-resize)
17379         (adjust-window-trailing-edge, maximize-window, minimize-window)
17380         (window-deletable-p, delete-window, delete-other-windows)
17381         (record-window-buffer, unrecord-window-buffer)
17382         (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
17383         (quit-window, split-window, window-state-put)
17384         (set-window-text-height, fit-window-to-buffer)
17385         (shrink-window-if-larger-than-buffer): Callers changed.
17387 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
17389         * mail/rmail.el (rmail-simplified-subject): Decode subject with
17390         rfc2047-decode-string.
17391         (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
17392         warnings.
17394         * window.el (window-body-height, window-body-width): Mention in
17395         the doc string that the return values are in frame's canonical
17396         units.  (Bug#9949)
17398 2011-11-03  Alan Mackenzie  <acm@muc.de>
17400         * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
17401         change in cc-engine.el.
17403 2011-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
17405         * window.el (switch-to-buffer): Use `force-same-window' interactively.
17407 2011-11-02  Martin Rudalics  <rudalics@gmx.at>
17409         * window.el (quit-window): Call unrecord-window-buffer after
17410         showing another buffer in the window.  (Bug#9937)
17411         (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
17413 2011-11-02  Juanma Barranquero  <lekktu@gmail.com>
17415         * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
17416         Accept status with more than 9 shelves.  (Bug#9935)
17417         Reported by Colin D Bennett <colin@gibibit.com>.
17419 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
17421         * help.el (with-help-window): Don't reference
17422         temp-buffer-show-specifiers in doc-string.
17424 2011-10-31  Andreas Schwab  <schwab@linux-m68k.org>
17426         * subr.el (keymap--menu-item-with-binding): Ignore item if not a
17427         menu-item.
17429 2011-10-30  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
17431         * whitespace.el: New version 13.2.2.
17432         (whitespace-newline-mode): Disable properly.  Reported by Sarah
17433         <EmacsWiki>.
17435 2011-10-30  Ulf Jasper  <ulf.jasper@web.de>
17437         * net/newst-treeview.el: Remove "Time-stamp".
17438         (newsticker--group-manage-orphan-feeds): Do not call
17439         newsticker--treeview-tree-update.
17440         (newsticker-treeview-update, newsticker-treeview):
17441         Call newsticker--treeview-tree-update if necessary.
17443 2011-10-30  Martin Rudalics  <rudalics@gmx.at>
17445         * window.el (window-iso-combination-p, window-iso-combined-p)
17446         (window-iso-combinations): Remove "iso-" infix.
17447         Suggested by Chong Yidong.
17448         (window-min-size-1, window-size-fixed-1, window-min-delta-1)
17449         (window-max-delta-1, window-resize, window--resize-siblings)
17450         (window--resize-this-window, adjust-window-trailing-edge)
17451         (split-window, balance-windows-1)
17452         (shrink-window-if-larger-than-buffer):
17453         * calendar/calendar.el (calendar-generate-window):
17454         * help.el (resize-temp-buffer-window): Adjust callers accordingly.
17456 2011-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
17458         * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
17459         in place (bug#9907).
17460         (eshell-subcommand-arg-values, eshell-rewrite-named-command)
17461         (eshell-rewrite-if-command, eshell-rewrite-for-command)
17462         (eshell-structure-basic-command, eshell-rewrite-while-command)
17463         (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
17464         (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
17465         (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
17466         (eshell-do-pipelines-synchronously, eshell-eval-command):
17467         Use backquotes and prefer setq to set.
17468         (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
17469         (eshell-macrop): Use functionp.
17470         (eshell-do-eval): Handle multiple expressions in `while' body.
17472 2011-10-30  Chong Yidong  <cyd@gnu.org>
17474         * emulation/viper-cmd.el (viper-exec-change): Use push-mark
17475         instead of set-mark (Bug#9810).
17477 2011-10-30  Chong Yidong  <cyd@gnu.org>
17479         * window.el (split-window-below, split-window-right): Rename from
17480         split-window-above-each-other and split-window-side-by-side
17481         respectively.  All callers changed.
17482         (split-window-sensibly, split-window-sensibly): Use them.
17483         (split-window-keep-point): Doc fix.
17485         * isearch.el: Add isearch-scroll property to split-window-below
17486         and split-window-right.
17488         * follow.el (follow-mode):
17489         * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
17490         * progmodes/ada-xref.el (ada-gdb-application):
17491         * emulation/vip.el (vip-buffer-in-two-windows):
17492         * image-dired.el (image-dired-dired-with-window-configuration):
17493         * dired-x.el (dired-do-find-marked-files):
17494         * dired.el (dired-pop-to-buffer):
17495         * bs.el (bs--show-with-configuration):
17496         * vc/emerge.el (emerge-setup-windows):
17497         * textmodes/two-column.el (2C-two-columns):
17498         * textmodes/reftex-toc.el (reftex-toc):
17499         * progmodes/gdb-mi.el (gdb-setup-windows):
17500         * progmodes/fortran.el (fortran-window-create):
17501         * net/newst-treeview.el (newsticker--treeview-window-init):
17502         * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
17503         * emulation/tpu-edt.el (tpu-gold-map):
17504         * emulation/crisp.el (crisp-mode-map):
17505         * calendar/calendar.el (calendar-basic-setup): Callers changed.
17507 2011-10-29  Chong Yidong  <cyd@gnu.org>
17509         * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
17511         * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
17513         * textmodes/flyspell.el (flyspell-word): Fix char offset for
17514         forged Ispell output (Bug#7904).
17516         * emacs-lisp/package.el (package-refresh-contents): Add autoload.
17518 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17520         * doc-view.el: Avoid ugly errors about not finding nil.
17521         (doc-view-ghostscript-program, doc-view-dvipdfm-program)
17522         (doc-view-dvipdf-program, doc-view-unoconv-program)
17523         (doc-view-ps2pdf-program, doc-view-pdftotext-program):
17524         Avoid nil or absolute file name as default value.
17525         (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
17527 2011-10-28  Alan Mackenzie  <acm@muc.de>
17529         * progmodes/cc-defs.el (c-version): -> 5.32.2.
17531 2011-10-28  Alan Mackenzie  <acm@muc.de>
17533         Amend the handling of c-beginning/end-of-defun in nested declaration
17534         scopes.
17536         * progmodes/cc-vars.el (c-defun-tactic): Move here from
17537         cc-langs.el.  Change it to a defcustom.
17539         * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
17540         cc-vars.el.
17542         * progmodes/cc-engine.el (c-beginning-of-statement-1):
17543         Prevent "class foo : bar" being spuriously recognized as a label.
17545         * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
17546         Add parameter `inclusive' (to include enclosing braces in the region).
17547         (c-widen-to-enclosing-decl-scope): New function.
17548         (c-while-widening-to-decl-block): New macro.
17549         (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
17550         outward for defun boundaries, and correspondingly change symbol
17551         `respect-enclosure' to `go-outward'.
17552         (c-declaration-limits): Change algorithm to report only the "innermost"
17553         defun's boundaries.
17555 2011-10-28  Deniz Dogan  <deniz@dogan.se>
17557         * net/rcirc.el (rcirc-mode): Use hard newlines.
17559 2011-10-28  Alan Mackenzie  <acm@muc.de>
17561         Amend to indent and fontify macros "which include their own semicolon"
17562         correctly, using the "virtual semicolon" mechanism.
17564         * progmodes/cc-defs.el: Update "virtual semicolon" comments.
17566         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
17567         Recode to scan one line at a time rather than having \n and \r
17568         explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
17569         (c-forward-label): Amend for virtual semicolons.
17570         (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
17572         * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
17573         of the new C macros.
17575         * progmodes/cc-langs.el (c-at-vsemi-p-fn):
17576         (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
17577         (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
17578         (c-opt-cpp-macro-define): Make into a full language variable.
17579         (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
17580         AWK Mode (including \n, \r) removed, no longer needed.
17582         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
17583         Invoke c-make-macro-with-semi-re.
17585         * progmodes/cc-vars.el (c-macro-with-semi-re):
17586         (c-macro-names-with-semicolon): New variables.
17587         (c-make-macro-with-semi-re): New function.
17589 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17591         * vc/log-edit.el: Fill empty field rather than adding new one.
17592         (log-edit-add-field): New function.
17593         (log-edit-insert-changelog): Use it.
17595 2011-10-28  Mark Lillibridge  <mark.lillibridge@hp.com>  (tiny change)
17597         * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
17599 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17601         * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
17602         (gdb--check-interpreter): New function.
17603         (gdb): Use it.
17605 2011-10-27  Glenn Morris  <rgm@gnu.org>
17607         * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
17608         (least-positive-float, least-negative-float)
17609         (least-positive-normalized-float, least-negative-normalized-float)
17610         (float-epsilon, float-negative-epsilon):
17611         Remove unnecessary declarations.
17613         * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
17614         * emacs-lisp/cl.el (most-positive-float, most-negative-float)
17615         (least-positive-float, least-negative-float)
17616         (least-positive-normalized-float, least-negative-normalized-float)
17617         (float-epsilon, float-negative-epsilon): Add doc-strings,
17618         based on those in cl.texi.
17620         * files.el (set-visited-file-name): If the major-mode changed,
17621         reload the local variables.  (Bug#9796)
17623 2011-10-27  Chong Yidong  <cyd@gnu.org>
17625         * subr.el (change-major-mode-after-body-hook): New hook.
17626         (run-mode-hooks): Run it.
17628         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17629         Use change-major-mode-before-body-hook.
17631         * simple.el (fundamental-mode):
17632         * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
17633         change introducing fundamental-mode-hook.
17635 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
17637         * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
17639 2011-10-26  Michael Albinus  <michael.albinus@gmx.de>
17641         * ido.el (ido-file-name-all-completions-1): Do not require
17642         tramp.el explicitly.  (Bug#7583)
17644 2011-10-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17646         * progmodes/octave-mod.el:
17647         * progmodes/octave-inf.el: Update maintainer.
17649 2011-10-26  Chong Yidong  <cyd@gnu.org>
17651         * subr.el (with-wrapper-hook): Rewrite doc.
17653 2011-10-25  Michael Albinus  <michael.albinus@gmx.de>
17655         * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
17656         filenames "/method:foo:".  (Bug#9793)
17658 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17660         * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
17661         (bug#9865).
17663 2011-10-24  Glenn Morris  <rgm@gnu.org>
17665         * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.  (Bug#9819)
17667 2011-10-24  Michael Albinus  <michael.albinus@gmx.de>
17669         * notifications.el: Add the requirement of a running D-Bus session
17670         bus to the Commentary.
17672 2011-10-24  Juri Linkov  <juri@jurta.org>
17674         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
17675         `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
17676         (Bug#9364)
17678 2011-10-24  Juri Linkov  <juri@jurta.org>
17680         * info.el (Info-following-node-name-re): Add newline to the list
17681         of allowed characters for leading space.  (Bug#9824)
17683 2011-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
17685         * progmodes/octave-inf.el (inferior-octave-mode-map):
17686         Fix C-c C-h binding.
17687         * progmodes/octave-mod.el (octave-help): Remove.
17689 2011-10-23  Michael Albinus  <michael.albinus@gmx.de>
17691         Sync with Tramp 2.2.3.
17693         * net/tramp-cache.el (top): Pacify byte-compiler using
17694         `init-file-user' and `site-run-file'.
17696         * net/trampver.el: Update release number.
17698 2011-10-23  Chong Yidong  <cyd@gnu.org>
17700         * files.el (toggle-read-only): Remove obsolete comment about
17701         version control.
17703         * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
17704         for toggle-read-only.  Note that this hasn't called vc-next-action
17705         since 2008-05-02, though it wasn't documented at the time.
17707         * vc/ediff-init.el (ediff-toggle-read-only-function):
17708         Use toggle-read-only.
17710 2011-10-22  Alan Mackenzie  <bug-cc-mode@gnu.org>
17712         Fix bug #9560, sporadic wrong indentation; improve instrumentation
17713         of c-parse-state.
17715         * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
17716         correct faulty logical expression.
17717         (c-parse-state-state, c-record-parse-state-state):
17718         (c-replay-parse-state-state): New defvar/defuns.
17719         (c-debug-parse-state): Use new functions.
17721 2011-10-22  Martin Rudalics  <rudalics@gmx.at>
17723         * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
17724         last fix.  Use window-in-direction correctly.
17726 2011-10-21  Chong Yidong  <cyd@gnu.org>
17728         * progmodes/idlwave.el (idlwave-mode):
17729         * progmodes/vera-mode.el (vera-mode): No need to set
17730         require-final-newline; that's done in prog-mode.
17731         Suggested by Stefan Monnier.
17733 2011-10-21  Martin Rudalics  <rudalics@gmx.at>
17735         * mouse.el (mouse-drag-window-above)
17736         (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
17737         (mouse-drag-mode-line-1, mouse-drag-header-line)
17738         (mouse-drag-vertical-line-rightward-window): Remove.
17739         (mouse-drag-line): New function.
17740         (mouse-drag-mode-line, mouse-drag-header-line)
17741         (mouse-drag-vertical-line): Call mouse-drag-line.
17742         * window.el (window-at-side-p, windows-at-side): New functions.
17744 2011-10-21  Ulrich Mueller  <ulm@gentoo.org>
17746         * tar-mode.el (tar-grind-file-mode):
17747         Fix handling of setuid/setgid, handle sticky bit.  (Bug#9817)
17749 2011-10-21  Chong Yidong  <cyd@gnu.org>
17751         * progmodes/idlwave.el (idlwave-mode):
17752         * progmodes/vera-mode.el (vera-mode):
17753         Use mode-require-final-newline.
17755 2011-10-20  Glenn Morris  <rgm@gnu.org>
17757         * vc/vc.el (vc-next-action): Handle removed directories.  (Bug#9781)
17759 2011-10-20  Christoph Scholtes  <cschol2112@googlemail.com>
17761         * emulation/cua-base.el (cua-set-mark): Fix case of string.
17763 2011-10-20  Chong Yidong  <cyd@gnu.org>
17765         * emulation/cua-base.el (cua-mode):
17766         * mail/footnote.el (footnote-mode):
17767         * mail/mailabbrev.el (mail-abbrevs-mode):
17768         * net/xesam.el (xesam-minor-mode):
17769         * progmodes/bug-reference.el (bug-reference-mode):
17770         * progmodes/cap-words.el (capitalized-words-mode):
17771         * progmodes/compile.el (compilation-minor-mode)
17772         (compilation-shell-minor-mode):
17773         * progmodes/gud.el (gud-tooltip-mode):
17774         * progmodes/hideif.el (hide-ifdef-mode):
17775         * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
17776         * progmodes/subword.el (subword-mode):
17777         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
17778         * progmodes/which-func.el (which-function-mode):
17779         * term/tvi970.el (tvi970-set-keypad-mode):
17780         * term/vt100.el (vt100-wide-mode):
17781         * textmodes/flyspell.el (flyspell-mode):
17782         * textmodes/ispell.el (ispell-minor-mode):
17783         * textmodes/nroff-mode.el (nroff-electric-mode):
17784         * textmodes/paragraphs.el (use-hard-newlines):
17785         * textmodes/refill.el (refill-mode):
17786         * textmodes/reftex.el (reftex-mode):
17787         * textmodes/rst.el (rst-minor-mode):
17788         * textmodes/sgml-mode.el (html-autoview-mode)
17789         (sgml-electric-tag-pair-mode):
17790         * textmodes/tex-mode.el (latex-electric-env-pair-mode):
17791         * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
17792         * emulation/crisp.el (crisp-mode):
17793         * emacs-lisp/eldoc.el (eldoc-mode):
17794         * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
17795         minor mode behavior.
17797 2011-10-19  Juri Linkov  <juri@jurta.org>
17799         * descr-text.el (describe-char): Add #x2010 and #x2011 to
17800         the list of hard-coded chars with escape-glyph face.
17802 2011-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17804         * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
17806 2011-10-19  Michael Albinus  <michael.albinus@gmx.de>
17808         * net/tramp.el (tramp-connectable-p): Make a stronger check on a
17809         running process.
17811 2011-10-19  Glenn Morris  <rgm@gnu.org>
17813         * vc/vc-bzr.el (vc-bzr-after-dir-status):
17814         Ignore ignored files.  (Bug#9726)
17816 2011-10-19  Chong Yidong  <cyd@gnu.org>
17818         Doc fix for minor modes, stating that an omitted argument enables
17819         the mode unconditionally when called from Lisp.
17821         * abbrev.el (abbrev-mode):
17822         * allout.el (allout-mode):
17823         * autoinsert.el (auto-insert-mode):
17824         * autoarg.el (autoarg-mode, autoarg-kp-mode):
17825         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
17826         (global-auto-revert-mode):
17827         * battery.el (display-battery-mode):
17828         * composite.el (global-auto-composition-mode)
17829         (auto-composition-mode):
17830         * delsel.el (delete-selection-mode):
17831         * desktop.el (desktop-save-mode):
17832         * dired-x.el (dired-omit-mode):
17833         * dirtrack.el (dirtrack-mode):
17834         * doc-view.el (doc-view-minor-mode):
17835         * double.el (double-mode):
17836         * electric.el (electric-indent-mode, electric-pair-mode):
17837         * emacs-lock.el (emacs-lock-mode):
17838         * epa-hook.el (auto-encryption-mode):
17839         * follow.el (follow-mode):
17840         * font-core.el (font-lock-mode):
17841         * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
17842         * help.el (temp-buffer-resize-mode):
17843         * hilit-chg.el (highlight-changes-mode)
17844         (highlight-changes-visible-mode):
17845         * hi-lock.el (hi-lock-mode):
17846         * hl-line.el (hl-line-mode, global-hl-line-mode):
17847         * icomplete.el (icomplete-mode):
17848         * ido.el (ido-everywhere):
17849         * image-file.el (auto-image-file-mode):
17850         * image-mode.el (image-minor-mode):
17851         * iswitchb.el (iswitchb-mode):
17852         * jka-cmpr-hook.el (auto-compression-mode):
17853         * linum.el (linum-mode):
17854         * longlines.el (longlines-mode):
17855         * master.el (master-mode):
17856         * mb-depth.el (minibuffer-depth-indicate-mode):
17857         * menu-bar.el (menu-bar-mode):
17858         * minibuf-eldef.el (minibuffer-electric-default-mode):
17859         * mouse-sel.el (mouse-sel-mode):
17860         * msb.el (msb-mode):
17861         * mwheel.el (mouse-wheel-mode):
17862         * outline.el (outline-minor-mode):
17863         * paren.el (show-paren-mode):
17864         * recentf.el (recentf-mode):
17865         * reveal.el (reveal-mode, global-reveal-mode):
17866         * rfn-eshadow.el (file-name-shadow-mode):
17867         * ruler-mode.el (ruler-mode):
17868         * savehist.el (savehist-mode):
17869         * scroll-all.el (scroll-all-mode):
17870         * scroll-bar.el (scroll-bar-mode):
17871         * server.el (server-mode):
17872         * shell.el (shell-dirtrack-mode):
17873         * simple.el (auto-fill-mode, transient-mark-mode)
17874         (visual-line-mode, overwrite-mode, binary-overwrite-mode)
17875         (line-number-mode, column-number-mode, size-indication-mode)
17876         (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
17877         * strokes.el (strokes-mode):
17878         * time.el (display-time-mode):
17879         * t-mouse.el (gpm-mouse-mode):
17880         * tool-bar.el (tool-bar-mode):
17881         * tooltip.el (tooltip-mode):
17882         * type-break.el (type-break-mode-line-message-mode)
17883         (type-break-query-mode):
17884         * view.el (view-mode):
17885         * whitespace.el (whitespace-mode, whitespace-newline-mode)
17886         (global-whitespace-mode, global-whitespace-newline-mode):
17887         * xt-mouse.el (xterm-mouse-mode): Doc fix.
17889         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
17890         Fix autogenerated docstring.
17892 2011-10-19  Juri Linkov  <juri@jurta.org>
17894         * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
17895         by checking environment variables "DESKTOP_SESSION" and
17896         "XDG_CURRENT_DESKTOP".  (Bug#9779)
17898 2011-10-19  Juri Linkov  <juri@jurta.org>
17900         * net/browse-url.el (browse-url-browser-function): Add "Chromium".
17901         (browse-url-chromium-program, browse-url-chromium-arguments):
17902         New defcustoms.
17903         (browse-url-default-browser): Check for `browse-url-chromium' and
17904         call `browse-url-chromium-program'.
17905         (browse-url-chromium): New command.  (Bug#9779)
17907 2011-10-18  Juanma Barranquero  <lekktu@gmail.com>
17909         * facemenu.el (list-colors-duplicates): On Windows, detect more
17910         duplicates by assuming that only colors matching "^System" are
17911         special "system colors".  (Bug#9722)
17913 2011-10-18  Stefan Monnier  <monnier@iro.umontreal.ca>
17915         * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
17916         to distinguish the author from the committer.
17918 2011-10-18  Michael Albinus  <michael.albinus@gmx.de>
17920         * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
17922 2011-10-18  Jirka Kosek  <jirka@kosek.cz>  (tiny change)
17924         * international/mule.el (sgml-html-meta-auto-coding-function):
17925         Add support for detecting encoding in HTML5 specified only as
17926         <meta charset="UTF-8">.  Implementation just makes http-equiv and
17927         content-type parts from HTML4 encoding string optional.  (Bug#9716)
17929 2011-10-18  Glenn Morris  <rgm@gnu.org>
17931         * vc/vc.el (vc-initial-comment): Mark as obsolete.  (Bug#9745)
17933 2011-10-18  Chong Yidong  <cyd@gnu.org>
17935         * faces.el (cursor): Doc fix.
17937 2011-10-17  Chong Yidong  <cyd@gnu.org>
17939         * font-lock.el (font-lock-maximum-size): Mark as obsolete.
17941 2011-10-17  Ryan Barrett  <emacs@ryanb.org>  (tiny change)
17943         * dirtrack.el (dirtrack): Support shell buffers with path
17944         prefixes, e.g. tramp-based remote shells.  (Bug#9647)
17946 2011-10-17  Teodor Zlatanov  <tzz@lifelogs.com>
17948         * json.el: Bump version to 1.3 and note change in History.
17949         (json-alist-p, json-plist-p): Rewrite to avoid recursion.
17951 2011-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17953         * comint.el (comint-insert-input, comint-send-input)
17954         (comint-get-old-input-default, comint-backward-matching-input)
17955         (comint-next-prompt): Use nil instead of `input' for field property of
17956         past user input (bug#114).
17958         * minibuffer.el (completion--replace): Inherit surrounding properties
17959         (bug#114).
17960         (minibuffer-complete-and-exit): Use it.
17962         * comint.el (comint--table-subvert): Quote the all-completions output
17963         (bug#9160).
17965 2011-10-17  Martin Rudalics  <rudalics@gmx.at>
17967         * ido.el (ido-default-buffer-method): Remove redundant :type entry.
17969         * menu-bar.el (menu-bar-file-menu): Add entry for making new
17970         window on right of selected.  (Bug#9350) Reword other window
17971         entries and separate them from frame entries.
17973 2011-10-15  Glenn Morris  <rgm@gnu.org>
17975         * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
17976         Doc fixes.
17978 2011-10-15  Chong Yidong  <cyd@stupidchicken.com>
17980         * net/network-stream.el (network-stream-open-starttls):
17981         Improve detection of failure due to lack of TLS support.
17983         * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
17984         putting the input text in front and in bold.
17986 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
17988         * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
17990         * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
17991         empty buffer.
17993         * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
17994         unread-command-events rather than pushing yet-another event.
17996 2011-10-14  Eli Zaretskii  <eliz@gnu.org>
17998         * mail/sendmail.el (sendmail-query-once): Improve the wording of
17999         the explanation of the possible choices.  Make the options passed
18000         to completing-read shorter.
18002 2011-10-13  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
18004         * textmodes/flyspell.el (flyspell-large-region): Make sure
18005         extended character mode is used if defined (Bug#1339).
18007 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
18009         * simple.el (what-cursor-position): Fix the display of the
18010         character info for LRE, LRO, RLE, and RLO characters by appending
18011         an invisible PDF.
18013 2011-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18015         * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
18016         even in case of error; add debug spec; simplify data flow.
18017         (with-timeout-handler): Remove.
18019 2011-10-12  Michael Albinus  <michael.albinus@gmx.de>
18021         Fix Bug#6019, Bug#9315.
18023         * files.el (set-auto-mode): Call `file-name-sans-versions' for the
18024         complete `buffer-file-name', the local file name part could look
18025         remotely (for example on VMS).
18027         * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
18028         `tramp-run-real-handler'.
18029         (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
18030         already quoted by '"'.
18032         * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
18033         Let `file-name-handler-alist' be nil, the local file name part
18034         could look remotely (for example on VMS).
18036 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18038         * textmodes/flyspell.el (flyspell-word): Move with-local-quit
18039         from here...
18040         (flyspell-post-command-hook): ...to here.
18042 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18044         * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
18045         if not needed.
18046         (sendmail-query-once): Remove OS dependencies.  Make it a 3-way choice
18047         using completion.  Protect against "slow" callers.
18048         Remove the "message hack".
18050 2011-10-11  Juri Linkov  <juri@jurta.org>
18052         * isearch.el (isearch-lazy-highlight-word): New variable.
18053         (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
18054         Use it.  (Bug#9727)
18056 2011-10-11  Glenn Morris  <rgm@gnu.org>
18058         * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
18059         like f90-previous-statement does.
18061 2011-10-11  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18063         * eshell/eshell.el (eshell-command): History should be saved
18064         only in interactive use, to avoid error.
18066 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18068         * minibuffer.el (completion-file-name-table): Fix last change,
18069         i.e. ignore normal errors but not the other ones.
18071 2011-10-10  Martin Rudalics  <rudalics@gmx.at>
18073         * window.el (special-display-buffer-names)
18074         (special-display-regexps): Remove some remnants of earlier
18075         changes from doc-strings.
18076         (quit-windows-on): New function.
18078         * vc/vc.el (vc-revert, vc-rollback):
18079         * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
18080         instead of deleting windows.  (Bug#4557) (Bug#5310) (Bug#5556)
18081         (Bug#6183) (Bug#7074) (Bug#7447)
18083 2011-10-09  Martin Rudalics  <rudalics@gmx.at>
18085         * window.el (frame-auto-hide-function): Add version tag.
18086         (Bug#9699)
18088 2011-10-09  Michael Albinus  <michael.albinus@gmx.de>
18090         * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
18091         condition.
18093 2011-10-09  Leo Liu  <sdl.web@gmail.com>
18095         * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
18096         (Bug#9701)
18098 2011-10-08  Glenn Morris  <rgm@gnu.org>
18100         * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
18101         before the first code statement zero indent.  (Bug#9690)
18103 2011-10-08  Chong Yidong  <cyd@stupidchicken.com>
18105         * simple.el (count-words-region): Always count in the region.
18106         Report the number of lines and characters too.
18107         (count-words): New command, which counts in the buffer if the
18108         region is inactive, as count-words-region used to.
18109         (count-words--message): New function.  Handle plurals.
18110         (count-lines-region): Make it an alias for count-words-region.
18112         * bindings.el (esc-map): Replace count-lines-region with
18113         count-words-region.
18115 2011-10-08  Martin Rudalics  <rudalics@gmx.at>
18117         * window.el (window--delete): Delete dedicated frame
18118         unconditionally when argument KILL is non-nil.  (Bug#9699)
18119         (switch-to-buffer): Fix doc-string typo.
18121 2011-10-08  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18123         * eshell/eshell.el (eshell-command): Avoid using hooks.
18125 2011-10-07  Chong Yidong  <cyd@stupidchicken.com>
18127         * bindings.el ([M-left],[M-right]): Bind to left-word and
18128         right-word respectively.
18130 2011-10-07  Glenn Morris  <rgm@gnu.org>
18132         * cus-start.el (debug-on-quit): Fix custom type.
18134 2011-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18136         * subr.el (define-key-after): Clarify that the function is not
18137         useful for non-menu keymaps.
18139         * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
18141 2011-10-06  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
18143         * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
18144         in current minibuffer (Fix bug with recursive minibuffers).
18146 2011-10-06  Chong Yidong  <cyd@stupidchicken.com>
18148         * progmodes/gdb-mi.el (gdb): Doc fix.
18150 2011-10-05  Martin Rudalics  <rudalics@gmx.at>
18152         * window.el (frame-auto-hide-function): New option replacing
18153         frame-auto-delete.  Suggested by Stefan Monnier.
18154         (window--delete): Call frame-auto-hide-function instead of
18155         investigating frame-auto-delete.
18156         (window-point-1, set-window-point-1): New functions.
18157         (window-in-direction, record-window-buffer, window-state-get-1)
18158         (display-buffer-record-window): Use window-point-1 instead of
18159         window-point.
18160         (set-window-buffer-start-and-point): Use set-window-point-1.
18162 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18164         * emacs-lisp/edebug.el: Heed checkdoc recommendations.
18166 2011-10-05  Glenn Morris  <rgm@gnu.org>
18168         * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
18169         (perl-calculate-indent): Suppress scan errors.  (Bug#2205)
18171 2011-10-05  Leo Liu  <sdl.web@gmail.com>
18173         * subr.el (read-char-choice): Fix argument to buffer-live-p which
18174         works with buffer object.
18176 2011-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18178         * mpc.el (mpc-tool-bar-map): Add labels.
18180 2011-10-04  Glenn Morris  <rgm@gnu.org>
18182         * calendar/holidays.el (calendar-check-holidays): Doc fix.
18184 2011-10-04  Martin Rudalics  <rudalics@gmx.at>
18186         * window.el (window--delete): New function.
18187         (frame-auto-delete): Resuscitate option.
18188         (bury-buffer, replace-buffer-in-windows)
18189         (quit-window): Rewrite using window--delete.
18190         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
18191         Pass display-buffer-mark-dedicated to window--display-buffer-2
18192         (Bug#9639).
18194 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18196         * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
18197         returns a list (bug#9554).  Add remote file name completion.
18198         * comint.el (comint--table-subvert): Curry and get quote&unquote
18199         functions as arguments.
18200         (comint--complete-file-name-data): Adjust call accordingly.
18201         * pcomplete.el (pcomplete--table-subvert): Remove.
18202         (pcomplete-completions-at-point): Use comint--table-subvert instead.
18204         * minibuffer.el (completion-table-case-fold): Use currying.
18205         (completion--styles-type, completion--cycling-threshold-type):
18206         New constants.
18207         (completion-styles, completion-category-overrides)
18208         (completion-cycle-threshold): Use them.
18209         * pcomplete.el (pcomplete-completions-at-point): Adjust call to
18210         completion-table-case-fold.
18212 2011-10-03  Stephen Berman  <stephen.berman@gmx.net>
18214         * minibuffer.el (completion-category-overrides): Fix type of styles
18215         and add more user friendly tags (bug#9660).
18217 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18219         * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
18220         (mule-input-method-string): New widget.
18221         (default-input-method, language-info-custom-alist): Use it.
18223 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18225         * pcomplete.el: Require comint.
18226         (pcomplete--common-suffix): Remove.
18227         (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
18228         (pcomplete--table-subvert): Sync with comint--table-subvert.
18229         (pcomplete--entries): Use comint-completion-file-name-table.
18230         * comint.el (comint-unquote-filename): Simplify.
18231         (comint-completion-file-name-table): New function (bug#9616).
18232         (comint--complete-file-name-data): Use it.
18234         * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
18235         (pcmpl-gnu-tar-buffer): Remove.
18236         (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
18237         around.  Make sure pcomplete-suffix-list is only changed temporarily.
18238         Don't look inside the tar's file if it's too large.
18240 2011-10-01  Chong Yidong  <cyd@stupidchicken.com>
18242         * cus-edit.el (custom-mode-map):
18243         * epa.el (epa-key-list-mode-map):
18244         * man.el (Man-mode-map):
18245         * startup.el (splash-screen-keymap):
18246         * simple.el (special-mode-map): Use scroll-up-command and
18247         scroll-down-command.
18249         * progmodes/idlw-help.el (idlwave-help-mode-map):
18250         * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
18251         * net/newst-plainview.el (newsticker-mode-map):
18252         * emulation/ws-mode.el (wordstar-mode-map):
18253         * emulation/vi.el (vi-com-map):
18254         * calc/calc-graph.el (calc-graph-show-dumb):
18255         * term/sun.el (terminal-init-sun):
18256         * term/ns-win.el (global-map):
18257         * progmodes/grep.el (grep-mode-map):
18258         * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
18259         * mail/rmail.el (rmail-mode-map):
18260         * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
18262         * custom.el (custom-safe-themes, load-theme): Treat value of t for
18263         custom-safe-themes as special.
18265 2011-10-01  Julien Danjou  <julien@danjou.info>
18267         * notifications.el (notifications-notify): Fix docstring.
18269 2011-10-01  Per Starbäck  <per@starback.se>
18271         * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call.  (Bug#9643)
18273 2011-09-30  Martin Rudalics  <rudalics@gmx.at>
18275         * startup.el (command-line-1): Fix last fix by inserting
18276         initial-scratch-message into *scratch* before displaying it.
18277         (Bug#9605) and (Bug#9636)
18279 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
18281         * simple.el (line-move): If auto-hscroll-mode is disabled and the
18282         window is hscrolled, move by logical lines.  (Bug#9607)
18283         (line-move-visual): Update the doc string to the above effect.
18285 2011-09-29  Martin Rudalics  <rudalics@gmx.at>
18287         * window.el (display-buffer-record-window): When WINDOW is the
18288         selected window use `point' instead of `window-point'.  (Bug#9626)
18290         * startup.el (command-line-1): Use insert-before-markers when
18291         inserting initial-scratch-message.  (Bug#9605)
18293         * help.el (help-window): Remove variable.
18295 2011-09-29  Glenn Morris  <rgm@gnu.org>
18297         * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
18299 2011-09-29  Juanma Barranquero  <lekktu@gmail.com>
18301         * descr-text.el (describe-char-categories): Accept category
18302         descriptions more than one line long.
18304 2011-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18306         * simple.el (delete-trailing-whitespace): Fix last change.
18308         * progmodes/perl-mode.el (perl-syntax-propertize-function):
18309         Don't confuse "y => 3" as the beginning of a `y' operation.
18311         * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
18312         object has more than 4 slots (bug#9613).
18314 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
18316         * subr.el (with-output-to-temp-buffer):
18317         * net/quickurl.el (quickurl, quickurl-browse-url):
18318         Fix typos in docstrings.
18320 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
18322         * minibuffer.el (completion-styles)
18323         (completion-category-overrides): Cross reference each other in doc
18324         strings.
18326 2011-09-27  Glenn Morris  <rgm@gnu.org>
18328         * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
18329         to split-string.  (Bug#9606)
18331 2011-09-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18333         * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
18334         (bug#9615).
18336 2011-09-27  Chong Yidong  <cyd@stupidchicken.com>
18338         * emacs-lisp/package.el (list-packages): Fix echo area message.
18340 2011-09-27  Leo Liu  <sdl.web@gmail.com>
18342         * ido.el (ido-read-internal): Accept cons cell HIST arg.
18344 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
18346         * net/dbus.el (dbus-unregister-object): Don't release services for
18347         registered signals.  (Bug#9581)
18349 2011-09-25  Teodor Zlatanov  <tzz@lifelogs.com>
18351         * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
18352         function that picks between cfengine 2 and 3 support
18353         automatically.  Update docs accordingly.
18355 2011-09-22  Kenichi Handa  <handa@m17n.org>
18357         * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
18358         ZERO.
18359         (indian-itrans-v5-table-for-tamil): New variable.
18360         (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
18362 2011-09-22  Ken Manheimer  <ken.manheimer@gmail.com>
18364         * allout.el (allout-this-command-hid-stuff): Buffer-local variable
18365         that's true if the current command involved collapsing of text.
18366         It's reset to false at the beginning of the next command.
18367         (allout-post-command-business): Move the cursor to the beginning
18368         of entry if the cursor is hidden and collapsing activity just
18369         happened.
18371 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
18373         * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
18374         tracking (Bug#9541).
18376 2011-09-24  Ulf Jasper  <ulf.jasper@web.de>
18378         * net/newst-reader.el (newsticker-html-renderer)
18379         (newsticker-show-news): Automatically load html rendering package
18380         if newsticker-html-renderer is set.  Fixes "Warning: defvar ignored
18381         because w3m-fill-column is let-bound" and the error "Symbol's value
18382         as variable is void: w3m-fill-column".
18384 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
18386         * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
18387         Release services only if they are defined.  (Bug#9581)
18389 2011-09-23  Richard Stallman  <rms@gnu.org>
18391         * textmodes/paragraphs.el (forward-sentence): For backwards case,
18392         distinguish start of paragraph from start of its text.
18394         * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
18396         * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
18397         (rmail-generate-viewer-buffer): Put that hook on view buffer.
18398         (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
18400 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
18402         * international/mule-diag.el (mule-diag): Insert a newline after
18403         each fontset description.
18405 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18407         * simple.el (delete-trailing-whitespace):
18408         Document last change; simplify.
18410 2011-09-23  Peter J. Weisberg  <pj@irregularexpressions.net>
18412         * simple.el (delete-trailing-whitespace): Also delete
18413         extra newlines at the end of the buffer.
18415         * textmodes/picture.el: Make motion commands obey shift-select-mode.
18416         (picture-newline): Use forward-line so as to ignore fields.
18418 2011-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18420         * subr.el (with-wrapper-hook): Fix edebug spec.
18422 2011-09-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18424         * simple.el (kill-line): Note effect of `show-trailing-whitespace'
18425         (bug#4538).
18427 2011-09-23  Michael Albinus  <michael.albinus@gmx.de>
18429         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
18430         Fix nasty bug using wrong cached values.
18432 2011-09-23  Alan Mackenzie  <acm@muc.de>
18434         * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
18436 2011-09-23  Chong Yidong  <cyd@stupidchicken.com>
18438         * window.el (pop-to-buffer): Ensure right window is selected if we
18439         chose another frame.
18441 2011-09-22  Eli Zaretskii  <eliz@gnu.org>
18443         * simple.el (what-cursor-position): Use get-char-property-change
18444         and next-single-char-property-change, to be able to show display
18445         properties that come from overlays as well as text properties.
18447 2011-09-22  Chong Yidong  <cyd@stupidchicken.com>
18449         * window.el (pop-to-buffer-same-window): New (reinstated) fun.
18451         * cmuscheme.el (run-scheme, switch-to-scheme):
18452         * cus-edit.el (customize-group, custom-buffer-create)
18453         (customize-browse):
18454         * info.el (info):
18455         * shell.el (shell):
18456         * mail/sendmail.el (mail):
18457         * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
18459 2011-09-22  Richard Stallman  <rms@gnu.org>
18461         * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
18462         move back only to line beg, don't move back over blank lines.
18464 2011-09-22  Michael Albinus  <michael.albinus@gmx.de>
18466         * files.el (copy-directory): Set directory attributes only in case
18467         they could be retrieved from the source directory.  (Bug#9565)
18469 2011-09-22  Dima Kogan  <dkogan@secretsauce.net>  (tiny change)
18471         * progmodes/hideshow.el (hs-looking-at-block-start-p)
18472         (hs-find-block-beginning, hs-hide-level-recursive):
18473         Ignore strings as well as comments.  (Bug#9502)
18475 2011-09-22  Andrew Schein  <andrew@andrewschein.com>  (tiny change)
18477         * progmodes/sql.el (sql-comint-postgres):
18478         Convert port number to a string.  (Bug#9566)
18480 2011-09-22  Martin Rudalics  <rudalics@gmx.at>
18482         * window.el (quit-window): Undedicate window when switching to
18483         previous buffer.  Reported by Thierry Volpiatto
18484         <thierry.volpiatto@gmail.com>.
18485         (special-display-popup-frame): When popping up a new frame reset
18486         its previous buffers to nil.  Simplify code.
18488 2011-09-21  Michael Albinus  <michael.albinus@gmx.de>
18490         * net/tramp.el (tramp-handle-shell-command): Set process sentinel
18491         and process filter, as done also in `shell-command'.
18493 2011-09-21  Martin Rudalics  <rudalics@gmx.at>
18495         * window.el (set-window-buffer-start-and-point):
18496         Call set-window-start with NOFORCE argument t.
18497         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
18498         (quit-window): Reword doc-string.  Handle new format of
18499         quit-restore parameter.  Don't delete window if it has a
18500         previous buffer we can show instead of the present one.
18501         (display-buffer-record-window): Rewrite using a new format for
18502         the quit-restore window parameter
18503         (special-display-popup-frame, display-buffer-same-window)
18504         (display-buffer-reuse-window, display-buffer-pop-up-frame)
18505         (display-buffer-pop-up-window, display-buffer-use-some-window):
18506         Adapt symbol passed to display-buffer-record-window.
18507         * help.el (help-window-setup): Handle new format of quit-restore
18508         parameter.
18510 2011-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18512         * faces.el (face-list): Fix docstring (bug#9564).
18514         * window.el (display-buffer--action-function-custom-type):
18515         Don't include internal functions in the Custom interface.
18517 2011-09-20  Juri Linkov  <juri@jurta.org>
18519         * info.el (Info-history-skip-intermediate-nodes): New defcustom.
18520         (Info-forward-node, Info-backward-node, Info-next-preorder)
18521         (Info-last-preorder): Use it.  (Bug#9528)
18523 2011-09-20  Juri Linkov  <juri@jurta.org>
18525         * info.el (Info-last-preorder): Visit last menu item only when
18526         `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
18528 2011-09-20  Julien Danjou  <julien@danjou.info>
18530         * password-cache.el (password-cache-remove): Remove entries even if the
18531         value is nil, so that password with a nil value (negative caching) is
18532         possible to invalidate.
18534 2011-09-20  Lawrence Mitchell  <wence@gmx.li>
18536         * progmodes/f90.el (f90-break-line): If breaking inside comment delete
18537         all whitespace around breakpoint.  (Bug#9553)
18538         (f90-find-breakpoint): Only break at whitespace inside a comment.
18540 2011-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18542         * minibuffer.el (completion-file-name-table): Keep track of errors.
18543         (completion-table-with-predicate): Handle the case where pred1 is nil.
18544         * pcomplete.el (pcomplete-completions-at-point): Simplify.
18546 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18548         * emacs-lisp/debug.el (debugger-args): Give it a docstring.
18549         (debugger-return-value): Signal an error if the debugging context does
18550         not await any return value.
18552         * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
18553         * image-mode.el (image-toggle-display-text)
18554         (image-toggle-display-image): Stay away from evil `intangible'.
18556 2011-09-19  Leo Liu  <sdl.web@gmail.com>
18558         * replace.el (occur-revert-arguments): Make it permanent-local.
18559         (occur-mode): Don't call font-lock-defontify.
18561 2011-09-19  Chong Yidong  <cyd@stupidchicken.com>
18563         * net/ldap.el (ldap-search-internal): Don't push empty search
18564         result (Bug#9508).
18566 2011-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
18568         * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
18570 2011-09-19  Michael Albinus  <michael.albinus@gmx.de>
18572         * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
18573         Suggested by Liam Stitt <stittl@cuug.ab.ca>.
18575 2011-09-18  Juri Linkov  <juri@jurta.org>
18577         * buff-menu.el (Buffer-menu-mode-map):
18578         * dired.el (dired-mode-map):
18579         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
18580         (lisp-interaction-mode-map):
18581         * emacs-lisp/package.el (package-menu-mode-map):
18582         * epa.el (epa-key-list-mode-map):
18583         * menu-bar.el (menu-bar-showhide-tool-bar-menu)
18584         (menu-bar-options-menu):
18585         * outline.el (outline-mode-menu-bar-map):
18586         * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
18587         * vc/vc-dir.el (vc-dir-menu-map):
18588         * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
18589         Capitalize non-function content words in menu item strings.
18591         * dired.el (dired-mode-map): Add menu item for
18592         `image-dired-dired-toggle-marked-thumbs'.
18594 2011-09-18  Juri Linkov  <juri@jurta.org>
18596         * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
18597         to `isearch-case-fold-search' and restore its original value
18598         after the `isearch-mode' call.
18600 2011-09-18  Juri Linkov  <juri@jurta.org>
18602         * progmodes/grep.el (grep-process-setup): Don't check code for 1
18603         because `zgrep' returns 1 for successful matches (bug#9226).
18605 2011-09-18  Juri Linkov  <juri@jurta.org>
18607         * info.el (Info-extract-menu-node-name): Check the second match
18608         for empty string (second test-case of bug#9528).
18609         (Info-last-preorder): Let-bind `Info-history' to nil to not add
18610         intermediate nodes to the history (first test-case of bug#9528).
18612 2011-09-18  Juri Linkov  <juri@jurta.org>
18614         * info.el (Info-mode-syntax-table): New variable.
18615         (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
18617 2011-09-18  Juri Linkov  <juri@jurta.org>
18619         * info.el (Info-file-supports-index-cookies):
18620         Increment line-beginning-position's arg from 3 to 4 because makeinfo
18621         outputs one more line for long file names (bug#4142).
18623 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
18625         * newcomment.el (comment-normalize-vars): If prompting for
18626         comment-start, set comment-start-skip too (Bug#8424).
18628 2011-09-18  Johan Bockgård  <bojohan@gnu.org>
18630         * icomplete.el: Fix previous fix of Bug#5849.
18631         (icomplete-mode): Don't set completion-show-inline-help.
18632         (icomplete-minibuffer-setup): Set completion-show-inline-help
18633         locally during icompletion.
18635 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
18637         * woman.el (woman2-process-escapes): Don't delete unrecognized
18638         escapes (Bug#7843).
18640         * files.el (inhibit-first-line-modes-regexps): Add image files.
18641         (hack-local-variables-prop-line): Return nil for malformed
18642         prop-lines (Bug#9044).
18644 2011-09-18  Michael Albinus  <michael.albinus@gmx.de>
18646         * net/tramp.el (top): Don't require 'shell.
18647         (tramp-methods): Fix docstring.
18648         (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
18649         Return complete remote file name.  Handle "smb" case.
18650         Use `tramp-tmpdir', if defined for the respective method.
18651         (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
18653         * net/tramp-compat.el (top): Require 'shell.
18655         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
18656         (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
18657         `tramp-current-host'.
18658         (tramp-get-remote-tmpdir): Remove.
18660         * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
18661         `tramp-tmpdir' entries.
18662         (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
18663         (tramp-smb-handle-file-attributes): Ignore errors.
18664         (tramp-smb-wait-for-output): Check also for process end.
18666 2011-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18668         * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
18669         when sending QUIT (bug#9312).
18671 2011-09-17  Chong Yidong  <cyd@stupidchicken.com>
18673         * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
18674         (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
18675         occur-mode-display-occurrence.
18676         (occur-edit-mode): Add usage message.
18677         (occur-cease-edit): New command.
18678         (occur-after-change-function): Use text properties to find the
18679         position of the prefix text.
18680         (occur-engine): Set stickiness of prefix text properties.
18682 2011-09-17  Glenn Morris  <rgm@gnu.org>
18684         * progmodes/etags.el (complete-tag):
18685         Fix call to completion-in-region.  (Bug#9526)
18687 2011-09-17  Juri Linkov  <juri@jurta.org>
18689         * textmodes/ispell.el (ispell-word): Add to the error message
18690         the word, ispell program name and current dictionary (bug#9121).
18691         (ispell-tex-arg-end): Capitalize "error" in the error message.
18693 2011-09-17  Andreas Schwab  <schwab@linux-m68k.org>
18695         * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
18696         check.  (Bug#4251)
18698 2011-09-17  Juri Linkov  <juri@jurta.org>
18700         * window.el (window-safe-min-height, window-safe-min-width):
18701         Fix typos (followup to bug#9522).
18703 2011-09-17  Sven Joachim  <svenjoac@gmx.de>
18705         * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
18707 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
18709         * simple.el (line-move): If goal-column is set, move by logical
18710         lines, not by display lines.  (Bug#971)
18711         (next-line, previous-line, goal-column, line-move-visual): Doc fix
18712         to reflect the above change.
18714 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
18716         * image.el (imagemagick-register-types): Use regexp-opt.
18718 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
18720         * window.el (display-buffer-base-action): Rename from
18721         display-buffer-default-action.  Make default value empty.
18722         (display-buffer-overriding-action): Convert to defvar.
18723         (display-buffer-fallback-action): New var.
18725 2011-09-15  Chong Yidong  <cyd@stupidchicken.com>
18727         * emacs-lisp/package.el (package-alist): Fix risky-local-variable
18728         declaration.
18729         (package--add-to-archive-contents): If there is a duplicate entry
18730         with an older version, remove it.
18731         (package-menu-mark-delete, package-menu-mark-install)
18732         (package-menu-mark-unmark): Make unused args optional.
18733         (package-menu-mark-obsolete-for-deletion):
18734         Use package-menu-get-status instead of a regexp search.
18735         (package-menu-get-status): Use tabulated-list-entry.
18736         (package-menu-mark-upgrades): New command.
18737         (package-menu-mode-map): Bind it to U.  Add it to menu bar.
18738         (package-menu-execute): Do installation before deletion.
18739         (package-menu-refresh, package-menu-execute): Use derived-mode-p
18740         instead of checking major-mode.
18741         (package-menu--find-upgrades): New function.
18743 2011-09-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18745         * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
18746         passwords in the log buffer.
18747         (smtpmail-process-filter): Update the process marker so that the
18748         "broken by peer" status message is inserted in the right place.
18750 2011-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
18752         * textmodes/bibtex.el (bibtex-complete-string-cleanup)
18753         (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
18754         bibtex-completion-at-point-function.
18755         (bibtex-completion-at-point-function): Use them.
18757         * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
18759         * mpc.el (mpc-constraints-tag-lookup): New function.
18760         (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
18761         also to browser "album|playlist".
18763 2011-09-14  Juri Linkov  <juri@jurta.org>
18765         * isearch.el (isearch-fail-pos): Add new arg `msg'.  Doc fix.
18766         (isearch-edit-string): Use length of `isearch-string' when
18767         `isearch-fail-pos' returns nil.
18768         (isearch-message): Remove duplicate code and call
18769         `isearch-fail-pos' with arg `t'.
18771 2011-09-14  Chong Yidong  <cyd@stupidchicken.com>
18773         * replace.el (occur-mode-goto-occurrence): Don't force using other
18774         window (Bug#9499).
18776         * dired-aux.el (dired-do-chmod): Don't provide initial input.
18778 2011-09-14  Martin Rudalics  <rudalics@gmx.at>
18780         * window.el (display-buffer-window): Remove.
18781         (display-buffer-record-window): Use help-setup window parameter
18782         instead of variable display-buffer-window.
18783         (display-buffer-function, special-display-buffer-names)
18784         (special-display-function): Mention help-setup parameter instead
18785         of display-buffer-window in doc-string.
18786         * help.el (help-window-setup): New argument help-window.
18787         Use help-window-setup parameter instead of display-buffer-window.
18788         Reword some messages.
18789         (with-help-window): Pass window used for displaying the buffer
18790         to help-window-setup.  Don't set display-buffer-window.
18792 2011-09-13  Glenn Morris  <rgm@gnu.org>
18794         * emacs-lisp/debug.el (debugger-make-xrefs):
18795         Preserve point.  (Bug#9462)
18797 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
18799         * window.el (window-deletable-p): Use next-frame.
18801 2011-09-13  Martin Rudalics  <rudalics@gmx.at>
18803         * window.el (window-auto-delete): Remove.
18804         (window-deletable-p): Remove argument FORCE.  Don't deal with
18805         dedication and previous buffers.
18806         (switch-to-prev-buffer): Don't delete window.
18807         (delete-windows-on): Delete a window's frame if and only if the
18808         window is dedicated.
18809         (replace-buffer-in-windows): Delete buffer's window or frame if
18810         and only if window is dedicated.
18811         (quit-window): Handle quit-restore as before last change.
18812         (bury-buffer): Delete window only if window-deletable-p returns t.
18814 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
18816         * window.el (window-deletable-p): Never delete the last frame on a
18817         given terminal.
18819 2011-09-13  Glenn Morris  <rgm@gnu.org>
18821         * help.el (describe-key-briefly): Copy previous standard-output change.
18823 2011-09-13  PJ Weisberg  <pj@irregularexpressions.net>
18825         * help.el (where-is): Respect non-standard standard-output.  (Bug#9030)
18827 2011-09-13  Glenn Morris  <rgm@gnu.org>
18829         * emacs-lisp/lisp-mode.el (lisp-indent-function):
18830         * progmodes/scheme.el (scheme-indent-function): Doc fixes.
18832 2011-09-12  Chong Yidong  <cyd@stupidchicken.com>
18834         * dired-aux.el (dired-mark-read-string): Don't return default
18835         value on empty input (Bug#9361).
18836         (dired-do-chxxx): Treat empty input for "touch" as no -t option.
18837         Omit initial minibuffer contents.
18838         (dired-do-chmod): Signal an error on empty input.
18839         (dired-mark-read-string): Don't return default on empty input.
18841         * files.el (file-modes-symbolic-to-number): Doc fix.
18843 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18845         * international/mule-cmds.el (ucs-completions): Remove.
18846         (read-char-by-name): Use complete-with-action instead; add metadata.
18848 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
18850         * window.el (display-buffer--action-function-custom-type)
18851         (display-buffer--action-custom-type): New vars.
18852         (display-buffer-alist, display-buffer-default-action)
18853         (display-buffer-overriding-action): Add defcustom types.
18855         * frame.el (delete-other-frames): Doc fix (Bug#276).
18857 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18859         * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
18861 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
18863         Change modes that used same-window-* vars to use switch-to-buffer.
18865         * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
18866         Use switch-to-buffer.
18868         * cus-edit.el (customize-group, custom-buffer-create)
18869         (customize-browse, custom-buffer-create-other-window):
18870         Use switch-to-buffer or switch-to-buffer-other-window.
18872         * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
18873         (Info-prev, Info-up, Info-speedbar-goto-node)
18874         (info-display-manual): Use switch-to-buffer.
18875         (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
18877         * mail/sendmail.el (mail): Use switch-to-buffer.
18878         (mail-recover): Use switch-to-buffer-other-window.
18880         * cmuscheme.el (run-scheme, switch-to-scheme):
18881         * ielm.el (ielm):
18882         * shell.el (shell):
18883         * net/rlogin.el (rlogin):
18884         * net/telnet.el (telnet, rsh):
18885         * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
18887 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
18889         * dired.el (dired-sort-toggle-or-edit): Revert last changes.
18891 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18893         * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
18894         so don't mention it (bug#9301).
18895         (dired-sort-toggle-or-edit): Clarify string further.
18897         * faces.el (face-spec-set-match-display): Make `(type graphic)'
18898         match `x', `w32' and `ns', like the manual says (bug#9029).
18900         * subr.el (eval-after-load): Doc string clarification (bug#9125).
18901         (process-kill-buffer-query-function): Mention the buffer name in
18902         the query.
18904         * image-mode.el (image-next-line): The line parameter is mandatory
18905         (bug#9258).
18907         * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
18908         which can be useful (bug#9301).
18910         * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
18912         * subr.el (match-string): Mention that the current buffer should
18913         be the same as the search was done in (bug#9282).
18915         * facemenu.el: Disable the remove-* commands if the mark isn't
18916         active (bug#9162).
18918 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
18920         * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
18921         of display-buffer.
18922         (Buffer-menu-2-window): Use switch-to-buffer-other-window.
18924         * replace.el (occur-mode-goto-occurrence)
18925         (occur-mode-display-occurrence) Use second arg of pop-to-buffer
18926         and display-buffer.
18928         * mail/reporter.el (reporter-submit-bug-report): Use second arg of
18929         display-buffer.
18931         * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
18932         special-display and same-window variables.
18933         (mail-other-window): Use switch-to-buffer-other-window.
18934         (mail-other-frame): USe switch-to-buffer-other-frame.
18936         * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
18937         Use display-buffer-other-frame.
18938         (gdb-display-gdb-buffer): Use pop-to-buffer.
18940         * progmodes/gud.el (gud-goto-info): Use info-other-window.
18942         * progmodes/python.el: Don't set same-window-buffer-names.
18944         * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
18946         * window.el (display-buffer-alist): Add *Python*.
18948 2011-09-10  Chong Yidong  <cyd@stupidchicken.com>
18950         * window.el (display-buffer-alist): Add entry for buffers
18951         previously handled same-window-*.
18952         (display-buffer-alist, display-buffer-default-action)
18953         (display-buffer-overriding-action): Mark as risky.
18954         (display-buffer-alist): Document action function changes.
18955         (display-buffer--same-window-action)
18956         (display-buffer--other-frame-action): New variables.
18957         (switch-to-buffer, display-buffer-other-frame): Use them.
18958         (display-buffer): Rename reuse-frame entry to reusable-frames.
18959         (display-buffer-reuse-selected-window): Function deleted.
18960         (display-buffer-reuse-window): Handle reusable-frames alist entry.
18961         If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
18962         (display-buffer-special): New function.
18963         (display-buffer--maybe-pop-up-frame-or-window): Rename from
18964         display-buffer-reuse-or-pop-window.  Split off special-display
18965         part into display-buffer-special.
18966         (display-buffer-use-some-window): Don't perform any special
18967         pop-up-frames handling.
18968         (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
18969         (display-buffer--maybe-same-window): Rename from
18970         display-buffer-maybe-same-window.
18972         * info.el: Don't set same-window-regexps.
18973         (info-setup): New function.
18974         (info-other-window, info): Call it.
18976         * cus-edit.el: Don't set same-window-regexps.
18977         (customize-group): New argument.
18978         (customize-group-other-window): Use it.
18979         (customize-face, customize-face-other-window): Likewise.
18980         (custom-buffer-create-other-window): Use pop-to-buffer directly.
18982         * net/rlogin.el:
18983         * net/telnet.el:
18984         * progmodes/gud.el: Don't set same-window-regexps.
18986         * cmuscheme.el:
18987         * ielm.el:
18988         * shell.el:
18989         * mail/sendmail.el:
18990         * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
18992 2011-09-10  Juri Linkov  <juri@jurta.org>
18994         * isearch.el (isearch-edit-string): Remove obsolete mention of
18995         `C-w' (`isearch-yank-word-or-char') from docstring.
18996         (isearch-query-replace): Fix typo in docstring (bug#9466).
18998 2011-09-10  Juri Linkov  <juri@jurta.org>
19000         * paren.el (show-paren-function): Don't show escaped parens.
19001         Let-bind `unescaped' to `t' when paren is not escaped.  (Bug#9461)
19003 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
19005         * mail/sendmail.el (mml-to-mime, mml-attach-file)
19006         (mm-default-file-encoding): Remove autoload forms, they are
19007         replaced with autoload cookies in mml.el and mm-encode.el.
19008         (mail-add-attachment): New command.
19009         (mail-mode-map): Add a menu-bar item for mail-add-attachment.
19010         (mail-mode): Mention mail-insert-file and mail-add-attachment in
19011         the doc string.
19012         (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
19014 2011-09-10  Reuben Thomas  <rrt@sc3d.org>
19016         * simple.el (count-words-region): Use buffer if there's no region
19017         (bug#9429).
19019 2011-09-09  Juri Linkov  <juri@jurta.org>
19021         * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
19022         `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
19023         (wdired-isearch-filter-read-only): New function.  (Bug#6362)
19025 2011-09-09  Alan Mackenzie  <acm@muc.de>
19027         * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
19028         spuriously generating `awk-mode-syntax-table'.  (Bug #9448).
19030 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
19032         Fix for Savannah bug#9392.
19033         * simple.el (mail-encode-mml): New defvar.
19035         * mail/rmail.el (mail-encode-mml): Add a defvar.
19036         (rmail-enable-mime-composing): Default to t.
19037         (rmail-forward): Use MIME method of forwarding only if both
19038         rmail-enable-mime-composing and rmail-enable-mime are non-nil.
19039         Set mail-encode-mml non-nil if the MIME method was used.
19041         * mail/sendmail.el (mml-to-mime): Add autoload form.
19042         (mail-encode-mml): Add a defvar.
19043         (mail-mode): Make mail-encode-mml buffer-local and initialize it
19044         to nil.
19045         (mail-send): If mail-encode-mml is non-nil, run the outgoing
19046         message through mml-to-mime, and reset mail-encode-mml to nil.
19048 2011-09-09  Glenn Morris  <rgm@gnu.org>
19050         * woman.el (woman-if-body): When processing an .el block,
19051         do not delete the next .el block as well.  (Bug#9447)
19052         (woman-special-characters): Add oq, cq, and hy characters.
19054 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
19056         * window.el (window-deletable-p): Make sure window is live before
19057         invoking window-prev-buffers.
19059 2011-09-08  Leo Liu  <sdl.web@gmail.com>
19061         * net/rcirc.el (rcirc-cmd-invite): New rcirc command.  (Bug#9453)
19063 2011-09-08  Juri Linkov  <juri@jurta.org>
19065         * progmodes/compile.el (compilation-environment): Make it
19066         a defcustom (bug#8340).
19068 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
19070         * window.el (frame-auto-delete): Rename to window-auto-delete.
19071         Make it control auto-deletion of windows and/or frames.
19072         (window-deletable-p): New argument FORCE.  Rewrite conditions
19073         for deleting window/frame.  (Bug#9419)
19074         (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
19075         Rewrite handling of case when window/frame can be deleted.
19076         (delete-windows-on): Call window-deletable-p with new FORCE
19077         argument t.  (Bug#9456)
19079 2011-09-07  Chong Yidong  <cyd@stupidchicken.com>
19081         * help-mode.el (help-mode): Restore autoload.
19083 2011-09-07  Juri Linkov  <juri@jurta.org>
19085         * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
19086         `compilation-environment'.  Set buffer-local
19087         `compilation-environment' to `thisenv' later after (funcall mode).
19088         (Bug#8340)
19090         * vc/vc-git.el (vc-git-grep): Remove --no-color.  (Bug#9408)
19091         (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
19092         instead of replacing its value.  (Bug#8340)
19094 2011-09-07  Juri Linkov  <juri@jurta.org>
19096         * progmodes/grep.el (grep-regexp-alist): Calculate column positions
19097         based on text properties put by `grep-filter' instead of matching
19098         escape sequences.
19099         (grep-mode): Set buffer-local `compilation-error-screen-columns'
19100         to the value of `grep-error-screen-columns' (bug#9438).
19102 2011-09-07  Juri Linkov  <juri@jurta.org>
19104         * simple.el (next-error-highlight, next-error-highlight-no-select):
19105         Doc fix (bug#9432).
19107 2011-09-07  OKAZAKI Tetsurou  <okazaki.tetsurou@gmail.com>  (tiny change)
19109         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
19110         Check for null c-opt-block-decls-with-vars-key.  (Bug#9443)
19112 2011-09-07  Leo Liu  <sdl.web@gmail.com>
19114         * net/rcirc.el (rcirc-mode): Conditionally initialize
19115         rcirc-input-ring.
19117 2011-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19119         * emacs-lisp/find-func.el (find-function-C-source): Only set
19120         find-function-C-source-directory after checking that we found a source
19121         file there (bug#9440).
19123 2011-09-06  Alan Mackenzie  <acm@muc.de>
19125         * isearch.el (isearch-other-meta-char): Wherever a key list is
19126         unread, "unread" the prefix arg, too.  This fixes bug #8901.
19128 2011-09-05  Oleksandr Gavenko  <gavenkoa@gmail.com>  (tiny change)
19130         * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
19132 2011-09-05  Juri Linkov  <juri@jurta.org>
19134         * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
19136 2011-09-05  Juri Linkov  <juri@jurta.org>
19138         * progmodes/grep.el (grep-filter): Avoid incomplete processing by
19139         keeping point where processing of grep matches begins, and
19140         continue to delete remaining escape sequences from the same point.
19141         (grep-filter): Make leading zero optional in "0?1;31m" because
19142         git-grep emits "\033[1;31m" escape sequences unlike expected
19143         "\033[01;31m" as GNU Grep does (bug#9408).
19144         (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
19146 2011-09-05  Juri Linkov  <juri@jurta.org>
19148         * subr.el (y-or-n-p): Capitalize "yes".
19150 2011-09-04  Michael Albinus  <michael.albinus@gmx.de>
19152         * net/tramp.el (top): Require 'shell.  Use `tramp-unload-hook' but
19153         `tramp-cache-unload-hook' where appropriate.
19154         (tramp-methods): Rename `tramp-remote-sh' to
19155         `tramp-remote-shell'.  Add `tramp-remote-shell-args'.
19156         (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
19158         * net/tramp-sh.el (top): Don't require 'shell.
19159         (tramp-methods): Add `tramp-remote-shell' and
19160         `tramp-remote-shell-args' entries.
19161         (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
19162         (tramp-sh-handle-shell-command): Remove.
19163         (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
19164         Use `tramp-remote-shell'.
19166 2011-09-03  Chong Yidong  <cyd@stupidchicken.com>
19168         * mail/sendmail.el (sendmail-query-once-function): Delete.
19169         (sendmail-query-once): Save directly to send-mail-function.
19170         Update message-send-mail-function too.
19172         * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
19174 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
19176         * progmodes/python.el (python-mode-map): Use correct function to
19177         start python interpreter from menu-bar (as reported by Geert
19178         Kloosterman).
19179         (inferior-python-mode-map): Fix typo.
19180         (python-shell-map): Remove.
19182 2011-09-03  Deniz Dogan  <deniz@dogan.se>
19184         * net/rcirc.el (rcirc-print): Simplify code for
19185         rcirc-scroll-show-maximum-output.  There is no need to walk
19186         through all windows to find the right one.
19188 2011-09-03  Christoph Scholtes  <cschol2112@googlemail.com>
19190         * help.el (help-return-method): Doc fix.
19192 2011-09-03  Martin Rudalics  <rudalics@gmx.at>
19194         * window.el (window-deletable-p): Don't return a non-nil value
19195         when there's a buffer that was shown in the window before.
19196         (Bug#9419)
19197         (display-buffer-pop-up-frame, display-buffer-pop-up-window):
19198         Set window's previous buffers to nil.
19200 2011-09-03  Eli Zaretskii  <eliz@gnu.org>
19202         * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
19203         newline before and after the tag line, so it doesn't interfere
19204         with determining the paragraph direction of bidirectional text.
19206 2011-09-03  Leo Liu  <sdl.web@gmail.com>
19208         * files.el (find-file-not-true-dirname-list): Remove.  (Bug#9422)
19210 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
19212         * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
19213         (pop-to-buffer): Change interactive spec.  Pass second argument
19214         directly to display-buffer.
19215         (display-buffer): Fix interactive spec.  Use functionp to
19216         distinguish between a function and a list of functions.
19218         * abbrev.el (edit-abbrevs):
19219         * arc-mode.el (archive-extract):
19220         * autoinsert.el (auto-insert):
19221         * bookmark.el (bookmark-bmenu-list):
19222         * files.el (find-file):
19223         * view.el (view-buffer):
19224         * progmodes/compile.el (compilation-goto-locus):
19225         * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
19227 2011-09-02  Chong Yidong  <cyd@stupidchicken.com>
19229         * window.el (display-buffer-alist): Doc fix.
19230         (display-buffer): Add docstring.  Don't treat
19231         display-buffer-default specially.
19232         (display-buffer-reuse-selected-window)
19233         (display-buffer-same-window, display-buffer-maybe-same-window)
19234         (display-buffer-reuse-window, display-buffer-pop-up-frame)
19235         (display-buffer-pop-up-window)
19236         (display-buffer-reuse-or-pop-window)
19237         (display-buffer-use-some-window): New functions.
19238         (display-buffer-default-action): Use them.
19239         (display-buffer-default): Delete.
19240         (pop-to-buffer-1): Fix choice of actions.
19242 2011-09-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19244         * minibuffer.el (completion--insert-strings): Don't get confused by
19245         completion entries that end with an LF char.
19247 2011-09-01  Eli Zaretskii  <eliz@gnu.org>
19249         * window.el (frame-auto-delete, window-deletable-p): Doc fix.
19251 2011-09-01  Chong Yidong  <cyd@stupidchicken.com>
19253         * window.el (display-buffer): Restore interactive spec.
19254         (display-buffer-same-window, display-buffer-other-window):
19255         New functions.
19256         (pop-to-buffer-1): New function.  Use the above.
19257         (pop-to-buffer, pop-to-buffer-same-window): Use it.
19258         (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
19260         * view.el (view-buffer-other-window, view-buffer-other-frame):
19261         Just use pop-to-buffer.
19263 2011-09-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
19265         * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories.  (Bug#9391)
19267 2011-09-01  Wilfred Hughes  <wilfred@potatolondon.com>  (tiny change)
19269         * vc/vc-git.el (vc-git-grep): Use --no-color.  (Bug#9408)
19271 2011-08-31  Richard Stallman  <rms@gnu.org>
19273         * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
19274         of the separation of rmail-view-buffer from rmail-buffer.
19275         If you say no to "replace original", the decrypt is in the
19276         view buffer.  If you say yes, the decrypt goes into the
19277         rmail buffer also.
19279 2011-08-31  Martin Rudalics  <rudalics@gmx.at>
19281         * window.el (display-buffer-window): Rewrite doc-string.
19282         (display-buffer-record-window): New function.
19283         (display-buffer-macro-specifiers)
19284         (display-buffer-even-window-sizes, display-buffer-set-height)
19285         (display-buffer-set-width, display-buffer-in-window)
19286         (display-buffer-reuse-window, display-buffer-split-specifiers)
19287         (display-buffer-side-specifiers, display-buffer-split-window-1)
19288         (display-buffer-split-window, display-buffer-split-atom-window)
19289         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19290         (display-buffer-pop-up-side-window, display-buffer-in-side-window)
19291         (display-buffer-other-window-means-other-frame)
19292         (display-buffer-normalize-special)
19293         (display-buffer-normalize-default)
19294         (display-buffer-normalize-argument)
19295         (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
19296         (display-buffer-normalize-specifiers, display-buffer-frame)
19297         (display-buffer-same-window, display-buffer-same-frame)
19298         (display-buffer-other-window)
19299         (display-buffer-same-frame-other-window)
19300         (display-buffer-other-frame, pop-to-buffer-same-window)
19301         (pop-to-buffer-same-frame, pop-to-buffer-other-window)
19302         (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
19303         (switch-to-buffer-same-frame)
19304         (switch-to-buffer-other-window-same-frame)
19305         (display-buffer-alist-of-strings-p, display-buffer-alist-add)
19306         (display-buffer-alist-set-1, display-buffer-alist-set-2)
19307         (display-buffer-alist-set): Remove.
19308         (display-buffer-function, special-display-buffer-names)
19309         (special-display-regexps, special-display-function):
19310         In doc-string refer to display-buffer-window and quit-restore
19311         parameter.
19312         (pop-up-frame-alist, pop-up-frame-function, special-display-p)
19313         (special-display-frame-alist, special-display-popup-frame)
19314         (same-window-buffer-names, same-window-regexps, same-window-p)
19315         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
19316         (split-window-preferred-function, split-height-threshold)
19317         (split-width-threshold, window-splittable-p)
19318         (split-window-sensibly, window--try-to-split-window)
19319         (window--frame-usable-p, even-window-heights)
19320         (window--even-window-heights, window--display-buffer-1)
19321         (window--display-buffer-2, display-buffer-other-frame):
19322         Restore old Emacs 23 code, order and doc-strings where applicable.
19323         (display-buffer-default, display-buffer-assq-regexp): New functions.
19324         (display-buffer-alist): Rewrite doc-string.
19325         (display-buffer-default-action)
19326         (display-buffer-overriding-action): New variables.
19327         (display-buffer, switch-to-buffer): Rewrite.
19328         (pop-to-buffer): Restore Emacs 23 behavior but use
19329         window-normalize-buffer-to-display.
19330         (switch-to-buffer-other-window, switch-to-buffer-other-frame):
19331         Restore Emacs 23 behavior but use
19332         window-normalize-buffer-to-switch-to.
19333         (pop-to-buffer-same-window): Rewrite.
19334         (pop-to-buffer-other-window, pop-to-buffer-other-frame):
19335         Rewrite using Emacs 23 options.
19337 2011-08-31  Michael Albinus  <michael.albinus@gmx.de>
19339         * net/tramp.el (tramp-root-regexp): Remove.
19340         (tramp-completion-file-name-regexp-unified)
19341         (tramp-completion-file-name-regexp-separate)
19342         (tramp-completion-file-name-regexp-url): Don't use leading volume
19343         letter on w32 systems.  (Bug#5303, Bug#9311)
19344         (tramp-drop-volume-letter): Simplify definition.
19345         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
19347 2011-08-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19349         * subr.el (event-modifiers): Fix "missing modifier" part of docstring
19350         (bug#9356).
19352 2011-08-30  Reuben Thomas  <rrt@sc3d.org>  (tiny change)
19354         * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
19356 2011-08-29  Juri Linkov  <juri@jurta.org>
19358         * isearch.el (isearch-done): Don't display message "Mark saved"
19359         when arg `edit' is non-nil to prevent its flicker in the echo area.
19361 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
19363         * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
19364         obsolete packages for deletion.
19366 2011-08-28  Christoph Scholtes  <cschol2112@googlemail.com>
19368         * help-mode.el (help-mode-map): Add special-mode-map to parent.
19369         (help-mode): Derive help-mode from special-mode.  Don't invoke
19370         view-mode from help-mode.
19371         (help-xref-override-view-map): Remove.
19372         (help-make-xrefs): Remove minor-mode-overriding-map-alist since
19373         view-mode is not used anymore.
19375 2011-08-28  Chong Yidong  <cyd@stupidchicken.com>
19377         * server.el (server-port): Doc fix.
19379         * cus-theme.el (custom-theme-choose-mode): Inherit from
19380         special-mode (Bug#9124).
19381         (custom-theme-choose-mode-map): Add special-mode to parent.
19383 2011-08-28  Alan Mackenzie  <acm@muc.de>
19385         * progmodes/cc-fonts.el
19386         (c-make-font-lock-BO-decl-search-function): New function.
19387         (c-basic-matchers-after - "Fontify the clauses after various
19388         keywords"): Extract the three keyword lists for the 3 erroneous
19389         constructs from the list of four, and use the new function above
19390         in place of an old one.
19392 2011-08-28  Deniz Dogan  <deniz@dogan.se>
19394         * net/rcirc.el (rcirc-insert-prev-input)
19395         (rcirc-insert-next-input): Remove unused argument.
19397 2011-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
19399         * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
19401 2011-08-27  Alan Mackenzie  <acm@muc.de>
19403         * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
19404         handle function pointer parameters properly.
19406 2011-08-27  Martin Rudalics  <rudalics@gmx.at>
19408         * window.el (display-buffer-reuse-window): Fix case where
19409         selected window was reused with non-nil OTHER-WINDOW argument.
19410         (Bug#9381)
19412 2011-08-27  Deniz Dogan  <deniz@dogan.se>
19414         * net/rcirc.el (rcirc-check-auth-status): Adding support for
19415         oftc's NickServ messages.
19417 2011-08-27  Glenn Morris  <rgm@gnu.org>
19419         * saveplace.el (save-place-limit): Make it finite.  (Bug#9352)
19421 2011-08-26  Chong Yidong  <cyd@stupidchicken.com>
19423         * emacs-lisp/package.el (package-install): Call package-initialize
19424         if called interactively.
19426 2011-08-26  Leo Liu  <sdl.web@gmail.com>
19428         * emacs-lisp/cl-macs.el (defstruct): Fix format.  (Bug#9357)
19430 2011-08-25  Juri Linkov  <juri@jurta.org>
19432         * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
19433         `search-whitespace-regexp' (bug#9364).
19435 2011-08-25  Juri Linkov  <juri@jurta.org>
19437         * isearch.el (isearch-edit-string): Let-bind `search-ring' and
19438         `regexp-search-ring' to their global values to protect from
19439         updating by `read-from-minibuffer' (bug#9185).
19441 2011-08-25  Juri Linkov  <juri@jurta.org>
19443         * textmodes/ispell.el (ispell-command-loop): Add newline
19444         at the end of the "Use option `i'..." line.
19446 2011-08-25  Juri Linkov  <juri@jurta.org>
19448         * battery.el (display-battery-mode): If `battery-status-function'
19449         or `battery-mode-line-format' is nil, display the message and set
19450         `display-battery-mode' to nil (bug#9363).
19452 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
19454         * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
19455         bidi-string-mark-left-to-right; they are unnecessary now.
19457 2011-08-25  Deniz Dogan  <deniz@dogan.se>
19459         * net/quickurl.el: Documentation typo fixes.
19461 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
19463         * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
19465 2011-08-25  Glenn Morris  <rgm@gnu.org>
19467         * emacs-lisp/derived.el (define-derived-mode): Doc fix.
19469         * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
19470         (smtpmail-via-smtp): Handle nil response from smtp.
19472 2011-08-24  Juri Linkov  <juri@jurta.org>
19474         * proced.el (proced-marked): Inherit from `error' instead of
19475         `font-lock-warning-face'.
19477         * ibuffer.el (ibuffer-marked-face): Change default face from
19478         `font-lock-warning-face' to `warning'.
19479         (ibuffer-deletion-face): Change default face from
19480         `font-lock-type-face' to `error'.
19482         * battery.el (battery-update): Use the face `error' instead of
19483         `font-lock-warning-face' (bug#6117).
19485 2011-08-24  Juri Linkov  <juri@jurta.org>
19487         * faces.el (success): Change face color from "Green3" to
19488         "ForestGreen" on light background (bug#9353).
19490 2011-08-24  Chong Yidong  <cyd@stupidchicken.com>
19492         * window.el (quit-window): Rename from quit-restore-window.
19493         Use same arglist as old quit-window.
19494         (frame-auto-delete): Doc fix.
19496         * view.el (view-mode-exit): Use quit-window.
19498 2011-08-24  Juri Linkov  <juri@jurta.org>
19500         * isearch.el (isearch-ring-adjust1): Start visiting previous
19501         search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
19502         (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
19503         for empty search string (when the last search string is reused
19504         automatically) to adjust the isearch ring to the last element and
19505         prepare the correct index for further M-p commands (bug#9185).
19507 2011-08-24  Kenichi Handa  <handa@m17n.org>
19509         * international/ucs-normalize.el: If decomposition property of
19510         CHAR is the default one (i.e. a list of CHAR itself), treat it as
19511         nil.
19512         (nfd, nfkd): Likewise.
19514 2011-08-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19516         * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
19517         from process filters aren't reliably transmitted to the surrounding
19518         accept-process-output.
19519         (mpc-proc-check): New function.
19520         (mpc-proc-sync): Use it (bug#8293)
19522 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19524         * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
19525         Add compatibility functions (bug#9313).
19527 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
19529         * cus-start.el (all): Add entry for bidi-paragraph-direction.
19531         * international/uni-bidi.el: Regenerate.
19533 2011-08-23  Kenichi Handa  <handa@m17n.org>
19535         * international/charprop.el:
19536         * international/uni-bidi.el:
19537         * international/uni-category.el:
19538         * international/uni-combining.el:
19539         * international/uni-comment.el:
19540         * international/uni-decimal.el:
19541         * international/uni-decomposition.el:
19542         * international/uni-digit.el:
19543         * international/uni-lowercase.el:
19544         * international/uni-mirrored.el:
19545         * international/uni-name.el:
19546         * international/uni-numeric.el:
19547         * international/uni-old-name.el:
19548         * international/uni-titlecase.el:
19549         * international/uni-uppercase.el: Regenerate.
19551 2011-08-23  Martin Rudalics  <rudalics@gmx.at>
19553         * help.el (help-window-setup): Fix message displayed when other
19554         window is reused.  (Bug#9341)
19556 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19558         * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
19559         * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
19561         * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
19562         Mark obsolete.
19563         * shell.el (shell-parse-pcomplete-arguments): New function.
19564         (shell-completion-vars): Use it instead (bug#9160).
19566 2011-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19568         * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
19569         strings and comments (bug#9333).
19571         * emacs-lisp/debug.el (debug-arglist): New function.
19572         (debug-convert-byte-code): Use it.  Handle lexical byte-codes.
19573         (debug-on-entry-1): Handle interpreted closures (bug#9120).
19575 2011-08-22  Juri Linkov  <juri@jurta.org>
19577         * progmodes/compile.el (compilation-mode-font-lock-keywords):
19578         Revert regexp that highlights output switches to its old
19579         pre-2010-10-28 value and remove one `?' from it (bug#9319).
19581         * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
19582         to check for empty output (bug#9226).
19584 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
19586         * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
19587         symbol-constituent as the default, as that stops font-lock from
19588         working properly (Bug#8843).
19590 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19592         * mail/smtpmail.el (smtpmail-via-smtp): Only bind
19593         `coding-system-for-*' around the process open call to avoid
19594         auth-source side effects.
19595         (smtpmail-try-auth-methods): Expand the secret password.
19596         (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
19597         probe hangs.
19599 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
19601         * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
19603         * emacs-lisp/find-func.el (find-function-noselect): New arg
19604         lisp-only.
19606         * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
19607         signal an error for built-in functions (Bug#6664).
19609 2011-08-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19611         * mail/smtpmail.el (smtpmail-smtp-user): New variable.
19612         (smtpmail-try-auth-methods): Use it.
19614 2011-08-21  Chong Yidong  <cyd@stupidchicken.com>
19616         * font-lock.el (font-lock-fontify-region)
19617         (font-lock-unfontify-region, font-lock-default-fontify-buffer)
19618         (font-lock-default-unfontify-buffer)
19619         (font-lock-default-fontify-region)
19620         (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
19622         * progmodes/compile.el (compilation-error-properties):
19623         Fix confusion between file struct and message struct (Bug#9319).
19624         (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
19625         `ant' regexp.
19627         * net/browse-url.el (browse-url-firefox): Don't call
19628         browse-url-firefox-sentinel unless using -remote (Bug#9328).
19630 2011-08-20  Glenn Morris  <rgm@gnu.org>
19632         * tutorial.el (help-with-tutorial): Avoid an error on short screens.
19634         * tutorial.el (tutorial--default-keys): Update some default bindings.
19636         * files.el (hack-local-variables): Fully ignore case for "mode:".
19638 2011-08-20  Alan Mackenzie  <acm@muc.de>
19640         Resolve invalid use of a regexp in regexp-opt.
19642         * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
19643         detection for a java annotation.
19645         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
19646         detection for a java annotation.
19648         * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
19649         handling for java.
19650         (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
19652 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
19654         * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
19655         (Bug#9274).
19657 2011-08-20  Alan Mackenzie  <acm@muc.de>
19659         Fontify CPP expressions correctly when starting in the middle of
19660         such a construct.  Mainly for when jit-lock etc. starts a chunk
19661         here.
19663         * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
19664         variable.
19665         (c-make-font-lock-search-form): New function, extracted from
19666         c-make-font-lock-search-function.
19667         (c-make-font-lock-search-function): Use the above function.
19668         (c-make-font-lock-context-search-function): New function.
19669         (c-cpp-matchers): Enhance the preprocessor expression case with
19670         the above function
19671         (c-font-lock-complex-decl-prepare): Test for being in a CPP form
19672         which takes an expression.
19674         * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
19676 2011-08-20  Martin Rudalics  <rudalics@gmx.at>
19678         * window.el (display-buffer-reuse-window)
19679         (display-buffer-pop-up-window): Don't reuse or split a side
19680         window.
19682 2011-08-19  Glenn Morris  <rgm@gnu.org>
19684         * files.el (hack-local-variables-prop-line, hack-local-variables):
19685         Downcase "Mode:".  (Bug#9331)
19687 2011-08-18  Chong Yidong  <cyd@stupidchicken.com>
19689         * international/characters.el: Add L and R categories.
19691         * subr.el (bidi-string-mark-left-to-right): Rename from
19692         string-mark-left-to-right.  Use category search.
19694         * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
19696 2011-08-18  Juri Linkov  <juri@jurta.org>
19698         * faces.el (error, warning, success): New faces with definitions
19699         copied from old default values of `font-lock-warning-face',
19700         `compilation-warning', `compilation-info' (bug#6117).
19702         * font-lock.el (font-lock-warning-face): Inherit from `error'.
19704         * progmodes/compile.el (compilation-error): Inherit from `error'.
19705         (compilation-warning): Inherit from `warning'.
19706         (compilation-info): Inherit from `success'.
19708         * dired.el (dired-marked): Inherit from `warning'.
19709         (dired-flagged): Inherit from `error'.
19711 2011-08-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19713         * mail/smtpmail.el (auth-source): Require to avoid problems with
19714         binding variables (bug#9298).  Also clean up some unused
19715         autoloads.
19717         * net/network-stream.el (network-stream-open-starttls):
19718         Support using starttls.el without using gnutls-cli.
19720 2011-08-17  Juri Linkov  <juri@jurta.org>
19722         * progmodes/grep.el (rgrep): Handle the case when
19723         `grep-find-command' is a cons cell (bug#9278).
19725 2011-08-17  Martin Rudalics  <rudalics@gmx.at>
19727         * window.el (display-buffer-pop-up-frame): Run frame creation
19728         function with BUFFER current (as special-display-popup-frame
19729         does).  Reported by Drew Adams.
19731 2011-08-17  Daiki Ueno  <ueno@unixuser.org>
19733         * epa-mail.el: Simplify GnuPG group expansion using
19734         epg-expand-group.
19735         (epa-mail-group-alist, epa-mail-group-modtime)
19736         (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
19737         (epa-mail-sync-groups, epa-mail-expand-recipient-1)
19738         (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
19739         Remove.
19741 2011-08-16  Feng Li  <fengli@gmail.com>  (tiny change)
19743         * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
19745 2011-08-16  Alan Mackenzie  <acm@muc.de>
19747         * progmodes/cc-engine.el (c-state-cache-non-literal-place):
19748         Correct, to avoid the inside of macros.
19750 2011-08-16  Richard Stallman  <rms@gnu.org>
19752         * epa-mail.el: Handle GnuPG group definitions.
19753         (epa-mail-group-alist, epa-mail-group-modtime)
19754         (epa-mail-gnupg-conf-file): New variables.
19755         (epa-mail-parse-groups, epa-mail-sync-groups)
19756         (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
19757         (epa-mail-expand-recipients): New functions.
19758         (epa-mail-encrypt): Call epa-mail-expand-recipients.
19760         * mail/rmail.el (rmail-epa-decrypt): New command.
19762         * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
19763         Don't bind buffer-read-only, just inhibit-read-only.
19764         (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
19765         (epa-decrypt-armor-in-region): Make error message clearer.
19767 2011-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19769         * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
19770         and "a2b" to "ab" for `prefix'.
19772 2011-08-14  Chong Yidong  <cyd@stupidchicken.com>
19774         * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
19775         filter groups.
19776         (ibuffer-included-in-filter-p-1): Use it.  Suggested by Rafaël
19777         Fourquet (Bug#8804).
19779 2011-08-12  Juanma Barranquero  <lekktu@gmail.com>
19781         * startup.el (argi): Declare as global variable (bug#9275).
19783 2011-08-12  Chong Yidong  <cyd@stupidchicken.com>
19785         * subr.el (string-mark-left-to-right): Search the entire string
19786         for RTL script, not just the terminating character.  Doc fix.
19788 2011-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
19790         * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
19791         New function.
19792         (js--regexp-literal, js-syntax-propertize-function): Remove.
19793         (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
19794         (js-mode-map): Don't rebind electric keys.
19795         (js-insert-and-indent): Remove.
19796         (js-mode): Setup electric-layout and electric-indent instead.
19798         * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
19800 2011-08-12  Daiki Ueno  <ueno@unixuser.org>
19802         * epa.el (epa-progress-callback-function): Fix the logic of
19803         displaying progress.
19804         * epa-file.el (epa-file-insert-file-contents): Make progress
19805         display more user-friendly.
19806         (epa-file-write-region): Ditto.
19808 2011-08-10  Chong Yidong  <cyd@stupidchicken.com>
19810         * subr.el (string-mark-left-to-right): New function.
19812         * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
19813         Use string-mark-left-to-right.
19814         (list-buffers-noselect): Caller changed.
19816         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
19817         Use string-mark-left-to-right.
19818         (tabulated-list-print): Recenter after moving point.
19820 2011-08-10  Juri Linkov  <juri@jurta.org>
19822         * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
19823         This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
19824         intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
19826 2011-08-09  Chong Yidong  <cyd@stupidchicken.com>
19828         * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
19829         (Bug#7554).
19831 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
19833         * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
19834         character.  (Bug#6594)
19836 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
19838         * image-dired.el: Don't use find-file for temporary work (Bug#7895).
19839         (image-dired--with-db-file): New macro.
19840         (image-dired-write-tags, image-dired-remove-tag)
19841         (image-dired-create-gallery-lists, image-dired-write-comments)
19842         (image-dired-get-comment, image-dired-mark-tagged-files)
19843         (image-dired-list-tags, image-dired-gallery-generate): Use it.
19844         (image-dired-gallery-generate): Use insert-file-contents.
19846         * time.el (display-time-world-list, display-time-world-display):
19847         * time-stamp.el (time-stamp-string):
19848         * vc/add-log.el (add-change-log-entry): Use setenv instead of
19849         set-time-zone-rule (Bug#7337).
19851 2011-08-08  Daiki Ueno  <ueno@unixuser.org>
19853         * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
19854         (epg-error-to-string, epg-errors-to-string): New function.
19855         (epg-wait-for-completion): Reverse errors list.
19856         (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
19857         (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
19858         (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
19859         (epg-sign-keys, epg-generate-key-from-file)
19860         (epg-generate-key-from-string): Format errors by using
19861         epg-errors-to-string (bug#9255).
19862         (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
19864 2011-08-07  Juri Linkov  <juri@jurta.org>
19866         * faces.el (list-faces-display): Remove extra angle bracket
19867         from `help-mode-map'.
19869         * info.el (Info-history-toc-nodes): Doc fix.
19871         * longlines.el (longlines-mode): Doc fix.
19873 2011-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
19875         * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
19876         of statements and in a few more cases (bug#9183).
19878         * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
19879         New functions.
19880         (cl-transform-lambda): Use them (bug#9239).
19882 2011-08-05  Martin Rudalics  <rudalics@gmx.at>
19884         * window.el (display-buffer-same-window)
19885         (display-buffer-same-frame, display-buffer-other-window)
19886         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
19887         (pop-to-buffer-other-window)
19888         (pop-to-buffer-same-frame-other-window)
19889         (pop-to-buffer-other-frame): Make them defuns.
19890         (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
19892 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19894         * subr.el (make-composed-keymap): Move from C.  Change calling
19895         convention, and improve docstring to bring attention to a subtle point.
19896         * minibuffer.el (completing-read-default): Adjust accordingly.
19898 2011-08-03  Michael Albinus  <michael.albinus@gmx.de>
19900         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
19901         (tramp-open-shell): Use `tramp-shell-quote-argument'.
19903         * net/trampver.el: Update release number.
19905 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19907         * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
19908         "in" (bug#9190).
19910 2011-08-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19912         * mail/sendmail.el (sendmail-query-once): Restore the current
19913         buffer after querying (bug#9074).
19915         * dired.el (dired-flagged): Use different faces for marked and
19916         flagged files (bug#6117).
19918         * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
19919         (bug#4433).
19921         * ido.el (ido-mode): Switch off the message if called
19922         non-interactively.
19924         * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
19925         before 587, since it appears that that's more likely to work for
19926         more people.
19928         * cus-edit.el (custom-file): When running under emacs -q, always
19929         refuse to save the customizations, even if the .emacs file doesn't
19930         exist.
19932         * info.el: Remove the `Info-beginning-of-buffer' function
19933         (bug#8325).
19935         * net/network-stream.el (network-stream-open-starttls):
19936         Use `starttls-available-p' to see whether starttls.el can be used.
19938 2011-08-01  Martin Rudalics  <rudalics@gmx.at>
19940         * window.el (display-buffer-in-window): Don't set dedicated status
19941         of window here (Bug#9215).
19942         (display-buffer-pop-up-window, display-buffer-pop-up-frame)
19943         (display-buffer-pop-up-side-window)
19944         (display-buffer-in-side-window): Set dedicated status of window here.
19946 2011-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19948         * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
19949         before binding generated-autoload-file.
19951 2011-08-01  Deniz Dogan  <deniz@dogan.se>
19953         * net/rcirc.el (rcirc-handler-333): Clarify docstring.
19955 2011-07-30  Michael Albinus  <michael.albinus@gmx.de>
19957         Sync with Tramp 2.2.2.
19959         * net/trampver.el: Update release number.
19961 2011-07-30  Juri Linkov  <juri@jurta.org>
19963         * dired-aux.el (dired-touch-initial): Remove function.
19964         (dired-do-chxxx): For op-symbol `touch', set `initial' to the
19965         current time, and `default' to the last modification time of the
19966         current marked file (bug#6887).
19968 2011-07-28  Jose E. Marchesi  <jemarch@gnu.org>
19970         * simple.el (goto-line): Use string-to-number to provide a
19971         numeric argument to read-number (bug#9163).
19973 2011-07-27  Michael Albinus  <michael.albinus@gmx.de>
19975         * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
19976         connection process, it could be nil.
19978 2011-07-27  Leo Liu  <sdl.web@gmail.com>
19980         Simplify url handling in rcirc-mode.
19982         * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
19983         (rcirc-browse-url-at-mouse): Remove.
19984         * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
19986 2011-07-26  Alan Mackenzie  <acm@muc.de>
19988         Fontify bitfield declarations properly.
19990         * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
19991         (c-symbol-chars): Now exported as a lang variable.
19992         (c-not-primitive-type-keywords): New lang variable.
19994         * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
19995         QT keyword "more" to prevent "more slots: ...." being spuriously
19996         parsed as a bitfield declaration.
19998         * progmodes/cc-engine.el (c-beginning-of-statement-1):
19999         Refactor and enhance to handle bitfield declarations.
20000         (c-punctuation-in): New function.
20001         (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
20002         declarations properly.
20004 2011-07-26  Ulf Jasper  <ulf.jasper@web.de>
20006         * calendar/icalendar.el (icalendar--all-events): Take care of
20007         multiple vcalendars in a single file.
20008         (icalendar--convert-float-to-ical): Checkdoc fixes.
20010 2011-07-25  Deniz Dogan  <deniz@dogan.se>
20012         * image.el (insert-image): Clarifying docstring.
20014 2011-07-24  Michael Albinus  <michael.albinus@gmx.de>
20016         * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
20017         `tramp-send-command-and-check' if there is no error.
20018         (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
20020 2011-07-22  Alan Mackenzie  <acm@muc.de>
20022         Prevent cc-langs.elc being loaded at run time.
20024         * progmodes/cc-mode.el: Remove two autoload forms which loaded
20025         cc-langs.
20027         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
20028         "(require 'cc-langs)".  Quote a form so it will evaluate at
20029         (cc-mode's) compilation time.
20031 2011-07-22  Michael Albinus  <michael.albinus@gmx.de>
20033         * net/tramp.el (tramp-file-name-handler): Avoid recursive
20034         loading.  (Bug#9114)
20036 2011-07-21  Martin Rudalics  <rudalics@gmx.at>
20038         * window.el (display-buffer-pop-up-window)
20039         (display-buffer-pop-up-side-window)
20040         (display-buffer-in-side-window): Call display-buffer-set-height
20041         and display-buffer-set-width after setting the new window's
20042         buffer so `fit-window-to-buffer' and friends work on the right buffer.
20044 2011-07-20  Sam Steingold  <sds@gnu.org>
20046         * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
20047         (etags-tags-included-tables): Call `convert-standard-filename' on
20048         the file names contained in TAGS so that windows Emacs can handle
20049         TAGS files created by cygwin ctags.
20051 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20053         * proced.el (proced-update): Revert yesterday's bug#1779 patch,
20054         which apparently didn't work.
20056 2011-07-19  Roland Winkler  <winkler@gnu.org>
20058         * proced.el (proced-send-signal): For *Marked Processes* buffer
20059         put point at beginning of buffer.
20061 2011-07-19  Stephen Berman  <stephen.berman@gmx.net>
20063         * proced.el (proced-format): Make header lines align with the text
20064         (bug#1779).
20066 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20068         * view.el (view-buffer): Allow running in `special' modes if we're
20069         visiting a file (bug#8615).
20071 2011-07-19  Martin Rudalics  <rudalics@gmx.at>
20073         * window.el (display-buffer-alist-of-strings-p)
20074         (display-buffer-alist-set-1, display-buffer-alist-set-2):
20075         New functions.
20076         (display-buffer-alist-set): Rewrite to handle Emacs 23 options
20077         more accurately.
20079 2011-07-18  Alan Mackenzie  <acm@muc.de>
20081         Fontify declarators properly when, e.g., a jit-lock chunk begins
20082         inside a declaration.
20084         * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
20086         * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
20087         New function.
20088         (c-complex-decl-matchers): Insert reference to
20089         c-font-lock-enclosing-decls.
20091         * progmodes/cc-engine.el (c-backward-single-comment):
20092         (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
20093         to nil around calls to (forward-comment -1).
20095 2011-07-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20097         * image.el (put-image): Doc typo fix.
20099         * progmodes/etags.el (tags-search): Doc typo fix.
20101         * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
20102         password if we get errors 550 to 554.
20104 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20106         * net/gnutls.el (gnutls-log-level): Remove.
20108         * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
20109         indentation character (bug#6380).
20111         * files.el (buffer-offer-save): Made permanently local (bug#6241).
20113         * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
20114         to clarify what the problem is (bug#4291).
20116         * simple.el (current-kill): Clarify what
20117         `interprogram-paste-function' does (bug#7500).
20118         (auto-fill-mode): Document `auto-fill-function' in relation to
20119         `auto-fill-mode' (bug#2470).
20121 2011-07-16  Lawrence Mitchell  <wence@gmx.li>
20123         * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
20124         method if slot is read-only (bug#9035).
20126 2011-07-16  Martin Rudalics  <rudalics@gmx.at>
20128         * frame.el (select-frame-set-input-focus): New argument NORECORD.
20129         * window.el (pop-to-buffer): Select window used even if it was
20130         selected before, see discussion of (Bug#8615), (Bug#6954).
20131         Pass argument NORECORD on to select-frame-set-input-focus.
20133 2011-07-15  Glenn Morris  <rgm@gnu.org>
20135         * subr.el (read-char-choice): Allow quitting.  (Bug#9001)
20136         Respect help-form.
20138 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
20140         * net/gnutls.el (gnutls-min-prime-bits): New variable.
20141         (gnutls-negotiate): Use it.
20143 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20145         * net/gnutls.el (gnutls-negotiate):
20146         Upcase `gnutls-algorithm-priority'.
20148 2011-07-15  Glenn Morris  <rgm@gnu.org>
20150         * jka-compr.el (jka-compr-verbose): Move from here...
20151         * jka-cmpr-hook.el (jka-compr-verbose): ... to here.  (Bug#9090)
20152         Add missing :version tag.
20153         * info.el: No need to require jka-compr when compiling.
20155 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20157         * net/gnutls.el (gnutls-algorithm-priority): New variable.
20158         (gnutls-negotiate): Use it.
20160         * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
20162         * info.el (Info-beginning-of-buffer): New command.
20163         (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
20164         announcing `b' as the key (bug#8325).
20165         (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
20167         * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
20169         * international/mule-cmds.el
20170         (describe-specified-language-support): Make the error message
20171         clearer (bug#8905).
20173         * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
20175         * isearch.el (isearch-barrier): Add a doc string, since it's
20176         mentioned in a function doc string (bug#8678).
20178 2011-07-15  Martin Rudalics  <rudalics@gmx.at>
20180         * window.el (switch-to-buffer): Call pop-to-buffer with normalized
20181         buffer argument (Bug#9083) and self-identifying label argument.
20183 2011-07-15  Glenn Morris  <rgm@gnu.org>
20185         * emacs-lisp/debug.el (debug): Doc fix.  (Bug#8273)
20187 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20189         * man.el (Man-fontify-manpage): Fix message when formatting the
20190         man page (bug#7929).
20192 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
20194         * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
20195         argument LRM; if non-nil, append an invisible LRM character to the
20196         buffer name.
20197         (list-buffers-noselect): Call Buffer-menu-buffer+size with the
20198         last argument non-nil, when formatting buffer names.
20199         (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
20200         paragraph direction.
20202 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20204         * man.el (Man-bgproc-sentinel): Skip any arguments and only output
20205         the man page name (bug#7929).
20207         * image.el (put-image): Mention the `put-image' overlay property
20208         (bug#7834).
20210         * scroll-bar.el (set-scroll-bar-mode): Mention that
20211         `scroll-bar-mode' lists the values (bug#7772).
20213         * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
20214         command (bug#7729).
20216         * rect.el (apply-on-rectangle): Return the point after the last
20217         operation.
20218         (string-rectangle): Go to the point after the last operation
20219         (bug#7522).
20221         * printing.el (pr-toggle-region): Clarify the documentation
20222         slightly (bug#7493).
20224         * time.el (display-time-update):
20225         Allow `display-time-mail-function' to return nil (bug#7158).
20226         Fix suggested by Detlev Zundel.
20228         * vc/diff.el (diff): Clarify the order the file names are read
20229         (bug#7111).
20231         * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
20232         the doc string (bug#7015).
20234         * font-lock.el (font-lock-maximum-decoration): Mention what
20235         numeric levels mean (bug#6935).
20237         * startup.el (initial-buffer-choice): Don't mention the `none'
20238         selection, which is against policy.
20240 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
20242         * window.el (display-buffer-normalize-special):
20243         Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
20245 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
20247         * subr.el (version<, version<=, version=): Mention "-CVS" and
20248         "-12345" alpha version numbers.
20250 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
20252         * bindings.el: Add advertised binding for set-mark-command
20253         (Bug#5772).
20255 2011-07-14  Chong Yidong  <cyd@stupidchicken.com>
20257         * bindings.el (mode-line-other-buffer):
20258         * bookmark.el (bookmark-bmenu-2-window):
20259         * bs.el (bs-cycle-next, bs-cycle-previous):
20260         * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
20261         switch-to-buffer.
20263         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20264         Delete.
20266 2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
20268         * follow.el (follow-debug-message, follow-redisplay):
20269         * jka-cmpr-hook.el (with-auto-compression-mode):
20270         Fix typos in docstrings.
20272 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20274         * subr.el (with-silent-modifications): Clarify somewhat what the
20275         macro inhibits (bug#6525).
20277         * simple.el (eval-expression): Note what it does if called
20278         interactively (bug#6495).
20280 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
20282         * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
20283         Use pop-to-buffer buffer-or-name if it is nil.
20285         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20286         Remove switch-to-buffer.
20288 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20290         * files.el (make-directory): Clarify that an error will be raised
20291         if there's an error (bug#6397).
20293         * startup.el (initial-buffer-choice): Add `none' as a choice
20294         (bug#6234).
20296         * subr.el (add-hook): Clarify section about buffer-local hooks
20297         (bug#6218).
20299         * dired.el (dired-flagged): Clarify doc string (bug#6117).
20301 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
20303         * tabify.el (untabify): Preserve the current column so that point
20304         doesn't move (bug#6032).
20306 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20308         * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
20309         Rewrite to avoid awkward possessive "s" (bug#5986).
20311 2011-07-13  Glenn Morris  <rgm@gnu.org>
20313         * dired.el (dired-use-ls-dired): Doc fix.  (Bug#9039).
20314         (dired-insert-directory): Give a message the first time
20315         if ls is found not to support --dired.
20317 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20319         * simple.el (toggle-truncate-lines): Clarify what is toggled
20320         (bug#5580).  Text by Drew Adams.
20322 2011-07-13  Chong Yidong  <cyd@stupidchicken.com>
20324         * simple.el (blink-matching-open): Make the error message from the
20325         last change less verbose.
20327 2011-07-13  Dan Nicolaescu  <dann@ics.uci.edu>
20329         * font-lock.el (font-lock-comment-face): Use the high contrast
20330         "yellow" color for font-lock-comment-face on low color terminals
20331         using a dark background color (bug#4221).
20333 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20335         * dired.el (dired-insert-set-properties): Make the doc string
20336         reflect what it does now (bug#5325).
20338         * simple.el (blink-matching-open): Say that we were unable to find
20339         the match within the limit, if we're limited (bug#5122).
20341         * international/mule-cmds.el (prefer-coding-system): Add an
20342         example (bug#4869).
20344         * progmodes/etags.el (tags-search): Document `file-list-form'
20345         (bug#4731).
20347 2011-07-13  Lawrence Mitchell  <wence@gmx.li>
20349         * net/browse-url.el (browse-url-default-browser)
20350         (browse-url-browser-function): Make the default browser choice a
20351         bit more logical (bug#4300).  Also clean up the doc string.
20353 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
20355         * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
20356         binary endings (bug#4440).
20358 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20360         * info.el (info-insert-file-contents): Inhibit jka-compr messages,
20361         which can be pretty annoying (bug#8971).
20363         * jka-compr.el (jka-compr-verbose): New variable, and use
20364         throughout (bug#8971).
20366         * info.el (Info-find-file): Fall back on the installation
20367         directory if we can't find the info node anywhere else.
20369 2011-07-13  Sergei Organov  <osv@javad.com>  (tiny change)
20371         * vc/vc.el (vc-revert-file):
20372         Don't set file time-stamp in the past.  (Bug#5181)
20374 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20376         * files.el (after-find-file): Give a better error message when
20377         trying to find a symlink that points to a file that doesn't exist
20378         (bug#4398).
20380         * progmodes/cc-vars.el: Remove (probably) misleading comment
20381         (bug#4396).
20383 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
20385         * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
20387 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
20389         * mouse-sel.el: Hack restoring functionality, while keeping
20390         compatibility with 2010-07-03 changes to mouse selection.
20391         (mouse-sel-primary-overlay): New var.
20392         (mouse-sel-selection-alist): Use it.
20393         (mouse-sel-mode): Doc fix; remove points that are default features
20394         of mouse.el.
20396 2011-07-12  Johan Bockgård  <bojohan@gnu.org>
20398         * progmodes/compile.el (compilation-error-regexp-alist-alist):
20399         Fix previous fix (bug#2490).
20401 2011-07-12  Roland Winkler  <winkler@gnu.org>
20403         * textmodes/bibtex.el (bibtex-initialize):
20404         Use pop-to-buffer-same-window.
20405         (bibtex-search-entries): Fix interactive call.
20407 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20409         * progmodes/compile.el (compilation-error-regexp-alist-alist):
20410         Fontise bytecomp Error lines more correctly (bug#2490).
20411         Fix suggested by Johan Bockgård.
20413         * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
20415         * dired-x.el (dired-guess-default): Use `delete-dups'.
20417 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
20419         * dired.el (dired-mark-prompt):
20420         * dired-aux.el (dired-read-shell-command): Doc fix.
20422 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20424         * mail/sendmail.el (sendmail-query-once):
20425         Use `customize-save-variable' unconditionally, now that it works under
20426         emacs -Q.
20428         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20430         * cus-edit.el (custom-file): Take an optional no-error variable.
20431         (customize-save-variable): Set the variable, and give a warning if
20432         running under "emacs -q".
20434 2011-07-11  Juanma Barranquero  <lekktu@gmail.com>
20436         * loadhist.el (unload-feature-special-hooks):
20437         Add `auto-coding-functions', `fill-nobreak-predicate' and
20438         `find-directory-functions' (bug#5327).
20440 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20442         * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
20444         * cus-edit.el (custom-guess-name-alist): -alist variables should
20445         use the `alist' type (bug#3120).  Suggested by Drew Adams.
20447         * printing.el: Add documentation to all the `pr-toggle-' commands.
20449 2011-07-11  Leo Liu  <sdl.web@gmail.com>
20451         * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
20452         backends where it makes sense (bug#2623).
20454 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20456         * dired-x.el (dired-guess-default): Remove duplicate shell command
20457         entries (bug#2028).
20458         (dired-guess-default): Fix grammar in doc string (bug#2028).
20459         (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
20461         * subr.el (remove-duplicates): New conveniency function.
20463 2011-07-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20465         * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
20466         (bug#1526).
20468 2011-07-10  Martin Rudalics  <rudalics@gmx.at>
20470         * window.el (display-buffer-normalize-default): Don't invert
20471         meaning of even-window-heights.  Reported by Eli Zaretskii
20472         <eliz@gnu.org>.
20474 2011-07-10  Bob Rogers  <rogers@rgrjr.dyndns.org>
20476         * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
20478 2011-07-10  Chong Yidong  <cyd@stupidchicken.com>
20480         * window.el (display-buffer): Fix arguments to
20481         display-buffer-reuse-window in last change.
20483         * faces.el (link): Use a less saturated blue on light backgrounds.
20485         * startup.el (fancy-startup-text, fancy-about-text)
20486         (fancy-startup-tail): Use font-lock faces, for background safety.
20488 2011-07-09  Bob Nnamtrop  <bobnnamtrop@gmail.com>  (tiny change)
20490         * emulation/viper-cmd.el (viper-change-state-to-vi):
20491         Limit triggering of abbrev expansion (Bug#9038).
20493 2011-07-09  Martin Rudalics  <rudalics@gmx.at>
20495         * window.el (display-buffer-default-specifiers): Remove.
20496         (display-buffer-macro-specifiers): Remove default specifiers.
20497         (display-buffer-alist): Default to nil.
20498         (display-buffer-reuse-window): New optional argument other-window.
20499         (display-buffer-pop-up-window): Allow splitting internal
20500         windows.  Check whether a live window was created.
20501         (display-buffer-other-window-means-other-frame)
20502         (display-buffer-normalize-arguments): Rename to
20503         display-buffer-normalize-argument and rewrite.  Set the
20504         other-window specifier.
20505         (display-buffer-normalize-special): New function.
20506         (display-buffer-normalize-options): Rename to
20507         display-buffer-normalize-default and rewrite.
20508         (display-buffer-normalize-options-inhibit): Remove.
20509         (display-buffer-normalize-specifiers): Rewrite.
20510         (display-buffer): Process other-window specifier and call
20511         display-buffer-reuse-window with it.  Emulate Emacs 23 behavior
20512         more faithfully.
20513         (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
20514         (display-buffer-alist-set): Don't handle 'unset default values.
20515         (display-buffer-in-window, display-buffer-alist-set):
20516         Replace symbol "dedicated" by "dedicate".  Reported by Tassilo Horn
20517         <tassilo@member.fsf.org>.
20519 2011-07-09  Leo Liu  <sdl.web@gmail.com>
20521         * register.el (insert-register): Restore accidental change on
20522         2011-06-26.  (Bug#9028)
20524 2011-07-09  Glenn Morris  <rgm@gnu.org>
20526         * subr.el (remq): Handle the empty list.  (Bug#9024)
20528 2011-07-08  Andreas Schwab  <schwab@linux-m68k.org>
20530         * mail/sendmail.el (send-mail-function): No longer delay custom
20531         initialization.
20532         * custom.el (custom-initialize-delay): Doc fix.
20534 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20536         * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
20538 2011-07-08  Michael Albinus  <michael.albinus@gmx.de>
20540         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
20541         human-friendly prompt.
20543 2011-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20545         * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
20546         provided by a particular plugin.
20548 2011-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20550         * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
20551         save customizations (with "emacs -Q"), just set the variable
20552         instead of erroring out.
20554         * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
20556 2011-07-08  Juri Linkov  <juri@jurta.org>
20558         * arc-mode.el (archive-zip-expunge, archive-zip-update)
20559         (archive-zip-update-case): Use 7z if found by `executable-find'.
20560         The order of searching the available programs is the same as in
20561         `archive-zip-extract' (bug#8968).
20563 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20565         * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
20566         (menu-bar-options-menu): Tweak descriptions.
20568 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20570         * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
20571         menu items into verb phrases (bug#1421).  Also refill to fit under
20572         80 columns.
20574 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20576         * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
20577         (Info-read-node-name): Doc fix (Bug#1084).
20579         * thingatpt.el (forward-thing, bounds-of-thing-at-point)
20580         (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
20581         (end-of-sexp, beginning-of-sexp)
20582         (thing-at-point-bounds-of-list-at-point, forward-whitespace)
20583         (forward-symbol, forward-same-syntax, word-at-point)
20584         (sentence-at-point): Doc fix (Bug#1144).
20586 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20588         * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
20589         should cover it (bug#1281).
20591         * cus-edit.el (custom-show): Mark as obsolete.
20593         * net/network-stream.el (network-stream-open-starttls): If GnuTLS
20594         negotiation fails, then possibly try again with a non-encrypted
20595         connection (bug#9017).
20597         * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
20598         be used.
20600 2011-07-07  Richard Stallman  <rms@gnu.org>
20602         * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
20603         property, and handle its changed format.
20604         Look for the correct line number.
20605         Use file's line contents (but not past first =) to find
20606         correct line in message.
20608 2011-07-07  Kenichi Handa  <handa@m17n.org>
20610         * international/characters.el (build-unicode-category-table):
20611         Delete it.
20612         (unicode-category-table): Set it by unicode-property-table-internal.
20614         * international/mule-cmds.el (char-code-property-alist): Move to
20615         to src/chartab.c.
20616         (get-char-code-property): Call unicode-property-table-internal to
20617         load a file.  Call get-unicode-property-internal where necessary.
20618         (put-char-code-property): Call unicode-property-table-internal to
20619         load a file.  Call put-unicode-property-internal where necessary.
20620         put-unicode-property-internal where necessary.
20621         (char-code-property-description):
20622         Call unicode-property-table-internal to load a file.
20624         * international/charprop.el:
20625         * international/uni-bidi.el:
20626         * international/uni-category.el:
20627         * international/uni-combining.el:
20628         * international/uni-comment.el:
20629         * international/uni-decimal.el:
20630         * international/uni-decomposition.el:
20631         * international/uni-digit.el:
20632         * international/uni-lowercase.el:
20633         * international/uni-mirrored.el:
20634         * international/uni-name.el:
20635         * international/uni-numeric.el:
20636         * international/uni-old-name.el:
20637         * international/uni-titlecase.el:
20638         * international/uni-uppercase.el: Regenerate.
20640         * loadup.el: Load international/charprop.el before
20641         international/characters.
20643 2011-07-07  Chong Yidong  <cyd@stupidchicken.com>
20645         * window.el (next-buffer, previous-buffer): Signal an error if
20646         called from a minibuffer window.
20648         * bindings.el: Revert 2011-07-04 change.
20650 2011-07-06  Richard Stallman  <rms@gnu.org>
20652         * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
20653         (rmail-mime-insert-bulk, rmail-mime-insert-text):
20654         Treat markers like ints.
20655         (rmail-mime-entity): Doc fix.
20657 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20659         * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
20660         defcustom again for backwards compatibility.
20662         * simple.el (shell-command-on-region): Fill.
20664         * dired-aux.el (dired-kill-line): Add a doc string.
20666         * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
20667         to "\\sw\\|\\s_" (bug#358).
20669         * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
20670         (dired-unmark-backward): Ditto.
20671         (dired-flag-backup-files): Ditto.
20673         * dired-x.el (dired-mark-sexp): Ditto.
20675 2011-07-06  Richard Stallman  <rms@gnu.org>
20677         * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
20678         (rmail-mime-entity): New arg TRUNCATED.
20679         (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
20680         New functions.
20681         (rmail-mime-save): Warn if entity is truncated.
20682         (rmail-mime-toggle-hidden): Likewise, for showing.
20683         (rmail-mime-process-multipart): Record when an entity is truncated.
20685         * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
20686         if ENTITY is a string.
20688 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20690         * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
20691         of faces when `M-C-x'-ing their definitions (bug#8378).
20692         Also clean up the code slightly.
20694         * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
20695         because that makes the colors go away.
20697         * mail/sendmail.el (send-mail-function): Change the default to
20698         `sendmail-query-once'.
20699         (sendmail-query-once): Add an autoload cookie.
20701         * net/network-stream.el (network-stream-open-starttls): Try using
20702         a plain connection even if the server offered STARTTLS, and we
20703         kinda wanted to use it, if Emacs doesn't have any STARTTLS
20704         capability.  This should make smtpmail.el work in slightly more
20705         configurations.
20707 2011-07-06  Michael Albinus  <michael.albinus@gmx.de>
20709         * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
20710         New defun.
20711         * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
20713 2011-07-06  Michael R. Mauger  <mmaug@yahoo.com>
20715         * progmodes/sql.el: Version 3.0
20716         (sql-product-alist): Add product :completion-object,
20717         :completion-column, and :statement attributes.
20718         (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
20719         (sql-mode-syntax-table): Mark all punctuation.
20720         (sql-font-lock-keywords-builder): Temporarily remove fallback on
20721         ansi keywords.
20722         (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
20723         (sql-mode-oracle-font-lock-keywords): Improve.
20724         (sql-oracle-show-reserved-words): New function for development.
20725         (sql-product-font-lock): Simplify for source code buffers.
20726         (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
20727         New functions.
20728         (sql-highlight-product): Set product specific syntax table.
20729         (sql-mode-map): Add statement movement functions.
20730         (sql-ansi-statement-starters, sql-oracle-statement-starters):
20731         New variable.
20732         (sql-statement-regexp, sql-beginning-of-statement)
20733         (sql-end-of-statement, sql-signum): New functions.
20734         (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
20735         (sql-show-sqli-buffer): Bug fix.
20736         (sql-interactive-mode): Store connection data as buffer local.
20737         (sql-connect): Add NEW-NAME parameter.  Redesign interaction
20738         with sql-interactive-mode.
20739         (sql-save-connection): Save buffer local settings.
20740         (sql-connection-menu-filter): Change menu entry name.
20741         (sql-product-interactive): Bug fix.
20742         (sql-preoutput-hold): New variable.
20743         (sql-interactive-remove-continuation-prompt): Bug fixes.
20744         (sql-debug-redirect): New variable.
20745         (sql-str-literal): New function.
20746         (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
20747         Redesign.
20748         (sql-oracle-save-settings, sql-oracle-restore-settings)
20749         (sql-oracle-list-all, sql-oracle-list-table): New functions.
20750         (sql-completion-object, sql-completion-column)
20751         (sql-completion-sqlbuf): New variables.
20752         (sql-build-completions-1, sql-build-completions)
20753         (sql-try-completion): New functions.
20754         (sql-read-table-name): Use them.
20755         (sql-contains-names): New buffer local variable.
20756         (sql-list-all, sql-list-table): Use it.
20757         (sql-oracle-completion-types): New variable.
20758         (sql-oracle-completion-object, sql-sqlite-completion-object)
20759         (sql-postgres-completion-object): New functions.
20761 2011-07-06  Glenn Morris  <rgm@gnu.org>
20763         * window.el (pop-to-buffer): Doc fix.
20765 2011-07-06  Markus Heiser  <markus.heiser@darmarit.de>  (tiny change)
20767         * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
20769 2011-07-06  Chong Yidong  <cyd@stupidchicken.com>
20771         * window.el (special-display-popup-frame): Doc fix (Bug#8853).
20773         * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
20775 2011-07-05  Chong Yidong  <cyd@stupidchicken.com>
20777         * button.el (button): Inherit from link face.  Suggested by Dan
20778         Nicolaescu.
20780 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20782         * progmodes/gdb-mi.el: Fit in 80 columns.
20783         (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
20784         switch-to-buffer.
20786         * progmodes/which-func.el (which-func-ff-hook): Don't output a message
20787         if imenu is simply not configured (bug#8941).
20789 2011-07-05  Ken Manheimer  <ken.manheimer@gmail.com>
20791         * allout.el (allout-post-undo-hook): New allout outline-change
20792         event hook to signal undo activity.
20793         (allout-post-command-business): Run allout-post-undo-hook if an
20794         undo just occurred.
20795         (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
20796         * allout-widgets.el (allout-widgets-after-undo-function):
20797         Ensure the integrity of the current item's decoration after it has been
20798         in the vicinity of an undo.
20799         (allout-widgets-mode): Include allout-widgets-after-undo-function
20800         on the new allout-post-undo-hook.
20802 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20804         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
20805         Let define-derived-mode define it.
20806         * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
20807         cycles of abbrev-table inheritance (bug#8998).
20809 2011-07-05  Roland Winkler  <winkler@gnu.org>
20811         * textmodes/bibtex.el: Add support for biblatex.
20812         (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
20813         (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
20814         (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
20815         (bibtex-entry-alist, bibtex-field-alist): New variables.
20816         (bibtex-entry-field-alist): Obsolete alias for
20817         bibtex-BibTeX-entry-alist.
20818         (bibtex-entry-alist, bibtex-field-alist): New widgets.
20819         (bibtex-set-dialect): New command.
20820         (bibtex-entry-type, bibtex-entry-head)
20821         (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
20822         Bind via bibtex-set-dialect.
20823         (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
20824         (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
20825         (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
20826         (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
20827         Define via bibtex-set-dialect.
20828         (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
20829         Obey bibtex-no-opt-remove-re.
20830         (bibtex-vec-push, bibtex-vec-incr): New functions.
20831         (bibtex-format-entry, bibtex-field-list)
20832         (bibtex-print-help-message, bibtex-validate)
20833         (bibtex-search-entries): Use new format of bibtex-entry-alist.
20835 2011-07-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20837         * progmodes/compile.el (compilation-goto-locus):
20838         * net/tramp-cmds.el (tramp-append-tramp-buffers):
20839         * bs.el (bs-cycle-next, bs-cycle-previous):
20840         * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
20841         * bindings.el (mode-line-other-buffer):
20842         * autoinsert.el (auto-insert):
20843         * arc-mode.el (archive-extract):
20844         * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
20846 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20848         * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
20849         Fix check of `emacs-lock-unlockable-modes'.
20850         Coerce true values of `emacs-lock--try-unlocking' to t.
20852 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20854         * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
20855         * emacs-lock.el: New file.
20857 2011-07-05  Julien Danjou  <julien@danjou.info>
20859         * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
20860         than `boundp' to check if face is set.
20862 2011-07-05  Juanma Barranquero  <lekktu@gmail.com>
20864         * register.el (registerv-make):
20865         * window.el (window-min-height): Fix typos in docstrings.
20867 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
20869         * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
20870         Update doc string.
20872 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
20874         * server.el (server-execute): Catch quit and call
20875         `server-return-error' to pass the error back to emacsclient and
20876         close the connection (bug#8942).
20878 2011-07-04  Ken Manheimer  <ken.manheimer@gmail.com>
20880         * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
20881         insecure exception for current topic.  Also note that auto-saves
20882         are handled differently.
20884         (allout-auto-save-temporarily-disabled, allout-just-did-undo):
20885         State variables for tracking auto-save inhibition situation.
20887         (allout-write-contents-hook-handler): Rename from
20888         'allout-write-file-hook-handler', and describe how it depends on
20889         write-contents-functions sensitivity to non-nil value to prevent
20890         file write.
20892         (allout-auto-save-hook-handler): Remove.  auto-save does not check
20893         this in individual buffers, only in the starting buffer, so this
20894         is not the right way for us to inhibit auto-save in a buffer
20895         according to its condition.
20897         (allout-mode): Use new allout-write-contents-hook-handler, and
20898         only with write-contents-functions.  Remove auto-save provisions -
20899         they're implemented elsewhere.
20901         (allout-before-change-handler): If undo is in progress, note that
20902         for attention of allout-post-command-business.
20904         (allout-post-command-business): If the command we're following was
20905         an undo, check for change in the status of encrypted items and
20906         adjust auto-save inhibitions accordingly.
20908         (allout-toggle-subtree-encryption): Adjust auto-save inhibition
20909         according to whether there are or aren't any plain-text topics
20910         pending encryption.
20912         (allout-inhibit-auto-save-info-for-decryption):
20913         Adjust buffer-saved-size and some allout state to inhibit auto-saves
20914         if there are plain-text topics pending encryption.
20916         (allout-maybe-resume-auto-save-info-after-encryption): Adjust
20917         buffer-saved-size and some allout state to not inhibit auto-saves
20918         if there are no longer any plain-text topics pending encryption.
20920         (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
20921         No longer provide for exemption of the current topic.
20923 2011-07-04  Juri Linkov  <juri@jurta.org>
20925         Add 7z operations to delete and save changed members (bug#8968).
20926         * arc-mode.el (archive-7z-expunge, archive-7z-update):
20927         New defcustoms.
20928         (archive-7z-write-file-member): New function.
20929         (archive-7z-summarize): Fix the number of dashes in the
20930         listing output.
20932 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20934         * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
20935         (bug#8958).
20937 2011-07-04  Chong Yidong  <cyd@stupidchicken.com>
20939         * bindings.el: Ignore next-buffer and previous-buffer in
20940         minibuffer-local-map.
20942         * font-lock.el (font-lock-builtin-face): Change light background
20943         color to dark slate blue (Bug#6693).
20945 2011-07-04  Wang Diancheng  <dcwang@kingbase.com.cn>  (tiny change)
20947         * progmodes/gdb-mi.el (gdb): Use completion-at-point.
20949 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20951         * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
20952         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
20953         Add switch-to-buffer.
20955 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20957         * isearch.el (isearch-search-fun-function): Clarify further the
20958         meaning of the function returned.
20960 2011-07-04  Michael Albinus  <michael.albinus@gmx.de>
20962         * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
20964         * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
20965         (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
20966         Use it.
20967         (tramp-remote-path): Add "/bin" and "/usr/bin".  On busyboxes,
20968         `tramp-default-remote-path' does not exist.
20969         (tramp-send-command-and-read): New optional argument NOERROR.
20970         (tramp-open-connection-setup-interactive-shell)
20971         (tramp-get-remote-path, tramp-get-remote-stat): Use it.
20972         (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
20973         (tramp-process-sentinel): Flush also process' connection property.
20974         (tramp-sh-handle-start-file-process): Do not set process
20975         sentinel.  It is done now ...
20976         (tramp-maybe-open-connection): ... here.  (Bug#8929)
20978 2011-07-04  MON KEY  <monkey@sandpframing.com>
20980         * play/animate.el (animate-string): Doc fixes and allow changing
20981         the buffer name (bug#5417).
20983 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20985         * play/animate.el (animation-buffer-name): Rename from *animate*.
20987 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
20989         * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
20990         This is simpler and helps future-proof the code.
20991         (timer-until): Use time-subtract and float-time.
20992         (timer--time-less-p): Use time-less-p.
20994 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
20996         * type-break.el (timep): Use the value of `float-time' to avoid a
20997         byte-compiler warning.
20999         * server.el (server-eval-and-print): Return any result, even nil.
21001 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21003         * type-break.el: Accept time formats that the builtins accept.
21004         (timep, type-break-time-difference): Accept any format that
21005         float-time accepts, rather than insisting on (HIGH LOW USECS) format.
21006         This is simpler and helps future-proof the code.
21007         (type-break-time-difference): Round rather than ignoring
21008         subseconds components.
21010 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21012         * info.el (Info-apropos-matches): Make non-interactive, since it
21013         doesn't seem to do anything useful as a command (bug#8829).
21015 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
21017         * frame.el (frame-background-mode, frame-set-background-mode):
21018         Move from faces.el.
21019         (frame-default-terminal-background): New function.
21021         * custom.el (custom-push-theme): Don't record faces in `changed'
21022         theme; this doesn't work correctly for per-frame face settings.
21023         (disable-theme): Use face-set-after-frame-default to reset faces.
21024         (custom--frame-color-default): New function.
21026 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21028         * dired.el (dired-flagging-regexp): Remove unused variable
21029         (bug#8769).
21031 2011-03-29  Kevin Ryde  <user42@zip.com.au>
21033         * progmodes/compile.el (compilation-error-regexp-alist-alist):
21034         `perl-Test2' extend to match possible "fail #N" rep count
21035         (bug#8377).
21037 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21039         * mail/feedmail.el (feedmail-buffer-to-smtpmail):
21040         `smtpmail-via-smtp' now returns the error instead of nil.
21042         * isearch.el (isearch-search-fun-function): Clarify the doc string
21043         (bug#8101).
21045 2011-07-03  Richard Kim  <emacs18@gmail.com>  (tiny change)
21047         * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
21048         unnecessary spaces (bug#8987).
21050 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21052         * net/network-stream.el (open-network-stream): Use the
21053         :end-of-capability command thoughout.
21055 2011-07-03  Wolfgang Jenkner  <wjenkner@inode.at>  (tiny change)
21057         * net/network-stream.el (open-network-stream): Add the
21058         :end-of-capability command parameter, used by pop3.el.
21060 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21062         * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
21064         * fringe.el (fringe-query-style): Remove redundant text " (type ?
21065         for list)" (bug#6475).
21067         * files.el (file-expand-wildcards): Ignore non-readable
21068         sub-directories while trying to find matches instead of signaling
21069         an error (bug#6297).
21071         * man.el (Man-reference-regexp): Allow matching possible
21072         word-wrapped references (bug#6289).
21074         * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
21075         for consistency with the other vc buffers (bug#6197).
21076         (vc-checkin): Ditto.
21078         * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
21080         * longlines.el (longlines-mode): Document what ARG does (bug#6150).
21082 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21084         * custom.el (defcustom): Clarify that :set is only used in the
21085         Customize user interface (bug#6089).
21087         * progmodes/flymake.el (flymake-mode): If the buffer isn't
21088         associated with a file, refuse to run instead of erroring out
21089         (bug#6084).
21091         * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
21092         the doc string, since it appears that using `fill-column' always
21093         controls the width (bug#7845).
21095         * simple.el (shell-command-on-region): Say where the error output
21096         went if `shell-command-default-error-buffer' is set (bug#6857).
21098 2011-07-02  Ken Manheimer  <ken.manheimer@gmail.com>
21100         * allout.el (allout-yank-processing): Adjust cursor position for
21101         backwards-deleted space.
21103         (allout-rebullet-heading): Register changes with
21104         allout-exposure-changed-hook, so the modified topic is properly
21105         decorated.
21107 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21109         * minibuffer.el (completion-in-region): Document PREDICATE
21110         (bug#7136).
21112         * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
21113         of keyword/argument pairs (bug#6904).
21115         * replace.el (multi-occur):
21116         Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
21118 2011-07-02  Drew Adams  <drew.adams@oracle.com>
21120         * dired.el (dired-mark-if): Make the message about whether it's
21121         marking or unmarking clearer (bug#8523).
21123 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21125         * disp-table.el (display-table-print-array): New function.
21126         (describe-display-table): Use it to print the vectors more pretty
21127         (Bug#8859).
21129 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
21131         * window.el (window-state-get-1): Don't assign clone numbers.
21132         Add clone-of item to list of window parameters.
21133         (window-state-put-2): Don't process clone numbers.
21134         (display-buffer-alist): Fix doc-string.
21136 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
21138         * subr.el (remq): Don't allocate if it's not needed.
21139         (keymap--menu-item-binding, keymap--menu-item-with-binding)
21140         (keymap--merge-bindings): New functions.
21141         (keymap-canonicalize): Use them to refine the canonicalization.
21142         * minibuffer.el (minibuffer-local-completion-map)
21143         (minibuffer-local-must-match-map): Move initialization from C.
21144         (minibuffer-local-filename-completion-map): Move initialization from C;
21145         don't inherit from anything here.
21146         (minibuffer-local-filename-must-match-map): Make obsolete.
21147         (completing-read-default): Use make-composed-keymap to combine
21148         minibuffer-local-filename-completion-map with either
21149         minibuffer-local-must-match-map or
21150         minibuffer-local-filename-completion-map.
21152 2011-07-01  Glenn Morris  <rgm@gnu.org>
21154         * type-break.el (type-break-time-sum): Use dolist.
21156         * textmodes/flyspell.el (flyspell-word-search-backward):
21157         Replace CL function.
21159 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21161         * mouse.el (mouse--strip-first-event): New function.
21162         (function-key-map): Use it to map fringe clicks to normal clicks
21163         by default.
21165         * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
21166         (vc-bzr-revision-completion-table): Add support for annotate and date.
21168         * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
21169         inherit from parent.
21171 2011-07-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21173         * dired-aux.el (dired-diff): Doc fixup (bug#8816).
21174         (dired-show-file-type): Doc fixup (bug#8818).
21176         * dired.el (dired-mode): Fix up the doc string as suggested by
21177         Drew Adams (bug#8817).
21179         * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
21180         cookie, since the manual says that it should be possible to add
21181         this function to `find-file-hook' (bug#8709).
21183 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
21185         * progmodes/cfengine.el: Moved all cfengine3.el functionality
21186         here.  Noted Ted Zlatanov as the maintainer.
21187         (cfengine-common-settings, cfengine-common-syntax): New functions
21188         to set up common things between `cfengine-mode' and
21189         `cfengine3-mode'.
21190         (cfengine3-mode): New mode.
21191         (cfengine3-defuns cfengine3-defuns-regex
21192         (cfengine3-class-selector-regex cfengine3-category-regex)
21193         (cfengine3-vartypes cfengine3-font-lock-keywords)
21194         (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
21195         (cfengine3-indent-line): Add from cfengine3.el.
21197 2011-07-01  Michael Albinus  <michael.albinus@gmx.de>
21199         * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
21201         * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
21203 2011-07-01  Martin Rudalics  <rudalics@gmx.at>
21205         * window.el (same-window-buffer-names, same-window-regexps)
21206         (same-window-p, special-display-frame-alist)
21207         (special-display-popup-frame, special-display-function)
21208         (special-display-buffer-names, special-display-regexps)
21209         (special-display-p, pop-up-frame-alist, pop-up-frame-function)
21210         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
21211         (split-window-preferred-function, split-height-threshold)
21212         (split-width-threshold, even-window-heights)
21213         (display-buffer-mark-dedicated, window-splittable-p)
21214         (split-window-sensibly, window-safely-shrinkable-p):
21215         Un-obsolete.
21216         (display-buffer): Don't spread args with function specifier
21217         because special-display-popup-frame won't like it.
21219 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21221         Time-stamp simplifications and fixes.
21222         These improve accuracy slightly, and future-proof the code
21223         against some potential changes to current-time format.
21225         * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
21226         by using time-since and float-time.
21228         * vc/ediff-util.el (ediff-calc-command-time): Use time-since
21229         and float-time.  Say "NNN.NNN seconds" rather than "NNN seconds
21230         + NNN microseconds".
21232         * type-break.el (type-break-time-sum): Rewrite using time-add.
21234         * play/hanoi.el (hanoi-current-time-float): Remove.
21235         All uses replaced by float-time.
21237         * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
21238         This yields a more-accurate answer.
21239         (rng-time-to-float): Remove; no longer needed.
21241         * emacs-lisp/timer.el (timer-relative-time): Use time-add.
21243         * calendar/timeclock.el (timeclock-seconds-to-time):
21244         Defalias to seconds-to-time, since they're the same thing.
21246         * emacs-lisp/elp.el (elp-elapsed-time):
21247         * emacs-lisp/benchmark.el (benchmark-elapse):
21248         * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
21250 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21252         * window.el (bury-buffer): Don't iconify the only frame.
21253         (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
21254         to pop-to-buffer.  Use pop-to-buffer-same-frame if you don't like that.
21256 2011-07-01  Chong Yidong  <cyd@stupidchicken.com>
21258         * eshell/em-smart.el (eshell-smart-display-navigate-list):
21259         Add mouse-yank-primary.
21261 2011-07-01  Teodor Zlatanov  <tzz@lifelogs.com>
21263         * progmodes/cfengine3.el: New file to support CFEngine 3.x.
21265 2011-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21267         * emacs-lisp/find-func.el (find-library--load-name): New fun.
21268         (find-library-name): Use it to find relative load names when provided
21269         absolute file name (bug#8803).
21271 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21273         * textmodes/flyspell.el (flyspell-word): Consider words that
21274         differ only in case as potential doublons (bug#5687).
21276         * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
21277         Remove two rather uninteresting debugging-like messages to make
21278         debbugs.el more silent.
21280         * comint.el (comint-password-prompt-regexp): Accept "Response" as
21281         a password-like phrase.
21283 2011-06-30  Masatake YAMATO  <yamato@redhat.com>
21285         * progmodes/cc-guess.el: New file.
21287         * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
21289         * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
21290         derived from `c-basic-common-init'.
21292         * progmodes/cc-mode.el (top-level): Require cc-guess.
21293         (c-basic-common-init): Use `cc-choose-style-for-mode'.
21295 2011-06-30  Lawrence Mitchell  <wence@gmx.li>
21297         * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
21299 2011-06-30  Alan Mackenzie  <acm@muc.de>
21301         * progmodes/cc-engine.el (c-guess-continued-construct):
21302         Correct the handling of template-args-cont, particularly for when font
21303         lock is disabled.  Name this case as "CASE G".
21305 2011-06-30  Ken Manheimer  <ken.manheimer@gmail.com>
21307         * allout.el (allout-yank-processing): Fix injection of extra space
21308         between bullet and non-whitespace character in first topic when
21309         pasting, ensuring that the actual spacing in the pasted topic
21310         following the bullet char is preserved.  This extra space was
21311         causing pasted encrypted topics to get a decrypted status even
21312         when the content was actually still encrypted.  Now the decryption
21313         status from before the paste is preserved.
21315         (allout-flag-region): Set all allout overlays so they evaporate
21316         when reduced to zero length (evanescent), to prevent overlay
21317         leakage.
21319 2011-06-30  Glenn Morris  <rgm@gnu.org>
21321         * w32-fns.el (w32-charset-info-alist): Declare.
21323         * find-dired.el (find-grep-options): Simplify.
21325         * term/ns-win.el (ns-set-resource): Declare.
21327         * ses.el (row, col): Declare dynamic variables honestly.
21329         * textmodes/reftex-parse.el (index-tags): Declare.
21331 2011-06-30  Chong Yidong  <cyd@stupidchicken.com>
21333         * cus-edit.el (customize-push-and-save): New function.
21335         * files.el (hack-local-variables-confirm): Use it.
21337         * custom.el (load-theme): New arg NO-CONFIRM.
21338         Use customize-push-and-save (Bug#8720).
21339         (custom-enabled-themes): Doc fix.
21341         * cus-theme.el (customize-create-theme)
21342         (custom-theme-merge-theme): Callers to load-theme changed.
21344 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21346         * thingatpt.el (thing-at-point-short-url-regexp): Require that
21347         short URLs have at least one dot in them (bug #7614).
21349         * progmodes/grep.el (rgrep): Bind `process-connection-type' to
21350         nil, because using a pty is apparently too slow (bug #895).
21352 2011-06-29  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21354         * mail/sendmail.el (sendmail-query-once): New function.
21355         (sendmail-query-once-function): New variable.
21357 2011-06-29  Glenn Morris  <rgm@gnu.org>
21359         * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
21361         * ses.el (top-level): Require cl when compiling.
21362         (ses-set-localvars): Fix error statement.
21363         Call it at compile time to silence a storm of warnings.
21365 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
21367         * window.el (normalize-live-buffer): Rename to
21368         window-normalize-buffer.
21369         (normalize-live-frame): Rename to window-normalize-frame.
21370         (normalize-any-window): Rename to window-normalize-any-window.
21371         (normalize-live-window): Rename to window-normalize-live-window.
21372         (make-window-atom): Rename to window-make-atom.
21373         (window-resize-reset): Rename to window--resize-reset.
21374         (window-resize-reset-1): Rename to window--resize-reset-1.
21375         (resize-mini-window): Rename to window--resize-mini-window.
21376         (resize-subwindows-skip-p): Rename to
21377         window--resize-subwindows-skip-p.
21378         (resize-subwindows-normal): Rename to
21379         window--resize-subwindows-normal.
21380         (resize-subwindows): Rename to window--resize-subwindows.
21381         (resize-other-windows): Rename to window--resize-siblings.
21382         (resize-this-window): Rename to window--resize-this-window.
21383         (resize-root-window): Rename to window--resize-root-window.
21384         (resize-root-window-vertically): Rename to
21385         window--resize-root-window-vertically.
21386         (normalize-buffer-to-display): Rename to
21387         window-normalize-buffer-to-display.
21388         (normalize-buffer-to-switch-to): Rename to
21389         window-normalize-buffer-to-switch-to.
21390         Correspondingly update all callers of the functions listed
21391         above.
21392         (display-buffer-alist, display-buffer-normalize-arguments)
21393         (display-buffer-normalize-options, display-buffer)
21394         (display-buffer-alist-set): Use "function" instead of
21395         "fun-with-args".
21397 2011-06-28  Chong Yidong  <cyd@stupidchicken.com>
21399         * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
21400         addresses more clearly.  Add hyperlinks for bug-gnu-emacs and
21401         debbugs.gnu.org.  Mention acknowledgment email.
21403 2011-06-28  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21405         * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
21406         buffer multibyteness, since it shouldn't matter.
21408 2011-06-28  Martin Rudalics  <rudalics@gmx.at>
21410         * window.el (display-buffer-in-side-window): Handle dedicated
21411         windows as in display-buffer-reuse-window.
21412         (display-buffer-normalize-alist): Use value of override
21413         specifier.
21414         (display-buffer-normalize-specifiers): Use value of
21415         other-window-means-other-frame specifier.
21416         (display-buffer-alist): Rewrite some texts in widgets.
21417         (display-buffer): Spread arguments when calling function
21418         specified by fun-with-args.
21420 2011-06-28  Deniz Dogan  <deniz@dogan.se>
21422         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
21423         Unnest `let'.
21425         * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
21426         selectors (Bug#5732).
21427         (css-proprietary-nmstart-re): Use `regexp-opt'.
21429 2011-06-27  Jari Aalto  <jari.aalto@cante.net>
21431         * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
21432         (eshell-ls-date-format): New defcustom.
21433         (eshell-ls-file): Use it.
21435 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21437         * help-fns.el (describe-variable): Fix message for terminal-local vars.
21439 2011-06-27  Katsumi Yamaoka  <yamaoka@jpl.org>
21441         * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
21442         (ange-ftp-make-tmp-name): New arg.
21443         (ange-ftp-file-local-copy): Use it.
21445 2011-06-27  Jambunathan K  <kjambunathan@gmail.com>
21447         * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
21448         no-conversion (Bug#8870).
21450 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
21452         * window.el (window-right, window-left, window-child)
21453         (window-child-count, window-last-child)
21454         (window-iso-combination-p, walk-window-tree-1)
21455         (window-atom-check-1, window-tree-1, delete-window)
21456         (window-state-get-1, display-buffer-even-window-sizes): Adapt to
21457         new naming conventions - window-vchild, window-hchild,
21458         window-next and window-prev are now called window-top-child,
21459         window-left-child, window-next-sibling and window-prev-sibling
21460         respectively.
21461         (resize-window-reset): Rename to window-resize-reset.
21462         (resize-window-reset-1): Rename to window-resize-reset-1.
21463         (resize-window): Rename to window-resize.
21464         (window-min-height, window-min-width)
21465         (resize-mini-window, resize-this-window, resize-root-window)
21466         (resize-root-window-vertically, adjust-window-trailing-edge)
21467         (enlarge-window, shrink-window, maximize-window)
21468         (minimize-window, delete-window, quit-restore-window)
21469         (split-window, balance-windows, balance-windows-area-adjust)
21470         (balance-windows-area, window-state-put-2)
21471         (display-buffer-even-window-sizes, display-buffer-set-height)
21472         (display-buffer-set-width, set-window-text-height)
21473         (fit-window-to-buffer): Rename all "resize-window" prefixed
21474         calls to use the "window-resize" prefix convention.
21475         (display-buffer-alist): Fix symbol for label specifier.
21476         (display-buffer-reuse-window): Set reuse-dedicated to cdr of
21477         corresponding specifier.
21478         Reported by Juanma Barranquero <lekktu@gmail.com>.
21480 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
21482         * ses.el (ses-destroy-cell-variable-range): Fix heading comment
21483         convention.
21484         (ses-call-printer): Does not pass an empty string to formatter when the
21485         cell is empty to keep from barking printer Calc math-format-value.
21487 2011-06-27  Richard Stallman  <rms@gnu.org>
21489         * battery.el (battery-mode-line-limit): New variable.
21490         (battery-update): Handle it.
21492         * mail/rmailmm.el (rmail-mime-process-multipart):
21493         Handle truncated messages.
21495 2011-06-27  Glenn Morris  <rgm@gnu.org>
21497         * progmodes/flymake.el (flymake-err-line-patterns):
21498         Allow for column numbers in the ant/javac pattern.  (Bug#8866)
21500 2011-06-27  Vincent Belaïche  <vincentb1@users.sourceforge.net>
21502         * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
21503         (ses--clean-!, ses--clean-_): New functions.
21504         (ses-range): Add configurability of readout order, and conversion
21505         to Calc vector.
21507         * ses.el (ses-repair-cell-reference-all): New function.
21508         (ses-cell-symbol): Set macro as safe, so that it can be used in
21509         formulas.
21511         * ses.el: Update cycle detection algorithm.
21512         (ses-localvars): Add ses--Dijkstra-attempt-nb and
21513         ses--Dijkstra-weight-bound, and initial values thereof when applicable.
21514         (ses-set-localvars): New function.
21515         (ses-make-cell): Add property-list as a cell element.
21516         (ses-cell-property-get-fun, ses-cell-property-get)
21517         (ses-cell-property-delq-fun, ses-cell-property-set-fun)
21518         (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
21519         New functions.
21520         (ses-cell-property-set, ses-cell-property-pop)
21521         (ses-cell-property-get-handle): New macro.
21522         (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
21523         New aliases, used for code readability.
21524         (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
21525         cycle detection.
21526         (ses-self-reference-early-detection): New defcustom.
21527         (ses-formula-references): Robustify against self-referring cells.
21528         (ses-mode): Use ses-set-localvars.
21529         (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
21530         before lauching the update processing.
21531         (ses-initialize-Dijkstra-attempt): New function.
21532         (ses-recalculate-cell): Update for cycle detection based on
21533         Dijkstra algorithm.
21535         * ses.el: Fix commenting and indenting convention.
21537 2011-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21539         * bs.el (bs-cycle-next): Complete last change.
21541 2011-06-27  Drew Adams  <drew.adams@oracle.com>
21543         * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
21545 2011-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21547         * net/network-stream.el (network-stream-open-starttls):
21548         Don't re-get capabilities unless we've reestablished connection.
21549         (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
21551         * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
21552         to binary to possibly avoid line encoding issues on Windows (among
21553         other things).
21555 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21557         * net/network-stream.el (open-network-stream): Return an :error
21558         saying what the problem was, if possible.
21560         * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
21561         server.
21563         * net/network-stream.el (network-stream-open-starttls): If we
21564         wanted to use STARTTLS, and the server offered it, but we weren't
21565         able to because we had no STARTTLS support, then close the connection.
21566         (open-network-stream): Return an :error element, if present.
21568 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
21570         * hl-line.el (hl-line-sticky-flag): Doc fix.
21571         (global-hl-line-sticky-flag): New option (Bug#8323).
21572         (global-hl-line-highlight): Obey it.
21574         * vc/vc.el (vc-revert-show-diff): Default to t.
21576 2011-06-26  Ken Manheimer  <ken.manheimer@gmail.com>
21578         * allout-widgets.el (allout-widgets-post-command-business):
21579         Stop decorating intermediate isearch matches.  They're not being
21580         undecorated when an isearch is continued past, and isearch
21581         automatically collapses them.  This leads to "widget leaks", where
21582         decorated items accumulate in collapsed areas.  Lines with lots of
21583         hidden widgets can slow down cursor travel, substantially.
21584         Too much complicated machinery would be needed to ensure undecoration,
21585         so we're doing without this nicety.
21587         (allout-widgets-tally-string): Don't try to do a hash-table-count
21588         of allout-widgets-tally when it's nil.  This eliminates spurious "Error
21589         during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
21590         *Messages* when allout-widgets-maintain-tally is t.
21592 2011-06-26  Martin Rudalics  <rudalics@gmx.at>
21594         * window.el (display-buffer-normalize-argument): Rename to
21595         display-buffer-normalize-arguments.  Handle special meaning of
21596         LABEL argument.  Respect special-display-function when popping up
21597         a new frame.  Fix code searching for a window showing the buffer
21598         on another frame.
21599         (display-buffer-normalize-specifiers):
21600         Call display-buffer-normalize-arguments.
21601         (display-buffer-in-window): Don't undedicate the window if its
21602         buffer remains the same.
21603         Reported by Drew Adams <drew.adams@oracle.com>.
21604         (display-buffer-alist): Add choice for same-window macro
21605         specfier.
21606         (display-buffer): Mention special meaning of LABEL argument in
21607         doc-string.  Fix quoting.  Don't pop up a new frame even as
21608         fallback.
21610 2011-06-26  Juanma Barranquero  <lekktu@gmail.com>
21612         * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
21613         avoid deleting the current window in some cases (bug#8911).
21615 2011-06-26  Andreas Schwab  <schwab@linux-m68k.org>
21617         * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
21618         (Bug#8934)
21620 2011-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21622         * net/network-stream.el (network-stream-open-starttls):
21623         Use built-in TLS support if `gnutls-available-p' is true.
21624         (network-stream-open-tls): Ditto.
21626 2011-06-26  Leo Liu  <sdl.web@gmail.com>
21628         * register.el (registerv): New struct.
21629         (registerv-make): New function.
21630         (jump-to-register, describe-register-1, insert-register):
21631         Support the jump-func, print-func and insert-func slot of a registerv
21632         struct.  (Bug#8415)
21634 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
21636         * vc/vc.el (vc-revert-show-diff): New defcustom.
21637         (vc-diff-internal): New arg specifying diff buffer.
21638         (vc-revert): Obey vc-revert-show-diff.  If we show a diff, don't
21639         reuse an existing *vc-diff* buffer (Bug#8927).
21641         * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
21643 2011-06-26  Glenn Morris  <rgm@gnu.org>
21645         * progmodes/f90.el (f90-critical-indent): New option.
21646         (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
21647         (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
21648         (f90-mode): Doc fix.
21649         (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
21650         (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
21651         (f90-beginning-of-block, f90-next-block, f90-indent-region)
21652         (f90-match-end): Handle block, critical.
21654 2011-06-25  Glenn Morris  <rgm@gnu.org>
21656         * calendar/diary-lib.el (diary-included-files): Doc fix.
21657         (diary-include-files): New function, extracted from
21658         diary-include-other-diary-files and diary-mark-included-diary-files.
21659         (diary-include-other-diary-files, diary-mark-included-diary-files):
21660         Just call diary-include-files.
21661         (diary-mark-entries): Reset diary-included-files on first call.
21663         * calendar/diary-lib.el (diary-mark-entries)
21664         (diary-mark-included-diary-files):
21665         Visit included diary-files in temp buffers.
21667         * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
21668         (f90-blocks-re, f90-program-block-re, f90-end-block-re)
21669         (f90-start-block-re, f90-imenu-generic-expression)
21670         (f90-looking-at-program-block-start, f90-no-block-limit):
21671         Add support for submodules.
21673         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
21674         (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
21676 2011-06-25  Eli Zaretskii  <eliz@gnu.org>
21678         * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
21679         buffer-file-type before setting its value, to avoid disastrous
21680         global effects on decoding files for DOS/Windows systems.  (Bug#8780)
21682 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
21684         * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
21686         * ses.el (ses-unload-function):
21687         * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
21689         * proced.el (proced-unload-function):
21690         * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
21692 2011-06-25  Andreas Rottmann  <a.rottmann@gmx.at>
21694         * server.el (server-create-window-system-frame): Add parameters arg.
21695         (server-process-filter): Doc fix.  Handle frame-parameters.
21697 2011-06-25  Juanma Barranquero  <lekktu@gmail.com>
21699         Fix bug#8730, bug#8781.
21701         * loadhist.el (unload--set-major-mode): New function.
21702         (unload-feature): Use it.
21704         * progmodes/python.el (python-after-info-look): Add autoload cookie.
21705         (python-unload-function): New function.
21707 2011-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21709         * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
21711 2011-06-25  Giuseppe Scrivano  <gscrivano@gnu.org>
21713         * net/browse-url.el (browse-url-firefox-program): Add icecat to
21714         the candidates list.
21716 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
21718         * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
21720 2011-06-23  Richard Stallman  <rms@gnu.org>
21722         * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
21723         (rmail-variables): Set next-error-move-function.
21724         (rmail-what-message): Take argument POS.
21725         (rmail-next-error-move): New function.
21727 2011-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
21729         * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
21730         messages for adjacent non-terminals.
21732 2011-06-23  Richard Stallman  <rms@gnu.org>
21734         * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
21735         (rmail-show-message-1): Preserve buffer modified flag.
21736         (rmail-start-mail): Don't specify use of rmail-mail-return;
21737         that's done by mail-bury now.
21738         (rmail-mail-return): Handle arg NEWBUF.
21740 2011-06-23  Michael Albinus  <michael.albinus@gmx.de>
21742         * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
21743         SIZE is a number.
21745 2011-06-23  Martin Rudalics  <rudalics@gmx.at>
21747         * window.el (get-lru-window, get-mru-window)
21748         (get-largest-window): Never return a minibuffer window.
21749         (display-buffer-pop-up-window): Fix a bug that could lead to
21750         reusing the minibuffer window.
21751         (display-buffer): Pass original specifier argument to
21752         display-buffer-function instead of the normalized one.
21753         Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
21755 2011-06-22  Leo Liu  <sdl.web@gmail.com>
21757         * minibuffer.el (completing-read-function)
21758         (completing-read-default): Move from minibuf.c.
21760 2011-06-22  Richard Stallman  <rms@gnu.org>
21762         * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
21763         to Rmail even if not started by a special Rmail command.
21765         * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
21766         Copy the buffer currently showing just one message.
21768 2011-06-22  Roland Winkler  <winkler@gnu.org>
21770         * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
21771         (bibtex-clean-entry): First delete the old key so that a
21772         customized algorithm for generating the new key does not get
21773         confused by the old key.
21774         (bibtex-url): Obey regexp of first step.
21775         (bibtex-search-entries): Do not use add-to-list with local
21776         list-var.
21778 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21780         * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
21781         stored a user name, then query for the password first, instead of
21782         waiting for SMTP to give an error message and the trying again.
21784 2011-06-22  Lawrence Mitchell  <wence@gmx.li>
21786         * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
21787         BUFFER in call-process.
21789 2011-06-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21791         * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
21792         QUIT twice.
21793         (smtpmail-try-auth-methods): Require user name and password from
21794         auth-source.
21796 2011-06-22  Martin Rudalics  <rudalics@gmx.at>
21798         * window.el (display-buffer-default-specifiers)
21799         (display-buffer-alist): Remove entries for pop-up-frame-alist.
21800         Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
21801         (split-window): Normalize SIDE argument (Bug#8916).
21803         * frame.el (pop-up-frame-alist, pop-up-frame-function)
21804         (special-display-frame-alist, special-display-popup-frame):
21805         Remove duplicate declarations.  These are now in window.el.
21807 2011-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21809         * mail/smtpmail.el (smtpmail-via-smtp):
21810         Set :use-starttls-if-possible so that we always use STARTTLS if the
21811         server supports it.  SMTP servers that support STARTTLS commonly
21812         require it.
21814         * net/network-stream.el (network-stream-open-starttls): Support
21815         upgrading to STARTTLS always, even if we don't have built-in support.
21816         (open-network-stream): Add the :always-query-capabilities keyword.
21818         * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
21819         upgrades with `open-network-stream', and rely solely on
21820         auth-source for all credentials.  Big changes throughout the file,
21821         but in particular:
21822         (smtpmail-auth-credentials): Remove.
21823         (smtpmail-starttls-credentials): Remove.
21824         (smtpmail-via-smtp): Check for servers saying they want AUTH after
21825         MAIL FROM, too.
21827         * net/network-stream.el (network-stream-open-starttls):
21828         Provide support for client certificates both for external and built-in
21829         STARTTLS.
21830         (auth-source): Require.
21831         (open-network-stream): Document the :client-certificate keyword.
21832         (network-stream-certificate): Change cert-cert to cert and
21833         cert-key to key.
21835 2011-06-21  Michael Albinus  <michael.albinus@gmx.de>
21837         * net/tramp-cache.el (top): Don't load the persistency file when
21838         "emacs -Q" has been called.
21840 2011-06-21  Tim Harper  <timcharper@gmail.com>
21842         * term/ns-win.el (ns-initialize-window-system):
21843         Set application-specific `ApplePressAndHoldEnabled' system
21844         resource to NO as it is not yet supported by the NS port.
21846 2011-06-21  Juanma Barranquero  <lekktu@gmail.com>
21848         * misc.el (list-dynamic-libraries--refresh): Compute header here...
21849         (list-dynamic-libraries): ...not here.
21851 2011-06-21  Leo Liu  <sdl.web@gmail.com>
21853         * subr.el (sha1): Implement sha1 using secure-hash.
21855 2011-06-21  Martin Rudalics  <rudalics@gmx.at>
21857         * window.el (display-buffer-alist): In default value do not
21858         enforce searching a window on any but the selected frame.
21859         Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
21860         (display-buffer-select-window): Remove function.
21861         (display-buffer-in-window): When a window on another frame gets
21862         reused, do not select it any more but just raise its frame if
21863         necessary (Bug#8851) and (Bug#8856).
21864         (display-buffer-normalize-options): Handle pop-up-frames related
21865         options more faithfully.
21866         (pop-to-buffer): Don't rely on `display-buffer' selecting the
21867         window if it is on another frame.
21868         (display-buffer-alist, display-buffer-default-specifiers):
21869         Don't make new frame unsplittable by default.
21870         (display-buffer-normalize-argument): Fix doc-string typo and use
21871         'same-frame-other-window instead of 'other-window when associating
21872         with display-buffer-macro-specifiers.
21874 2011-06-21  Vincent Belaïche  <vincent.b.1@hotmail.fr>
21876         * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
21877         New functions.
21878         (5x5-mode-map, 5x5-mode-menu): Bind them.
21879         (5x5-draw-grid): Tweak the solver's rendering.
21881 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21883         * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
21884         `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
21886 2011-06-21  Drew Adams  <drew.adams@oracle.com>
21888         * menu-bar.el: Use function variable instead of switch-to-buffer.
21889         (menu-bar-select-buffer-function): New variable.
21890         (menu-bar-update-buffers): Use it (bug#8876).
21892 2011-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21894         * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
21895         variable's status.
21897 2011-06-20  Jan Djärv  <jan.h.d@swipnet.se>
21899         * x-dnd.el (x-dnd-version-from-flags)
21900         (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
21901         and long as number (Bug#8899).
21902         (x-dnd-handle-xdnd): Call functions above (Bug#8899).
21904 2011-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21906         * minibuffer.el (completion-metadata): Add `metadata' to the alist.
21907         (completion-try-completion, completion-all-completions): Compute the
21908         metadata argument if it's missing; make it optional (bug#8795).
21910         * wid-edit.el: Use lex-bind and move towards completion-at-point.
21911         (widget-complete): Use new :completion-function property.
21912         (widget-completions-at-point): New function.
21913         (default): Use :completion-function instead of :complete.
21914         (widget-default-completions): Rename from widget-default-complete;
21915         Rewrite.
21916         (widget-string-complete, widget-file-complete, widget-color-complete):
21917         Remove functions.
21918         (file, symbol, function, variable, coding-system, color):
21919         * international/mule-cmds.el (default-input-method, charset)
21920         (language-info-custom-alist):
21921         * cus-edit.el (face): Use new property :completions.
21923         * progmodes/pascal.el (pascal-completions-at-point): New function.
21924         (pascal-mode): Use it.
21925         (pascal-mode-map): Use completion-at-point.
21926         (pascal-toggle-completions): Make obsolete.
21927         (pascal-complete-word, pascal-show-completions):
21928         * progmodes/octave-mod.el (octave-complete-symbol):
21929         Redefine as obsolete alias.
21930         * progmodes/octave-inf.el (inferior-octave-completion-at-point):
21931         Signal absence of completion info for old Octave,
21932         (inferior-octave-complete): Redefine as obsolete alias.
21933         * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
21934         (meta-completions-at-point): Rename from meta-complete-symbol and
21935         adapt it for use on completion-at-point-functions.
21936         (meta-common-mode): Use it.
21937         (meta-looking-at-backward, meta-match-buffer): Remove.
21938         (meta-complete-symbol): Redefine as obsolete alias.
21939         (meta-common-mode-map): Use completion-at-point.
21940         * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
21941         (makefile-mode-map): Use completion-at-point.
21942         (makefile-completions-at-point): Rename from makefile-complete and
21943         adapt it for use on completion-at-point-functions.
21944         (makefile-mode): Use it.
21945         (makefile-complete): Redefine as obsolete alias.
21947 2011-06-20  Deniz Dogan  <deniz@dogan.se>
21949         * net/rcirc.el: Delete trailing whitespaces once and for all.
21951 2011-06-20  Daniel Colascione  <dan.colascione@gmail.com>
21953         * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
21955 2011-06-19  Chong Yidong  <cyd@stupidchicken.com>
21957         * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
21959         * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
21961 2011-06-19  Martin Rudalics  <rudalics@gmx.at>
21963         * window.el (display-buffer-other-window-means-other-frame):
21964         Call display-buffer-normalize-alist.
21965         (display-buffer-normalize-specifiers-1): Rename to
21966         display-buffer-normalize-argument.  New argument other-frame.
21967         Rewrite.
21968         (display-buffer-normalize-specifiers-2): Rename to
21969         display-buffer-normalize-options.
21970         (display-buffer-normalize-alist-1): New function.
21971         (display-buffer-normalize-specifiers-3): Rename to
21972         display-buffer-normalize-alist.
21973         Call display-buffer-normalize-alist-1.
21974         (display-buffer-normalize-options-inhibit): New variable.
21975         (display-buffer-normalize-specifiers): Rewrite calling
21976         display-buffer-normalize-alist,
21977         display-buffer-normalize-argument, and
21978         display-buffer-normalize-options.  Don't call the latter if
21979         display-buffer-normalize-options-inhibit is non-nil.
21980         (frame-auto-delete): New option.
21981         (window-deletable-p): Use frame-auto-delete.
21982         (window-list-no-nils, window-state-ignored-parameters)
21983         (window-state-get-1, window-state-get, window-state-put-list)
21984         (window-state-put-1, window-state-put-2, window-state-put):
21985         New functions.
21986         (display-buffer-normalize-options): Move special-display-p group
21987         after pop-up-frame group (Bug#8851) and (Bug#8856).
21989 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
21991         * emacs-lisp/rx.el (rx-constituents): Add support for numbered
21992         groups (Bug#8776).
21993         (rx-submatch-n): New function.
21994         (rx): Document it.
21996         * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
21997         (Bug#8768).
21999         * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
22001         * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
22003         * cus-face.el (custom-declare-face): Call custom-theme-recalc face
22004         anytime existing face settings are present (Bug#8889).
22006         * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
22007         (delphi-mode): Use define-derived-mode to inherit from prog-mode.
22008         Remove unused argument.
22010 2011-06-18  Martin Rudalics  <rudalics@gmx.at>
22012         * window.el (display-buffer-default-specifiers):
22013         Remove pop-up-frame.  Add pop-up-window-min-height,
22014         pop-up-window-min-width, and another reuse-window specifier
22015         (Bug#8882).  Reported by Dan Nicolaescu <dann@gnu.org>.
22016         (display-buffer-normalize-specifiers-2):
22017         Handle split-height-threshold and split-width-threshold also when
22018         pop-up-windows is unset.  Add a reuse-window specifier for the
22019         case popping up a new window fails.
22020         (special-display-popup-frame): Remove double quoting.
22021         (display-buffer-normalize-specifiers-1): Fix thinko.
22023 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22025         * shell.el (shell-completion-vars): Set pcomplete-termination-string
22026         according to comint-completion-addsuffix.
22028         * pcomplete.el: Convert to lexical binding and fix bug#8819.
22029         (pcomplete-suffix-list): Mark as obsolete.
22030         (pcomplete-completions-at-point): Capture pcomplete-norm-func and
22031         pcomplete-seen in the closure.
22032         (pcomplete-comint-setup): Setup completion-at-point as well.
22033         (pcomplete--entries): New function.
22034         (pcomplete--env-regexp): New var.
22035         (pcomplete-entries): Rewrite to work with partial-completion and
22036         without relying on pcomplete-suffix-list.
22037         (pcomplete-pare-list): Remove, unused.
22039 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
22041         * window.el (display-buffer-alist): Set pop-up-window-min-height
22042         and pop-up-window-min-width in default value.  Reported by
22043         Thierry Volpiatto <thierry.volpiatto@gmail.com>.  New specifier
22044         other-window-means-other-frame.
22045         (display-buffer-macro-specifiers): Comment out entry for
22046         other-window specifier.
22047         (display-buffer-other-window-means-other-frame): New function.
22048         (display-buffer-normalize-specifiers-1): New arguments
22049         buffer-name and label.  Treat other-window case specially.
22050         (display-buffer-normalize-specifiers-2): Treat other-window case
22051         specially.
22052         (display-buffer-normalize-specifiers-3): New function.
22053         (display-buffer-normalize-specifiers):
22054         Call display-buffer-normalize-specifiers-3.
22056 2011-06-17  Martin Rudalics  <rudalics@gmx.at>
22058         * window.el (same-window-p): Fix two typos introduced when
22059         adding with-no-warnings.
22060         (display-buffer-normalize-specifiers-1): Don't check
22061         pop-up-frames for 'unset initialization.
22062         (display-buffer-normalize-specifiers-2): Major rewrite using
22063         special-display-p and same-window-p (Bug#8851) and (Bug#8856).
22064         (pop-up-frames, display-buffer-reuse-frames)
22065         (display-buffer-mark-dedicated): Don't initialize to 'unset.
22066         Suggested by David Engster <deng@randomsample.de>.
22067         (even-window-heights): Initialize to 'unset.
22068         (display-buffer-alist-set): Handle new 'unset initializations.
22069         (display-buffer-macro-specifiers): Don't pop up a new frame in the
22070         other window case.
22072 2011-06-16  Martin Rudalics  <rudalics@gmx.at>
22074         * window.el (display-buffer-normalize-specifiers-1):
22075         Respect current value of pop-up-frames for most reasonable values of
22076         second argument of display-buffer (Bug#8865).
22077         (switch-to-buffer-same-frame, switch-to-buffer-other-window)
22078         (switch-to-buffer-other-window-same-frame)
22079         (switch-to-buffer-other-frame): Fix doc-strings.  Reported by Drew
22080         Adams (Bug#8875).
22081         (display-buffer): Don't check noninteractive when calling
22082         display-buffer-pop-up-frame.
22083         (display-buffer-pop-up-frame): Never pop up a frame in
22084         noninteractive mode (Bug#8857).
22085         (enlarge-window, shrink-window): Don't report an error when the
22086         window can't be resized as requested (Bug#8862).
22088 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22090         * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
22092         * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
22094         * abbrev.el (define-abbrev-table): Don't add a table multiple times.
22096 2011-06-15  Alan Mackenzie  <acm@muc.de>
22098         * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
22099         for declarators, disable knr checking to speed up for normal files.
22100         2: Refactor, replacing a sequence of nested if forms by a cond form.
22102 2011-06-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22104         * net/network-stream.el (open-network-stream): Add the keyword
22105         :always-query-capabilities for the case where you want to force a
22106         `plain' network connection, but the protocol still requires the
22107         capabilitiy command (i.e., SMTP and EHLO).
22109         * subr.el (process-live-p): Rename from `process-alive-p' for
22110         consistency with other `-live-p' functions.
22112 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22114         * window.el (same-window-buffer-names, same-window-regexps)
22115         (special-display-frame-alist, special-display-popup-frame)
22116         (special-display-function, special-display-buffer-names)
22117         (special-display-regexps, pop-up-frame-alist)
22118         (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
22119         (pop-up-windows, split-window-preferred-function)
22120         (split-height-threshold, split-width-threshold, even-window-heights)
22121         (display-buffer-mark-dedicated): Don't encourage the use of
22122         display-buffer-alist from Elisp code.
22124 2011-06-15  Dan Nicolaescu  <dann@ics.uci.edu>
22126         * progmodes/python.el (python-mode): Derive from prog-mode.
22127         * progmodes/ps-mode.el (ps-mode):
22128         * progmodes/mixal-mode.el (mixal-mode):
22129         * progmodes/cfengine.el (cfengine-mode):
22130         * progmodes/ld-script.el (ld-script-mode): Likewise.
22132 2011-06-15  Martin Rudalics  <rudalics@gmx.at>
22134         * window.el (display-buffer-alist): Trim default value to avoid
22135         popping up a new frame (Bug#8857) or reusing an arbitrary window
22136         on another frame.
22137         (display-buffer): Do not fall back on popping up a new frame in
22138         batch mode (Bug#8857).
22140 2011-06-14  Chong Yidong  <cyd@stupidchicken.com>
22142         * cus-theme.el (describe-theme-1): Use custom-theme-p.
22143         (custom-theme-summary): New function.
22144         (customize-themes): Use it.
22146 2011-06-13  Glenn Morris  <rgm@gnu.org>
22148         * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
22150 2011-06-13  Martin Rudalics  <rudalics@gmx.at>
22152         * help.el (help-window): Remove variable.
22153         (help-window-point-marker, temp-buffer-max-height)
22154         (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
22155         (help-print-return-message): Don't set help-window.
22156         (resize-temp-buffer-window): Rewrite cod eand doc-string.
22157         (help-window-setup-finish): Remove.
22158         (help-window-display-message, help-window-setup)
22159         (with-help-window): Major rewrite based on new
22160         display-buffer-window variable.
22162         * help-mode.el (help-mode-finish): Remove help-window related
22163         code.
22165         * view.el (view-exits-all-viewing-windows): Remove reference to
22166         view-return-to-alist in doc-string.
22167         (view-return-to-alist): Make obsolete.
22168         (view-buffer): Call pop-to-buffer-same-window and remove
22169         undo-window code.
22170         (view-buffer-other-window): Call pop-to-buffer-other-window and
22171         simplify code.  Ignore second argument.
22172         (view-buffer-other-frame): Call pop-to-buffer-other-frame and
22173         simplify code.  Ignore second argument.
22174         (view-return-to-alist-update): Make obsolete.
22175         (view-mode-enter): Rename second argument to QUIT-RESTORE.
22176         Rewrite using quit-restore window parameters.
22177         (view-mode-exit): Rename second argument to EXIT-ONLY.
22178         Rewrite using quit-restore-window.
22179         (View-exit, View-exit-and-edit, View-leave, View-quit)
22180         (View-quit-all, View-kill-and-leave): Call view-mode-exit with
22181         appropriate arguments.
22182         (view-end-message): Use quit-restore window parameter.
22184         * window.el (display-buffer-function): Rewrite doc-string.
22185         (display-buffer-window, display-buffer-alist): New variables.
22186         (display-buffer-split-specifiers)
22187         (display-buffer-side-specifiers)
22188         (display-buffer-macro-specifiers): New constants.
22189         (display-buffer-even-window-sizes, display-buffer-set-height)
22190         (display-buffer-set-width, display-buffer-select-window)
22191         (display-buffer-in-window, display-buffer-reuse-window)
22192         (display-buffer-split-window-1, display-buffer-split-window)
22193         (display-buffer-split-atom-window, display-buffer-pop-up-window)
22194         (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
22195         (display-buffer-in-side-window, normalize-buffer-to-display)
22196         (display-buffer-normalize-specifiers-1)
22197         (display-buffer-normalize-specifiers-2)
22198         (display-buffer-normalize-specifiers, display-buffer-frame):
22199         New functions.
22200         (display-buffer): Major rewrite.
22201         (display-buffer-other-window, display-buffer-other-frame)
22202         (pop-to-buffer, switch-to-buffer-other-window)
22203         (switch-to-buffer-other-frame): Rewrite.
22204         (display-buffer-same-window, display-buffer-same-frame)
22205         (display-buffer-same-frame-other-window)
22206         (pop-to-buffer-same-window, pop-to-buffer-same-frame)
22207         (pop-to-buffer-other-window)
22208         (pop-to-buffer-same-frame-other-window)
22209         (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
22210         (switch-to-buffer-other-window-same-frame): New functions.
22211         (same-window-p, special-display-p): Rewrite disabling warnings.
22212         Make obsolete.
22213         (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
22214         (display-buffer-mark-dedicated): Initialize to symbol 'unset.
22215         Make obsolete
22216         (same-window-buffer-names, same-window-regexps)
22217         (special-display-frame-alist, special-display-popup-frame)
22218         (special-display-function, special-display-buffer-names)
22219         (special-display-regexps, pop-up-frame-alist)
22220         (pop-up-frame-function, split-window-preferred-function)
22221         (split-height-threshold, split-width-threshold)
22222         (even-window-heights): Make obsolete.
22224 2011-06-12  Glenn Morris  <rgm@gnu.org>
22226         * term/xterm.el (terminal-init-xterm): `version' may be nil.  (Bug#8838)
22227         Misc simplifications.
22229 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
22231         * window.el (window-safely-shrinkable-p): Restore function which
22232         was inadvertently removed in change from 2011-06-11.  Declare as
22233         obsolete.
22235         * calendar/calendar.el (calendar-generate-window):
22236         Use window-iso-combined-p instead of combination of one-window-p and
22237         window-safely-shrinkable-p.
22239 2011-06-12  Glenn Morris  <rgm@gnu.org>
22241         * progmodes/fortran.el (fortran-mode-syntax-table):
22242         * progmodes/f90.el (f90-mode-syntax-table):
22243         Set % to punctuation.  (Bug#8820)
22244         (f90-find-tag-default): Remove, no longer needed.
22246 2011-06-12  Daniel Colascione  <dan.colascione@gmail.com>
22248         * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
22250 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
22252         * image.el (image-animated-p): Return animation delay in seconds.
22253         Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
22254         (image-animate-timeout): Remove DELAY argument.  Don't assume
22255         every subimage has the same delay; get it from image-animated-p.
22256         (image-animate): Caller changed.
22258 2011-06-11  Michael Albinus  <michael.albinus@gmx.de>
22260         * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
22261         to ignored backtrace functions.
22263 2011-06-11  Glenn Morris  <rgm@gnu.org>
22265         * calendar/appt.el (appt-disp-window-function): Doc fix.
22266         (appt-check): Handle overlapping appointments.  (Bug#8337)
22268 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
22270         * window.el (window-tree-1, window-tree): New functions, moving
22271         the latter to window.el.
22272         (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
22273         (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
22274         (bw-refresh-edges): Remove.
22275         (balance-windows-1, balance-windows-2): New functions.
22276         (balance-windows): Rewrite in terms of window tree functions,
22277         balance-windows-1 and balance-windows-2.
22278         (bw-adjust-window): Remove.
22279         (balance-windows-area-adjust): New function with functionality of
22280         bw-adjust-window but using resize-window.
22281         (set-window-text-height): Rewrite doc-string.
22282         Use normalize-live-window and resize-window.
22283         (enlarge-window-horizontally, shrink-window-horizontally):
22284         Rename argument to DELTA.
22285         (window-buffer-height): New function.
22286         (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
22287         Rewrite using new window resize routines.
22288         (kill-buffer-and-window, mouse-autoselect-window-select):
22289         Use ignore-errors instead of condition-case.
22290         (quit-window): Call delete-frame instead of delete-windows-on
22291         for the only buffer on frame.
22293 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
22295         * loadup.el (top-level): Load window before files for the sake
22296         of replace-buffer-in-windows.
22298         * files.el (read-buffer-to-switch)
22299         (switch-to-buffer-other-window)
22300         (switch-to-buffer-other-frame, display-buffer-other-frame):
22301         Move to window.el.
22303         * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
22304         (previous-buffer): Move to window.el.
22306         * bindings.el (unbury-buffer): Move to window.el.
22308         * window.el (delete-other-windows-vertically): Move after
22309         definition of delete-other-windows.
22310         (other-window, delete-windows-on, replace-buffer-in-windows):
22311         Move here from window.c.
22312         (record-window-buffer, unrecord-window-buffer)
22313         (set-window-buffer-start-and-point, switch-to-prev-buffer)
22314         (switch-to-next-buffer): New functions.
22315         (get-next-valid-buffer, last-buffer, next-buffer): Move here
22316         from simple.el.  Call switch-to-next-buffer.
22317         (previous-buffer): Move here from simple.el.
22318         Call switch-to-prev-buffer.
22319         (bury-buffer): Move here from buffer.c.  Switch to previous
22320         buffer when window cannot be deleted.
22321         (unbury-buffer): Move here from bindings.el.
22322         (ctl-x-map): Move binding for other-window from window.c to
22323         here.
22324         (read-buffer-to-switch, switch-to-buffer-other-window)
22325         (switch-to-buffer-other-frame): Move here from files.el.
22326         (normalize-buffer-to-switch-to): New functions.
22327         (switch-to-buffer): Move here from buffer.c.
22328         Use read-buffer-to-switch and normalize-buffer-to-switch-to.
22330 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
22332         * window.el (window-min-height, window-min-width): Move here
22333         from window.c.  Add defcustoms and rewrite doc-strings.
22334         (resize-mini-window, resize-window): New functions.
22335         (adjust-window-trailing-edge, enlarge-window, shrink-window):
22336         Move here from window.c.
22337         (maximize-window, minimize-window): New functions.
22338         (delete-window, delete-other-windows, split-window): Move here
22339         from window.c.
22340         (window-split-min-size): New function.
22341         (split-window-keep-point): Mention split-window-above-each-other
22342         instead of split-window-vertically.
22343         (split-window-above-each-other, split-window-vertically):
22344         Rename split-window-vertically to split-window-above-each-other
22345         and provide defalias for old definition.
22346         (split-window-side-by-side, split-window-horizontally):
22347         Rename split-window-horizontally to split-window-side-by-side
22348         and provide defalias for the old definition.
22349         (ctl-x-map): Move bindings for delete-window,
22350         delete-other-windows and enlarge-window here from window.c.
22351         Replace bindings for split-window-vertically and
22352         split-window-horizontally by bindings for
22353         split-window-above-each-other and split-window-side-by-side.
22355         * cus-start.el (all): Remove entries for window-min-height and
22356         window-min-width.  Add entries for window-splits and
22357         window-nest.
22359 2011-06-09  Glenn Morris  <rgm@gnu.org>
22361         * calendar/appt.el (appt-mode-line): New function.
22362         (appt-check, appt-disp-window): Use it.
22364         * files.el (hack-one-local-variable-eval-safep):
22365         Allow minor-modes with explicit +/-1 arguments.
22367 2011-06-09  Teodor Zlatanov  <tzz@lifelogs.com>
22369         * term/xterm.el (xterm): Add defgroup.
22370         (xterm-extra-capabilities): Add defcustom to supply known xterm
22371         capabilities, skip querying them, or query them (default).
22372         (terminal-init-xterm): Use it.
22373         (terminal-init-xterm-modify-other-keys): New function to set up
22374         modifyOtherKeys support to simplify `terminal-init-xterm'.
22376 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
22378         * window.el (resize-window-reset, resize-window-reset-1)
22379         (resize-subwindows-skip-p, resize-subwindows-normal)
22380         (resize-subwindows, resize-other-windows, resize-this-window)
22381         (resize-root-window, resize-root-window-vertically)
22382         (window-deletable-p, window-or-subwindow-p)
22383         (frame-root-window-p): New functions.
22385 2011-06-09  Glenn Morris  <rgm@gnu.org>
22387         * net/ange-ftp.el (ange-ftp-switches-ok): New function.
22388         (ange-ftp-get-files): Use it.
22390 2011-06-09  Alexander Klimov  <alserkli@inbox.ru>  (tiny change)
22392         * mail/sendmail.el (mail-recover-1, mail-recover):
22393         * files.el (recover-file, recover-session):
22394         Handle dired-listing-switches not being just a single short option.
22396 2011-06-09  Glenn Morris  <rgm@gnu.org>
22398         * calendar/appt.el (appt-display-message, appt-disp-window):
22399         Handle lists of appointments.
22401 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
22403         * window.el (one-window-p): Move down in code.
22404         Rewrite doc-string.
22405         (window-current-scroll-bars): Rewrite doc-string.
22406         Normalize live window argument.
22407         (walk-windows, get-window-with-predicate, count-windows):
22408         Rewrite doc-string.  Use window-list-1.
22409         (window-in-direction-2, window-in-direction, get-mru-window):
22410         New functions.
22412 2011-06-08  Reuben Thomas  <rrt@sc3d.org>
22414         * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
22415         Doc fix (Bug#8713).
22417 2011-06-08  Chong Yidong  <cyd@stupidchicken.com>
22419         * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
22421 2011-06-08  Juanma Barranquero  <lekktu@gmail.com>
22423         * loadhist.el (unload-feature-special-hooks):
22424         Add `comint-output-filter-functions'.
22426 2011-06-08  Ivan Kanis  <gnu@kanis.fr>
22428         * calendar/appt.el (appt-check): Move some initializations into the let.
22430 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
22432         * window.el (window-height): Defalias to window-total-height.
22433         (window-width): Defalias to window-body-width.
22435 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
22437         * image-mode.el (image-toggle-animation): New command.
22438         (image-mode-map): Bind it to RET.
22439         (image-mode): Update message.
22440         (image-toggle-display-image): Avoid a spurious cache flush.
22441         (image-transform-rotation): Doc fix.
22442         (image-transform-properties): Return quickly in the normal case.
22443         (image-animate-loop): Rename from image-animate-max-time.
22445         * image.el (image-animate-max-time): Move to image-mode.el.
22446         (create-animated-image): Remove unnecessary function.
22447         (image-animate): Rename from image-animate-start.  New arg.
22448         (image-animate-stop): Remove; just use image-animate-timer.
22449         (image-animate-timer): Use car-safe.
22450         (image-animate-timeout): Rename argument.
22452 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
22454         * window.el (get-lru-window, get-largest-window): Move here from
22455         window.c.  Rename first argument to ALL-FRAMES.
22456         Rephrase doc-strings.
22457         (get-buffer-window-list): Rewrite using window-list-1.
22458         Rephrase doc-string.
22459         (window-safe-min-height, window-safe-min-width): New constants.
22460         (window-size-ignore, window-min-size, window-min-size-1)
22461         (window-sizable, window-sizable-p, window-size-fixed-1)
22462         (window-size-fixed-p, window-min-delta-1, window-min-delta)
22463         (window-max-delta-1, window-max-delta, window-resizable)
22464         (window-resizable-p, window-total-height, window-total-width)
22465         (window-body-width): New functions.
22466         (window-full-height-p, window-full-width-p): Rewrite using
22467         window-total-size.
22468         (window-body-height): Rewrite using window-body-size.
22470 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
22472         * window.el (window-right, window-left, window-child)
22473         (window-child-count, window-last-child, window-any-p)
22474         (normalize-live-buffer, normalize-live-frame)
22475         (normalize-any-window, normalize-live-window)
22476         (window-iso-combination-p, window-iso-combined-p)
22477         (window-iso-combinations)
22478         (walk-window-tree-1, walk-window-tree, walk-window-subtree)
22479         (windows-with-parameter, window-with-parameter)
22480         (window-atom-root, make-window-atom, window-atom-check-1)
22481         (window-atom-check, window-side-check, window-check):
22482         New functions.
22483         (ignore-window-parameters, window-sides, window-sides-vertical)
22484         (window-sides-slots): New variables.
22485         (window-size-fixed): Move down in code.  Minor doc-string fix.
22487 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
22489         * comint.el (comint-dynamic-complete-as-filename)
22490         (comint-dynamic-complete-filename): Correctly call
22491         completion-in-region.
22493 2011-06-05  Deniz Dogan  <deniz@dogan.se>
22495         * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
22496         in last change.
22498 2011-06-05  Deniz Dogan  <deniz@dogan.se>
22500         * net/rcirc.el (rcirc-prompt-for-encryption): New function.
22501         (rcirc): Use it to prompt for encryption.
22503 2011-06-05  Roland Winkler  <winkler@gnu.org>
22505         * textmodes/bibtex.el (bibtex-search-buffer): New variable.
22506         (bibtex-search-entries): New command bound to C-c C-a.
22507         (bibtex-display-entries): New function.
22509 2011-06-05  Roland Winkler  <winkler@gnu.org>
22511         * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
22512         (bibtex-insert-kill): After yanking insert newline if necessary.
22513         (bibtex-initialize): Call bibtex-string-files-init only once.
22514         (bibtex-mode): Do not call easy-menu-add.
22515         (bibtex-validate-globally): Use save-excursion in bibtex buffers.
22516         (bibtex-yank): Set arg properly if nil.
22518 2011-06-05  Roland Winkler  <winkler@gnu.org>
22520         * textmodes/bibtex.el (bibtex-search-entry-globally):
22521         New variable.
22522         (bibtex-search-entry): Use it.
22524 2011-06-05  Roland Winkler  <winkler@gnu.org>
22526         * textmodes/bibtex.el (bibtex-entry-format): New option
22527         sort-fields.
22528         (bibtex-format-entry, bibtex-reformat): Honor this option.
22529         (bibtex-parse-entry): Return fields in proper order.
22531 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
22533         * doc-view.el (doc-view-remove-if): Move computation of result out
22534         of `dolist' to silence misleading lexical-binding warning.
22536 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
22538         * emacs-lisp/timer.el (timer-activate): Remove unused arg.
22539         (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
22541 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
22543         * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
22544         "SunOS 5.10".
22546 2011-06-04  Michael Albinus  <michael.albinus@gmx.de>
22548         * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
22549         (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
22550         (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
22551         (tramp-parse-putty):
22552         * net/tramp-sh.el (tramp-completion-function-alist-rsh)
22553         (tramp-completion-function-alist-ssh)
22554         (tramp-completion-function-alist-telnet)
22555         (tramp-completion-function-alist-su)
22556         (tramp-completion-function-alist-putty): Set `tramp-autoload'
22557         cookie.
22559         * net/tramp-ftp.el:
22560         * net/tramp-sh.el:
22561         * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
22562         load "tramp.el" `tramp-set-completion-function'.
22564 2011-06-04  Stefan Monnier  <monnier@iro.umontreal.ca>
22566         * shell.el: Require and use pcomplete.
22567         (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
22568         (shell-completion-vars): Set pcomplete-default-completion-function.
22570 2011-06-04  Deniz Dogan  <deniz@dogan.se>
22572         * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
22573         `memq' (Bug#8799).
22575 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
22577         * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
22579 2011-06-02  Juanma Barranquero  <lekktu@gmail.com>
22581         * bs.el (bs--mark-unmark, bs--nth-wrapper):
22582         * mpc.el (mpc-select-extend, mpc-songpointer-context):
22583         * vc/log-view.el (log-view-beginning-of-defun):
22584         * vc/smerge-mode.el (smerge-apply-resolution-patch)
22585         (smerge-refine-forward, smerge-refine-chopup-region):
22586         Silence warning for unused `dotimes' counter variables.
22588 2011-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
22590         * net/tramp.el (tramp-with-progress-reporter): Rename from
22591         with-progress-reporter.  Use `declare'.
22592         * net/tramp-smb.el:
22593         * net/tramp-sh.el:
22594         * net/tramp-gvfs.el: Update all uses.
22596 2011-06-02  Jay Belanger  <jay.p.belanger@gmail.com>
22598         * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
22599         buffer isn't killed before making it current.
22601 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22603         Silence various byte-compiler warnings.
22604         * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
22605         `access-type' and new obsolescence format.
22606         * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
22607         new format.
22608         (byte-compile-check-variable): New `access-type' argument.
22609         Only warn if the access-type is obsolete.
22610         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
22611         (byte-compile-variable-set): Adjust callers.
22612         * help-fns.el (describe-variable): Adjust to new obsolescence format.
22613         * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
22614         setting it as obsolete.
22615         * simple.el (minibuffer-completing-symbol):
22616         * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
22617         access as obsolete.
22618         * minibuffer.el (minibuffer-completing-file-name): Don't make it
22619         obsolete yet.
22620         * international/quail.el (quail-mouse-choose-completion): Remove unused
22621         code referring to obsolete var.
22622         (quail-choose-completion-string): Remove.
22623         * server.el (server-clients-with, server-kill-buffer-query-function)
22624         (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
22625         * proced.el (proced-send-signal):
22626         * emacs-lisp/lisp.el (lisp-complete-symbol):
22627         Replace completion-annotate-function with completion-extra-properties.
22629 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
22631         * simple.el (goto-line): Use read-number.
22632         (overriding-map-is-bound): Remove.
22633         (saved-overriding-map): Change default.
22634         (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
22635         Take the map as argument.
22636         (universal-argument, negative-argument, digit-argument): Use it.
22637         (restore-overriding-map): Adjust.
22638         (do-auto-fill): Use fill-forward-paragraph.
22639         (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
22641         * minibuffer.el (minibuffer-inactive-mode-map): New var.
22642         (minibuffer-inactive-mode): New major mode.
22643         * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
22644         the *Messages* buffer" hack.
22645         (mouse-popup-menubar): Don't burp if the event is a normal key.
22647         Miscellaneous tweaks.
22648         * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
22649         lexical scoping as in subr.el's dolist and dotimes.
22650         * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
22651         Silence compiler warning.
22652         * thingatpt.el (forward-whitespace): Trivial coding style fix.
22653         * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
22654         * international/ccl.el (ccl-compile): Trivial simplification.
22655         * help-fns.el (help-do-arg-highlight): Silence compiler warning.
22656         * emacs-lisp/testcover.el (testcover-end): Remove spurious
22657         `printflag' argument.
22658         * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
22659         Purecopy the whole obsolescence data.
22661 2011-06-01  Leo Liu  <sdl.web@gmail.com>
22663         * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
22664         improve doc-string as suggested by Marco Pessotto
22665         <melmothx@gmail.com>.
22666         (rcirc-print): Fix last change.
22668 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22670         * minibuffer.el (complete-with-action): Return nil for the metadata and
22671         boundaries of non-functional tables.
22672         (completion-table-dynamic): Return nil for the metadata.
22673         (completion-table-with-terminator): Add default case, using
22674         complete-with-action.
22675         (completion--metadata): New function.
22676         (completion-all-sorted-completions, minibuffer-completion-help): Use it
22677         to try and avoid pathological performance problems.
22678         (completion--embedded-envvar-table): Return `category' metadata.
22680 2011-05-31  Lars Magne Ingebrigtsen  <larsi@gnus.org>
22682         * subr.el (process-alive-p): New tiny convenience function.
22684 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22686         * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
22687         content but also its previous major mode.
22689 2011-05-31  Helmut Eller  <eller.helmut@gmail.com>
22691         * emacs-lisp/debug.el (debug): Restore the previous content of the
22692         *Backtrace* buffer when we exit with C-M-c.
22694 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
22696         * minibuffer.el: Add metadata method to completion tables.
22697         (completion-category-overrides): New defcustom.
22698         (completion-metadata, completion--field-metadata)
22699         (completion-metadata-get, completion--styles)
22700         (completion--cycle-threshold): New functions.
22701         (completion-try-completion, completion-all-completions):
22702         Add `metadata' argument to choose completion-styles.
22703         (completion--do-completion): Use metadata to choose cycling.
22704         (completion-all-sorted-completions): Use metadata for sorting.
22705         Remove :completion-cycle-penalty which is not needed any more.
22706         (completion--try-word-completion): Add `metadata' argument.
22707         (minibuffer-completion-help): Check metadata for annotation function
22708         and sorting.
22709         (completion-file-name-table): Return `category' metadata.
22710         (minibuffer-completing-file-name): Make obsolete.
22711         * simple.el (minibuffer-completing-symbol): Make obsolete.
22712         * icomplete.el (icomplete-completions): Pass new `metadata' param to
22713         completion-try-completion.
22715 2011-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22717         * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
22719 2011-05-30  Leo Liu  <sdl.web@gmail.com>
22721         * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
22722         (rcirc-print): Decode all incoming messages (bug#8744).
22723         (rcirc-decode-coding-system): Allow value nil for automatic coding
22724         system detection.
22726 2011-06-01  Glenn Morris  <rgm@gnu.org>
22728         * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
22730 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22732         * image.el (image-animate-max-time): Allow nil and t values.
22733         Default to nil.
22734         (create-animated-image): Doc fix.
22735         (image-animate-start): Remove second arg; just use
22736         image-animate-max-time.
22737         (image-animate-timeout): Doc fix.  Args changed.
22739         * image-mode.el (image-toggle-display-image): Ensure that the
22740         image spec passed to the animate timer is the same object as in
22741         the buffer's display property (Bug#6981).
22742         (image-transform-properties): Doc fix.
22744         * image.el (image-animate-max-time): Default to nil.
22746 2011-05-29  Martin Rudalics  <rudalics@gmx.at>
22748         * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
22749         entire buffer list (Bug#8184).
22751 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22753         * image.el (imagemagick-types-inhibit)
22754         (imagemagick-register-types): Doc fix.
22756 2011-05-29  Deniz Dogan  <deniz@dogan.se>
22758         * net/rcirc.el (rcirc): Use the user's stored encryption method by
22759         default.
22761 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
22763         * select.el: Don't perform clipboard-manager saving in hooks;
22764         leave the hooks empty.
22766 2011-05-28  Leo Liu  <sdl.web@gmail.com>
22768         * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
22769         (occur-mode-map): Bind occur-edit-mode.  Use occur-menu-map.
22770         (occur-edit-mode): New major mode (Bug#8463).
22771         (occur-after-change-function): New function.
22772         (occur-engine): Give Occur tags a read-only property.
22774 2011-05-28  Kevin Ryde  <user42@zip.com.au>
22776         * subr.el (def-edebug-spec): Doc fix (Bug#8430).
22778 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22780         * bindings.el (help-echo): Make the initial non-indicator dash
22781         empty on graphical terminals (Bug#7295).
22783         * files.el (auto-mode-alist): Move config rule after the
22784         in-stripping one (Bug#8547).
22786         * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
22788         * startup.el (normal-splash-screen): Remove gratuitous mode-line
22789         setting (Bug#8740).
22791 2011-05-28  Alp Aker  <aker@pitt.edu>  (tiny change)
22793         * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
22794         (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
22795         (Bug#8539).
22797 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22799         * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
22801 2011-05-28  Dima Kogan  <dkogan@cds.caltech.edu>  (tiny change)
22803         * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
22804         (hs-hide-block-at-point, hs-find-block-beginning)
22805         (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
22806         (Bug#8279).
22808 2011-05-28  Glenn Morris  <rgm@gnu.org>
22810         * startup.el (fancy-about-screen): Use standard mode line.  (Bug#8740)
22812 2011-05-28  Chong Yidong  <cyd@stupidchicken.com>
22814         * help-fns.el (describe-function-1): If the function is a derived
22815         major mode, print the parent mode.
22817         * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
22818         (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
22820 2011-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
22822         * minibuffer.el (completion--capf-wrapper): Check applicability before
22823         returning non-nil for non-exclusive completion data.
22824         * progmodes/etags.el (tags-completion-at-point-function):
22825         * info-look.el (info-lookup-completions-at-point): Mark as
22826         non-exclusive.
22827         (info-complete): Adjust accordingly.
22829         * info-look.el: Convert to lexical-binding and completion-at-point.
22830         (info-lookup-completions-at-point): New function.
22831         (info-complete): Use it and completion-in-region.
22833 2011-05-28  Drew Adams  <drew.adams@oracle.com>
22835         * isearch.el: Let M-e start with point at the first mismatched char.
22836         (isearch-fail-pos): New function.
22837         (isearch-edit-string): Use it.
22839 2011-05-28  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
22841         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22843 2011-05-27  Toby Cubitt  <toby-predictive@dr-qubit.org>
22845         * emacs-lisp/avl-tree.el: New avl-tree-stack datatype.  Add new
22846         traversal functions for avl-trees.
22847         (avl-tree--stack): New struct.
22848         (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
22849         (avl-tree-enter): Add optional `updatefun' arg.
22850         (avl-tree--do-enter): Add optional `updatefun' arg.
22851         Change return value.
22852         (avl-tree-delete): Add optional `test' and `nilflag' args.
22853         (avl-tree--do-delete): Add `test' and `nilflag' args.
22854         Change return value.
22855         (avl-tree-member): Add optional `nilflag'
22856         (avl-tree-member-p): New function.
22857         (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
22858         (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
22859         (avl-tree-stack-empty-p): New functions.
22861         * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
22862         avl-tree--del-balance1 and make it work both ways.
22863         (avl-tree--del-balance2): Remove.
22864         (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
22865         make it work both ways.
22866         (avl-tree--enter-balance2): Remove.
22867         (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
22868         New macros.
22869         (avl-tree--mapc, avl-tree-map): Add direction argument.
22871 2011-05-27  David Michael  <fedora.dm0@gmail.com>  (tiny change)
22873         * files.el (interpreter-mode-alist): Add rbash (bug#8745).
22875 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
22877         * select.el: Support clipboard managers with built-in function
22878         x-clipboard-manager-save, via delete-frame-functions and
22879         kill-emacs-hook.
22880         (xselect-convert-to-targets): Add MULTIPLE target to list.
22881         (xselect-convert-to-save-targets): New function.
22883 2011-05-27  Kenichi Handa  <handa@m17n.org>
22885         * mail/sendmail.el (mail-encode-header): Avoid double encoding by
22886         let-binding rfc2047-encode-encoded-words to nil.
22888 2011-05-27  Glenn Morris  <rgm@gnu.org>
22890         * mail/emacsbug.el: Don't require url-util.
22892         * shell.el (shell-directory-tracker): Case matters.  (Bug#8735)
22894         * files.el (set-auto-mode):
22895         Also respect mode: entries at the end of the file.  (Bug#8586)
22897 2011-05-26  Glenn Morris  <rgm@gnu.org>
22899         * files.el (hack-local-variables-prop-line, hack-local-variables):
22900         Downcase mode names, as seems to be traditional.
22901         (hack-local-variables, hack-local-variables-apply): Doc fixes.
22903         * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
22904         (report-emacs-bug-hook): Try to validate the From address.  (Bug#8038)
22906 2011-05-25  Julien Danjou  <julien@danjou.info>
22908         * textmodes/rst.el (rst-define-level-faces): Do not define face
22909         symbol if it is already defined.
22911 2011-05-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
22913         * play/5x5.el (5x5-new-game, 5x5-randomize):
22914         Reset 5x5-solver-output to nil when a new grid is cast.
22915         (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
22916         these debugging traces, as defmacro breaks the compiled code.
22918 2011-05-24  Dmitry Kurochkin  <dmitry.kurochkin@gmail.com>  (tiny change)
22920         * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
22922 2011-05-24  Leo Liu  <sdl.web@gmail.com>
22924         * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
22925         (vc-bzr-sha1): Adapt.
22927         * sha1.el: Remove.  Function `sha1' is now builtin.
22929         * bindings.el: Provide sha1 feature.
22931 2011-05-24  Kenichi Handa  <handa@m17n.org>
22933         * mail/sendmail.el: Require `rfc2047'.
22934         (mail-insert-from-field): Do not perform RFC2047 encoding.
22935         (mail-encode-header): New function.
22936         (sendmail-send-it): Set buffer-file-coding-system of the work
22937         buffer to the return value of select-message-coding-system.
22938         Call mail-encode-header.
22940         * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
22942 2011-05-24  Sean Neakums  <sneakums@zork.net>  (tiny change)
22944         * mail/supercite.el (sc-default-cite-frame):
22945         Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
22947 2011-05-24  Glenn Morris  <rgm@gnu.org>
22949         * progmodes/python.el (brm-menu): Declare.
22951         * emulation/viper.el (viper-set-hooks): Declare.
22953         * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
22954         (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
22955         (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
22956         (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
22957         (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
22958         (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
22960 2011-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22962         Add an :exit-function for completion-at-point.
22964         * minibuffer.el (completion--done): New fun.
22965         (completion--do-completion): Use it.  New arg `expect-exact'.
22966         (minibuffer-complete, minibuffer-complete-word): Don't output message,
22967         since completion--do-completion does it for us now.
22968         (minibuffer-force-complete): Use completion--done and
22969         completion--replace.  Handle sole-completion case with more care.
22970         (minibuffer-complete-and-exit): Use new `expect-exact' arg.
22971         (completion-extra-properties): New var.
22972         (completion-annotate-function): Make obsolete.
22973         (minibuffer-completion-help): Adjust accordingly.
22974         Use completion-list-insert-choice-function.
22975         (completion-at-point, completion-help-at-point):
22976         Bind completion-extra-properties.
22977         (completion-pcm-word-delimiters): Add | (for uniquify, for example).
22978         * simple.el (completion-list-insert-choice-function): New var.
22979         (completion-setup-function): Preserve it.
22980         (choose-completion): Pay attention to it, shuffle the code a bit.
22981         (choose-completion-string): New arg `insert-function'.
22983         * textmodes/bibtex.el: Convert to lexical binding.
22984         (bibtex-mode-map): Use completion-at-point.
22985         (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
22986         (bibtex-completion-at-point-function): New fun, from bibtex-complete.
22987         (bibtex-complete): Define as obsolete alias.
22988         (bibtex-complete-internal): Remove.
22989         (bibtex-format-entry): Remove unused sub-group in regexp.
22990         * shell.el (shell--command-completion-data)
22991         (shell-environment-variable-completion):
22992         * pcomplete.el (pcomplete-completions-at-point):
22993         * comint.el (comint--complete-file-name-data): Use :exit-function
22994         instead of completion-table-with-terminator so it also works for
22995         choose-completion.
22997 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22999         * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
23001         * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
23002         (bug#8710).
23004         * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
23006 2011-05-23  Ken Manheimer  <ken.manheimer@gmail.com>
23008         * allout.el (allout-inhibit-auto-fill-on-headline): Create new
23009         customization variable and implement: If non-nil, auto-fill will
23010         be inhibited while on topic's header line.
23012 2011-05-23  Vincent Belaïche  <vincentb1@users.sourceforge.net>
23014         * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
23015         click on.  II/ Make 5x5 multisession.  III/ Ensure that random grids
23016         always have a solution in grid size = 5 cases.
23017         (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
23018         (5x5-solver-output, 5x5-log-buffer): New vars.
23019         (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
23020         Make these variables buffer local to achieve 5x5 multi-session-ness.
23021         (5x5): Set 5x5-grid-size only if SIZE is non-negative.
23022         (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
23023         (5x5-solve-suggest): New funs.
23024         (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
23025         randomize a grid so that we ensure that there is always a solution.
23026         (5x5-make-random-grid): Allow other movement than flipping.
23028 2011-05-23  Kevin Ryde  <user42@zip.com.au>
23030         * emacs-lisp/advice.el (ad-read-advised-function):
23031         Use `function-called-at-point' as the default, if it has
23032         advice and passes PREDICATE.
23034 2011-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23036         * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
23037         byte-compile-lambda if it's actually a lambda.
23039         * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
23040         Fix function quoting.  Use backquote better.
23042 2011-05-22  Yuanle Song  <sylecn@gmail.com>
23044         * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
23045         matching (Bug#8516).
23047 2011-05-22  Jari Aalto  <jari.aalto@cante.net>
23049         * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
23050         different face (Bug#8178).
23052 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
23054         * vc/diff-mode.el (diff-changed): Don't use terminal specs for
23055         defface (Bug#8144).
23057 2011-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23059         * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
23060         funcall as well (bug#8712).  Warn when performing those conversions.
23061         * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
23063         * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
23065 2011-05-22  Glenn Morris  <rgm@gnu.org>
23067         * files.el (hack-local-variables-prop-line): Small simplifications.
23068         (hack-local-variables, hack-local-variables-prop-line):
23069         If MODE-ONLY, return the mode, rather than just `t'.
23071 2011-05-21  Stefan Monnier  <monnier@iro.umontreal.ca>
23073         * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
23075 2011-05-21  Glenn Morris  <rgm@gnu.org>
23077         * files.el (hack-local-variables-prop-line, hack-local-variables):
23078         If only interested in the mode, don't bother doing the other stuff.
23080         * image-mode.el (image-after-revert-hook):
23081         Redraw all frames on which the image is visible.  (Bug#8567)
23083         * dired-aux.el (dired-touch-initial): Just use current-time.  (Bug#6887)
23085         * wid-edit.el (widget-checklist-match-inline):
23086         Fix 2011-04-19 change.  (Bug#8649)
23088 2011-05-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23090         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
23091         Also allow singlespace after single-letter capitals followed by a dot.
23093         * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
23094         enabled.  Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
23096 2011-05-20  Nix  <nix@esperi.org.uk>
23098         * files.el (basic-save-buffer-2):
23099         Fix handling of break-hardlink-on-save with non-existent files.
23101 2011-05-19  Deniz Dogan  <deniz@dogan.se>
23103         * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
23104         (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
23106 2011-05-19  Glenn Morris  <rgm@gnu.org>
23108         * progmodes/f90.el (f90-type-def-re):
23109         Handle "type, bind(c)".  (Bug#8691)
23111         * emacs-lisp/autoload.el (batch-update-autoloads):
23112         Set autoload-excludes by parsing loadup.el rather than Makefiles.
23114 2011-05-18  Michael Albinus  <michael.albinus@gmx.de>
23116         * net/tramp.el (tramp-process-actions): Set "first-password-request"
23117         property for the correct connection in case of multihops.
23119 2011-05-18  Glenn Morris  <rgm@gnu.org>
23121         * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
23122         * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
23124         Rationalize calendar handling of day and month abbrev-arrays.
23125         * calendar/calendar.el (calendar-customized-p): New function.
23126         (calendar-abbrev-construct, calendar-make-alist): Change what it does.
23127         (calendar-day-name-array, calendar-month-name-array): Doc fix.
23128         Add :set function.
23129         (calendar-abbrev-length, calendar-day-abbrev-array)
23130         (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
23131         (calendar-day-abbrev-array, calendar-month-abbrev-array):
23132         Elements may no longer be nil.
23133         (calendar-day-name, calendar-month-name):
23134         Update for changed nature of abbrev arrays.
23135         * calendar/diary-lib.el (diary-name-pattern):
23136         Update for changed nature of abbrev arrays.
23137         (diary-mark-entries-1): Update calendar-make-alist calls.
23138         (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
23139         * calendar/cal-html.el (cal-html-day-abbrev-array):
23140         Simply inherit from calendar-day-abbrev-array.
23142 2011-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23144         * progmodes/grep.el (grep-mode): Disable default
23145         compilation-directory-matcher setting (bug#8684).
23147 2011-05-17  Michael Albinus  <michael.albinus@gmx.de>
23149         * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
23150         instead of "head" and "tail".  There were problems with SunOS 5.9,
23151         and it performs better.
23153 2011-05-17  Glenn Morris  <rgm@gnu.org>
23155         * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
23157         * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
23158         Replace obsolete function.
23160         * shell.el (pcomplete-parse-arguments-function): Declare.
23162         * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
23163         (appt-display-diary, appt-display-interval, appt-prev-comp-time)
23164         (appt-check): Doc fixes.
23165         (appt-disp-window-function, appt-delete-window-function):
23166         Remove needless special case in custom :type.
23167         (appt-display-count): Default to 0, not nil.
23168         (appt-check): Reset appt-display-count to 0, not nil.
23170 2011-05-17  Juanma Barranquero  <lekktu@gmail.com>
23172         * progmodes/python.el (python-font-lock-keywords):
23173         Add the Python 3.X keyword "nonlocal" (bug#8639).
23175 2011-05-16  Stefan Monnier  <monnier@iro.umontreal.ca>
23177         * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
23179 2011-05-16  Kevin Ryde  <user42@zip.com.au>
23181         * info-look.el (makefile-automake-mode): New setups, looking in
23182         automake manual, then makefile-mode.
23183         (makefile-mode): Remove automake manual, have it just in
23184         makefile-automake-mode since there's various things different or
23185         not relevant to plain make.
23186         (makefile-mode): Remove "other-modes" non-existent automake-mode,
23187         believe a hypothetical automake-mode would go to makefile-mode,
23188         not the other way around.
23190 2011-05-15  Chong Yidong  <cyd@stupidchicken.com>
23192         * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
23193         hunk-end tags (Bug#8672).
23195         * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
23196         vc-annotate-show-diff-revision-at-line (Bug#8671).
23198 2011-05-14  Glenn Morris  <rgm@gnu.org>
23200         * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
23201         in the middle of an existing one with multiple authors.  (Bug#8645)
23202         (change-log-font-lock-keywords): Also handle multiple author lines
23203         with leading tabs.  (Bug#8644)
23205         * calendar/appt.el (appt-check): Rename some local variables.
23206         Some simplification/reordering.
23208         * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
23209         (feedmail-sendmail-f-doesnt-sell-me-out)
23210         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23211         (feedmail-debug-sit-for, feedmail-queue-express-hook)
23212         (feedmail-queue-runner-message-sender): Set :version.
23213         (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
23214         (bbdb-dwim-net-address, vm-mail): Declare.
23215         (feedmail-binmail-gnulinuxish-template):
23216         Rename from feedmail-binmail-linuxish-template.
23217         (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
23218         Use insert-buffer-substring.
23220 2011-05-14  Bill Carpenter  <bill@carpenter.org>
23222         * mail/feedmail.el (feedmail-patch-level): Increase.
23223         (feedmail-debug): New custom group.
23224         (feedmail-confirm-outgoing-timeout)
23225         (feedmail-sendmail-f-doesnt-sell-me-out)
23226         (feedmail-queue-slug-suspect-regexp, feedmail-debug)
23227         (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
23228         (feedmail-sender-line, feedmail-from-line)
23229         (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
23230         (feedmail-spray-this-address)
23231         (feedmail-spray-address-fiddle-plex-list)
23232         (feedmail-queue-use-send-time-for-date)
23233         (feedmail-queue-use-send-time-for-message-id)
23234         (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
23235         (feedmail-buffer-eating-function):
23236         Doc fixes.
23237         (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
23238         (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
23239         (feedmail-message-action-scroll-down): New functions.
23240         (feedmail-queue-directory, feedmail-queue-draft-directory):
23241         Use expand-file-name.
23242         (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
23243         Remove C-v help entry.
23244         (feedmail-queue-buffer-file-name): New variable.
23245         (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
23246         (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
23247         (feedmail-message-action-send-strong, feedmail-message-action-edit)
23248         (feedmail-message-action-draft, feedmail-message-action-draft-strong)
23249         (feedmail-message-action-queue, feedmail-message-action-queue-strong)
23250         (feedmail-message-action-toggle-spray)
23251         (feedmail-run-the-queue-no-prompts)
23252         (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
23253         (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
23254         (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
23255         (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
23256         (feedmail-envelope-deducer, feedmail-fiddle-from)
23257         (feedmail-fiddle-sender, feedmail-default-date-generator)
23258         (feedmail-fiddle-date, feedmail-fiddle-message-id)
23259         (feedmail-fiddle-spray-address)
23260         (feedmail-fiddle-list-of-spray-fiddle-plexes)
23261         (feedmail-fiddle-list-of-fiddle-plexes)
23262         (feedmail-fill-to-cc-function, feedmail-fill-this-one)
23263         (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
23264         (feedmail-queue-runner-message-sender, feedmail-binmail-template):
23265         Change default.  Doc fix.
23266         (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
23267         (feedmail-binmail-linuxish-template): New constant.
23268         (feedmail-buffer-to-sendmail): Doc fix.  Add debug call.
23269         Respect feedmail-sendmail-f-doesnt-sell-me-out.
23270         (feedmail-send-it): Add debug call.
23271         Use feedmail-queue-buffer-file-name, and
23272         feedmail-send-it-immediately-wrapper.
23273         (feedmail-message-action-send): Add debug call.
23274         Use feedmail-send-it-immediately-wrapper.
23275         (feedmail-queue-express-to-queue): Add debug call.
23276         Run feedmail-queue-express-hook.
23277         (feedmail-message-action-help): Add debug call.  Use feedmail-p-h-b-n.
23278         (feedmail-message-action-help-blat):
23279         Rename from feedmail-queue-send-edit-prompt-help-first.
23280         (feedmail-run-the-queue): Add debug call.  Set buffer-file-type.
23281         Check line-endings.  Handle errors better.
23282         (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
23283         Doc fix.  Add debug call.
23284         (feedmail-queue-send-edit-prompt): Doc fix.  Add debug call.
23285         Use feedmail-queue-send-edit-prompt-inner.
23286         (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
23287         (feedmail-queue-send-edit-prompt-inner): New function, extracted
23288         from feedmail-queue-send-edit-prompt.
23289         (feedmail-queue-send-edit-prompt-help)
23290         (feedmail-queue-send-edit-prompt-help-later): Remove functions.
23291         (feedmail-tidy-up-slug): Add debug call.
23292         Respect feedmail-queue-slug-suspect-regexp.
23293         (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
23294         (feedmail-dump-message-to-queue): Add debug call.
23295         Expand queue-directory.
23296         (feedmail-dump-message-to-queue): Change message slightly.
23297         Use feedmail-say-chatter.
23298         (feedmail-rfc822-date): Add debug call.  Bind system-time-locale.
23299         (feedmail-send-it-immediately-wrapper): New function.
23300         (feedmail-send-it-immediately): Add debug calls.  Use let not let*.
23301         Insert empty string rather than newline.  Handle full-frame case.
23302         Use catch/throw.  Use feedmail-say-chatter.
23303         (feedmail-fiddle-from): Try mail-host-address.
23304         (feedmail-default-message-id-generator): Doc fix.
23305         Bind system-time-locale.  Handle missing end.
23306         (feedmail-fiddle-x-mailer): Add debug call.
23307         Handle feedmail-x-mailer-line being nil.
23308         (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
23309         Add debug call.  Use buffer-substring-no-properties.
23310         (feedmail-say-debug, feedmail-say-chatter): New functions.
23311         (feedmail-find-eoh): Give an explicit error.
23313 2011-05-13  Ulf Jasper  <ulf.jasper@web.de>
23315         * net/newst-treeview.el (newsticker-treeview-face): Change default
23316         family from helvetica to sans.
23317         (newsticker-treeview-tool-bar-map): Move tool-bar icons to
23318         etc/images/newsticker.
23320         * net/newst-reader.el (newsticker-feed-face): Change default
23321         family from helvetica to sans.
23323         * net/newst-plainview.el (newsticker-new-item-face)
23324         (newsticker-old-item-face, newsticker-immortal-item-face)
23325         (newsticker-obsolete-item-face, newsticker-date-face)
23326         (newsticker-statistics-face): Change default family from
23327         helvetica to sans.
23328         (newsticker--plainview-tool-bar-map): Move tool-bar icons to
23329         etc/images/newsticker.
23331         * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
23332         (newsticker--process-auto-mark-filter-match): Tell user about
23333         auto-marking.
23335 2011-05-13  Didier Verna  <didier@xemacs.org>
23337         Common Lisp indentation improvements on defmethod and lambda-lists.
23338         * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
23339         TODO entries.
23340         (lisp-lambda-list-keyword-parameter-indentation)
23341         (lisp-lambda-list-keyword-parameter-alignment)
23342         (lisp-lambda-list-keyword-alignment): New customizable user options.
23343         (lisp-indent-defun-method): Improve docstring.
23344         (extended-loop-p): Fix comment.
23345         (lisp-indent-lambda-list-keywords-regexp): New variable.
23346         (lisp-indent-lambda-list): New function.
23347         (lisp-indent-259): Use it.
23348         (lisp-indent-defmethod): Support for more than one
23349         method qualifier and properly indent methods lambda-lists.
23350         (defgeneric): Provide a missing common-lisp-indent-function property.
23352 2011-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
23354         * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
23355         bounds for the empty string (bug#8667).
23357 2011-05-13  Glenn Morris  <rgm@gnu.org>
23359         * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
23361         * mail/sendmail.el (sendmail-program): Try executable-find first.
23362         (sendmail-send-it): `sendmail-program' cannot be unbound.
23364         * calendar/appt.el (appt-make-list): Simplify.
23365         (appt-time-msg-list): Doc fix.
23366         (appt-check): Change mode-line message at the time of the appointment.
23368 2011-05-12  Andreas Schwab  <schwab@linux-m68k.org>
23370         * progmodes/ld-script.el (ld-script-keywords)
23371         (ld-script-builtins): Update keywords list.
23373 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23375         * progmodes/grep.el (grep-filter): Don't trip on partial lines.
23377         * shell.el (shell-completion-vars): New function.
23378         (shell-mode):
23379         * simple.el (read-shell-command): Use it.
23380         (blink-matching-open): No need for " [...]" in minibuffer-message.
23382 2011-05-12  Glenn Morris  <rgm@gnu.org>
23384         * calendar/appt.el (appt-now-displayed): Remove pointless variable.
23385         (appt-check): Simplify.
23387 2011-05-12  Eli Zaretskii  <eliz@gnu.org>
23389         * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
23390         literal "/dev/null".
23392 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23394         * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
23395         Fix typo.
23397 2011-05-12  Ralph Schleicher  <rs@ralph-schleicher.de>
23399         * progmodes/which-func.el (which-function):
23400         Use add-log-current-defun instead of add-log-current-defun-function,
23401         which might not be defined (Bug#8260).
23403 2011-05-12  Glenn Morris  <rgm@gnu.org>
23405         * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
23406         Let byte-compile-initial-macro-environment always take precedence.
23408 2011-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
23410         * net/rcirc.el: Add support for SSL/TLS connections.
23411         (rcirc-server-alist): New field `encryption'.
23412         (rcirc): Check `encryption' settings.
23413         (rcirc-connect): New arg `encryption'.  Use open-network-stream.
23414         Merge make-local-variable into `set'.
23415         (rcirc--connection-open-p): New function.
23416         (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
23417         the process is not a network process (e.g. running gnutls-cli).
23418         (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
23419         Make rcirc-(en|de)code-coding-system local here.
23420         (rcirc-mode): Merge make-local-variable into `set'.
23421         (rcirc-parent-buffer): Make permanent buffer-local.
23422         (rcirc-multiline-minor-mode): Don't do it here.
23423         (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
23424         there's no server buffer.
23426 2011-05-11  Glenn Morris  <rgm@gnu.org>
23428         * newcomment.el (comment-kill): Prefix "unused" local.
23430         * term/w32console.el (get-screen-color): Declare.
23432         * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
23433         Handle symbol elements of byte-compile-initial-macro-environment.
23435 2011-05-10  Leo Liu  <sdl.web@gmail.com>
23437         * bookmark.el (bookmark-bmenu-mode-map):
23438         Bind bookmark-bmenu-search to `/'.
23440         * mail/footnote.el: Convert to utf-8 encoding.
23441         (footnote-unicode-string, footnote-unicode-regexp): New variable.
23442         (Footnote-unicode): New function.
23443         (footnote-style-alist): Add unicode style to the list.
23444         (footnote-style): Doc fix.
23446 2011-05-10  Jim Meyering  <meyering@redhat.com>
23448         Fix doubled-word typos.
23449         * international/quail.el (quail-insert-kbd-layout): and and -> and
23450         * kermit.el: and and -> and
23451         * net/ldap.el (ldap-search-internal): to to -> to
23452         * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
23453         * progmodes/js.el (js-mode): and and -> and
23454         * textmodes/artist.el (artist-move-to-xy): at at -> at
23455         (artist-draw-region-trim-line-endings): if if -> if
23456         And Safetyc -> Safety.
23457         * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
23459 2011-05-10  Glenn Morris  <rgm@gnu.org>
23460             Stefan Monnier  <monnier@iro.umontreal.ca>
23462         * files.el (hack-one-local-variable-eval-safep):
23463         Consider "eval: (foo-mode)" to be safe.  (Bug#8613)
23465 2011-05-10  Glenn Morris  <rgm@gnu.org>
23467         * calendar/diary-lib.el (diary-list-entries-hook)
23468         (diary-mark-entries-hook, diary-nongregorian-listing-hook)
23469         (diary-nongregorian-marking-hook, diary-list-entries)
23470         (diary-include-other-diary-files, diary-mark-entries)
23471         (diary-mark-included-diary-files): Doc fixes.
23473 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
23475         * misc.el: Require tabulated-list.el during compilation.
23477 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
23479         * progmodes/compile.el (compilation-start):
23480         Run compilation-filter-hook for the async case too.
23481         (compilation-filter-hook): Doc fix.
23483 2011-05-09  Deniz Dogan  <deniz@dogan.se>
23485         * wdired.el: Remove outdated installation comment.  Fix usage
23486         comment.
23488 2011-05-09  Juanma Barranquero  <lekktu@gmail.com>
23490         * misc.el: Implement new command `list-dynamic-libraries'.
23491         (list-dynamic-libraries--loaded-only-p): New variable.
23492         (list-dynamic-libraries--refresh): New function.
23493         (list-dynamic-libraries): New command.
23495 2011-05-09  Chong Yidong  <cyd@stupidchicken.com>
23497         * progmodes/compile.el (compilation-error-regexp-alist-alist):
23498         Fix the ant regexp to handle end-line and end-column info from jikes.
23499         Re-introduce maven regexp.  Give the ruby-Test::Unit regexp a
23500         higher priority to avoid clobbering by gnu.
23502 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
23504         * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
23505         if the face has existing theme settings (Bug#8454).
23507 2011-05-08  Ralph Schleicher  <rs@ralph-schleicher.de>
23509         * progmodes/perl-mode.el (perl-imenu-generic-expression):
23510         Only match variables declared via `my' or `our' (Bug#8261).
23512         * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
23513         special file names `.' and `..' (Bug#8259).
23515 2011-05-08  Chong Yidong  <cyd@stupidchicken.com>
23517         * progmodes/grep.el (grep-mode-font-lock-keywords):
23518         Remove buffer-changing entries.
23519         (grep-filter): New function.
23520         (grep-mode): Add it to compilation-filter-hook.
23522         * progmodes/compile.el (compilation-filter-hook)
23523         (compilation-filter-start): New defvars.
23524         (compilation-filter): Call compilation-filter-hook prior to
23525         updating the process mark.
23527 2011-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23529         * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
23531 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
23533         * mail/sendmail.el (send-mail-function): On MS-Windows, default to
23534         mailclient-send-it even if window-system is nil.  (Bug#8595)
23536         * term/w32console.el (terminal-init-w32console):
23537         Call get-screen-color and use its output to set the frame
23538         background-mode.  (Bug#8597)
23540 2011-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23542         Make bytecomp.el understand that defmethod defines funs (bug#8631).
23543         * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
23544         New functions.
23545         (defgeneric, eieio--defmethod): Use them.
23546         (eieio-defgeneric): Remove.
23547         (defmethod): Call defgeneric in a way visible to the byte-compiler.
23549 2011-05-07  Glenn Morris  <rgm@gnu.org>
23551         * calendar/timeclock.el (timeclock-log-data): Remove unused local.
23552         Use let rather than let*.
23553         (timeclock-find-discrep): Remove unused local.
23555         * calendar/diary-lib.el (diary-comment-start): Doc fix.
23557         * calendar/appt.el (appt-time-msg-list): Doc fix.
23559 2011-05-06  Noah Friedman  <friedman@splode.com>
23561         * apropos.el (apropos-print-doc): Only use
23562         emacs-lisp-docstring-fill-column when it is bound to an integer,
23563         per that variable's documentation.
23565 2011-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23567         * lpr.el (print-region-1): Echo lpr-program's output, so error messages
23568         and warnings are not silently discarded (e.g. use -d instead of -P).
23570 2011-05-06  Glenn Morris  <rgm@gnu.org>
23572         * calendar/appt.el (appt-message-warning-time): Doc fix.
23573         (appt-warning-time-regexp): New option.
23574         (appt-make-list): Respect appt-message-warning-time.
23576         * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
23577         New options.
23578         (diary-add-to-list): Strip comments from the displayed string.
23579         (diary-mode): Set comment-start and comment-end.
23581         * vc/diff-mode.el (smerge-refine-subst): Declare.
23582         (diff-refine-hunk): Don't require smerge-mode when compiling.
23584 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
23586         * simple.el (list-processes): Return nil as the docstring says.
23588 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
23590         * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
23591         to "".
23592         (ange-ftp-write-region, ange-ftp-insert-file-contents)
23593         (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
23594         determining of binary transfer.  (Bug#7383)
23596 2011-05-05  Michael Albinus  <michael.albinus@gmx.de>
23598         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23599         Fix port computation bug.  (Bug#8618)
23601 2011-05-05  Glenn Morris  <rgm@gnu.org>
23603         * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
23605         * simple.el (shell-dynamic-complete-functions)
23606         (comint-dynamic-complete-functions): Declare.
23608         * net/network-stream.el (gnutls-negotiate):
23609         * simple.el (tabulated-list-print): Fix declarations.
23611         * progmodes/gud.el (syntax-symbol, syntax-point):
23612         Remove unnecessary and incorrect declarations.
23614         * emacs-lisp/check-declare.el (check-declare-scan):
23615         Handle byte-compile-initial-macro-environment in bytecomp.el.
23617 2011-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
23619         Fix earlier half-done eieio-defmethod change (bug#8338).
23620         * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
23621         Streamline and change calling convention.
23622         (defmethod): Adjust accordingly and simplify.
23623         (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
23624         new eieio--defmethod.
23625         (slot-boundp): Minor CSE simplification.
23627 2011-05-05  Milan Zamazal  <pdm@zamazal.org>
23629         * progmodes/glasses.el (glasses-separate-capital-groups): New option.
23630         (glasses-make-readable): Use glasses-separate-capital-groups.
23632 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
23634         * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
23635         (warning-series): Doc fix.
23636         (display-warning): Don't try to create the buffer if we just found it.
23638 2011-05-04  Chong Yidong  <cyd@stupidchicken.com>
23640         * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
23641         (autoload-find-generated-file): New function.
23642         (generate-file-autoloads): Bind generated-autoload-file to
23643         buffer-file-name.
23644         (update-file-autoloads, update-directory-autoloads):
23645         Use autoload-find-generated-file.  If called interactively, prompt for
23646         output file (Bug#7989).
23647         (batch-update-autoloads): Doc fix.
23649 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
23651         * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
23653 2011-05-04  Glenn Morris  <rgm@gnu.org>
23655         * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
23656         function, so it follows changes in calendar-date-style.
23657         (diary-fancy-date-matcher): New function.
23658         (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
23659         (diary-fancy-font-lock-fontify-region-function):
23660         Use diary-fancy-date-pattern as a function.
23662         * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
23663         non-numbers for `year' etc pseudo-variables.  (Bug#8583)
23665 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
23667         * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
23668         instead of positional arguments.  Allow :keylist and :crlfiles
23669         arguments.
23670         (open-gnutls-stream): Call it.
23672         * net/network-stream.el (network-stream-open-starttls): Adjust to
23673         call `gnutls-negotiate' with :process and :hostname arguments.
23675 2011-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
23677         * minibuffer.el (completion--message): New function.
23678         (completion--do-completion, minibuffer-complete)
23679         (minibuffer-force-complete, minibuffer-complete-word): Use it.
23680         (completion--do-completion): Don't ignore completion-auto-help when in
23681         icomplete-mode.
23683         * whitespace.el (whitespace-trailing-regexp): Don't rely on the
23684         internal encoding (e.g. tibetan zero is not whitespace).
23685         (global-whitespace-mode): Prefer save-current-buffer.
23686         (whitespace-trailing-regexp): Remove useless save-match-data.
23687         (whitespace-empty-at-bob-regexp): Minor simplification.
23689 2011-05-03  Chong Yidong  <cyd@stupidchicken.com>
23691         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
23693 2011-05-03  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
23695         * textmodes/ispell.el (ispell-add-per-file-word-list):
23696         Use `concat' to create string for insertion.
23698 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23700         * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
23701         Avoid open-line which runs post-self-insert-hook.
23702         (bibtex-fill-entry): Remove unused `end' var.
23704 2011-05-03  Dirk Ullrich  <dirk.ullrich@googlemail.com>  (tiny change)
23706         * textmodes/ispell.el (ispell-add-per-file-word-list):
23707         Protect against `nil' value of `comment-start' (Bug#8579).
23709 2011-05-03  Leo Liu  <sdl.web@gmail.com>
23711         * isearch.el (isearch-yank-pop): New command.
23712         (isearch-mode-map): Bind it to `M-y'.
23713         (isearch-forward): Mention it.
23715 2011-05-03  Stefan Monnier  <monnier@iro.umontreal.ca>
23717         * simple.el (minibuffer-complete-shell-command): Remove.
23718         (minibuffer-local-shell-command-map): Use completion-at-point.
23719         (read-shell-command): Setup completion vars here instead.
23720         (read-expression-map): Bind TAB to symbol completion.
23722         * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
23723         error directly rather via storing it into `results'.
23725 2011-05-02  Leo Liu  <sdl.web@gmail.com>
23727         * vc/diff.el: Fix description.
23729 2011-05-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23731         * server.el (server-eval-at): New function.
23733 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
23735         * net/network-stream.el (open-network-stream): Take a :nowait
23736         parameter and pass it on to `make-network-process'.
23737         (network-stream-open-plain): Ditto.
23739 2011-04-30  Andreas Schwab  <schwab@linux-m68k.org>
23741         * faces.el (face-spec-set-match-display): Don't match toolkit
23742         options on terminal frames.
23744 2011-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
23746         * progmodes/pascal.el: Use lexical binding.
23747         (pascal-mode-map): Remove author preferences.
23749         * pcomplete.el (pcomplete-std-complete): Don't abuse
23750         completion-at-point.
23752 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
23754         * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
23755         removing code that has been dead since 1991 or so.
23757         * startup.el (command-line): When warning about "_emacs", use a
23758         delayed warning to allow the user to filter it out.
23760 2011-04-28  Deniz Dogan  <deniz@dogan.se>
23762         * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
23763         user has not joined.
23765 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23767         * pcomplete.el (pcomplete-completions-at-point): Return nil if there
23768         aren't any completions at point.
23770 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
23772         * subr.el (display-delayed-warnings): New function.
23773         (delayed-warnings-hook): New variable.
23775 2011-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23777         * minibuffer.el (completion-at-point, completion-help-at-point):
23778         Don't presume that a given completion-at-point-function will always
23779         use the same calling convention.
23781         * pcomplete.el (pcomplete-completions-at-point):
23782         Obey pcomplete-ignore-case.  Don't call pcomplete-norm-func unless
23783         pcomplete-seen is non-nil.
23784         (pcomplete-comint-setup): Also recognize the new comint/shell
23785         completion functions.
23786         (pcomplete-do-complete): Don't call pcomplete-norm-func unless
23787         pcomplete-seen is non-nil.
23789 2011-04-27  Niels Giesen  <niels.giesen@gmail.com>
23791         * calendar/icalendar.el (diary-lib): Add require statement.
23792         (icalendar--create-uid): Read out a uid from a text-property on
23793         the first character in the entry.  This allows for code to add its
23794         own uid to the entry.
23795         (icalendar--convert-float-to-ical): Add export of
23796         `diary-float'-entries save for those with the optional DAY
23797         argument.
23799 2011-04-27  Daniel Colascione  <dan.colascione@gmail.com>
23801         * subr.el (shell-quote-argument): Use alternate escaping strategy
23802         when we spot a variable reference in a string.
23804 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
23806         * cus-start.el (all): Define customization for debug-on-event.
23808 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
23810         * subr.el (shell-quote-argument): Escape correctly under Windows.
23812 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23814         * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
23816 2011-04-25  Michael Albinus  <michael.albinus@gmx.de>
23818         * net/tramp.el (tramp-process-actions): Add POS argument.
23819         Delete region between POS and (pos).
23821         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
23822         Use `nil' position in `tramp-process-actions' call.
23823         (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
23825         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
23826         position in `tramp-process-actions' call.
23828         * net/trampver.el: Update release number.
23830 2011-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23832         * custom.el (defcustom): Obey lexical-binding.
23834         Fix octave-inf completion problems reported by Alexander Klimov.
23835         * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
23836         Inherit from octave-mode-syntax-table.
23837         (inferior-octave-mode): Set info-lookup-mode.
23838         (inferior-octave-completion-at-point): New function.
23839         (inferior-octave-complete): Use it and completion-in-region.
23840         (inferior-octave-dynamic-complete-functions): Use it as well, and use
23841         comint-filename-completion.
23842         * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
23843         symbol elements which shouldn't be word elements.
23844         (octave-font-lock-keywords, octave-beginning-of-defun)
23845         (octave-function-header-regexp): Adjust regexps accordingly.
23846         (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
23848 2011-04-25  Juanma Barranquero  <lekktu@gmail.com>
23850         * net/gnutls.el (gnutls-errorp): Declare before first use.
23852 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
23854         * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
23855         verify-error, and verify-hostname-error parameters.  Check whether
23856         default trustfile exists before going to use it.  Add missing
23857         argument to gnutls-message-maybe call.  Return value.
23858         Reported by Claudio Bley <claudio.bley@gmail.com>.
23859         (open-gnutls-stream): Add usage example.
23861         * net/network-stream.el (network-stream-open-starttls): Give host
23862         parameter to `gnutls-negotiate'.
23863         (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
23864         * subr.el (shell-quote-argument): Escape correctly under Windows.
23866 2011-04-24  Daniel Colascione  <dan.colascione@gmail.com>
23868         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
23869         Use correct match group (bug#8438).
23871 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
23873         * emacs-lisp/package.el (package-built-in-p): Fix typo.
23874         (package-menu--generate): New arg specifying packages to show.
23875         (package-menu-refresh, package-menu-execute, list-packages):
23876         Callers changed.
23877         (package-show-package-list): New function, replacing deleted
23878         package--list-packages (renamed because it is non-internal).
23880         * finder.el (finder-list-matches): Use package-show-package-list
23881         instead of deleted package--list-packages.
23883         * vc/vc-annotate.el (vc-annotate-goto-line): New command.
23884         Based on a previous implementation by Juanma Barranquero (Bug#8366).
23885         (vc-annotate-mode-map): Bind it to RET.
23887 2011-04-24  Uday S Reddy  <u.s.reddy@cs.bham.ac.uk>  (tiny change)
23889         * progmodes/etags.el (next-file): Don't use set-buffer to change
23890         buffers (Bug#8478).
23892 2011-04-24  Chong Yidong  <cyd@stupidchicken.com>
23894         * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
23896         * apropos.el (apropos-label-face): Avoid variable-pitch face.
23897         (apropos-accumulator): Doc fix.
23898         (apropos-function, apropos-macro, apropos-command)
23899         (apropos-variable, apropos-face, apropos-group, apropos-widget)
23900         (apropos-plist): Add face property.
23901         (apropos-symbols-internal): Fix indentation.
23902         (apropos-print): Simplify help, and recognize apropos-multi-type.
23903         (apropos-print-doc): Use button-type-get to extract the button's
23904         face property.  Fill docstring (Bug#8352).
23906 2011-04-23  Juanma Barranquero  <lekktu@gmail.com>
23908         * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
23910         * play/mpuz.el (mpuz-silent): Doc fix.
23911         (mpuz-mode-map): Use mapc.
23912         (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
23913         (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
23914         Fix typos in docstrings.
23916         * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
23917         (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
23919         * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
23921 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
23923         * minibuffer.el (completion--do-completion): Avoid the "Next char
23924         not unique" prompt if icomplete-mode is enabled (Bug#5849).
23926         * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
23927         mouse-2 into unread-command-events, it is interpreted correctly.
23929         * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
23930         (image-toggle-display): Doc fix.
23932 2011-04-23  Stephen Berman  <stephen.berman@gmx.net>
23934         * textmodes/page.el (what-page): Use line-number-at-pos to
23935         calculate line number (Bug#6825).
23937 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
23939         * eshell/esh-mode.el (find-tag-interactive): Declare function.
23940         (eshell-find-tag): Remove `with-no-warnings', unneeded now.
23941         Pass argument NO-DEFAULT to `find-tag-interactive'.
23943 2011-04-22  Juanma Barranquero  <lekktu@gmail.com>
23945         Lexical-binding cleanup.
23947         * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
23948         (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
23949         * progmodes/ada-prj.el (ada-prj-initialize-values)
23950         (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
23951         (ada-prj-show-value):
23952         * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
23953         * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
23954         (antlr-invalidate-context-cache, antlr-options-menu-filter)
23955         (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
23956         * progmodes/bug-reference.el (bug-reference-push-button):
23957         * progmodes/fortran.el (fortran-line-length):
23958         * progmodes/glasses.el (glasses-change):
23959         * progmodes/octave-mod.el (octave-fill-paragraph):
23960         * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
23961         (python-pdbtrack-grub-for-buffer, python-sentinel):
23962         * progmodes/sql.el (sql-save-connection):
23963         * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
23964         * progmodes/xscheme.el (xscheme-enter-debugger-mode):
23965         Mark unused parameters.
23967         * progmodes/compile.el (compilation--flush-directory-cache)
23968         (compilation--flush-parse, compile-internal): Mark unused parameters.
23969         (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
23970         (compilation-next-error-function): Remove unused variable `timestamp'.
23972         * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
23973         (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
23975         * progmodes/dcl-mode.el (dcl-end-of-command):
23976         Remove unused variable `start'.
23977         (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
23978         (dcl-option-value-basic, dcl-option-value-offset)
23979         (dcl-option-value-margin-offset, dcl-option-value-comment-line):
23980         Mark unused parameters.
23981         (dcl-save-local-variable): Remove unused variable `val'.
23982         (mode): Declare.
23984         * progmodes/delphi.el (delphi-save-state, delphi-after-change):
23985         Mark unused parameters.
23986         (delphi-ignore-changes): Move before first use.
23987         (delphi-charset-token-at): Remove unused variable `start'.
23988         (delphi-else-start): Remove unused variable `if-count'.
23989         (delphi-comment-block-start, delphi-comment-block-end):
23990         Remove unused variable `kind'.
23991         (delphi-indent-line): Remove unused variable `new-point'.
23993         * progmodes/ebrowse.el (ebrowse-files-list)
23994         (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
23995         Mark unused parameters.  Don't quote `lambda'.
23996         (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
23997         Don't quote `lambda'.
23998         (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
23999         (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
24000         (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
24001         (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
24002         Use `ignore-errors'.
24003         (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
24004         (ebrowse-view/find-file-and-search-pattern)
24005         (ebrowse-view/find-member-declaration/definition):
24006         Rename parameter TAGS-FILE-NAME to TAGS-FILE.
24007         (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
24008         Rename parameter PREFIX-ARG to PREFIX.
24009         (ebrowse-tags-read-name): Remove unused variables `start' and
24010         `member-info'.
24011         (ebrowse-display-member-buffer): Rename variable `tags-file-name'
24012         to `tags-file'.
24014         * progmodes/etags.el (local-find-tag-hook): Declare.
24015         (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
24016         Mark unused parameters.
24018         * progmodes/executable.el (compilation-error-regexp-alist): Declare.
24019         (executable-interpret): Mark unused parameter.
24021         * progmodes/flymake.el (flymake-process-sentinel)
24022         (flymake-after-change-function)
24023         (flymake-create-temp-with-folder-structure)
24024         (flymake-get-include-dirs-dot): Mark unused parameters.
24025         (flymake-safe-delete-directory): Remove unused variable `err'.
24027         * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
24028         (speedbar-timer-fn, speedbar-line-text)
24029         (speedbar-change-expand-button-char, speedbar-delete-subblock)
24030         (speedbar-center-buffer-smartly): Declare functions.
24031         (gdb-find-watch-expression): Remove unused variable `array'.
24032         (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
24033         (gdb-starting): Mark unused parameters.
24034         (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
24035         (gdb-table-string): Remove unused variable `res'.
24036         (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
24037         (gdb-disassembly-handler-custom): Remove unused variable `pos'.
24038         (gdb-display-buffer): Remove unused variable `cur-size'.
24040         * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
24041         allow lexical-binding compilation.
24042         (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
24043         (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
24044         (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
24045         Mark unused parameters.
24046         (gud-gdb-marker-filter): Remove unused variable `match'.
24047         (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
24048         lambda expressions and funcall them, instead of using `fset'.
24050         * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
24051         HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
24053         * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
24054         variable `header-beg'; use `let'.
24056         * progmodes/icon.el (indent-icon-exp): Remove unused variables
24057         `restart', `last-sexp' and `at-do'.
24059         * progmodes/js.el (js--debug): Mark unused parameter.
24060         (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
24061         (js--splice-into-items): Remove unused variable `item'.
24062         (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
24064         * progmodes/make-mode.el (makefile-make-font-lock-keywords):
24065         Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
24066         (makefile-complete): Remove unused variable `try'.
24067         (makefile-fill-paragraph, makefile-match-function-end):
24068         Mark unused parameters.
24070         * progmodes/octave-inf.el (inferior-octave-complete):
24071         Remove unused variable `proc'.
24072         (inferior-octave-output-digest): Mark unused parameter.
24074         * progmodes/perl-mode.el (perl-calculate-indent):
24075         Remove unused variable `err'.
24077         * progmodes/prolog.el (prolog-mode-keybindings-inferior)
24078         (prolog-indent-line): Mark unused parameters.
24079         (prolog-indent-line): Remove unused variable `beg'.
24081         * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
24082         (reporter-dont-compact-list): Declare.
24084         * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
24085         Remove unused variable `char'.
24086         (sh-debug): Mark unused parameter.
24087         (sh-get-indent-info): Remove unused variable `start'.
24088         (sh-calculate-indent): Remove unused variable `var'.
24090         * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
24091         (simula-electric-keyword): Remove unused variable `null'.
24092         (simula-search-backward, simula-search-forward): Remove unused
24093         variables `begin' and `end'.
24095         * progmodes/vera-mode.el (vera-guess-basic-syntax):
24096         Remove unused variable `pos'.
24097         (vera-electric-tab, vera-comment-uncomment-region):
24098         Mark unused parameters.
24099         (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
24101 2011-04-22  Chong Yidong  <cyd@stupidchicken.com>
24103         * emacs-lisp/package.el (package--builtins, package-alist)
24104         (package-load-descriptor, package-built-in-p, package-activate)
24105         (define-package, package-installed-p)
24106         (package-compute-transaction, package-buffer-info)
24107         (package--push): Doc fix.  Distinguish more clearly between
24108         version strings and version lists.
24110 2011-04-21  Juanma Barranquero  <lekktu@gmail.com>
24112         Lexical-binding cleanup.
24114         * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
24115         (5x5-make-mutate-best):
24116         * play/fortune.el (fortune-in-buffer):
24117         * play/gomoku.el (gomoku-init-display):
24118         * play/solitaire.el (solitaire, solitaire-do-check):
24119         * play/tetris.el (tetris-default-update-speed-function):
24120         Mark unused parameters.
24122         * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
24123         (bubbles--shift): Remove unused variable `char-org'.
24124         (bubbles--set-faces): Remove unused variable `fg-col'.  Simplify.
24125         (bubbles--show-images): Remove unused variable `char'.
24127         * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
24128         (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
24129         (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
24130         (decipher-analyze-buffer): Use ?\s.
24131         (decipher-make-checkpoint): Remove unused variable `mapping'.
24133         * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
24135         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
24136         Remove unused variable `result'; use `let'.
24138         * play/gametree.el (gametree-current-layout, gametree-apply-layout):
24139         Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
24140         (gametree-children-shown-p, gametree-compute-reduced-score):
24141         Use `ignore-errors'.
24143         * play/handwrite.el (ps-lpr-switches): Declare.
24144         (handwrite): Remove unused variables `pmin' and `lastp'.
24146         * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
24148         * play/landmark.el (landmark-init-display)
24149         (landmark-update-naught-weights): Mark unused parameters.
24150         (landmark-y): Remove unused variable `noise'.  Simplify.
24151         (landmark-human-plays): Remove unused variable `score'.
24153         * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
24154         (mpuz-try-proposal): Remove unused variable `game'.
24156         * play/zone.el (life-patterns): Declare.
24158 2011-04-20  Juanma Barranquero  <lekktu@gmail.com>
24160         * vc/vc.el (ediff-vc-internal): Declare function.
24162 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24164         * shell.el: Use lexical-binding and std completion UI.
24165         (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
24166         (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
24167         comint-preoutput-filter-functions rather than on
24168         comint-output-filter-functions.
24169         (shell-command-completion, shell--command-completion-data)
24170         (shell-filename-completion, shell-environment-variable-completion)
24171         (shell-c-a-p-replace-by-expanded-directory): New functions.
24172         (shell-dynamic-complete-functions, shell-dynamic-complete-command)
24173         (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
24174         (shell-dynamic-complete-environment-variable): Use them.
24175         (shell-dynamic-complete-as-environment-variable)
24176         (shell-dynamic-complete-as-command): Remove.
24177         (shell-match-partial-variable): Match past point.
24178         * comint.el: Clean up use of completion-at-point-functions.
24179         (comint-completion-at-point): New function.
24180         (comint-mode): Use it completion-at-point-functions.
24181         (comint-dynamic-complete): Make it obsolete.
24182         (comint-replace-by-expanded-history-before-point): Add dry-run arg.
24183         (comint-c-a-p-replace-by-expanded-history): New function.
24184         (comint-dynamic-complete-functions)
24185         (comint-replace-by-expanded-history): Use it.
24186         * minibuffer.el (completion-table-with-terminator): Allow dynamic
24187         termination strings.  Try harder to avoid second try-completion.
24188         (completion-in-region-mode-map): Disable bindings that don't work yet.
24190         * comint.el: Use lexical-binding.  Require CL.
24191         (comint-dynamic-complete-functions): Use comint-filename-completion.
24192         (comint-completion-addsuffix): Tweak custom type.
24193         (comint-filename-completion, comint--common-suffix)
24194         (comint--common-quoted-suffix, comint--table-subvert)
24195         (comint--complete-file-name-data): New functions.
24196         (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
24197         (comint-dynamic-list-filename-completions): Use them.
24198         (comint-dynamic-simple-complete): Make obsolete.
24200         * minibuffer.el (completion-in-region-mode):
24201         Keep completion-in-region-mode--predicate global.
24202         (completion-in-region--postch):
24203         Assume completion-in-region-mode--predicate is not null.
24205         * progmodes/flymake.el (flymake-start-syntax-check-process):
24206         Obey `dir'.  Simplify.
24208         * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
24209         we're in VC after all.
24211 2011-04-20  Christoph Scholtes  <cschol2112@googlemail.com>
24213         * vc/vc.el (vc-diff-build-argument-list-internal)
24214         (vc-version-ediff, vc-ediff): New commands.
24215         (vc-version-diff): Use vc-diff-build-argument-list-internal.
24217 2011-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24219         * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
24220         add sanity check.
24222         * obsolete/erc-hecomplete.el: Make obsolete.
24223         * obsolete/: Standardize obsolescence info in the header.
24225 2011-04-20  Glenn Morris  <rgm@gnu.org>
24227         * calendar/solar.el (solar-horizontal-coordinates):
24228         Use the longitude argument rather than `calendar-longitude'.
24229         (solar-date-next-longitude): Remove unused locals.
24231 2011-04-20  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
24233         * whitespace.el: New version 13.2.1.
24235 2011-04-20  felix  <EmacsWiki>  (tiny change)
24237         * whitespace.el (global-whitespace-mode): Keep highlight when
24238         switching between major modes on a file.
24240 2011-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
24242         * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
24243         (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
24244         multi-line comments as well.
24246 2011-04-19  Juanma Barranquero  <lekktu@gmail.com>
24248         Lexical-binding cleanup.
24250         * arc-mode.el (archive-mode-revert):
24251         * cmuscheme.el (scheme-interactively-start-process):
24252         * custom.el (custom-initialize-delay):
24253         * dnd.el (dnd-open-local-file, dnd-open-remote-url):
24254         * dos-w32.el (direct-print-region-helper, direct-print-region-function):
24255         * emacs-lock.el (emacs-lock-clear-sentinel):
24256         * ezimage.el (defezimage):
24257         * follow.el (follow-avoid-tail-recenter):
24258         * fringe.el (set-fringe-mode-1):
24259         * generic-x.el (bat-generic-mode-compile):
24260         * help-mode.el (help-info-variable, help-do-xref)
24261         (help-mode-revert-buffer):
24262         * help.el (view-emacs-todo):
24263         * iswitchb.el (iswitchb-completion-help):
24264         * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
24265         * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
24266         (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
24267         * locate.el (locate-update):
24268         * longlines.el (longlines-encode-region)
24269         (longlines-after-change-function):
24270         * outline.el (outline-isearch-open-invisible):
24271         * ps-def.el (declare-function, charset-dimension, char-width)
24272         (encode-char):
24273         * ps-mule.el (ps-mule-plot-string):
24274         * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
24275         (recentf-edit-list-select, recentf-edit-list-validate)
24276         (recentf-open-files-action):
24277         * rect.el (delete-whitespace-rectangle-line)
24278         (rectangle-number-line-callback):
24279         * register.el (window-configuration-to-register)
24280         (frame-configuration-to-register):
24281         * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
24282         * select.el (xselect-convert-to-string, xselect-convert-to-length)
24283         (xselect-convert-to-targets, xselect-convert-to-delete)
24284         (xselect-convert-to-filename, xselect-convert-to-charpos)
24285         (xselect-convert-to-lineno, xselect-convert-to-colno)
24286         (xselect-convert-to-os, xselect-convert-to-host)
24287         (xselect-convert-to-user, xselect-convert-to-class)
24288         (xselect-convert-to-name, xselect-convert-to-integer)
24289         (xselect-convert-to-atom, xselect-convert-to-identity):
24290         * subr.el (declare, ignore, process-kill-without-query)
24291         (text-clone-maintain):
24292         * terminal.el (te-get-char, te-tic-sentinel):
24293         * tool-bar.el (tool-bar-make-keymap):
24294         * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
24295         * type-break.el (type-break-mode, type-break-noninteractive-query):
24296         * view.el (View-back-to-mark):
24297         * wid-browse.el (widget-browse-action, widget-browse-widget)
24298         (widget-browse-widgets, widget-browse-sexp):
24299         * widget.el (define-widget-keywords):
24300         * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
24301         Mark unused parameters.
24303         * align.el (align-adjust-col-for-rule): Mark unused parameter.
24304         (align-areas): Remove unused variable `look'.
24305         (align-region): Remove unused variables `real-end' and `pos-list'.
24307         * apropos.el (apropos-score-doc): Remove unused variable `i'.
24309         * bindings.el (mode-line-modified, mode-line-remote):
24310         Mark unused parameters.
24311         (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
24313         * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
24314         (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
24316         * comint.el (comint-history-isearch-pop-state)
24317         (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
24318         (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
24319         (comint-substitute-in-file-name): Doc fix.
24321         * completion.el (cmpl-statistics-block): Mark unused parameter.
24322         (add-completions-from-tags-table, add-completions-from-lisp-buffer)
24323         (save-completions-to-file, load-completions-from-file):
24324         Remove unused local variable `e'.
24326         * composite.el (compose-chars): Remove unused variable `len'.
24327         (lgstring-insert-glyph): Remove unused variable `g'.
24328         (compose-glyph-string): Remove unused variables `ascent',
24329         `descent', `lbearing' and `rbearing'.
24330         (compose-glyph-string-relative): Remove unused variables
24331         `lbearing', `rbearing' and `wadjust'.
24332         (compose-gstring-for-graphic): Remove unused variables `header',
24333         `wadjust', `xoff' and `yoff'.  Use `let', not `let*'.
24334         (compose-gstring-for-terminal): Remove unused variables `header'
24335         and `nchars'.  Use `let', not `let*'.
24337         * cus-edit.el (Custom-set, Custom-save, custom-reset)
24338         (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
24339         (Custom-buffer-done, custom-buffer-create-internal)
24340         (custom-browse-visibility-action, custom-browse-group-tag-action)
24341         (custom-browse-variable-tag-action, custom-browse-face-tag-action)
24342         (widget-magic-mouse-down-action, custom-toggle-parent)
24343         (custom-add-parent-links, custom-toggle-hide-variable)
24344         (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
24345         (custom-toggle-hide-face, face, hook, custom-group-link-action)
24346         (custom-face-menu-create, custom-variable-menu-create, get)
24347         (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
24348         (custom-reset-standard-save-and-update): Remove unused variable `value'.
24349         (customize-apropos): Remove unused variable `tests'.
24350         (custom-group-value-create): Remove unused variable `hidden-p'.
24351         (sort-fold-case): Declare.
24353         * cus-theme.el (custom-reset-standard-faces-list)
24354         (custom-reset-standard-variables-list): Declare.
24355         (customize-create-theme, custom-theme-revert, custom-theme-write)
24356         (custom-theme-choose-mode, customize-themes, custom-theme-save):
24357         Mark unused parameters.
24359         * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
24361         * delim-col.el (delimit-columns-max): Move defvar before first use.
24363         * descr-text.el (describe-char-categories): Don't quote `lambda'.
24364         (describe-char): Don't quote `lambda'.  Mark unused parameter.
24366         * desktop.el (desktop-save-buffer-p): Mark unused parameter.
24367         (auto-insert): Declare.
24368         (desktop-restore-file-buffer): Rename desktop-* parameters;
24369         mark unused ones.
24370         (desktop-create-buffer): Rename desktop-* parameters and bind them.
24371         (desktop-buffer): Rename desktop-* parameters.
24373         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
24374         (dframe-reposition-frame-xemacs, dframe-help-echo)
24375         (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
24376         Mark unused parameters.
24378         * dired-aux.el (backup-extract-version-start, overwrite-query)
24379         (overwrite-backup-query, rename-regexp-query)
24380         (rename-non-directory-query): Declare.
24381         (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
24382         (dired-add-entry): Remove unused variable `orig-file-name'.
24383         (dired-copy-file-recursive): Remove unused variable `dirfailed'.
24384         Use parameter PRESERVE-TIME instead of accessing dynamic variable
24385         `dired-copy-preserve-time' directly.
24386         (dired-do-create-files-regexp): Remove unused variable `fn-count'.
24387         (dired-insert-subdir-newpos): Rename unused variable `pos'.
24389         * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
24390         (dired-virtual-revert, dired-make-relative-symlink):
24391         Mark unused parameters.
24392         (manual-program): Declare.
24393         (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
24394         (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
24395         wrapped in `with-no-warnings' to avoid replacing one warning by another.
24397         * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
24399         * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
24401         * echistory.el (electric-history-in-progress, Helper-return-blurb):
24402         Declare.
24404         * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
24406         * electric.el (Electric-command-loop): Rename parameter
24407         INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
24409         * expand.el (expand-in-literal): Remove unused variable `here'.
24411         * facemenu.el (facemenu-add-new-color):
24412         Remove unused variable `docstring'.
24414         * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
24415         (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
24416         (face-attr-construct): Mark unused parameter.  Doc fix.
24417         (read-color): Remove unused variable `hex-string'.
24419         * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
24420         (locate-dominating-file): Remove unused vars `prev-file' and `user'.
24421         (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
24422         (display-buffer-other-frame): Remove unused variable `old-window'.
24423         (kill-buffer-hook): Declare.
24424         (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
24425         Mark unused parameters.
24426         (after-find-file): Pass 1 to `auto-save-mode', not t.
24428         * files-x.el (auto-insert): Declare.
24429         (modify-file-local-variable-prop-line): Remove unused variable `val'.
24431         * find-lisp.el (find-lisp-find-dired-internal): Remove unused
24432         variable `buf'.  Mark unused parameter.
24433         (find-lisp-insert-directory): Mark unused parameter.
24435         * format.el (format-decode-run-method): Mark unused parameter; doc fix.
24436         (format-encode-region): Remove unused variables `cur-buf' and `result'.
24437         (format-common-tail): Remove, unused.
24438         (format-deannotate-region): Remove unused variable `loc'.
24439         (format-annotate-region): Remove unused variable `p'.
24440         (format-annotate-single-property-change): Remove unused variables
24441         `default' and `tail'.
24443         * forms.el (read-file-filter): Declare.
24444         (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
24446         * frame.el (frame-creation-function-alist): Mark unused parameter.
24447         (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
24449         * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
24450         Remove unused parameters.
24451         (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
24452         (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
24454         * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
24455         (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
24456         (hfy-prepare-tag-map): Mark unused parameters.
24457         (htmlfontify-buffer): Use `called-interactively-p'.
24459         * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
24460         (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
24461         (ibuffer-do-occur): Mark unused parameters.
24462         (ibuffer-forward-next-marked): Remove unused variable `curmark'.
24463         (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
24465         * ibuffer.el: Don't quote `lambda'.
24466         (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
24467         (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
24468         Mark unused parameters.
24470         * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
24471         (ido-completing-read): Mark unused parameters.
24472         (ido-copy-current-word): Mark unused parameters;
24473         remove unused variable `name'.
24474         (ido-sort-merged-list): Remove unused parameter `dirs'.
24476         * ielm.el (ielm-input-sender): Mark unused parameter.
24477         (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
24478         (ielm-output, ielm-wbuf, ielm-pmark): Declare.
24479         (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
24480         `ielm-string' as a dynamic variable accessible from the IELM prompt.
24481         Bind `ielm-string' to INPUT-STRING.  Remove unused variable `err'.
24483         * image-dired.el (image-dired-display-thumbs): Remove unused
24484         variables `curr-file' and `count'.
24485         (image-dired-remove-tag): Remove unused variable `start'.
24486         (image-dired-tag-files, image-dired-create-thumbs): Remove unused
24487         variable `curr-file'
24488         (image-dired-rotate-original): Remove unused variable `temp-file'.
24489         (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
24490         Remove unused variable `file'.
24491         (image-dired-gallery-generate): Remove unused variable `curr'.
24492         (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
24494         * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
24496         * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
24498         * informat.el (texinfo-command-start, texinfo-command-end): Declare.
24500         * isearch.el (minibuffer-history-symbol): Declare.
24501         (isearch-edit-string): Remove unused variable `err'.
24502         (isearch-message-prefix, isearch-message-suffix):
24503         Mark unused parameters.
24505         * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
24507         * macros.el (insert-kbd-macro): Remove unused variable `mods'.
24509         * makesum.el (double-column): Remove unused variable `cnt'.
24511         * misearch.el (multi-isearch-pop-state): Mark unused parameter.
24512         (ido-ignore-item-temp-list): Declare.
24514         * mouse-drag.el (mouse-drag-throw): Remove unused variables
24515         `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
24516         `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
24517         (mouse-drag-drag): Remove unused variables `mouse-delta' and
24518         `mouse-col-delta'.
24520         * mouse-sel.el (mouse-extend-internal):
24521         Remove unused variable `orig-window-frame'.
24523         * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
24524         (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
24525         Move declarations before first use.
24526         (pcomplete-opt): Mark unused parameters; doc fix.
24528         * proced.el (proced-revert): Mark unused parameter.
24529         (proced-send-signal): Remove unused variable `err'.
24531         * ps-print.el (ps-print-preprint-region, ps-print-preprint):
24532         Rename parameter PREFIX-ARG to ARG.
24533         (ps-basic-plot-string, ps-basic-plot-whitespace):
24534         Mark unused parameters.
24536         * replace.el (replace-count): Define.
24537         (occur-revert-function): Mark unused parameters.
24538         (ido-ignore-item-temp-list, isearch-error, isearch-forward)
24539         (isearch-case-fold-search, isearch-string): Declare.
24540         (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
24541         bind `case-fold-search'.  Remove unused variables `beg' and `end',
24542         and simplify.
24543         (replace-eval-replacement): Rename parameter REPLACE-COUNT to
24544         COUNT and bind `replace-count'.
24545         (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
24546         to COUNT.
24548         * savehist.el (print-readably, print-string-length): Declare.
24550         * shadowfile.el (shadow-expand-cluster-in-file-name):
24551         Remove unused variable `cluster'.
24552         (shadow-copy-file): Remove unused variable `i'.
24553         (shadow-noquery, shadow-clusters, shadow-site-cluster)
24554         (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
24555         (shadow-define-literal-group, shadow-define-regexp-group)
24556         (shadow-make-group, shadow-shadows-of): Clean up docstrings.
24558         * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
24559         (shell): Use `called-interactively-p'.
24560         (shell-directory-tracker): Remove unused variable `chdir-failure'.
24562         * simple.el (compilation-context-lines, comint-file-name-quote-list)
24563         (comint-file-name-chars, comint-delimiter-argument-list): Declare.
24564         (delete-backward-char): Remove unused variable `ocol'.
24565         (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
24566         (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
24567         (event-apply-hyper-modifier, event-apply-shift-modifier)
24568         (event-apply-control-modifier, event-apply-meta-modifier):
24569         Mark unused parameters.
24570         (undo-make-selective-list): Remove duplicate variable `undo-elt'.
24571         (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
24573         * speedbar.el (speedbar-ignored-directory-expressions)
24574         (speedbar-supported-extension-expressions, speedbar-directory-buttons)
24575         (speedbar-find-file, speedbar-dir-follow)
24576         (speedbar-directory-buttons-follow, speedbar-tag-find)
24577         (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
24578         (speedbar-buffers-line-directory, speedbar-buffer-click):
24579         Mark unused parameters.
24580         (speedbar-tag-file): Remove unused variable `mode'.
24581         (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
24583         * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
24585         * talk.el (talk): Remove unused variable `display'.
24587         * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
24588         (tar-write-region-annotate): Mark unused parameter.
24590         * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
24591         (minutes, seconds, time-zone, day, year, monthname, month, dayname):
24592         Declare them, wrapped in `with-no-warnings' to avoid replacing one
24593         warning by another.
24595         * time-stamp.el (time-stamp-string-preprocess):
24596         Remove unused variable `require-padding'.
24598         * tree-widget.el (widget-glyph-enable): Declare.
24599         (tree-widget-action): Mark unused parameter.
24601         * w32-fns.el (x-get-selection): Mark unused parameter.
24602         (autoload-make-program, generated-autoload-file): Declare.
24604         * wdired.el (wdired-revert): Mark unused parameters.
24605         (wdired-xcase-word): Remove unused variable `err'.
24607         * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
24608         (whitespace-help-scroll): Remove unused variable `data-help'.
24610         * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
24611         (widget-image-insert, widget-after-change, default)
24612         (widget-default-format-handler, widget-default-notify)
24613         (widget-default-prompt-value, widget-info-link-action)
24614         (widget-url-link-action, widget-function-link-action)
24615         (widget-variable-link-action, widget-file-link-action)
24616         (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
24617         (widget-field-prompt-internal, widget-field-action, widget-field-match)
24618         (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
24619         (widget-insert-button-action, widget-delete-button-action, visibility)
24620         (widget-documentation-link-action, widget-documentation-string-action)
24621         (widget-const-prompt-value, widget-regexp-match, symbol)
24622         (widget-coding-system-prompt-value)
24623         (widget-key-sequence-value-to-external, sexp)
24624         (widget-sexp-value-to-internal, character, vector, cons)
24625         (widget-choice-prompt-value, widget-boolean-prompt-value)
24626         (widget-color--choose-action): Mark unused parameters.
24627         (widget-item-match-inline, widget-choice-match-inline)
24628         (widget-checklist-match, widget-checklist-match-inline)
24629         (widget-group-match): Rename parameter VALUES to VALS.
24630         (widget-field-value-set): Remove unused variable `size'.
24631         (widget-color-action): Remove unused variables `value' and `start'.
24633         * windmove.el (windmove-wrap-loc-for-movement): Remove unused
24634         variable `dir'.  Doc fix.
24635         (windmove-find-other-window): Don't pass it.
24637         * window.el (count-windows): Mark unused parameter.
24638         (bw-adjust-window): Remove unused variable `err'.
24640         * woman.el (woman-file-name): Remove unused variable `default'.
24641         (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
24642         WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
24643         (global-font-lock-mode): Declare.
24644         (woman-decode-region): Mark unused parameter.
24645         (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
24647         * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
24648         (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
24649         (x-dnd-handle-moz-url): Remove unused variable `title'.
24650         (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
24652         * xml.el (xml-parse-tag, xml-parse-attlist):
24653         Remove unused variable `pos'.
24655 2011-04-19  Glenn Morris  <rgm@gnu.org>
24657         * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
24658         (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
24659         (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
24660         (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
24661         * calendar/cal-html.el (cal-html-insert-minical):
24662         * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
24663         (calendar-mark-date-pattern):
24664         Prefix "unused" locals.
24666         * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
24667         optional argument `style'.
24669         * calendar/appt.el (appt-make-list):
24670         * calendar/cal-china.el (calendar-chinese-date-string):
24671         * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
24672         (diary-hebrew-yahrzeit):
24673         * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
24674         * calendar/calendar.el (calendar-generate-window):
24675         * calendar/time-date.el (time-to-days):
24676         Remove unused local variables.
24678 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
24680         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
24681         glyphless-char-display table.
24682         (tabulated-list-glyphless-char-display): New var.
24684 2011-04-18  Sam Steingold  <sds@gnu.org>
24686         * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
24687         to acknowledgments.
24689 2011-04-17  Glenn Morris  <rgm@gnu.org>
24691         * calendar/diary-lib.el (diary-sexp-entry):
24692         * calendar/holidays.el (holiday-sexp):
24693         Set debug-on-error rather than the removed stack-trace-on-error.
24695 2011-04-16  Glenn Morris  <rgm@gnu.org>
24697         * progmodes/f90.el: Use lexical-binding.
24698         (f90-get-correct-indent): Remove unnecessary local variable `cont'.
24700 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24702         * mail/sendmail.el (mail-mode-map): Use completion-at-point.
24703         (mail-mode): Setup mailalias completion here instead.
24704         * mail/mailalias.el: Use lexical-binding.
24705         (pattern, mailalias-done): Declare dynamic.
24706         (mail-completion-at-point-function): New function, from mail-complete.
24707         (mail-complete): Use it.
24708         (mail-completion-expand): New function.
24709         (mail-get-names): Use it.
24710         (mail-directory, mail-directory-process, mail-directory-stream):
24711         Don't use `pattern' for lexically bound arg.
24713         * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
24715         * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
24716         (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
24717         (hfy-etags-cmd-alist): Don't eval-and-compile any more.
24719         * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
24720         (byte-save-window-excursion, byte-temp-output-buffer-setup)
24721         (byte-interactive-p): Define them again, for use when inlining
24722         old code.
24724 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
24726         * loadup.el: Use `string-to-number', not `string-to-int'.
24728 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24730         * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
24731         gud-gdb-complete-command.
24732         (gud-gdb-completions): New function, from gud-gdb-complete-command.
24733         (gud-gdb-completion-at-point): New function.
24734         (gud-gdb-completions): Remove.
24736 2011-04-14  Michael Albinus  <michael.albinus@gmx.de>
24738         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
24739         when the scripts fail.  Use `tramp-do-file-attributes-with-ls' then.
24740         (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
24741         whether `executable-find' is bound.
24743         * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
24745 2011-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
24747         * minibuffer.el (completion-in-region-mode-predicate)
24748         (completion-in-region-mode--predicate): New vars.
24749         (completion-in-region, completion-in-region--postch)
24750         (completion-in-region-mode): Use them.
24751         (completion--capf-wrapper): Also return the hook function.
24752         (completion-at-point, completion-help-at-point):
24753         Adjust and provide a predicate.
24755         Preserve arg names for advice of subr and lexical functions (bug#8457).
24756         * help-fns.el (help-function-arglist): Consolidate the subr and
24757         new-byte-code cases.  Add argument `preserve-names' to extract names
24758         from the docstring when needed.
24759         * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
24760         (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
24761         (ad-arglist): Use help-function-arglist's new arg.
24762         (ad-definition-type): Use cond.
24764 2011-04-13  Juanma Barranquero  <lekktu@gmail.com>
24766         * autorevert.el (auto-revert-handler):
24767         Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
24768         which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
24769         Don't quote lambda.
24771         * image-mode.el (image-transform-set-scale):
24772         Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
24774 2011-04-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
24776         * net/network-stream.el (network-stream-open-starttls): Only do
24777         opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
24778         Upgrades via gnutls-cli are too slow to be done opportunistically.
24780 2011-04-12  Juanma Barranquero  <lekktu@gmail.com>
24782         * dframe.el (dframe-current-frame): Remove spurious quote.
24784 2011-04-12  Glenn Morris  <rgm@gnu.org>
24786         * calendar/cal-tex.el (cal-tex-end-document):
24787         Try to automatically use latin1 input if needed.
24789         * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
24790         Don't try to cons a mark onto an empty element.
24792 2011-04-11  Leo Liu  <sdl.web@gmail.com>
24794         * ido.el (ido-buffer-internal): Allow method 'kill for virtual
24795         buffers.
24796         (ido-kill-buffer-at-head): Support killing virtual buffers.
24798 2011-04-10  Chong Yidong  <cyd@stupidchicken.com>
24800         * minibuffer.el (completion-show-inline-help): New var.
24801         (completion--do-completion, minibuffer-complete)
24802         (minibuffer-force-complete, minibuffer-complete-word):
24803         Inhibit minibuffer messages if completion-show-inline-help is nil.
24805         * icomplete.el (icomplete-mode): Bind completion-show-inline-help
24806         to avoid interference from inline help (Bug#5849).
24808 2011-04-10  Leo Liu  <sdl.web@gmail.com>
24810         * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
24811         Fix typo.
24813 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
24815         * image-mode.el (image-toggle-display-image): Signal an error if
24816         not in Image mode.
24817         (image-transform-mode, image-transform-resize)
24818         (image-transform-set-rotation): Doc fix.
24819         (image-transform-set-resize): Delete.
24820         (image-transform-set-scale, image-transform-fit-to-height)
24821         (image-transform-fit-to-width): Handle image-toggle-display-image
24822         and image-transform-resize directly.
24824 2011-04-08  Sho Nakatani  <lay.sakura@gmail.com>
24826         * doc-view.el (doc-view-fit-width-to-window)
24827         (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
24828         New functions for fitting the shown image to the Emacs window size.
24829         (doc-view-mode-map): Add bindings for the new functions.
24831 2011-04-08  Juanma Barranquero  <lekktu@gmail.com>
24833         * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
24834         Fix typo in docstring.
24836 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
24838         * files.el (file-size-human-readable): Produce one digit after
24839         decimal, like "ls -lh" does.
24841         * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
24842         the file size representation.
24844         * simple.el (list-processes): If async subprocesses are not
24845         available, error out with a clear error message.
24847 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
24849         * help.el (help-form-show): New function, to be called from C.
24850         Put help-form output in a buffer named differently than *Help*.
24852 2011-04-08  Eli Zaretskii  <eliz@gnu.org>
24854         * files.el (file-size-human-readable): New function.
24856         * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
24857         computing the representation inline.  Don't require `cl'.
24859 2011-04-08  Glenn Morris  <rgm@gnu.org>
24861         * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
24863         * net/browse-url.el (browse-url-firefox):
24864         Test system-type, not system-configuration.
24866         * vc/log-edit.el (log-edit-empty-buffer-p): New function.
24867         (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
24868         Use log-edit-empty-buffer-p.  (Bug#7598)
24870         * net/rlogin.el (rlogin-process-connection-type): Simplify.
24871         (rlogin-mode-map): Initialize in the defvar.
24872         (rlogin): Use ignore-errors.
24874         * replace.el (occur-mode-map): Some fixes for menu items.
24876 2011-04-07  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
24878         * play/morse.el (denato-region): Handle varying case.  (Bug#8386)
24880 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
24882         * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
24883         issuing unused warnings.
24885         * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
24886         macro directly.
24888         * simple.el: Lisp reimplement of list-processes.  Based on an
24889         earlier reimplementation by Leo Liu, but using tabulated-list.el.
24890         (process-menu-mode): New major mode.
24891         (list-processes--refresh, list-processes):
24892         (process-menu-visit-buffer): New functions.
24894         * files.el (save-buffers-kill-emacs): Don't assume any return
24895         value of list-processes, which is undocumented anyway.
24897 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
24899         * emacs-lisp/tabulated-list.el: New file.
24901         * emacs-lisp/package.el: Use Tabulated List mode.
24902         (package-menu-mode-map): Inherit from tabulated-list-mode-map.
24903         (package-menu-mode): Derive from tabulated-list-mode.  Set up the
24904         table format using Tabulated List mode variables.
24905         (package--push): New macro, replacing package-list-maybe-add.
24906         (package-menu--generate): Use package--push.  Renamed from
24907         package--generate-package-list.
24908         (package-menu-refresh, list-packages): Use it.
24909         (package-menu--print-info): Rename from package-print-package.
24910         Return insertion data instead of inserting it directly.
24911         (package-menu-describe-package, package-menu-execute):
24912         Use tabulated-list-get-id.
24913         (package-menu-mark-delete, package-menu-mark-install)
24914         (package-menu-mark-unmark, package-menu-backup-unmark)
24915         (package-menu-mark-obsolete-for-deletion):
24916         Use tabulated-list-put-tag.
24917         (package--list-packages, package-menu-revert)
24918         (package-menu-get-package, package-menu-get-version)
24919         (package-menu-sort-by-column): Functions deleted.
24920         (package-menu-package-list, package-menu-sort-key): Vars deleted.
24921         (package-menu--status-predicate, package-menu--version-predicate)
24922         (package-menu--name-predicate)
24923         (package-menu--description-predicate): Handle arguments in the
24924         Tabulated List format.
24925         (package-list-packages-no-fetch): Call list-packages.
24927 2011-04-06  Juanma Barranquero  <lekktu@gmail.com>
24929         * files.el (after-find-file-from-revert-buffer): Remove variable.
24930         (after-find-file): Don't bind it.
24931         (revert-buffer-in-progress-p): New variable.
24932         (revert-buffer): Bind it.
24933         Pass nil for `after-find-file-from-revert-buffer'.
24935         * saveplace.el (save-place-find-file-hook): Use new variable
24936         `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
24938 2011-04-06  Glenn Morris  <rgm@gnu.org>
24940         * Makefile.in (AUTOGEN_VCS): New variable.
24941         (autoloads): Use $AUTOGEN_VCS.
24943         * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
24944         * calendar/calendar.el (calendar-mode-map):
24945         Check for toolkit scroll bars.  (Bug#8305)
24947 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
24949         * minibuffer.el (completion-in-region--postch)
24950         (completion-in-region-mode): Remove unnecessary messages.
24952 2011-04-05  Juanma Barranquero  <lekktu@gmail.com>
24954         * font-lock.el (font-lock-refresh-defaults):
24955         Don't bind `hi-lock--inhibit-font-lock-hook', removed in
24956         2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
24958         * info.el (Info-directory-list, Info-read-node-name-2)
24959         (Info-split-parameter-string): Doc fixes.
24960         (Info-virtual-nodes): Reflow docstring.
24961         (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
24962         (Info-apropos-toc-nodes, info-finder, Info-get-token)
24963         (Info-find-emacs-command-nodes, Info-speedbar-key-map):
24964         Fix typos in docstrings.
24965         (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
24966         (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
24967         (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
24968         (Info-restore-desktop-buffer): Mark unused parameters.
24969         (Info-directory-find-file, Info-directory-find-node)
24970         (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
24971         (Info-virtual-index-find-node, Info-apropos-find-file)
24972         (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
24973         Mark unused parameters; fix typos in docstrings.
24974         (Info-virtual-index): Remove unused local variable `nodename'.
24976 2011-04-05  Deniz Dogan  <deniz@dogan.se>
24978         * net/rcirc.el: Update my e-mail address.
24979         (rcirc-mode-map): Remove M-o binding.
24981 2011-04-05  Chong Yidong  <cyd@stupidchicken.com>
24983         * startup.el (command-line): Save the cursor's theme-face
24984         directly, instead of using face-override-spec.
24986         * custom.el (load-theme): Minor optimization in assigning faces.
24988 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
24990         * help-fns.el (describe-variable): Complete all variables having
24991         documentation, including keywords.
24992         http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
24994 2011-04-04  Juanma Barranquero  <lekktu@gmail.com>
24996         Convert to lexical-binding.
24998         * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
24999         (bs--get-marked-string, bs--get-modified-string)
25000         (bs--get-readonly-string, bs--get-size-string, bs--get-name)
25001         (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
25002         (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
25004         * ehelp.el (electric-help-execute-extended)
25005         (electric-help-ctrl-x-prefix):
25006         * hexl.el (hexl-revert-buffer-function):
25007         * linum.el (linum-after-change, linum-after-scroll):
25008         * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
25010         * help-fns.el (help-describe-category-set): Remove unused ERR variable.
25012 2011-04-04  Daiki Ueno  <ueno@unixuser.org>
25014         * epa-dired.el:
25015         * epa-mail.el:
25016         * epa-hook.el:
25017         * epa-file.el:
25018         * epa.el:
25019         * epg.el: Use lexical binding.
25021 2011-04-03  Chong Yidong  <cyd@stupidchicken.com>
25023         * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
25025         * textmodes/flyspell.el (flyspell-word): Recognize default
25026         dictionary case for flyspell-mark-duplications-exceptions.
25027         Use regexp matching for languages.
25028         (flyspell-mark-duplications-exceptions): Add "that" and "had" for
25029         default dictionary (Bug#7926).
25031 2011-04-02  Chong Yidong  <cyd@stupidchicken.com>
25033         * emacs-lisp/package.el (package--with-work-buffer):
25034         Recognize https URLs.
25036         * net/network-stream.el: Move from gnus/proto-stream.el.
25037         Change prefix to network-stream throughout.
25038         (open-protocol-stream): Merge into open-network-stream, leaving
25039         open-protocol-stream as an alias.  Handle nil BUFFER args.
25041         * subr.el (open-network-stream): Move to net/network-stream.el.
25043 2011-04-02  Glenn Morris  <rgm@gnu.org>
25045         * find-dired.el (find-exec-terminator): New option.
25046         (find-ls-option): Test for -ls support.
25047         (find-ls-subdir-switches): Test for -b in find-ls-option.
25048         (find-dired, find-grep-dired): Doc fixes.
25049         (find-dired): Use find-exec-terminator.
25051         * find-dired.el (find-ls-option, find-ls-subdir-switches)
25052         (find-grep-options): Do not autoload these defcustoms, remove purecopy.
25053         (find-name-arg): Remove purecopy.
25055         * progmodes/grep.el (grep-find-use-xargs): Doc fix.
25056         (grep-compute-defaults): Check for `-exec COMMAND +' support.
25057         Set grep-find-use-xargs, grep-find-command, and grep-find-template
25058         accordingly.  Don't add the null-device if not needed.
25060         * files.el (save-some-buffers): Doc fix.
25062 2011-04-02  Eli Zaretskii  <eliz@gnu.org>
25064         * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
25066 2011-04-01  Juanma Barranquero  <lekktu@gmail.com>
25068         * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
25069         Use `dolist' rather than `mapcar'.
25071 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
25073         Add lexical binding.
25075         * subr.el (apply-partially): Use new closures rather than CL.
25076         (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
25077         (dolist, dotimes): Use slightly different expansion for lexical code.
25078         (functionp): Move to C.
25079         (letrec): New macro.
25080         (with-wrapper-hook): Use it and apply-partially instead of CL.
25081         (eval-after-load): Preserve lexical-binding.
25082         (save-window-excursion, with-output-to-temp-buffer): Turn them
25083         into macros.
25085         * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
25087         * help-fns.el (help-split-fundoc): Return nil if there's nothing else
25088         than the arglist.
25089         (help-add-fundoc-usage): Don't add `Not documented'.
25090         (help-function-arglist): Handle closures, subroutines, and new
25091         byte-code-functions.
25092         (help-make-usage): Remove leading underscores.
25093         (describe-function-1): Handle closures.
25094         (describe-variable): Use special-variable-p for completion.
25096         * files.el (lexical-binding): Declare safe.
25098         * emacs-lisp/pcase.el: Don't use destructuring-bind.
25099         (pcase--memoize): Rename from pcase-memoize.  Change weakness.
25100         (pcase): Add `let' pattern.
25101         Change memoization so it actually works.
25102         (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
25103         (pcase--u1) <guard, pred>: Fix possible shadowing problem.
25104         <let>: New case.
25106         * emacs-lisp/macroexp.el: Use lexical binding.
25107         (macroexpand-all-1): Check obsolete macros.  Expand compiler-macros.
25108         Don't convert ' to #' without checking that it's indeed quoting
25109         a lambda.
25111         * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
25112         Use eval-sexp-add-defvars.
25113         (eval-sexp-add-defvars): New fun.
25115         * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
25117         * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
25118         Don't autoload.
25119         (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
25120         than the internal `byte-compile-lambda'.
25121         (defmethod): Don't hide code under quotes.
25122         (eieio-defmethod): New `code' argument.
25124         * emacs-lisp/eieio-comp.el: Remove.
25126         * emacs-lisp/edebug.el (edebug-eval-defun)
25127         (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
25128         (edebug-toggle): Avoid `eval'.
25130         * emacs-lisp/disass.el (disassemble-internal): Handle new
25131         `closure' objects.
25132         (disassemble-1): Handle new byte codes.
25134         * emacs-lisp/cl.el (pushnew): Silence warning.
25136         * emacs-lisp/cl-macs.el (cl-byte-compile-block)
25137         (cl-byte-compile-throw): Remove.
25138         (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
25140         * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
25141         closures.
25143         * emacs-lisp/cconv.el: New file.
25145         * emacs-lisp/bytecomp.el: Use lexical binding instead of
25146         a "bytecomp-" prefix.  Macroexpand everything as a separate phase.
25147         (byte-compile-initial-macro-environment):
25148         Handle declare-function here.
25149         (byte-compile--lexical-environment): New var.
25150         (byte-stack-ref, byte-stack-set, byte-discardN)
25151         (byte-discardN-preserve-tos): New lap codes.
25152         (byte-interactive-p): Don't use any more.
25153         (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
25154         New macros.
25155         (byte-compile-lapcode): Use them and handle new lap codes.
25156         (byte-compile-obsolete): Remove.
25157         (byte-compile-arglist-signature): Handle new byte-code arg"lists".
25158         (byte-compile-arglist-warn): Check late def of inlinable funs.
25159         (byte-compile-cl-warn): Don't silence warnings for compiler-macros
25160         since they should have been expanded by now.
25161         (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
25162         (byte-compile-from-buffer): Remove unused second arg.
25163         (byte-compile-preprocess): New function.
25164         (byte-compile-toplevel-file-form): New function to distinguish
25165         file-form calls from outside from file-form calls from hunk-handlers.
25166         (byte-compile-file-form): Simplify.
25167         (byte-compile-file-form-defsubst): Remove.
25168         (byte-compile-file-form-defmumble): Simplify now that
25169         byte-compile-lambda always returns a byte-code-function.
25170         (byte-compile): Preprocess.
25171         (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
25172         Remove, not used any more.
25173         (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
25174         (byte-compile-make-args-desc): New funs.
25175         (byte-compile-lambda): Handle lexical functions.  Always return
25176         a byte-code-function.
25177         (byte-compile-reserved-constants): New var, to make up room for
25178         closed-over variables.
25179         (byte-compile-constants-vector): Obey it.
25180         (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
25181         (byte-compile-macroexpand-declare-function): New function.
25182         (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
25183         byte-code-functions.
25184         (byte-compile-form): Check obsolescence here.
25185         (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
25186         (byte-compile-variable-ref): Remove.
25187         (byte-compile-dynamic-variable-op): New fun.
25188         (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
25189         (byte-compile-variable-set): New funs.
25190         (byte-compile-discard): Add 2 args.
25191         (byte-compile-stack-ref, byte-compile-stack-set)
25192         (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
25193         (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
25194         macroexpand-all instead.
25195         (byte-compile-quote-form): Remove.
25196         (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
25197         (byte-compile-bind, byte-compile-unbind): New funs.
25198         (byte-compile-let): Handle let* and lexical binding.
25199         (byte-compile-let*): Remove.
25200         (byte-compile-catch, byte-compile-unwind-protect)
25201         (byte-compile-track-mouse, byte-compile-condition-case):
25202         Handle a new :fun-body form, used for lexical scoping.
25203         (byte-compile-save-window-excursion)
25204         (byte-compile-with-output-to-temp-buffer): Remove.
25205         (byte-compile-defun): Simplify.
25206         (byte-compile-stack-adjustment): New fun.
25207         (byte-compile-out): Use it.
25208         (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
25210         * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
25211         handler any more.
25213         * emacs-lisp/byte-opt.el: Use lexical binding.
25214         (byte-inline-lapcode): Remove (to bytecomp).
25215         (byte-compile-inline-expand): Pay attention to inlining to/from
25216         lexically bound code.
25217         (byte-compile-unfold-lambda): Don't handle byte-code-functions
25218         any more.
25219         (byte-optimize-form-code-walker): Don't handle save-window-excursion
25220         any more and don't call compiler-macros.
25221         (byte-compile-splice-in-already-compiled-code): Remove.
25222         (byte-code): Don't inline any more.
25223         (disassemble-offset): Receive `bytes' as argument rather than via
25224         dynamic scoping.
25225         (byte-compile-tag-number): Declare before first use.
25226         (byte-decompile-bytecode-1): Handle new byte-codes, don't change
25227         `return' even if make-spliceable.
25228         (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
25229         obsolete interactive-p.
25230         (byte-optimize-lapcode): Optimize new lap-codes.
25231         Don't trip up on new form of `byte-constant' lap code.
25233         * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
25235         * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
25237         * custom.el (custom-initialize-default, custom-declare-variable):
25238         Use `defvar'.
25240         * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
25241         New variables.
25242         (compile-onefile, .el.elc, compile-calc, recompile): Use them.
25243         (COMPILE_FIRST): Add macroexp and cconv.
25244         * makefile.w32-in: Mirror changes in Makefile.in.
25246         * vc/cvs-status.el:
25247         * vc/diff-mode.el:
25248         * vc/log-edit.el:
25249         * vc/log-view.el:
25250         * vc/smerge-mode.el:
25251         * textmodes/bibtex-style.el:
25252         * textmodes/css-mode.el:
25253         * startup.el:
25254         * uniquify.el:
25255         * minibuffer.el:
25256         * newcomment.el:
25257         * reveal.el:
25258         * server.el:
25259         * mpc.el:
25260         * emacs-lisp/smie.el:
25261         * doc-view.el:
25262         * dired.el:
25263         * abbrev.el: Use lexical binding.
25265 2011-04-01  Eli Zaretskii  <eliz@gnu.org>
25267         * info.el (info-display-manual): New function.
25269 2011-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
25271         * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
25273 2011-03-31  Tassilo Horn  <tassilo@member.fsf.org>
25275         * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
25276         an entry for that server in rcirc-authinfo.  (Bug#8385)
25278 2011-03-31  Glenn Morris  <rgm@gnu.org>
25280         * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
25282         * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
25284 2011-03-30  Christoph Scholtes  <cschol2112@googlemail.com>
25286         * progmodes/python.el (python-default-interpreter)
25287         (python-python-command-args, python-jython-command-args)
25288         (python-which-shell, python-which-args, python-which-bufname)
25289         (python-file-queue, python-comint-output-filter-function)
25290         (python-toggle-shells, python-shell): Remove obsolete defcustoms,
25291         variables and functions.
25293 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
25295         * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
25296         (completion-in-region-mode): New minor mode.
25297         (completion-in-region): Use it.
25298         (completion-in-region--data, completion-in-region-mode-map): New vars.
25299         (completion-in-region--postch): New function.
25300         (completion--capf-misbehave-funs, completion--capf-safe-funs):
25301         New vars.
25302         (completion--capf-wrapper): New function.
25303         (completion-at-point): Use it to track well-behavedness of
25304         hook functions.
25305         (completion-help-at-point): New command.
25307 2011-03-30  Jason Merrill  <jason@redhat.com>  (tiny change)
25309         * vc/add-log.el (add-change-log-entry): Don't use whitespace
25310         syntax class to search for whitespace on a single line
25311         (Message-ID: <4D938140.4030905@redhat.com>).
25313 2011-03-30  Leo Liu  <sdl.web@gmail.com>
25315         * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
25316         New commands.
25317         (edit-abbrevs-map): Bind them here.
25318         (write-abbrev-file): New optinal arg VERBOSE.  (Bug#5937)
25320 2011-03-29  Ken Manheimer  <ken.manheimer@gmail.com>
25322         * allout.el (allout-hide-by-annotation, allout-flag-region):
25323         Reduce possibility of overlay leakage by making them volatile.
25325         * allout-widgets.el (allout-widgets-tally): Define as nil so the
25326         hash is not shared between buffers.  Mode initialization is
25327         responsible for giving it a useful starting value.
25328         (allout-item-span): Reduce possibility of overlay leakage by
25329         making them volatile.
25330         (allout-widgets-count-buttons-in-region): Add diagnostic function
25331         for tracking down button overlay leaks.
25333 2011-03-29  Leo Liu  <sdl.web@gmail.com>
25335         * ido.el (ido-read-internal): Use the default history var
25336         minibuffer-history if no HISTORY is specified.
25338 2011-03-28  Brian T. Sniffen  <bsniffen@akamai.com>  (tiny change)
25340         * net/imap.el (imap-shell-open, imap-process-connection-type):
25341         Use imap-process-connection-type for 'shell' streams as well as
25342         Kerberos, SSL, other subprocesses.
25344 2011-03-28  Leo Liu  <sdl.web@gmail.com>
25346         * abbrev.el (abbrev-table-empty-p): New function.
25347         (prepare-abbrev-list-buffer): Place empty abbrev tables after
25348         nonempty ones.  (Bug#5937)
25350 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
25352         * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
25354 2011-03-27  Leo Liu  <sdl.web@gmail.com>
25356         * ansi-color.el (ansi-color-names-vector): Allow cons cell value
25357         for foreground and background colors.
25358         (ansi-color-make-color-map): Adapt.
25360 2011-03-25  Leo Liu  <sdl.web@gmail.com>
25362         * midnight.el (midnight-time-float): Remove.  Note it calculates
25363         the microsecond component incorrectly and seconds-to-time does the
25364         same job.
25365         Remove redundant (require 'timer).
25367         * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
25368         (ido-completions): Remove unused arguments.  (Bug#8329)
25370 2011-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
25372         * minibuffer.el (completion--flush-all-sorted-completions):
25373         Remove itself from hook.
25374         (completion-at-point): Let the functions perform the completion
25375         immediately and return nil or t.
25376         * comint.el (comint-dynamic-complete-functions): Now identical to
25377         completion-at-point-functions.
25378         (comint-dynamic-list-input-ring): Remove unused var `index'.
25379         (comint--match-partial-filename, comint--unquote&expand-filename):
25380         New funs, split from comint-match-partial-filename.
25381         (comint-dynamic-complete): Use completion-at-point.
25382         (comint-dynamic-complete-filename): Use comint--match-partial-filename.
25384 2011-03-24  Drew Adams  <drew.adams@oracle.com>
25386         * thingatpt.el: Support `defun'.
25388 2011-03-23  Leo Liu  <sdl.web@gmail.com>
25390         * abbrevlist.el: Move to obsolete/abbrevlist.el.
25392         * help-mode.el (help-mode-finish): Tweak regexp.
25394 2011-03-23  Glenn Morris  <rgm@gnu.org>
25396         * eshell/esh-opt.el (eshell-eval-using-options):
25397         Do not bind unused local variable `eshell-option-stub'.
25399         * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
25401 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
25403         * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
25404         keymap variable in `with-no-warnings' to avoid a warning when the
25405         keymap has been already `defconst'ed.
25407 2011-03-22  Leo Liu  <sdl.web@gmail.com>
25409         * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
25410         encode all chars in abbrevs; otherwise use emacs-mule or
25411         utf-8-emacs.  (Bug#8308)
25413 2011-03-22  Juanma Barranquero  <lekktu@gmail.com>
25415         * simple.el (backward-delete-char-untabify):
25416         Avoid warning about using `delete-backward-char'.
25418         * image.el (image-type-file-name-regexps): Make it variable.
25419         `imagemagick-register-types' modifies it, and the user may want
25420         to add new extensions for known image types.
25421         (imagemagick-register-types): Throw error if not using ImageMagick.
25423 2011-03-22  Leo Liu  <sdl.web@gmail.com>
25425         * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
25426         located before rcirc-prompt-end-marker.
25427         (rcirc-complete): Error if point is not after rcirc prompt.
25428         Handle the case when table is nil.
25429         (rcirc-user-authenticated): Define to fix compiler warning.
25431 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
25433         * custom.el (custom--inhibit-theme-enable): Make it affect only
25434         custom-theme-set-variables and custom-theme-set-faces.
25435         (provide-theme): Ignore custom--inhibit-theme-enable.
25436         (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
25437         (custom-enabling-themes): Delete variable.
25438         (enable-theme): Accept only loaded themes as arguments.
25439         Ignore the special custom-enabled-themes variable.
25440         (custom-enabled-themes): Forbid themes from setting this.
25441         Eliminate use of custom-enabling-themes.
25442         (custom-push-theme): Quote "changed" custom var entry.
25444 2011-03-21  Leo Liu  <sdl.web@gmail.com>
25446         * ido.el (ido-read-internal): Add ido-selected to history instead
25447         of user input.
25449 2011-03-21  Stefan Monnier  <monnier@iro.umontreal.ca>
25451         * subr.el (deferred-action-list, deferred-action-function):
25452         Mark obsolete.
25454 2011-03-21  Leo Liu  <sdl.web@gmail.com>
25456         * vc/log-view.el: Remove (require 'wid-edit), not needed after the
25457         change on 2011-02-13 (bug#8309).
25459         * minibuffer.el (read-file-name-function): Change default value.
25460         (read-file-name--defaults): Rename from read-file-name-defaults.
25461         (read-file-name-default): Rename from read-file-name.
25462         (read-file-name): Call read-file-name-function.
25464 2011-03-21  Glenn Morris  <rgm@gnu.org>
25466         * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
25467         Doc fixes.
25469 2011-03-21  Chong Yidong  <cyd@stupidchicken.com>
25471         * cus-theme.el: Add missing provide statement.
25472         (customize-create-theme): Extract theme value correctly.
25473         (custom-theme-visit-theme): Autoload.
25474         (customize-create-theme): Prompt before inserting default faces.
25476 2011-03-20  Jay Belanger  <jay.p.belanger@gmail.com>
25478         * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
25479         units and musical notes.
25481 2011-03-20  Leo Liu  <sdl.web@gmail.com>
25483         * ido.el (ido-read-internal): Use completing-read-default.
25484         (ido-completing-read): Fix compatibility with completing-read.
25486 2011-03-20  Christian Ohler  <ohler@gnu.org>
25488         * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
25489         (ert-delete-all-tests): Use `called-interactively-p' rather than
25490         `interactive-p'.
25491         (ert--make-xrefs-region): Respect END.
25493 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
25495         * dired-aux.el (dired-create-directory): Signal an error if the
25496         directory already exists (Bug#8246).
25498         * facemenu.el (list-colors-display): Call list-faces-display
25499         inside with-help-window.
25500         (list-colors-print): Use display property to align the final
25501         column, instead of checking window-width.
25503 2011-03-19  Eli Zaretskii  <eliz@gnu.org>
25505         * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
25506         windows-nt systems.
25507         (emerge-protect-metachars): Quote correctly for ms-dos and
25508         windows-nt systems.
25510 2011-03-19  Ralph Schleicher  <rs@ralph-schleicher.de>
25512         * info.el (info-initialize): Replace all uses of `:' with
25513         path-separator for compatibility with non-Unix systems.
25514         Cache quoting of path-separator.  (Bug#8258)
25516 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
25518         * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
25519         (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
25520         (mouse-avoidance-mode): Fix typos in docstrings.
25522 2011-03-19  Chong Yidong  <cyd@stupidchicken.com>
25524         * startup.el (package-subdirectory-regexp): Move from package.el.
25525         Omit \\` and \\', and let callers add them.
25527         * emacs-lisp/package.el (package-strip-version)
25528         (package-load-all-descriptors): Add \\` and \\' to
25529         package-subdirectory-regexp before using it.
25530         (package-untar-buffer): New arg DIR; ensure that file untars only
25531         into this expected directory.  Remove superfluous delete-region.
25532         (package-unpack): Caller changed.
25533         (package-tar-file-info): Use package-subdirectory-regexp.
25535 2011-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
25537         * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
25538         diff-mode-shared-map (bug#8284).
25539         (diff-mode-shared-map): Re-introduce some bindings that were problematic.
25541 2011-03-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
25543         * calendar/time-date.el (format-seconds): Use assoc instead of
25544         assoc-string, since assoc-string doesn't exist in XEmacs.
25546 2011-03-17  Juanma Barranquero  <lekktu@gmail.com>
25548         * custom.el (custom-known-themes): Reflow docstring.
25549         (custom-theme-load-path): Fix typo in docstring.
25550         (load-theme): Fix typo in error message.
25551         (custom-available-themes, custom-variable-theme-value):
25552         Use `let', not `let*'.
25554 2011-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
25556         * calc/README: Mention inclusion of musical notes.
25558         * calc/calc-units.el (calc-lu-quant): Rename from
25559         `calc-logunits-quantity'.
25560         (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
25561         (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
25562         (calc-db): Rename from `calc-dblevel'.
25563         (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
25564         (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
25565         (calc-np): Rename from `calc-nplevel'.
25566         (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
25567         (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
25568         (calc-lu-plus): Rename from `calc-logunits-add'.
25569         (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
25570         (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
25571         (calc-lu-minus): Rename from `calc-logunits-sub'.
25572         (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
25573         (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
25574         (calc-lu-times): Rename from `calc-logunits-mul'.
25575         (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
25576         (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
25577         (calc-lu-divide): Rename from `calc-logunits-div'.
25578         (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
25579         (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
25581         * calc/calc-ext.el (calc-init-extensions): Update the names of the
25582         functions being autoloaded.
25584         * calc/calc.el (calc-lu-power-reference): Rename from
25585         `calc-logunits-power-reference'.
25586         (calc-lu-field-reference): Rename from
25587         `calc-logunits-field-reference'.
25589         * calc/calc-help.el (calc-l-prefix-help):
25590         Mention musical note functions.
25592 2011-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
25594         * minibuffer.el (completion-all-sorted-completions):
25595         Use :completion-cycle-penalty text property if present.
25597 2011-03-16  Ken Manheimer  <ken.manheimer@gmail.com>
25599         * allout.el (allout-yank-processing): Adjust for new rebulleting
25600         regime so bullet being yanked is used without prompting the user
25601         for a choice.
25603 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
25605         * startup.el (command-line): Warn the user that _emacs is deprecated.
25607 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
25609         * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
25610         (delphi-verbose, delphi-comment-face, delphi-string-face)
25611         (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
25612         (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
25613         (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
25614         (delphi-new-comment-line, delphi-font-lock-defaults)
25615         (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
25616         Fix typos in docstrings.
25618 2011-03-15  Ken Manheimer  <ken.manheimer@gmail.com>
25620         * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
25621         Invert the roles of character and string values for INSTEAD, so a
25622         string is used for the more common case of a defaulting prompt.
25624 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25626         * progmodes/ruby-mode.el (ruby-backward-sexp):
25627         * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
25628         * play/gamegrid.el (gamegrid-make-face):
25629         * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
25630         (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
25631         * notifications.el (notifications-notify):
25632         * net/xesam.el (xesam-search-engines):
25633         * net/quickurl.el (quickurl-list-insert):
25634         * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
25636 2011-03-15  Chong Yidong  <cyd@stupidchicken.com>
25638         * startup.el (command-line): Update package subdirectory regexp.
25640 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25642         * allout.el (allout-abbreviate-flattened-numbering)
25643         (allout-mode-deactivate-hook): Fix up obsolescence "date".
25645         * subr.el (read-char-choice): Only show the cursor after the prompt,
25646         not after the answer.
25648 2011-03-15  Kevin Ryde  <user42@zip.com.au>
25650         * help-fns.el (variable-at-point): Skip leading quotes, if any
25651         (bug#8253).
25653 2011-03-15  Stefan Monnier  <monnier@iro.umontreal.ca>
25655         * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
25656         warning message.
25658 2011-03-14  Michael Albinus  <michael.albinus@gmx.de>
25660         * shell.el (shell): When called interactively, offer to change the
25661         shell file name on remote hosts.
25663 2011-03-13  Teodor Zlatanov  <tzz@lifelogs.com>
25665         * net/ldap.el (ldap-search-internal): Add `auth-source-search'
25666         integration for LDAP parameters.  The host, base, user or binddn,
25667         and secret tokens can be specified in a netrc file, for instance.
25668         This is optional because an `auth-source' parameter must be
25669         specified in the search attributes.
25671 2011-03-13  Juanma Barranquero  <lekktu@gmail.com>
25673         * help.el (describe-mode): Link to the mode's definition (bug#8185).
25675 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
25677         * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
25678         into declaration.  Remove redundant and harmful binding.
25680 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
25682         * files.el (file-ownership-preserved-p): Pass `integer' as an
25683         explicit 2nd argument to `file-attributes'.  If the file's owner
25684         is the Administrators group on Windows, and the current user is
25685         Administrator, consider that a match.
25687         * server.el (server-ensure-safe-dir): Consider server directory
25688         safe on MS-Windows if its owner is the Administrators group while
25689         the current Emacs user is Administrator.  Use `=' to compare
25690         numerical UIDs, since they could be integers or floats.
25692 2011-03-12  Juanma Barranquero  <lekktu@gmail.com>
25694         * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
25696 2011-03-12  Michael Albinus  <michael.albinus@gmx.de>
25698         Sync with Tramp 2.2.1.
25700         * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
25702         * net/trampver.el: Update release number.
25704 2011-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
25706         * progmodes/compile.el (compilation--previous-directory): Fix up
25707         various nil/dead-marker mismatches (bug#8014).
25708         (compilation-directory-properties, compilation-error-properties):
25709         Don't call it at a position past the one we're about to change.
25711         * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
25712         Disable obsolescence warnings in the file that declares it.
25714 2011-03-11  Ken Manheimer  <ken.manheimer@gmail.com>
25716         * allout-widgets.el (allout-widgets-tally):
25717         Initialize allout-widgets-tally as a hash table rather than nil to
25718         prevent mode-line redisplay warnings.  Also, clarify the module
25719         description and fix a comment typo.
25721 2011-03-11  Juanma Barranquero  <lekktu@gmail.com>
25723         * help-fns.el (describe-variable): Don't complete keywords.
25724         Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
25726 2011-03-10  Chong Yidong  <cyd@stupidchicken.com>
25728         * emacs-lisp/package.el (package-version-join): Impose a standard
25729         string representation for pre/alpha/beta version lists.
25730         (package-unpack-single): Standardize the directory name by passing
25731         it through package-version-join.
25732         (package-strip-rcs-id): Accept any version string that does not
25733         signal an error in version-to-list.
25735 2011-03-10  Michael Albinus  <michael.albinus@gmx.de>
25737         * simple.el (delete-trailing-whitespace): Return nil for the
25738         benefit of `write-file-functions'.
25740 2011-03-10  Glenn Morris  <rgm@gnu.org>
25742         * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
25744         * vc/vc-git.el (vc-git-program): New option.
25745         (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
25746         (vc-git--call): Use it.
25748         * eshell/esh-util.el (eshell-condition-case): Doc fix.
25750         * cus-edit.el (Custom-newline): If no button at point, look
25751         for a subgroup button at start-of-line.  (Bug#2298)
25753         * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
25755 2011-03-10  Julien Danjou  <julien@danjou.info>
25757         * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
25758         `cursor-type' is nil.
25760 2011-03-09  Jay Belanger  <jay.p.belanger@gmail.com>
25762         * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
25764 2011-03-09  Ken Manheimer  <ken.manheimer@gmail.com>
25766         * allout.el: Change so yank of distinctive-bullet items
25767         preserves the existing header prefix, rebulleting it if necessary,
25768         rather than replacing it.  This is necessary for proper operation
25769         of cooperative addons like allout-widgets.
25770         (allout-make-topic-prefix, allout-rebullet-heading):
25771         Change SOLICIT arg to INSTEAD, and interpret additionally a string
25772         value as alternate bullet to be used, instead of prompting the user
25773         for a bullet character.
25775 2011-03-09  Michael Albinus  <michael.albinus@gmx.de>
25777         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
25778         Do not use `tramp-file-name-port', because this returns also
25779         `tramp-default-port'.
25781 2011-03-09  Deniz Dogan  <deniz.a.m.dogan@gmail.com>
25783         * net/rcirc.el (rcirc-handler-001): Remove useless
25784         with-rcirc-process-buffer.
25785         (rcirc-check-auth-status): Swap arguments to string-match.
25787 2011-03-09  Glenn Morris  <rgm@gnu.org>
25789         * shell.el (shell-mode):
25790         Set comint-input-ring-size from HISTSIZE.  (Bug#7889)
25792         * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
25793         Check for GDBHISTFILE, HISTSIZE, etc.  (Bug#7889)
25795 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
25797         * emacs-lisp/package.el (package-refresh-contents)
25798         (package-menu-execute): Use condition-case-no-debug.
25800 2011-03-08  Michael Albinus  <michael.albinus@gmx.de>
25802         * simple.el (shell-command-to-string): Use `process-file'.
25804         * emacs-lisp/package.el (package-tar-file-info): Handle also
25805         remote files.
25807         * emacs-lisp/package-x.el (package-upload-buffer-internal):
25808         Use `equal' for upload base check.
25810 2011-03-08  Arni Magnusson  <arnima@hafro.is>  (tiny change)
25812         * textmodes/texinfo.el (texinfo-environments):
25813         Add deftypecv, deftypeivar, deftypemethod, deftypeop, html.  (Bug#2783)
25815 2011-03-08  Glenn Morris  <rgm@gnu.org>
25817         * cus-start.el (cursor-in-non-selected-windows):
25818         Fix :set quoting oddness.  (Bug#8192)
25820         * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
25821         in some setf expressions.  (Bug#2159)
25823 2011-03-08  Chong Yidong  <cyd@stupidchicken.com>
25825         * custom.el (custom-available-themes): Return themes in
25826         alphabetical order.
25828 See ChangeLog.15 for earlier changes.
25830 ;; Local Variables:
25831 ;; coding: utf-8
25832 ;; End:
25834   Copyright (C) 2011-2013 Free Software Foundation, Inc.
25836   This file is part of GNU Emacs.
25838   GNU Emacs is free software: you can redistribute it and/or modify
25839   it under the terms of the GNU General Public License as published by
25840   the Free Software Foundation, either version 3 of the License, or
25841   (at your option) any later version.
25843   GNU Emacs is distributed in the hope that it will be useful,
25844   but WITHOUT ANY WARRANTY; without even the implied warranty of
25845   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25846   GNU General Public License for more details.
25848   You should have received a copy of the GNU General Public License
25849   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.