1 2012-07-25 Andreas Schwab <schwab@linux-m68k.org>
3 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
5 2012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
7 * emacs-lisp/pp.el (pp-display-expression): Select old selected
8 window only if it is still live (Bug#12034).
10 2012-07-25 Martin Rudalics <rudalics@gmx.at>
12 * subr.el (redirect-frame-focus): Add advertised calling
13 convention (Bug#12030).
15 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
17 Prefer typical American spelling for "acknowledgment".
18 * vc/add-log.el (change-log-acknowledgment): Rename from
19 change-log-acknowledgement, with an alias for the old name.
21 2012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
23 * calc-alg.el (math-simplify-divide): Don't cross multiply
24 in an equation when the lhs is a variable.
26 2012-07-24 Julien Danjou <julien@danjou.info>
28 * net/netrc.el (netrc-find-service-number, netrc-store-data):
31 2012-07-23 Eli Zaretskii <eliz@gnu.org>
33 * startup.el (command-line): Don't display an empty user name in
34 the error message about non-existent home directory, when
35 init-file-user was set to an empty string. See
36 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
37 for the details and context.
39 2012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
41 * ses.el (ses-cell-formula-aset): New macro.
42 (ses-cell-references-aset): New macro.
43 (ses-cell-p): New function.
44 (ses-rename-cell): Do no longer rely on complex operations like
45 ses-cell-set-formula or ses-set-cell to change the cell and handle
46 the undo at the same time, but rather use lower level new macros
47 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
48 the undo directly. Refresh the mode line.
50 2012-07-21 Leo Liu <sdl.web@gmail.com>
52 * progmodes/cc-cmds.el (c-defun-name): Use
53 match-string-no-properties instead for consistency.
55 2012-07-20 Leo Liu <sdl.web@gmail.com>
57 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
60 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
62 2012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
64 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
65 * progmodes/bug-reference.el, misearch.el: Provide themselves
68 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
69 of narrowed buffer (bug#11966).
71 2012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
73 * ses.el (ses-rename-cell): Set new name also in reference list of
74 cells of which the renamed cell depends.
76 2012-07-20 Masatake YAMATO <yamato@redhat.com>
78 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
79 to check whether menu-bar is shown or not. If not shown,
80 show the menu-bar as a popup menu instead of using tmm.
81 * mouse.el (popup-menu): Accept `point' as `position' argument.
83 2012-07-20 Dmitry Gutov <dgutov@yandex.ru>
85 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
86 up inside string symbol literal (bug#11923).
88 2012-07-20 Eli Zaretskii <eliz@gnu.org>
90 * startup.el (fancy-startup-text): Read the whole tutorial, not
91 just its first 256 bytes. Prevents gibberish in display of the
94 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
96 Drop idle buffer compaction due to an absence of the
100 2012-07-19 Sam Steingold <sds@gnu.org>
102 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
103 vc-bzr-pull & vc-bzr-merge-branch.
104 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
105 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
106 for consistency with compilation-error-regexp-alist.
107 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
108 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
109 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
110 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
112 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
114 * emacs-lisp/chart.el: Use lexical-binding.
115 (chart-emacs-storage): Don't hardcode the list of entries.
117 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
119 Next round of tweaks caused by Fgarbage_collect changes.
120 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
122 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
124 Compact buffers when idle.
125 * compact.el: New file.
127 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
129 * subr.el (eventp): Presume that if it looks vaguely like an event,
130 it's an event (bug#10190).
132 2012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
134 Enhancements to ppss related code (thanks Stefan).
135 * progmodes/python.el (python-indent-context)
136 (python-indent-calculate-indentation, python-indent-dedent-line)
137 (python-indent-electric-colon, python-nav-forward-block)
138 (python-mode-abbrev-table)
139 (python-info-assignment-continuation-line-p): Simplify checks
141 (python-info-continuation-line-p): Cleanup.
142 (python-info-ppss-context): Do not catch 'quote.
143 (python-info-ppss-context-type)
144 (python-info-ppss-comment-or-string-p): Simplify.
146 2012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
148 * progmodes/python.el: Enhancements to eldoc support.
149 (python-info-current-symbol): New function.
150 (python-eldoc-at-point): Use python-info-current-symbol.
151 (python-info-current-defun): Fix cornercase on first defun scan.
152 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
153 and signal error when no inferior python process is available.
155 2012-07-18 Dmitry Gutov <dgutov@yandex.ru>
157 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
158 assume it's always t.
159 (vc-git-registered): Remove caching, the function is only called
161 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
163 2012-07-18 Chong Yidong <cyd@gnu.org>
165 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
167 * simple.el (count-words): Report on narrowing (Bug#9959).
169 * bindings.el: Bind M-= to count-words.
171 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
173 2012-07-18 Masatake YAMATO <yamato@redhat.com>
175 * progmodes/sh-script.el (sh-imenu-generic-expression):
176 Capture a function with `function' keyword and without parentheses
177 like "function FOO" (bug#11856).
179 2012-07-18 Tassilo Horn <tassilo@member.fsf.org>
181 * window.el (split-window-sensibly): Make WINDOW argument
184 2012-07-18 Chong Yidong <cyd@gnu.org>
186 * subr.el (keyboard-translate): Doc fix (Bug#7261).
188 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
189 and make C-x 8 RET exit isearch (Bug#11439).
191 * international/iso-transl.el: Move isearch-mode-map key
192 definitions to isearch.el.
194 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
196 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
197 (eieio-defclass): Use gv-define-setter when possible.
199 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
201 Reflect recent changes in Fgarbage_collect.
202 * emacs-lisp/chart.el (chart-emacs-storage): Change to
203 reflect new format of data returned by Fgarbage_collect.
205 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
207 New utility functions + python-info-ppss-context fix (Bug#11910).
208 * progmodes/python.el (python-info-beginning-of-block-statement-p)
209 (python-info-ppss-comment-or-string-p): New functions.
210 (python-info-ppss-context): Small fix for string check.
212 2012-07-17 Juri Linkov <juri@jurta.org>
214 * dired-aux.el (dired-do-async-shell-command): Doc fix.
215 (dired-do-async-shell-command): Don't add `*' at the end of the
217 (dired-do-shell-command): Doc fix.
218 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
219 Join the individual commands using either "&" or ";" as the
220 separator depending on the values of these trailing characters.
221 At the end re-add the trailing "&". (Bug#10598)
223 * simple.el (async-shell-command): Sync the interactive spec with
224 `shell-command'. Doc fix.
225 (shell-command): Doc fix.
227 2012-07-17 Juri Linkov <juri@jurta.org>
229 * descr-text.el (describe-char): Fix format args. (Bug#10129)
231 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
233 Final renames and doc fixes for movement commands (bug#11899).
234 * progmodes/python.el (python-nav-beginning-of-statement):
235 Rename from python-nav-statement-start.
236 (python-nav-end-of-statement): Rename from
237 python-nav-statement-end.
238 (python-nav-beginning-of-block): Rename from
239 python-nav-block-start.
240 (python-nav-end-of-block): Rename from python-nav-block-end.
242 2012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
244 * progmodes/python.el (python-shell-send-string-no-output):
245 Allow accept-process-output to quit, keeping shell process ready for
246 future interactions (Bug#11868).
248 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
250 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
252 * emacs-lisp/elint.el (elint-find-args-in-code):
253 Use help-function-arglist, so as to handle lexical byte-code.
255 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
258 2012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
260 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
261 Avoid spuriously marking the buffer as modified because of c-is-sws.
263 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
264 as not-a-comment (bug#11946).
266 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
269 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
270 Use read-event since we don't really want to read chars but bytes.
272 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
273 $$..$$ but also $..$ using regexps (bug#11953).
274 Use tex-verbatim for \url and \path.
275 (tex-font-lock-keywords): Define as defconst like the others.
276 (tex-common-initialization): Don't use font-lock-syntax-table any more.
278 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
280 * international/mule-cmds.el (ucs-insert): Make it an obsolete
281 alias for insert-char.
283 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
285 * progmodes/python.el: Simplified imenu implementation.
286 (python-nav-jump-to-defun): Remove command.
287 (python-mode-map): Use `imenu' instead.
288 (python-nav-list-defun-positions-cache)
289 (python-imenu-include-defun-type, python-imenu-make-tree)
290 (python-imenu-subtree-root-label, python-imenu-index-alist):
292 (python-nav-list-defun-positions, python-nav-read-defun)
293 (python-imenu-tree-assoc, python-imenu-make-element-tree)
294 (python-imenu-make-tree, python-imenu-create-index):
296 (python-mode): Update to interact with imenu by setting
297 `imenu-extract-index-name-function' only.
299 2012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
301 * progmodes/python.el: Enhancements to navigation commands.
302 (python-nav-backward-sentence)
303 (python-nav-forward-sentence): Remove.
304 (python-nav-backward-statement, python-nav-forward-statement)
305 (python-nav-statement-start, python-nav-statement-end)
306 (python-nav-backward-block, python-nav-forward-block)
307 (python-nav-block-start, python-nav-block-end)
308 (python-nav-forward-sexp-function)
309 (python-info-current-line-comment-p)
310 (python-info-current-line-empty-p): New functions.
311 (python-indent-context): Use `python-nav-statement-start'.
313 2012-07-16 Michael Albinus <michael.albinus@gmx.de>
315 * eshell/em-ls.el (eshell/ls): Use `apply'.
317 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
318 multi-hops, instead of Tramp internals.
320 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
322 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
323 when F1 and F2 are located on different hosts.
325 2012-07-14 Chong Yidong <cyd@gnu.org>
327 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
328 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
329 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
330 (xterm-mouse--read-event-sequence-1000)
331 (xterm-mouse--read-event-sequence-1006): New functions. For old
332 mouse protocol, handle M-mouse-X events correctly.
333 (xterm-mouse-event): New arg specifying mouse protocol.
334 (turn-on-xterm-mouse-tracking-on-terminal)
335 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
336 sequence to toggle extended coordinates on newer XTerms.
337 This appears to be harmless on terminals which do not support this.
339 2012-07-14 Leo Liu <sdl.web@gmail.com>
341 Add fringe bitmap indicators for flymake. (Bug#11253)
342 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
343 (flymake-make-overlay): New arg BITMAP.
344 (flymake-error-bitmap, flymake-warning-bitmap)
345 (flymake-fringe-indicator-position): New user variables.
347 * fringe.el: New bitmap exclamation-mark.
349 2012-07-14 Jan Djärv <jan.h.d@swipnet.se>
351 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
354 2012-07-14 Chong Yidong <cyd@gnu.org>
356 * electric.el (electric-pair-post-self-insert-function): Fix pair
357 insertion in empty-region case (Bug#11520).
359 2012-07-14 Chong Yidong <cyd@gnu.org>
361 * bindings.el: Consolidate ctl-x-r-map bindings.
362 Bind copy-rectangle-as-kill to C-x r w.
364 * rect.el, register.el: Move bindings to bindings.el.
366 2012-07-14 Reuben Thomas <rrt@sc3d.org>
368 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
370 2012-07-13 Andreas Schwab <schwab@linux-m68k.org>
372 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
374 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
376 * bindings.el (top): Use `mapc' instead of `mapcar'.
378 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
380 2012-07-13 Michael Albinus <michael.albinus@gmx.de>
382 * progmodes/sql.el (sql-comint): Suppress the check for program on
383 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
386 2012-07-13 Chong Yidong <cyd@gnu.org>
388 * bindings.el: Assign a non-nil permanent-local property to
389 per-buffer variables which lack a default value (Bug#11930).
391 * help-fns.el (describe-variable): In the "automatically becomes
392 local" notice, take note of permanent-local variables.
394 2012-07-13 Chong Yidong <cyd@gnu.org>
396 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
397 to allow printing the message when called from Lisp.
399 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
400 Remove toggle-read-only.
402 * bs.el (bs-toggle-readonly):
403 * buff-menu.el (Buffer-menu-toggle-read-only):
404 Remove with-no-warnings around toggle-read-only.
406 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
407 Remove with-no-warnings around toggle-read-only.
408 (ffap-read-only, ffap-read-only-other-window)
409 (ffap-read-only-other-frame): Callers changed.
411 * help-mode.el: Don't require view package.
412 (help-mode-finish): Set buffer-read-only instead of calling
415 * bindings.el (mode-line-toggle-read-only):
416 * dired.el (dired-toggle-read-only):
417 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
418 with non-nil second arg.
420 * emacs-lisp/eieio-custom.el (eieio-customize-object):
421 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
424 2012-07-12 Eli Zaretskii <eliz@gnu.org>
426 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
429 2012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
431 More CL cleanups and reduction of use of cl.el.
432 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
433 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
434 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
435 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
436 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
437 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
438 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
439 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
440 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
441 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
442 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
443 * eshell/em-cmpl.el, eshell/em-banner.el:
444 * calendar/parse-time.el: Use cl-lib.
445 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
446 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
447 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
448 * term/ns-win.el, term.el, shell.el, ps-samp.el:
449 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
450 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
451 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
452 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
453 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
454 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
455 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
456 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
457 `lambda' rather than with `quote'.
458 (eshell-do-opt): Adjust accordingly.
459 (eshell-process-option): Simplify.
461 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
462 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
463 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
464 to `pcase--dontcare'.
465 * emacs-lisp/cl.el (labels): Mark obsolete.
466 (cl--letf, letf): Move to cl-lib.
467 (cl--letf*, letf*): Remove.
468 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
469 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
471 (cl--letf, cl-letf): Move from cl.el.
472 (cl-letf*): New macro.
473 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
475 2012-07-11 Michael Albinus <michael.albinus@gmx.de>
477 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
479 2012-07-11 Chong Yidong <cyd@gnu.org>
481 * vc/log-edit.el (log-edit-vc-backend): New variable.
484 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
485 argument of log-edit to set up all local variables.
486 (vc-start-logentry): New optional arg specifying VC backend.
488 * vc/vc.el (vc-checkin): Use it.
489 (vc-deduce-fileset): Handle Log Edit buffers.
490 (vc-diff): Make first argument optional too.
492 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
494 2012-07-10 Michael Albinus <michael.albinus@gmx.de>
496 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
497 command, just in case. The function is not needed anymore.
498 (eshell-external-command): Do not call `eshell-remote-command'.
500 2012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
502 Reduce use of (require 'cl).
503 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
504 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
505 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
506 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
507 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
508 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
509 * battery.el, avoid.el, abbrev.el: Use cl-lib.
510 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
511 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
512 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
513 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
514 * calculator.el, autorevert.el, apropos.el: Don't require CL.
515 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
516 (byte-compile-unfold-bcf, byte-compile-check-variable):
517 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
518 (byte-compile-nilconstp):
519 * emacs-lisp/autoload.el (make-autoload): Use pcase.
520 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
522 * emacs-lisp/gv.el (cond): Make it a valid place.
523 (if): Simplify slightly.
525 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
526 (pcase--self-quoting-p): New function.
529 2012-07-10 Glenn Morris <rgm@gnu.org>
531 * emacs-lisp/authors.el (authors-fixed-entries):
532 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
534 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
536 Rename configure.in to configure.ac (Bug#11603).
537 * emacs-lisp/authors.el (authors-canonical-file-name):
538 * progmodes/autoconf.el (autoconf-mode):
539 Prefer configure.ac to configure.in.
541 2012-07-08 Chong Yidong <cyd@gnu.org>
543 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
544 Implement the mouse-1-click-follows-link handling properly.
546 * info.el (Info-link-keymap): Use follow-link mechanism for
547 header-line links (Bug#374).
549 * simple.el (deactivate-mark): Do not set the primary selection
550 if another program has acquired it (Bug#11772).
552 2012-07-07 Kevin Ryde <user42@zip.com.au>
554 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
555 (woman-decode-region): Replace escaped-escapes without destroying
556 bold or underline (Bug#11552).
557 (woman2-process-escapes): Handle nofill regions (Bug#11591).
559 2012-07-07 Chong Yidong <cyd@gnu.org>
561 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
562 (interprogram-cut-function, interprogram-paste-function):
563 Mention that we typically mean the clipboard.
565 2012-07-06 Glenn Morris <rgm@gnu.org>
567 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
569 * files.el (toggle-read-only): Restrict message to interactive use.
571 2012-07-06 Michael Albinus <michael.albinus@gmx.de>
573 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
575 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
577 2012-07-06 Glenn Morris <rgm@gnu.org>
579 * Makefile.in (compile-one-process): Rename from "recompile".
581 * Makefile.in (bzr-update): "compile" is the same as "recompile
582 autoloads", but parallelizable, so use that instead.
584 2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
586 * window.el (quit-window): Always restore window height when
587 it's saved in quit-restore parameter (Bug#11810).
589 2012-07-06 Glenn Morris <rgm@gnu.org>
591 * simple.el (kill-whole-line): Doc tweak.
593 2012-07-06 Eli Zaretskii <eliz@gnu.org>
595 * files.el (file-relative-name): Compare file names
596 case-insensitively if on MS-Windows or MS-DOS, or if
597 read-file-name-completion-ignore-case is non-nil. Don't use
598 case-fold-search for this purpose. (Bug#11827)
600 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
602 * calendar/cal-dst.el (calendar-current-time-zone):
603 Return calendar-current-time-zone-cache if non-nil.
605 2012-07-17 Masatake YAMATO <yamato@redhat.com>
606 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
608 * calendar/cal-dst.el (calendar-current-time-zone):
609 Return calendar-current-time-zone-cache if non-nil.
611 2012-07-06 Glenn Morris <rgm@gnu.org>
613 * Makefile.in (cvs-update): Remove old alias.
615 2012-07-05 Michael Albinus <michael.albinus@gmx.de>
617 Sync with Tramp 2.2.6-pre.
619 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
620 compatible declaration.
622 * net/tramp-cmds.el (tramp-append-tramp-buffers):
623 Protect `list-load-path-shadows' call.
625 * net/tramp-compat.el (top): Require packages, which aren't
626 autoloaded anymore for XEmacs. Protect call of
627 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
628 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
629 it hurts at least for SXEmacs.
630 (tramp-compat-temporary-file-directory): In XEmacs, there is no
631 standard-value for `temporary-file-directory'.
633 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
634 Redirect stderr to /dev/null.
635 (tramp-sh-handle-write-region): uid and gid can be floats.
636 Reported by Russell Sim <russell.sim@gmail.com>.
637 (tramp-sh-handle-vc-registered): Hide errors.
638 (tramp-vc-file-name-handler): Use dummy results for `process-file'
639 and `start-file-process'.
640 (tramp-maybe-open-connection): Check also whether `non-essential'
643 2012-07-04 Chong Yidong <cyd@gnu.org>
645 * xml.el (xml--parse-buffer): Use xml-syntax-table.
646 (xml-parse-tag): Likewise, and avoid changing entity tables.
647 (xml-syntax-table): Define from scratch, making sure not to give
648 x2000 and other Unicode spaces whitespace syntax, since those are
650 (xml-parse-fragment): Delete unused function.
651 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
652 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
653 (xml-entity-ref, xml-pe-reference-re)
654 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
655 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
656 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
657 (xml-entity-value-re): Use syntax references in regexps where
658 possible; no need to define inside a let-binding.
659 (xml-parse-dtd): Use xml-pe-reference-re.
660 (xml-entity-or-char-ref-re): New defconst.
661 (xml-parse-string, xml-substitute-special): Use it.
663 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
665 * files.el (locate-dominating-file): Allow `name' to be a predicate.
666 (find-file--read-only): New function.
667 (find-file-read-only, find-file-read-only-other-window)
668 (find-file-read-only-other-frame): Use it.
669 (insert-file-contents-literally): Don't `fset'.
670 (get-free-disk-space): Use locate-dominating-file.
672 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
673 function is already compiled.
675 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
677 2012-07-03 Michael Albinus <michael.albinus@gmx.de>
679 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
680 files on the same host.
682 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
684 * help-fns.el (describe-function-1): Only call
685 help-fns--autoloaded-p when we have a file name. (Bug#11848)
687 2012-07-03 Chong Yidong <cyd@gnu.org>
689 * xml.el: Protect parser against XML bombs.
690 (xml-entity-expansion-limit): New variable.
691 (xml-parse-string, xml-substitute-special): Use it.
692 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
694 2012-07-03 Glenn Morris <rgm@gnu.org>
696 * progmodes/bug-reference.el (bug-reference-bug-regexp):
697 Allow linking to specific messages in debbugs reports (eg 123#5).
699 2012-07-02 Chong Yidong <cyd@gnu.org>
701 * xml.el: Fix entity and character reference expansion, allowing
702 them to expand into markup as per XML spec.
703 (xml-default-ns): New variable.
704 (xml-entity-alist): Use XML spec definitions for lt and amp.
705 (xml-parse-region): Make first two arguments optional.
706 Discard text properties.
707 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
709 (xml-parse-tag): Call xml-parse-tag-1. For backward
710 compatibility, this function should not modify buffer contents.
711 (xml-parse-tag-1): Fix opening-tag regexp.
712 (xml-parse-string): Rewrite, handling entity and character
714 (xml--entity-replacement-text): Signal an error if a parameter
717 2012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
719 * comint.el (comint-output-filter): Filter out repeated prompts.
721 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
722 and file-name-absolute-p.
723 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
726 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
729 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
730 Rename from byte-compile--refiy-function. All uses changed.
732 2012-07-01 Chong Yidong <cyd@gnu.org>
734 * xml.el (xml--parse-buffer): New function. Move most of
735 xml-parse-region here.
736 (xml-parse-region): Copy region into a temporary buffer, since
737 parameter entity substitution requires changing buffer contents.
738 Use xml--parse-buffer.
739 (xml-parse-file): Use xml--parse-buffer.
740 (xml-parse-dtd): Make parameter entity substitution work right.
741 Use proper regexps for ELEMENT declarations (Bug#7172).
743 2012-06-30 Glenn Morris <rgm@gnu.org>
745 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
747 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
748 Remove outdated and unnecessary dbus declarations.
750 2012-06-30 Eli Zaretskii <eliz@gnu.org>
752 * emacs-lisp/timer.el (timer-until): Subtract results of
753 float-time, instead of taking float-time of the result of
754 time-subtract, since float-time signals an error for negative time
757 2012-06-30 Chong Yidong <cyd@gnu.org>
759 * xml.el (xml-*-re): Convert defvars into defconsts, and
760 eval-and-compile them so eval-and-compile works on derivatives.
761 (xml--entity-replacement-text): Use eval-and-comple.
763 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
765 * vc/vc-git.el (vc-git-registered): Use cache property
767 (vc-git-mode-line-string): Call `vc-working-revision' instead of
768 `vc-git-working-revision' in order to benefit from the cache.
769 (vc-git-root): Use cache property `git-root'. (Bug#11757)
771 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
773 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
774 removed (likely outside Emacs). (Bug#11757)
776 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
778 * emacs-lisp/cl-lib.el: Require macroexp.
780 2012-06-30 Chong Yidong <cyd@gnu.org>
782 * xml.el: Implement XML parameter entities.
783 (xml-parameter-entity-alist): New variable.
784 (xml-parse-region, xml-parse-fragment): Preserve previous values
785 of xml-entity-alist and xml-parameter-entity-alist, so that
786 repeated calls on different documents do not change them.
787 (xml-parse-tag): Fix doctype regexp.
788 (xml--entity-replacement-text): New function.
789 (xml-parse-dtd): Use it. Don't handle system entities; doing that
790 properly requires url retrieval which is unimplemented.
791 (xml-escape-string): Doc fix.
793 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
795 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
797 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
799 * fringe.el (fringe-mode): Doc fix.
801 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
803 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
805 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
806 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
808 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
810 * calendar/cal-dst.el (calendar-current-time-zone):
811 Return calendar-current-time-zone-cache if non-nil.
813 2012-06-29 Masatake YAMATO <yamato@redhat.com>
815 * progmodes/which-func.el (which-func-format):
816 Add mouse-face. (Bug#11698)
818 2012-06-29 Leo Liu <sdl.web@gmail.com>
820 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
822 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
824 * minibuffer.el (minibuffer-confirm-exit-commands):
825 Add completion-at-point (bug#11725).
827 2012-06-29 Glenn Morris <rgm@gnu.org>
829 * progmodes/f90.el (f90-font-lock-keywords-2):
830 Add some preprocessor elements. (Bug#10499)
832 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
834 * progmodes/cperl-mode.el (cperl-update-syntaxification):
835 Use syntax-propertize (bug#11739).
837 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
839 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
841 2012-06-28 Julien Danjou <julien@danjou.info>
843 * term.el (term-handle-colors-array): Use a set of new faces to
844 color the terminal. Also uses :inverse-video property.
845 (term-default-fg-color): Set to nil by default, deprecate in favor
847 (term-default-bg-color): Set to nil by default, deprecate in favor
849 (term-current-face): Use `term-face' by default.
850 (term-bold-attribute): Variable deleted.
852 2012-06-28 Glenn Morris <rgm@gnu.org>
854 * simple.el (completion-list-mode-finish):
855 Don't use toggle-read-only. (Since completion-list-mode has
856 a special mode-class, it wasn't doing anything extra anyway.)
858 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
860 Make inlining of other-mode interpreted functions work (bug#11799).
861 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
862 (byte-compile): Use it to fix compilation of lexical-binding closures.
863 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
866 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
868 * help-mode.el (help-make-xrefs): Don't just withstand
869 cyclic-variable-indirection but any error in documentation-property.
871 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
873 * bindings.el (bindings--define-key): New function.
874 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
875 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
876 * bindings.el: Use it to purecopy define-key bindings.
878 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
880 * emacs-lisp/cl.el (flet): Mark obsolete.
881 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
882 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
883 * progmodes/js.el (js-c-fill-paragraph):
884 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
885 (ebrowse-switch-member-buffer-to-derived-class):
886 * play/5x5.el (5x5-solver): Use cl-flet.
888 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
889 (cl--symbol-function): New macro.
890 (cl--letf, cl--letf*): Use it.
892 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
893 Strip "toggle-" if any.
895 2012-06-27 Glenn Morris <rgm@gnu.org>
897 * info.el (Info-default-directory-list): Move here from paths.el.
898 * paths.el: Remove file, which is now empty.
899 * loadup.el: No longer load "paths".
901 * custom.el (custom-initialize-delay): Doc fix.
903 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
904 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
905 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
906 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
907 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
908 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
909 * eshell/eshell.el (eshell-defgroup): Remove alias.
911 2012-06-27 Chong Yidong <cyd@gnu.org>
913 * help.el (help-enable-auto-load): New variable.
915 * help-fns.el (help-fns--autoloaded-p): New function.
916 (describe-function-1): Refer to a function as "autoloaded" if it
917 was autoloaded at any time in the past. Perform autoloading if
918 help-enable-auto-load is non-nil.
920 2012-06-26 Eli Zaretskii <eliz@gnu.org>
922 * makefile.w32-in (compile, compile-always): Depend on
923 update-subdirs, not on subdirs.el. Otherwise, several different
924 sub-targets of 'bootstrap' running in parallel could
925 simultaneously write to subdirs.el, producing a garbled file.
927 2012-06-26 Sam Steingold <sds@gnu.org>
929 * files.el (file-name-base): New convenience function.
930 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
931 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
932 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
933 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
934 * textmodes/ispell.el, textmodes/reftex-ref.el:
935 * textmodes/tex-mode.el: Use it.
936 Did not touch cedet and org because they are maintained elsewhere.
938 2012-06-26 Martin Rudalics <rudalics@gmx.at>
940 * calendar/calendar.el (calendar-exit): Don't try to delete or
941 iconify last frame. See:
942 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
944 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
946 * server.el (server-process-filter): Remember dir in the
947 process's `server-client-directory' properties.
949 2012-06-24 Chong Yidong <cyd@gnu.org>
951 * xml.el (xml-parse-tag): Correctly handle comment embedded in
954 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
956 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
958 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
960 * help-fns.el (describe-variable): Don't croak when doc is not found.
961 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
962 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
963 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
964 * emacs-lisp/smie.el (smie-next-sexp): CSE.
965 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
967 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
969 2012-06-23 Chong Yidong <cyd@gnu.org>
971 * info.el (Info-mouse-follow-link): Accept symbol values of
972 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
973 (Info-fontify-node): Use Info-link-keymap for all navigation
974 buttons, with link-args property to perform the desired action.
975 (Info-link-keymap): Doc fix.
976 (Info-next-link-keymap, Info-prev-link-keymap)
977 (Info-up-link-keymap): Delete now-unused keymaps.
979 2012-06-23 Chong Yidong <cyd@gnu.org>
981 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
983 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
986 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
988 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
990 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
993 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
994 the requote function doesn't work properly (bug#11714).
996 2012-06-23 Glenn Morris <rgm@gnu.org>
998 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
1000 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1002 Further GV/CL cleanups.
1003 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
1005 (gv--defun-declaration): New function.
1006 (defun-declarations-alist): Use it.
1007 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
1008 (gv-place): Autoload.
1009 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
1010 original definition of dotimes and dolist.
1011 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
1012 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
1013 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
1014 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1015 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
1016 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
1017 to the function's definition.
1018 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
1022 * env.el: Don't use CL.
1024 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1026 Support higher-resolution time stamps (Bug#9000).
1028 * calendar/time-date.el (with-decoded-time-value): New arg
1029 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
1030 (encode-time-value): New optional arg PICO. New type 3.
1031 (time-to-seconds) [!float-time]: Support the new picoseconds
1032 component if it's used.
1033 (seconds-to-time, time-subtract, time-add):
1034 Support ps-resolution time stamps as well.
1036 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
1037 (timerp): Timer vectors now have length 9, not 8.
1038 (timer--time): Support new-style (4-part) time stamps.
1039 (timer-next-integral-multiple-of-time): Time stamps now have
1040 picosecond resolution, so take a bit more care about rounding.
1041 (timer-relative-time, timer-inc-time): New optional arg psecs.
1042 (timer-set-time-with-usecs): Set psecs to 0.
1043 (timer--activate): Check psecs component, too.
1045 * proced.el (proced-time-lessp): Support ps-resolution stamps.
1047 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1049 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
1050 Move the non-essential binding to the post/pre-command-hook where it is
1051 more obviously correct.
1053 * subr.el (read-passwd): Don't use a history at all.
1054 * savehist.el (savehist-save): Remove password saved accidentally
1055 because of the above bug.
1057 2012-06-22 Bastien Guerry <bzg@gnu.org>
1059 * files.el (toggle-read-only): Display a message telling whether
1060 the buffer is read-only or not (bug#11726).
1062 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1064 * emacs-lisp/gv.el: New file.
1065 * subr.el (push, pop): Extend to generalized variables.
1066 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
1067 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
1068 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
1069 gv-define-simple-setter, and gv-define-expander.
1070 Remove setf-methods defined in gv. Rename cl-setf -> setf.
1071 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
1072 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
1073 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
1074 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
1076 (cl-defstruct): Don't define setf-method any more.
1077 * emacs-lisp/cl.el (flet): Don't autoload.
1078 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
1079 (define-setf-expander, defsetf, define-modify-macro)
1080 (cl-struct-setf-expander): Move from cl-lib.el.
1081 * emacs-lisp/syntax.el:
1082 * emacs-lisp/ewoc.el:
1083 * emacs-lisp/smie.el:
1084 * emacs-lisp/cconv.el:
1085 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
1086 (timer--time): Use gv-define-simple-setter.
1087 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
1088 to avoid coding-system problems in subr.el. Adjust all users.
1089 (macroexp--maxsize, macroexp-small-p): New functions.
1090 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
1091 * scroll-bar.el (scroll-bar-mode):
1092 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
1093 (normal-erase-is-backspace-mode): Don't use the `eq' place.
1094 * winner.el (winner-configuration, winner-make-point-alist)
1095 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
1096 * files.el (locate-file-completion-table): Avoid list*.
1098 2012-06-22 Chong Yidong <cyd@gnu.org>
1100 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
1101 (dired-create-files): Doc fix (Bug#11329).
1102 (dired-do-copy): Doc fix (Bug#11334).
1103 (dired-mark-read-string): Doc fix (Bug#11553).
1105 * dired.el (dired-recursive-copies, dired-recursive-deletes):
1106 Doc fix (Bug#11326).
1107 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
1108 (dired-dwim-target): Doc fix.
1110 * wdired.el (wdired-mode): Doc fix.
1112 2012-06-22 Glenn Morris <rgm@gnu.org>
1114 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
1115 (pcmpl-rpm-cache-stamp-file): New constant.
1116 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
1117 (pcmpl-rpm-packages): Optionally cache list of packages.
1119 * pcmpl-rpm.el (pcmpl-rpm): New group.
1120 (pcmpl-rpm-query-options): New option.
1121 (pcmpl-rpm-packages): No need to inline it.
1122 Use pcmpl-rpm-query-options.
1124 * calendar/calendar.el (calendar-in-read-only-buffer):
1125 Avoid some needless mode changes.
1127 2012-06-21 Chong Yidong <cyd@gnu.org>
1129 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
1130 (desktop-path): Remove . from the default value (Bug#10977).
1131 (desktop-read): Use user-emacs-directory if desktop-path is nil.
1133 2012-06-20 Chong Yidong <cyd@gnu.org>
1135 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
1137 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
1139 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
1142 2012-06-20 Chong Yidong <cyd@gnu.org>
1144 * term.el (term-window-width): Handle the case of a missing right
1146 (term-check-size): Use window-text-height (Bug#5445).
1147 (term-mode): Use define-derived-mode. Minor cleanups.
1148 Set font-lock-defaults (Bug#7692).
1149 (term-move-columns, term-insert-char, term-emulate-terminal)
1150 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
1152 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
1154 * net/ange-ftp.el (ange-ftp-get-passwd):
1155 Bind `enable-recursive-minibuffers'.
1156 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
1158 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
1160 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
1162 2012-06-19 Glenn Morris <rgm@gnu.org>
1164 * progmodes/python.el (python-mode): Derive from prog-mode.
1166 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
1168 * emulation/edt.el (edt-default-menu-bar-update-buffers)
1169 (edt-user-menu-bar-update-buffers): New functions.
1170 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
1172 2012-06-19 Chong Yidong <cyd@gnu.org>
1174 * subr.el (with-selected-window): Preserve the selected window's
1175 terminal's top-frame (Bug#4702).
1177 * window.el (save-selected-window): Likewise.
1179 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1181 * progmodes/python.el (python-rx-constituents): Move backquote.
1182 (python-skeleton-define, python-define-auxiliary-skeleton):
1185 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
1187 * minibuffer.el (read-file-name-default): Revert the patch from
1190 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1192 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
1193 (pcase--u1, pcase--q1): Don't use apply-partially.
1195 2012-06-18 Glenn Morris <rgm@gnu.org>
1197 * progmodes/python.el (python-proc, python-buffer)
1198 (python-send-receive, python-send-string): Fix obsolete versions.
1200 2012-06-18 Martin Rudalics <rudalics@gmx.at>
1202 * window.el (special-display-p): Completely remove stringp
1203 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
1205 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
1207 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
1209 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
1211 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
1212 * net/tramp-sh.el (tramp-maybe-open-connection):
1213 Throw if `non-essential' is non-nil.
1215 2012-06-17 Martin Rudalics <rudalics@gmx.at>
1217 * window.el (special-display-p): Signal an error if BUFFER-NAME
1218 is not a string (Bug#11713).
1220 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
1222 * progmodes/python.el (python-info-beginning-of-backslash):
1223 Rename from python-info-beginning-of-backlash, as a spelling fix.
1225 2012-06-17 Chong Yidong <cyd@gnu.org>
1227 * term.el (term-emulate-terminal): If term-check-size is called,
1228 move point to the process mark without resetting point (Bug#4635).
1230 2012-06-17 Glenn Morris <rgm@gnu.org>
1232 * international/mule-cmds.el (mule-menu-keymap)
1233 (set-language-environment, set-locale-environment): Doc tweaks.
1235 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
1237 * cus-face.el (custom-face-attributes): Add wave-style underline
1239 * faces.el (set-face-attribute): Update docstring to describe
1240 wave-style underline attribute.
1242 2012-06-16 Chong Yidong <cyd@gnu.org>
1244 * term/xterm.el (terminal-init-xterm): Discard input before
1245 querying background mode (Bug#10959).
1247 2012-06-16 Stefan Merten <smerten@oekonux.de>
1249 * textmodes/rst.el: Added and corrected some comments.
1250 (rst-re-alist-def): Improve symbol syntax.
1251 (rst-mode-syntax-table): Correct syntax entries.
1252 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1253 (rst-official-version, rst-official-cvs-rev): Update version
1256 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
1258 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
1259 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
1261 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
1263 * progmodes/python.el: New python.el merge.
1264 (python-guess-indent): Obsolete var.
1265 (python-indent-guess-indent-offset): New defcustom.
1266 (python-indent): Obsolete var.
1267 (python-indent-offset): New defcustom.
1268 (python-python-command, python-jython-command): Delete var.
1269 (python-shell-interpreter): New defcustom.
1270 (python-pdbtrack-do-tracking-p): Delete var.
1271 (python-pdbtrack-activate): New defcustom.
1272 (python-use-skeletons): Obsolete var.
1273 (python-skeleton-autoinsert): New defcustom.
1274 (inferior-python-filter-regexp, python-continuation-offset)
1275 (python-honour-comment-indentation, python-indent-string-contents)
1276 (python-jython-packages, python-mode-hook)
1277 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
1278 (python-shell-prompt-alist)
1279 (python-source-modes): Delete defcustoms.
1280 (python-check-buffer-name, python-eldoc-setup-code)
1281 (python-eldoc-string-code, python-ffap-setup-code)
1282 (python-ffap-string-code, python-fill-comment-function)
1283 (python-fill-decorator-function, python-fill-paren-function)
1284 (python-fill-string-function, python-imenu-include-defun-type)
1285 (python-imenu-make-tree, python-imenu-subtree-root-label)
1286 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
1287 (python-shell-compilation-regexp-alist)
1288 (python-shell-completion-module-string-code)
1289 (python-shell-completion-pdb-string-code)
1290 (python-shell-completion-setup-code)
1291 (python-shell-completion-string-code)
1292 (python-shell-enable-font-lock, python-shell-exec-path)
1293 (python-shell-extra-pythonpaths)
1294 (python-shell-internal-buffer-name, python-shell-interpreter-args)
1295 (python-shell-process-environment)
1296 (python-shell-prompt-block-regexp)
1297 (python-shell-prompt-output-regexp)
1298 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
1299 (python-shell-send-setup-max-wait, python-shell-setup-codes)
1300 (python-shell-virtualenv-path): New defcustoms.
1301 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
1302 (inferior-python-mode-syntax-table, python--prompt-regexp)
1303 (python-buffer, python-command python-python-command)
1304 (python-default-template, python-imports, python-indent-index)
1305 (python-indent-list, python-indent-list-length)
1306 (python-mode-running, python-pdbtrack-is-tracking-p)
1307 (python-preoutput-continuation, python-preoutput-leftover)
1308 (python-preoutput-result, python-preoutput-skip-next-prompt)
1309 (python-prev-dir/file, python-recursing)
1310 (python-saved-check-command, python-version-checked)
1311 (python-which-func-length-limit)
1312 (view-return-to-alist): Delete vars.
1313 (python-check-custom-command, python-dotty-syntax-table)
1314 (python-imenu-index-alist, python-indent-current-level)
1315 (python-indent-dedenters, python-indent-levels)
1316 (python-nav-beginning-of-defun-regexp)
1317 (python-nav-list-defun-positions-cache)
1318 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
1319 (python-shell-internal-buffer)
1320 (python-skeleton-available): New vars.
1321 (def-python-skeleton): Delete macro.
1322 (python-skeleton-define): New macro.
1323 (python-define-auxiliary-skeleton, python-rx): New macros.
1324 (python-insert-class): Delete command.
1325 (python-skeleton-class): New command.
1326 (python-insert-def): Delete command.
1327 (python-skeleton-def): New command.
1328 (python-insert-for): Delete command.
1329 (python-skeleton-for): New command.
1330 (python-insert-if): Delete command.
1331 (python-skeleton-if): New command.
1332 (python-insert-try/except, python-insert-try/finally): Delete commands.
1333 (python-skeleton-try): New command.
1334 (python-insert-while): Delete command.
1335 (python-skeleton-while): New command.
1336 (python-backspace): Delete command.
1337 (python-indent-dedent-line-backspace): New command.
1338 (python-electric-colon): Delete command.
1339 (python-indent-electric-colon): New command.
1340 (python-guess-indent): Delete command.
1341 (python-indent-guess-indent-offset): New command.
1342 (python-shift-left): Delete command.
1343 (python-indent-shift-left): New command.
1344 (python-shift-right): Delete command.
1345 (python-indent-shift-right): New command.
1346 (python-find-function): Delete command.
1347 (python-nav-jump-to-defun): New command.
1348 (python-next-statement): Delete command.
1349 (python-nav-forward-sentence): New command.
1350 (python-previous-statement): Delete command.
1351 (python-nav-backward-sentence): New command.
1352 (python-fill-paragraph): Delete command.
1353 (python-fill-paragraph-function): New command.
1354 (python-send-buffer): Delete command.
1355 (python-shell-send-buffer): New command.
1356 (python-send-defun): Delete command.
1357 (python-shell-send-defun): New command.
1358 (python-send-region, python-send-region-and-go): Delete commands.
1359 (python-shell-send-region)
1360 (python-shell-switch-to-shell): New commands.
1361 (python-send-string): Delete command.
1362 (python-shell-send-string): New command.
1363 (python-switch-to-python): Delete command.
1364 (python-shell-switch-to-shell): New command.
1365 (python-describe-symbol): Delete command.
1366 (python-eldoc-at-point): New command.
1367 (python--set-prompt-regexp, python-args-to-list)
1368 (python-after-info-look, python-check-version)
1369 (python-check-comint-prompt, python-find-imports)
1370 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
1371 (python-unload-function, python-expand-template)
1372 (python-maybe-jython, python-preoutput-filter)
1373 (python-pdbtrack-get-source-buffer)
1374 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
1375 (python-pdbtrack-toggle-stack-tracking)
1376 (python-pdbtrack-track-stack-file, python-initial-text)
1377 (python-first-word, python-comment-line-p, python-send-command)
1378 (python-setup-brm, python-sentinel, python-set-proc)
1379 (python-skip-out, python-input-filter, python-outdent-p)
1380 (python-outline-level, python-backslash-continuation-line-p)
1381 (python-end-of-block, python-end-of-statement, python-mark-block)
1382 (python-beginning-of-block, python-beginning-of-statement)
1383 (python-blank-line-p, python-beginning-of-string)
1384 (python-open-block-statement-p): Delete functions.
1385 (python-indent-line, python-indent-line-1): Delete functions.
1386 (python-indent-line): New function.
1387 (python-indentation-levels): Delete function.
1388 (python-indent-calculate-levels): New function.
1389 (python-proc): Delete function.
1390 (python-shell-get-process): New function.
1391 (python-send-receive): Delete function.
1392 (python-shell-send-string-no-output): New function.
1393 (python-module-path): Delete function.
1394 (python-ffap-module-path): New function.
1395 (python-completion-at-point)
1396 (python-symbol-completions): Delete functions.
1397 (python-completion-complete-at-point): New function.
1398 (python-load-file): Delete function.
1399 (python-shell-send-file): New function.
1400 (python-calculate-indentation): Delete function.
1401 (python-indent-calculate-indentation): New function.
1402 (python-skip-comments/blanks): Delete function.
1403 (python-util-forward-comment): New function.
1404 (python-continuation-line-p): Delete function.
1405 (python-info-continuation-line-p): New function.
1406 (python-which-func, python-current-defun): Delete function.
1407 (python-info-current-defun): New function.
1408 (python-beginning-of-defun): Delete function.
1409 (python-nav-beginning-of-defun): New function.
1410 (python-close-block-statement-p)
1411 (python-block-end-p): Delete function.
1412 (python-info-closing-block): New function.
1413 (python-comint-output-filter-function)
1414 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
1415 (python-fill-comment, python-fill-decorator, python-fill-paren)
1416 (python-fill-string, python-imenu-make-element-tree)
1417 (python-imenu-make-tree, python-imenu-tree-assoc)
1418 (python-indent-context, python-indent-dedent-line)
1419 (python-indent-line-function)
1420 (python-indent-post-self-insert-function)
1421 (python-indent-toggle-levels)
1422 (python-info-assignment-continuation-line-p)
1423 (python-info-beginning-of-backlash)
1424 (python-info-block-continuation-line-p)
1425 (python-info-closing-block-message)
1426 (python-info-line-ends-backslash-p)
1427 (python-info-looking-at-beginning-of-defun)
1428 (python-info-ppss-context, python-info-ppss-context-type)
1429 (python-nav-list-defun-positions, python-nav-read-defun)
1430 (python-nav-sentence-end, python-nav-sentence-start)
1431 (python-pdbtrack-comint-output-filter-function)
1432 (python-pdbtrack-set-tracked-buffer)
1433 (python-shell-calculate-exec-path)
1434 (python-shell-calculate-process-environment)
1435 (python-shell-completion--do-completion-at-point)
1436 (python-shell-completion--get-completions)
1437 (python-shell-completion-complete-at-point)
1438 (python-shell-completion-complete-or-indent)
1439 (python-shell-get-or-create-process)
1440 (python-shell-get-process-name)
1441 (python-shell-internal-get-or-create-process)
1442 (python-shell-internal-get-process-name)
1443 (python-shell-internal-send-string, python-shell-make-comint)
1444 (python-shell-parse-command, python-shell-send-setup-code)
1445 (python-skeleton-add-menu-items)
1446 (python-util-clone-local-variables, python-util-position)
1447 (run-python-internal, python-indentation-levels)
1448 (python-nav-beginning-of-defun)
1449 (python-completion-complete-at-point): New functions.
1450 (run-python): Change arguments. New API requirements.
1452 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1454 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
1457 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
1458 (macroexp--expand-all): Use it.
1460 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
1461 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
1462 Use `cl-function' instead.
1464 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
1466 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
1467 Suggested by Stefan Monnier while discussing bug#11657.
1469 2012-06-14 Sam Steingold <sds@gnu.org>
1471 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
1473 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
1475 * play/doctor.el (doctor-doc): Remove parameter and use
1476 doctor-sent instead of sent.
1477 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
1479 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1481 * files.el: Require cl-lib.
1482 (file-name-non-special): Replace case -> cl-case.
1484 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
1486 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
1487 mapping from #' to function*.
1489 2012-06-13 Chong Yidong <cyd@gnu.org>
1491 * mouse.el (mouse-drag-track): Do not set the mark if the user
1492 releases the mouse without selecting anything (Bug#11588).
1494 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1496 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
1497 as well (bug#11646).
1499 * loadup.el: Count byte-code functions as well.
1501 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
1502 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
1504 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
1505 (bug#11649). Add cl-defun and cl-defmacro.
1507 2012-06-13 Drew Adams <drew.adams@oracle.com>
1509 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1512 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
1514 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
1515 Otherwise, it blocks in batch mode.
1517 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
1519 * help-mode.el (bookmark-make-record-default): Declare.
1521 2012-06-13 Chong Yidong <cyd@gnu.org>
1523 * emacs-lisp/package.el (list-packages): Compute a list of
1524 packages that are newly-available since the last list-packages
1526 (package-menu--new-package-list): New var.
1527 (package-menu--generate, package-menu--print-info)
1528 (package-menu--status-predicate, package-menu-mark-install):
1529 Handle new status label "new".
1531 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
1533 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
1534 conversion to backquotes.
1536 2012-06-12 Chong Yidong <cyd@gnu.org>
1538 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
1539 Rename from gud-inhibit-global-bindings.
1541 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
1543 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
1544 hook from nxml-glyph-set-hook.
1546 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
1549 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
1551 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
1552 Convert to defcustom.
1554 2012-06-12 Drew Adams <drew.adams@oracle.com>
1556 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
1558 (help-mode): Use them.
1560 2012-06-11 Glenn Morris <rgm@gnu.org>
1562 * progmodes/fortran.el (fortran-font-lock-keywords-3):
1563 Use preprocessor face for directives.
1564 (fortran-directive-re): Doc fix.
1566 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1568 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
1569 conversion to backquotes (bug#11652).
1571 Fix compiler-expansion of CL's cXXr functions (bug#11673).
1572 * emacs-lisp/cl-lib.el (cl--defalias): New function.
1573 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
1574 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
1575 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1576 (cl-ninth, cl-tenth): Mark them as inlinable.
1577 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
1578 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
1579 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
1580 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
1581 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
1582 (cl-list*, cl-adjoin): Don't put an autoload manually.
1583 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
1584 (cl--compiler-macro-list*): Add autoload cookie.
1585 (cl--compiler-macro-cXXr): New function.
1587 * help-fns.el (help-fns--compiler-macro): New function extracted from
1588 describe-function-1; follow aliases and use `compiler-macro' property.
1589 (describe-function-1): Use it.
1591 2012-06-11 Chong Yidong <cyd@gnu.org>
1593 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
1594 is uninstalled, if imagemagick is installed.
1596 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1598 * emacs-lisp/cl-lib.el: Use lexical-binding.
1599 (cl-map-extents, cl-maclisp-member): Remove.
1600 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
1601 (cl--set-substring, cl--block-wrapper, cl--block-throw)
1602 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
1603 * emacs-lisp/cl-extra.el: Use lexical-binding.
1604 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
1605 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
1606 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
1607 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
1608 * emacs-lisp/cl-seq.el: Use lexical-binding.
1609 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
1610 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
1611 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
1612 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
1613 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
1616 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
1618 Sync with Tramp 2.2.6-pre.
1620 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
1621 `print-length' and `print-level' to nil, in order to avoid
1622 truncation. Reported by Christopher Schmidt
1623 <christopher@ristopher.com>.
1625 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
1627 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
1629 (tramp-compat-copy-directory): Add optional argument
1630 COPY-CONTENTS. It is not handled yet.
1632 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
1633 (tramp-ftp-file-name-p): Simplify.
1635 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
1636 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
1639 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
1640 (tramp-methods): Do not use `tramp-password-end-of-line'.
1641 (tramp-completion-function-alist-putty): Handle UNIX case.
1642 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
1643 (tramp-do-file-attributes-with-stat)
1644 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
1645 gid as real numbers. They could run out of integer range on cygwin.
1646 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
1647 (tramp-sh-handle-expand-file-name): Handle hops.
1648 (tramp-open-connection-setup-interactive-shell):
1649 Use `tramp-cleanup'. Move check for busyboxes ...
1650 (tramp-find-shell): ... here. Simplify implementation.
1651 Set "remote-shell" property also for alternative shells.
1652 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
1653 If failing, a regular file would be written otherwise.
1654 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
1655 (tramp-find-inline-encoding): Cache the coding commands in the
1656 process cache. Apply test command on the remote side, if defined.
1657 (tramp-find-inline-compress): Cache the compress commands in the
1659 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
1660 when requested. Handle hops.
1661 (tramp-current-connection): New defvar.
1662 (tramp-maybe-open-connection): Use `tramp-cleanup'.
1663 Throw `suppress', if there was a failed connection shortly before.
1664 Handle user interrupt. (Bug#10187)
1665 (tramp-get-inline-compress, tramp-get-inline-coding):
1666 Read connection properties from the process cache.
1668 * net/tramp-smb.el (tramp-smb-server-version)
1669 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
1671 (tramp-smb-prompt): Extend for powershell prompt.
1672 (tramp-smb-file-name-handler-alist): Add handlers for
1673 `process-file', `shell-command' and `start-file-process'.
1674 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
1675 (tramp-smb-winexe-shell-command-switch): New defcustoms.
1676 (tramp-smb-file-name-p): Simplify.
1677 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
1678 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
1679 (tramp-smb-shell-quote-argument): New defuns.
1680 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
1681 Implement using "tar". By this, time-stamps are preserved.
1682 (tramp-smb-handle-copy-file): Handle also the case of directories.
1683 (tramp-smb-do-file-attributes-with-stat)
1684 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
1685 Use `tramp-get-connection-buffer').
1686 (tramp-smb-handle-rename-file): Use "rename", when source and
1687 target are on the same share.
1688 (tramp-smb-maybe-open-connection): Handle wrong passwords.
1689 Use `tramp-smb-server-version'.
1690 (tramp-smb-wait-for-output): Remove prompt.
1692 * net/tramp.el (top): Require 'cl.
1693 (tramp-methods, tramp-rsh-end-of-line):
1694 Remove `tramp-password-end-of-line' from docstring.
1695 (tramp-save-ad-hoc-proxies): New defcustom.
1696 (tramp-completion-function-alist): Adapt docstring.
1697 (tramp-default-password-end-of-line): Remove defcustom.
1698 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
1699 (tramp-user-regexp, tramp-file-name-regexp-unified)
1700 (tramp-file-name-regexp-url): Extend regexp by hop separator.
1701 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
1702 (tramp-remote-file-name-spec-regexp): New defconst.
1703 (tramp-file-name-structure): Extend structure for hops.
1704 (tramp-get-method-parameter): Move up.
1705 (tramp-file-name-p, tramp-dissect-file-name)
1706 (with-parsed-tramp-file-name): Handle hops.
1707 (tramp-file-name-hop): New defun.
1708 (tramp-make-tramp-file-name): New optional arg HOP.
1709 (tramp-message-show-progress-reporter-message): New defvar.
1710 (tramp-with-progress-reporter): Use it. We cannot use
1711 `tramp-message-show-message' here, because this suppresses also
1713 (tramp-error-with-buffer): Suppress buffer view, if
1714 `tramp-message-show-message' is nil.
1715 Use `tramp-get-connection-buffer'.
1716 (tramp-cleanup): New defun.
1717 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
1718 (tramp-file-name-handler): If `debug-on-error' is set, propagate
1720 (tramp-completion-handle-file-name-all-completions): Handle hops.
1721 Fix an error when called from ido.
1722 (tramp-completion-dissect-file-name): Use better local variable
1723 name. Add hop to the vector.
1724 (tramp-handle-insert-file-contents): Use progress-reporter for the
1726 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
1728 (tramp-check-for-regexp): Simplify search.
1729 (tramp-enter-password): Remove it. Move implementation ...
1730 (tramp-action-password): ... here.
1731 (tramp-mode-string-to-int, tramp-local-host-p)
1732 (tramp-make-tramp-temp-file, tramp-read-passwd)
1733 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
1734 Set tramp-autoload cookie.
1736 * net/trampver.el: Update release number.
1738 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
1739 Michael Albinus <michael.albinus@gmx.de>
1741 * net/tramp.el (tramp-set-completion-function): Fix docstring.
1742 (tramp-parse-group, tramp-parse-file)
1743 (tramp-parse-shostkeys-sknownhosts): New defuns.
1744 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
1745 (tramp-parse-shosts-group, tramp-parse-sconfig)
1746 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
1747 (tramp-parse-sknownhosts, tramp-parse-hosts)
1748 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
1750 (tramp-parse-passwd-group, tramp-parse-netrc-group)
1751 (tramp-parse-putty-group): Don't narrow.
1752 (tramp-parse-putty): Make a loop.
1753 (tramp-file-name-handler): Catch the `suppress' signal.
1755 2012-06-11 Chong Yidong <cyd@gnu.org>
1757 * image.el (imagemagick-register-types): Put the ImageMagick entry
1758 at the end of image-type-file-name-regexps.
1760 2012-06-11 Johan Bockgård <bojohan@gnu.org>
1762 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
1763 (pcase, pcase-let*, pcase-dolist): Use them.
1765 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1767 * emacs-lisp/pcase.el (pcase--let*): New function.
1768 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
1769 (pcase--expand): Use macroexp-let².
1771 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
1773 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
1774 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
1775 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
1776 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
1777 * emacs-lisp/derived.el: Use pcase instead of `cl'.
1778 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
1780 2012-06-10 Glenn Morris <rgm@gnu.org>
1782 * mail/rmail.el (rmail-yank-current-message): Leave point at
1783 correct position. (Bug#11660)
1785 2012-06-10 Chong Yidong <cyd@gnu.org>
1787 * allout-widgets.el: Fix code header.
1789 2012-06-10 Chong Yidong <cyd@gnu.org>
1791 * cus-edit.el (customize-changed-options-previous-release):
1794 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
1796 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
1798 2012-06-09 Chong Yidong <cyd@gnu.org>
1800 * ebuff-menu.el (electric-buffer-list): Preserve header line.
1802 2012-06-09 Martin Rudalics <rudalics@gmx.at>
1804 * window.el (special-display-popup-frame): Don't use
1805 window--display-buffer (Bug#11651).
1807 2012-06-09 Eli Zaretskii <eliz@gnu.org>
1809 Fix parallel builds: make sure loaddefs.el is not being written
1810 while Lisp files are compiled.
1811 (compile): Don't depend on 'mh-autoloads'.
1812 (compile-CMD, compile-SH): Depend on 'autoloads'.
1813 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
1815 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
1817 2012-06-09 Chong Yidong <cyd@gnu.org>
1819 * face-remap.el (face-remap-add-relative, face-remap-set-base)
1820 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
1821 Doc fixes (Bug#11225).
1823 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1825 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
1826 a function if there's a clear indication that it has a compiler-macro.
1827 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
1828 (macro-declarations-alist): Add arglist to declaration functions.
1829 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
1830 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
1831 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
1832 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
1833 Also add autoload to find the compiler macro.
1834 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
1835 (cl--compiler-macro-member, cl--compiler-macro-assoc)
1836 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
1837 (cl--compiler-macro-get): New functions, replacing calls to
1838 cl-define-compiler-macro.
1839 (cl-typep) [compiler-macro]: Use macroexp-let².
1841 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
1843 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
1844 string properly, fixes Bug#11473.
1846 2012-06-08 Chong Yidong <cyd@gnu.org>
1848 * faces.el (set-face-attribute): Doc fix.
1849 (modify-face): Don't use :bold and :italic.
1850 (error, warning, success): Tweak definitions.
1852 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
1853 (custom-modified, custom-set, custom-changed, custom-themed)
1854 (custom-saved, custom-button, custom-button-mouse)
1855 (custom-button-pressed, custom-state, custom-comment-tag)
1856 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
1857 (custom-group-subtitle): Use new-style face specs.
1858 (custom-invalid-face, custom-rogue-face, custom-modified-face)
1859 (custom-set-face, custom-changed-face, custom-saved-face)
1860 (custom-button-face, custom-button-pressed-face)
1861 (custom-documentation-face, custom-state-face)
1862 (custom-comment-face, custom-comment-tag-face)
1863 (custom-variable-tag-face, custom-variable-button-face)
1864 (custom-face-tag-face, custom-group-tag-face-1)
1865 (custom-group-tag-face): Remove obsolete face alias.
1867 * epa.el (epa-validity-high, epa-validity-medium)
1868 (epa-validity-low, epa-mark, epa-field-name, epa-string)
1869 (epa-field-name, epa-field-body):
1870 * font-lock.el (font-lock-comment-face, font-lock-string-face)
1871 (font-lock-keyword-face, font-lock-builtin-face)
1872 (font-lock-function-name-face, font-lock-variable-name-face)
1873 (font-lock-type-face, font-lock-constant-face):
1874 * ido.el (ido-first-match, ido-only-match, ido-subdir)
1875 (ido-virtual, ido-indicator, ido-incomplete-regexp):
1876 * speedbar.el (speedbar-button-face, speedbar-file-face)
1877 (speedbar-directory-face, speedbar-tag-face)
1878 (speedbar-selected-face, speedbar-highlight-face)
1879 (speedbar-separator-face):
1880 * whitespace.el (whitespace-newline, whitespace-space)
1881 (whitespace-hspace, whitespace-tab, whitespace-trailing)
1882 (whitespace-line, whitespace-space-before-tab)
1883 (whitespace-space-after-tab, whitespace-indentation)
1885 * emulation/cua-base.el (cua-global-mark):
1886 * eshell/em-prompt.el (eshell-prompt):
1887 * net/newst-plainview.el (newsticker-new-item-face)
1888 (newsticker-old-item-face, newsticker-immortal-item-face)
1889 (newsticker-obsolete-item-face, newsticker-date-face)
1890 (newsticker-statistics-face, newsticker-default-face):
1891 * net/newst-reader.el (newsticker-feed-face)
1892 (newsticker-extra-face, newsticker-enclosure-face):
1893 * net/newst-treeview.el (newsticker-treeview-face)
1894 (newsticker-treeview-new-face, newsticker-treeview-old-face)
1895 (newsticker-treeview-immortal-face)
1896 (newsticker-treeview-obsolete-face)
1897 (newsticker-treeview-selection-face):
1898 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
1899 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
1900 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
1901 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
1902 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
1903 (nxml-outline-active-indicator, nxml-outline-ellipsis):
1904 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
1906 * progmodes/vera-mode.el (vera-font-lock-number)
1907 (vera-font-lock-function, vera-font-lock-interface):
1908 * textmodes/table.el (table-cell): Use new-style face specs, and
1909 don't use the old :bold and :italic attributes.
1911 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
1912 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
1913 (ebrowse-member-class, ebrowse-progress): Likewise.
1914 (ebrowse-tree-mark-face, ebrowse-root-class-face)
1915 (ebrowse-file-name-face, ebrowse-default-face)
1916 (ebrowse-member-attribute-face, ebrowse-member-class-face)
1917 (ebrowse-progress-face): Remove obsolete faces.
1919 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1920 Inherit from error and warning faces respectively.
1922 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1924 (flyspell-incorrect-face, flyspell-duplicate-face):
1925 Remove obsolete aliases.
1927 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
1929 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1932 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1934 * startup.el (argv, argi): Make lexically scoped.
1935 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
1936 * emacs-lisp/cl-macs.el: Use lexical-binding.
1937 Rename cl-bind-* to cl--bind-*.
1938 * files.el: Don't require `cl' since it doesn't use it.
1939 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
1941 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
1943 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
1944 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
1945 instead of calling external sort utility.
1946 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
1948 2012-06-08 Eli Zaretskii <eliz@gnu.org>
1950 * descr-text.el (describe-char): Mention how to insert the
1951 character, if the current input method doesn't support it.
1952 See the discussion in this thread for the details:
1953 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1955 2012-06-08 Sam Steingold <sds@gnu.org>
1957 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1958 XF86Back to previous-buffer.
1959 (minibuffer-local-map): Bind them to next-history-element and
1960 previous-history-element respectively.
1961 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1962 help-go-back respectively.
1963 * info.el (Info-mode-map): Bind them to Info-history-forward and
1964 Info-history-back respectively.
1965 These are the keys next to Up on the ThinkPad keyboard.
1967 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1969 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1970 * emacs-lisp/cl-macs.el: Provide itself.
1971 (cl--labels-convert-cache): New var.
1972 (cl--labels-convert): New function.
1973 (cl-flet, cl-labels): New implementation with new semantics, relying on
1975 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1976 (cl-closure-vars, cl--function-convert-cache)
1977 (cl--function-convert): Move from cl-macs.el.
1978 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1979 rename by removing the "cl-" prefix.
1980 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1982 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1984 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1985 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1986 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1987 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1988 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1989 (cl-hash-table-count): Add old compatibility aliases.
1991 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1992 Use macroexpand-all-environment instead.
1993 (cl--old-macroexpand): New var.
1994 (cl--sm-macroexpand): New function.
1995 (cl-symbol-macrolet): Use it during macro expansion.
1996 (cl--function-convert-cache): New var.
1997 (cl--function-convert): New function, extracted from
1999 (cl-lexical-let): Use it.
2001 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
2002 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
2003 (cl-member): Remove old alias.
2005 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
2006 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
2007 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
2008 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
2009 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
2010 (cl-macroexpand-cmacs): Remove var.
2011 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
2012 Use macroexpand-all instead.
2014 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2016 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
2017 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
2018 (macroexp-copyable-p): New functions and macros.
2019 * emacs-lisp/edebug.el (edebug-unwrap):
2020 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
2021 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
2022 (pcase--let*): Remove.
2023 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
2024 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
2025 macroexp-const-p instead.
2026 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
2028 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
2029 instead of "cl-" for internal definitions. Use macroexp-const-p.
2030 (cl-old-bc-file-form): Remove var.
2031 (cl-const-exprs-p): Remove fun.
2032 (cl-labels, cl-macrolet): Use backquote.
2033 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
2034 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
2035 (cl-define-setf-expander): Rename from cl-define-setf-method.
2036 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
2038 * international/mule-cmds.el: Don't require CL.
2039 (view-hello-file): Don't use `letf'.
2041 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2043 * tmm.el (tmm-prompt): Use string-prefix-p.
2044 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
2045 (tmm-add-prompt): Use minibuffer-completion-help.
2046 (tmm-delete-map): Remove.
2048 * subr.el (kbd): Make it its own function.
2050 2012-06-07 Stefan Merten <smerten@oekonux.de>
2052 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
2053 Silence compiler warnings. Fix versions.
2054 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
2055 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
2056 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
2057 (rst-package-emacs-version-alist): Correct Emacs version to
2058 represent major merge with upstream.
2059 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
2061 2012-06-06 Glenn Morris <rgm@gnu.org>
2063 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
2064 Only print environment variables if set.
2066 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2068 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
2069 (macroexp--cons): Rename from maybe-cons.
2070 (macroexp--accumulate): Rename from macroexp-accumulate.
2071 (macroexp--all-forms): Rename from macroexpand-all-forms.
2072 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
2073 (macroexp--expand-all): Rename from macroexpand-all-1.
2075 2012-06-06 Sam Steingold <sds@gnu.org>
2077 * calendar/calendar.el (calendar-in-read-only-buffer):
2078 Call `special-mode' to enable the standard read-only keybindings.
2080 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2082 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
2083 with "loading" messages (bug#11635).
2085 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
2087 * files.el (enable-remote-dir-locals): New option.
2088 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
2090 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2091 Ensure, that the temp directory is local.
2093 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
2094 `temporary-file-directory'.
2096 * progmodes/python.el (python-send-region): Ensure, that the
2097 temporary file is created also in the remote case.
2099 2012-06-06 Glenn Morris <rgm@gnu.org>
2101 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
2102 (vc-rcs-update-changelog): Use it.
2104 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
2106 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
2107 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
2108 (vc-sccs-diff): Replace use of the external vcdiff script.
2110 2012-06-05 Glenn Morris <rgm@gnu.org>
2112 * ledit.el: Move to obsolete/.
2114 2012-06-05 Sam Steingold <sds@gnu.org>
2116 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
2119 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
2121 * emacs-lisp/cust-print.el: Move to obsolete.
2123 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
2124 compiler-macro expansion.
2126 Add native compiler-macro support.
2127 * emacs-lisp/macroexp.el (macroexpand-all-1):
2128 Support compiler-macros directly. Properly follow aliases and apply
2129 the compiler macros more thoroughly.
2130 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
2131 macroexpand now properly follows aliases.
2132 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
2133 (cl-compiler-macroexpand): Use new prop.
2134 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
2136 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
2138 2012-06-05 Martin Rudalics <rudalics@gmx.at>
2140 * window.el (get-lru-window, get-mru-window, get-largest-window):
2141 New argument NOT-SELECTED to avoid picking the selected window.
2142 (window--display-buffer-1, window--display-buffer-2): Replace by
2143 new function window--display-buffer
2144 (display-buffer-same-window, display-buffer-reuse-window)
2145 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2146 Use window--display-buffer.
2147 (display-buffer-use-some-window): Remove temporary dedication
2148 hack by calling get-lru-window and get-largest-window with
2149 NOT-SELECTED argument non-nil. Call window--display-buffer.
2151 2012-06-05 Glenn Morris <rgm@gnu.org>
2153 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
2154 Replace external vcdiff script.
2156 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2158 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
2160 2012-06-04 Chong Yidong <cyd@gnu.org>
2162 * image.el (imagemagick-types-inhibit): Revert last change.
2164 (imagemagick-enabled-types): Remove CIN and EPS*.
2166 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2168 * emacs-lisp/cl-lib.el: Rename from cl.el.
2169 * emacs-lisp/cl.el: New compatibility file.
2170 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
2171 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
2172 to obey the "cl-" prefix.
2173 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
2175 2012-06-03 Glenn Morris <rgm@gnu.org>
2177 * emacs-lisp/authors.el (authors-aliases): Addition.
2179 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
2182 2012-06-03 Stefan Merten <smerten@oekonux.de>
2184 * textmodes/rst.el: Add comments.
2185 (rst-transition, rst-adornment): New faces.
2186 (rst-adornment-faces-alist): Make default safe to reevaluate.
2188 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
2189 Improve customization tags.
2190 (rst-define-level-faces): Clarify meaning.
2192 2012-06-03 Chong Yidong <cyd@gnu.org>
2194 * progmodes/compile.el (compilation-mode-line-fail)
2195 (compilation-mode-line-run, compilation-mode-line-exit):
2197 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
2199 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
2201 * progmodes/which-func.el (which-func-update-ediff-windows):
2202 New function. Use it in ediff-select-hook (Bug#11478).
2204 2012-06-03 Chong Yidong <cyd@gnu.org>
2206 * bindings.el: Remove explicit help text from format-mode-line.
2207 It is now supplied by mode-line-default-help-echo.
2208 (mode-line-front-space, mode-line-end-spaces)
2209 (mode-line-misc-info): New variables.
2210 (mode-line-modes, mode-line-position): Move the default value to
2211 the variable definition.
2212 (mode-line-default-help-echo): New defcustom.
2213 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
2214 (mode-line-modified-help-echo): New functions.
2215 (mode-line-mule-info, mode-line-modified): Use them.
2216 (mode-line-eol-desc, propertized-buffer-identification):
2217 Consistency fixes for help text.
2218 (mode-line-coding-system-map): Allow using mouse-3 to invoke
2219 set-buffer-file-coding-system (Bug#289).
2220 (mode-line-mule-info-help-echo): Update help text.
2222 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2224 * simple.el (execute-extended-command): Set real-this-command
2227 2012-06-02 Chong Yidong <cyd@gnu.org>
2229 Remove incorrect uses of "modeline" in comments, docstrings, and
2230 function/variable names (Bug#10329).
2232 * cus-edit.el (mode-line):
2233 * dframe.el (dframe-mouse-hscroll):
2234 * emacs-lisp/re-builder.el:
2235 * emacs-lisp/easy-mmode.el (define-minor-mode):
2236 * frame.el (set-frame-name):
2237 * help.el (lookup-minor-mode-from-indicator):
2238 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
2239 * progmodes/cc-cmds.el (c-toggle-auto-newline)
2240 (c-toggle-hungry-state):
2241 * progmodes/antlr-mode.el (antlr-language-alist):
2242 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
2243 * progmodes/vhdl-mode.el (vhdl-mode):
2244 * progmodes/which-func.el (which-func, which-func-cleanup-function):
2245 * term/ns-win.el (ns-face-at-pos):
2246 * term/sup-mouse.el (sup-mouse-report):
2247 * textmodes/flyspell.el (flyspell-mode-line-string):
2248 * textmodes/ispell.el (ispell-highlight-face):
2249 * textmodes/reftex-global.el:
2250 * vc/vc-arch.el (vc-arch-mode-line-string):
2251 * vc/vc-cvs.el (vc-cvs-mode-line-string):
2252 * vc/vc-git.el (vc-git-mode-line-string):
2253 * vc/vc-hooks.el (vc-display-status)
2254 (vc-default-mode-line-string):
2255 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
2257 * ansi-color.el (ansi-color-faces-vector): Change default faces.
2259 * dired.el (dired-sort-set-mode-line): Rename from
2260 dired-sort-set-modeline. All callers changed.
2262 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
2263 eshell-status-in-modeline.
2265 * foldout.el (foldout-mode-line-string): Rename from
2266 foldout-modeline-string. All callers changed.
2267 (foldout-update-mode-line): Rename from foldout-update-modeline.
2269 * subr.el (redraw-modeline): Make into obsolete alias.
2271 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
2272 timeclock-modeline-display. Make old name an alias.
2273 (timeclock-update-mode-line): Likewise. All callers changed.
2274 (timeclock-mode-line-display): No need to check before using
2276 (timeclock-relative, timeclock-day-over-hook)
2277 (timeclock-use-elapsed, timeclock-mode-string)
2278 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
2280 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
2281 crisp-mode-modeline-string.
2283 * play/solitaire.el (solitaire-build-mode-line): Rename from
2284 solitaire-build-modeline. All callers changed.
2286 * play/zone.el (zone-hiding-mode-line): Rename from
2287 zone-hiding-modeline. All callers changed.
2288 (zone): Remove unusued `modeline-hidden-level' property.
2290 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
2291 xscheme-modeline-initialize. All callers changed.
2293 * strokes.el (strokes-lighter): Rename from
2294 strokes-modeline-string.
2296 * textmodes/sgml-mode.el (html-face-tag-alist)
2297 (html-tag-face-alist): Use mode-line face instead of obsolete
2300 2012-06-02 Stefan Merten <smerten@oekonux.de>
2302 * textmodes/rst.el: Always require `cl'.
2303 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
2305 2012-06-02 Chong Yidong <cyd@gnu.org>
2307 * image.el (imagemagick-enabled-types): Rename from
2308 imagemagick-types-enable. Add many more types.
2309 (imagemagick-types-inhibit): Change default to nil.
2310 (imagemagick-filter-types): Caller changed.
2312 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2314 * emacs-lisp/cl-macs.el: Use backquotes.
2315 (cl-transform-function-property): Use eval-and-compile rather than
2317 (defstruct): Use declare-function instead of with-no-warnings.
2319 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
2320 (byte-compile-output-docform): Re-add the print-circle bindings.
2321 (byte-compile-fix-header): Use #$ just because it's shorter.
2322 (byte-compile-output-file-form): Remove defun/defmacro.
2324 2012-06-01 Martin Rudalics <rudalics@gmx.at>
2326 * simple.el (choose-completion): Remove now obsolete binding for
2329 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
2331 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
2332 in order to avoid "Stack overflow in regexp matcher".
2334 2012-05-31 Glenn Morris <rgm@gnu.org>
2336 * image.el: For clarity, call imagemagick-register-types at
2337 top-level, rather than relying on a custom :initialize.
2338 (imagemagick-types-enable): New option. (Bug#11557)
2339 (imagemagick-filter-types): New function. (Bug#7406)
2340 (imagemagick-register-types): Use imagemagick-filter-types.
2341 If disabling support, remove elements altogether rather
2342 than using an impossible regexp.
2343 (imagemagick-types-inhibit): Give it the default init function.
2345 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2347 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
2348 Handle arbitrary file name lengths (Bug#11585).
2350 2012-05-31 Martin Rudalics <rudalics@gmx.at>
2352 * desktop.el (desktop-read): Clear previous and next buffers for
2353 all windows and bury *Messages* buffer (bug#11556).
2355 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2357 Add `declare' for `defun'. Align `defmacro's with it.
2358 * emacs-lisp/easy-mmode.el (define-minor-mode)
2359 (define-globalized-minor-mode): Don't autoload the var definitions.
2360 * emacs-lisp/byte-run.el: Use lexical-binding.
2361 (defun-declarations-alist, macro-declarations-alist): New vars.
2362 (defmacro, defun): Use them.
2363 (make-obsolete, define-obsolete-function-alias)
2364 (make-obsolete-variable, define-obsolete-variable-alias):
2366 (macro-declaration-function): Mark obsolete.
2367 * emacs-lisp/autoload.el: Use lexical-binding.
2368 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
2370 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2372 * textmodes/ispell.el (ispell-with-no-warnings):
2374 (ispell-kill-ispell, ispell-change-dictionary):
2375 Use `called-interactively-p' for Emacs instead of obsolete
2378 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2380 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
2381 (macro-declaration-function): Move var from C code.
2382 (macro-declaration-function): Define function with defalias.
2383 * emacs-lisp/macroexp.el (macroexpand-all-1):
2384 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
2385 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
2386 defun/defmacro any more.
2387 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
2388 Provide fallback for unknown arglist.
2389 (byte-compile-arglist-warn): Change calling convention.
2390 (byte-compile-output-file-form): Move print-vars binding.
2391 (byte-compile-output-docform): Simplify accordingly.
2392 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
2393 (byte-compile-defmacro-declaration): Remove.
2394 (byte-compile-file-form-defmumble): Generalize to defalias.
2395 (byte-compile-output-as-comment): Return byte-positions.
2396 Simplify callers accordingly.
2397 (byte-compile-lambda): Use `assert'.
2398 (byte-compile-defun, byte-compile-defmacro): Remove.
2399 (byte-compile-file-form-defalias):
2400 Use byte-compile-file-form-defmumble.
2401 (byte-compile-defalias-warn): Remove.
2403 2012-05-29 Stefan Merten <smerten@oekonux.de>
2405 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
2406 possible. Fix authors. Improve comments. Improve loading of `cl'.
2408 (rst-mode-abbrev-table): Merge definition.
2409 (rst-mode): Make sure `font-lock-defaults' is buffer local.
2410 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
2412 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
2414 * calendar/icalendar.el
2415 (icalendar-export-region): Export UID properly.
2417 2012-05-29 Leo Liu <sdl.web@gmail.com>
2418 * calendar/icalendar.el (icalendar-import-format):
2419 Add `icalendar-import-format-uid' (Bug#11525).
2420 (icalendar-import-format-uid): New.
2421 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
2424 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2426 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
2427 different alternative patterns.
2428 (pcase-codegen): Be more careful to preserve identity.
2429 (pcase--u1): Don't forget to mark vars as used.
2431 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
2432 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
2433 (byte-compile-from-buffer): ...rather than here.
2435 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
2436 functions from byte-compile-function-environment.
2438 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
2440 * window.el (window-deletable-p): Avoid deleting the root window
2441 of a frame with an active minibuffer.
2443 2012-05-29 Martin Rudalics <rudalics@gmx.at>
2445 * simple.el (choose-completion): Use quit-window (Bug#11567).
2447 2012-05-29 Chong Yidong <cyd@gnu.org>
2449 * whitespace.el (whitespace-cleanup): Fix usage of
2450 whitespace-empty-at-bob-regexp (Bug#11492).
2452 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2454 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
2457 2012-05-29 Juri Linkov <juri@jurta.org>
2459 * isearch.el (isearch-mode-map): Bind `M-s _' to
2460 `isearch-toggle-symbol'. Bind `M-s c' to
2461 `isearch-toggle-case-fold'.
2462 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
2463 (isearch-forward): Add `M-s _' to the docstring.
2464 (isearch-forward-symbol, isearch-toggle-case-fold)
2465 (isearch-symbol-regexp): New functions. (Bug#11381)
2467 2012-05-29 Juri Linkov <juri@jurta.org>
2469 * isearch.el (isearch-word): Add docstring. (Bug#11381)
2470 (isearch-occur, isearch-search-and-update): If `isearch-word' is
2471 a function, call it to get the regexp.
2472 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
2473 property `isearch-message-prefix' instead of the string "word ".
2474 (isearch-search-fun-default): For the case of `isearch-word',
2475 return a lambda that calls re-search-forward/re-search-backward
2476 with a regexp returned by `word-search-regexp' or by the function
2479 2012-05-29 Juri Linkov <juri@jurta.org>
2481 * isearch.el (isearch-search-fun-default): New function.
2482 (isearch-search-fun): Move default part to the new function
2483 `isearch-search-fun-default'.
2484 (isearch-search-fun-function): Set the default value to
2485 `isearch-search-fun-default'. (Bug#11381)
2487 * comint.el (comint-history-isearch-end):
2488 Use `isearch-search-fun-default'.
2489 (comint-history-isearch-search): Use `isearch-search-fun-default'
2490 and remove spacial case for `isearch-word'.
2491 (comint-history-isearch-wrap): Remove spacial case for
2494 * hexl.el (hexl-isearch-search-function):
2495 Use `isearch-search-fun-default'.
2497 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
2498 Use `word-search-regexp' for `isearch-word'.
2500 * misearch.el (multi-isearch-search-fun):
2501 Use `isearch-search-fun-default'.
2503 * simple.el (minibuffer-history-isearch-search):
2504 Use `isearch-search-fun-default' and remove spacial case for
2506 (minibuffer-history-isearch-wrap): Remove spacial case for
2509 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
2510 Remove spacial case for `isearch-word'.
2511 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
2513 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2515 Decrease XEmacs incompatibilities.
2516 * textmodes/flyspell.el (flyspell-check-pre-word-p):
2518 (flyspell-delete-region-overlays): Use alternative definition for
2520 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
2521 (flyspell-word): Use `process-kill-without-query' if XEmacs.
2522 (flyspell-mode-on): Use `interactive-p' if XEmacs.
2523 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
2524 `define-obsolete-face-alias' under XEmacs, but old method.
2526 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
2527 `with-no-warnings' definition or Emacs alias.
2528 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
2529 (ispell-word): Do not use `region-p' if XEmacs.
2531 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2533 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
2534 Check for `ispell-dictionary-base-alist' instead of full
2535 `ispell-dictionary-alist'.
2536 (ispell-init-process): Show spellchecker when starting new Ispell
2539 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
2541 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
2542 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
2544 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
2546 * version.el (motif-version-string, gtk-version-string)
2547 (ns-version-string): Declare.
2549 2012-05-27 Juri Linkov <juri@jurta.org>
2551 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
2552 after the `eval-defun-1' specialcaseing
2553 like in `edebug-eval-defun' (bug#10181).
2555 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
2556 like in `eval-defun-1'.
2558 2012-05-27 Eli Zaretskii <eliz@gnu.org>
2560 * mail/sendmail.el (mail-yank-region):
2561 Recognize rmail-yank-current-message in addition to insert-buffer.
2562 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
2563 a *mail* buffer created through rmail-start-mail with sendmail as
2566 2012-05-27 Chong Yidong <cyd@gnu.org>
2568 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
2569 Default to 256 (Bug#11267).
2571 * help.el (describe-mode): Doc fix.
2573 2012-05-26 Glenn Morris <rgm@gnu.org>
2575 * w32-fns.el (w32-init-info): Remove.
2576 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
2578 * info.el (info-initialize): For self-contained NS builds, put the
2579 included info/ directory at the front. (Bug#2791)
2581 * paths.el (Info-default-directory-list): Make it a defcustom,
2582 mainly so that we can use custom-initialize-delay.
2584 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
2586 * subr.el (buffer-has-markers-at): Mark obsolete.
2588 * subr.el (lambda): Use declare.
2590 * emacs-lisp/lisp-mode.el (lambda):
2591 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
2593 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2595 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
2597 2012-05-26 Glenn Morris <rgm@gnu.org>
2599 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
2601 2012-05-25 Glenn Morris <rgm@gnu.org>
2603 * paths.el: Remove no-byte-compile.
2604 * loadup.el: No need to load paths.el uncompiled.
2606 * image.el (imagemagick-types-inhibit): Doc fix.
2608 * version.el: Remove no-byte-compile and associated formatting.
2609 * loadup.el: No need to load version.el uncompiled. AFAICS, this
2610 is ancient code from when there was an "inc-vers.el".
2612 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
2614 * progmodes/gdb-mi.el: Minor style changes.
2615 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
2616 Turn into minor modes.
2617 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
2618 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
2619 (gdb-shell): Remove unneeded let-binding.
2620 (gdb-get-many-fields): Eliminate O(n²) behavior.
2622 2012-05-25 Eli Zaretskii <eliz@gnu.org>
2624 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
2625 platforms that don't link in fontset.c.
2627 2012-05-25 Juri Linkov <juri@jurta.org>
2629 Use the same diff color scheme as in modern VCSes (bug#10181).
2631 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
2632 to avoid confusion with `diff-added' that now uses green colors.
2633 (diff-removed): Use shades of red.
2634 (diff-added): Use shades of green.
2635 (diff-changed): Leave just the yellow color.
2636 (diff-use-changed-face): New variable.
2637 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
2638 how to highlight context diff changes.
2639 (diff-refine-change): Use shades of yellow.
2640 (diff-refine-removed): New face that uses shades of red.
2641 (diff-refine-added): New face that uses shades of green.
2642 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
2643 `diff-refine-removed' in the call to `smerge-refine-subst'
2644 depending on the value of `diff-use-changed-face'.
2646 * vc/smerge-mode.el (smerge-mine): Use shades of red.
2647 (smerge-other): Use shades of green.
2648 (smerge-base): Use shades of yellow.
2649 (smerge-refined-change): Empty face.
2650 (smerge-refined-removed): New face that uses shades of red.
2651 (smerge-refined-added): New face that uses shades of green.
2652 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
2653 args `props-r' and `props-a', and use them. Doc fix.
2654 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
2655 on its value use different faces `smerge-refined-change',
2656 `smerge-refined-removed', `smerge-refined-added' in the call to
2657 `smerge-refine-subst'.
2659 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
2660 Add face condition `min-colors 88' with shades of red.
2661 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
2662 `min-colors 88' with shades of green.
2663 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
2664 `min-colors 88' with shades of yellow.
2666 2012-05-24 Glenn Morris <rgm@gnu.org>
2668 * paths.el (prune-directory-list, remote-shell-program): Move to...
2669 * files.el (prune-directory-list, remote-shell-program): ...here.
2670 For the latter, delay initialization, prefer ssh, just search PATH.
2672 * paths.el (term-file-prefix): Move to faces.el (the only user).
2673 * faces.el (term-file-prefix): Move here, make it a defcustom.
2675 * paths.el (news-directory, news-path, news-inews-program):
2676 Move to gnus/nnspool.el.
2678 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
2680 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
2681 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
2682 Make the latter a defcustom, with a delayed initialization.
2684 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
2685 These were deleted from Gnus itself late 2010.
2687 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
2689 * progmodes/which-func.el (which-func-ff-hook):
2690 Check against user-error, not error.
2692 * emacs-lisp/edebug.el (top): Do not load or set up loading of
2693 cl-specs.el, which no longer exists.
2695 2012-05-22 Glenn Morris <rgm@gnu.org>
2697 * info.el (info-emacs-bug): New command.
2698 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
2699 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
2701 2012-05-21 Glenn Morris <rgm@gnu.org>
2703 * makefile.w32-in (update-subdirs-SH):
2704 * Makefile.in (update-subdirs): Update for moved update-subdirs.
2706 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
2708 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
2710 * progmodes/compile.el (compilation-error-regexp-alist-alist):
2711 Simplify Maven regexp, and make sure the file can't start with a space
2714 2012-05-21 Glenn Morris <rgm@gnu.org>
2716 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
2717 Scrap superfluous subshells.
2719 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
2721 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
2722 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
2724 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
2726 * calc/calc.el (calc-ensure-consistent-units): New variable.
2728 * calc/calc-units.el (math-consistent-units-p)
2729 (math-check-unit-consistency): New functions.
2730 (calc-quick-units, calc-convert-units):
2731 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
2733 (calc-extract-units): Fix typo.
2735 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2737 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
2739 * textmodes/flyspell.el: Commenting style, plus code simplifications.
2740 (flyspell-default-deplacement-commands): Don't spell check after
2741 repeated window/frame switches (e.g. triggered by mouse-movement).
2742 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
2743 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
2744 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
2745 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
2747 (flyspell-get-casechars, flyspell-get-not-casechars):
2748 Simplify; Don't bother removing a ] just to add it back.
2749 * textmodes/ispell.el (ispell-program-name): Use executable-find.
2751 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2753 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
2755 (math-function-table): Add support for more C functions.
2757 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2759 * textmodes/flyspell.el (flyspell-check-pre-word-p)
2760 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
2761 Protect delay handling for otherchars against empty otherchars.
2763 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2765 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
2766 their respective macro declarations.
2767 * skeleton.el (define-skeleton):
2768 * progmodes/compile.el (define-compilation-mode):
2769 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
2770 (define-ibuffer-filter):
2771 * emacs-lisp/generic.el (define-generic-mode):
2772 * emacs-lisp/easy-mmode.el (define-minor-mode)
2773 (define-globalized-minor-mode):
2774 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
2775 * emacs-lisp/byte-run.el (defsubst):
2776 * custom.el (deftheme): Add doc-string metadata.
2778 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2780 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
2782 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2784 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
2786 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
2787 * emacs-lisp/cl-macs.el: Idem.
2788 * emacs-lisp/cl-specs.el: Remove.
2790 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2792 Minor renaming of internal CL functions and variables.
2793 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
2794 (cl--position): Rename from cl-position.
2795 (cl--delete-duplicates): Rename from cl-delete-duplicates.
2796 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
2797 (cl--random-state): Rename from *random-state*.
2799 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2801 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
2802 parens around the arg list (bug#11499).
2804 2012-05-17 Juri Linkov <juri@jurta.org>
2806 * isearch.el (word-search-regexp, word-search-backward)
2807 (word-search-forward, word-search-backward-lax)
2808 (word-search-forward-lax): Move functions from search.c
2809 (bug#10145, bug#11381).
2811 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2813 * textmodes/flyspell.el (flyspell-check-pre-word-p)
2814 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
2815 Delay for otherchars as for normal word components.
2817 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
2819 * minibuffer.el (completion--sifn-requote): Fix last change.
2820 (minibuffer-local-must-match-filename-map):
2821 Move define-obsolete-variable-alias before its var.
2823 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
2825 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
2827 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
2829 (completion--string-equal-p): New function.
2830 (completion--twq-all): Use it to get better assertion failure data.
2832 Only handle ".." and '..' quoting in shell-mode (bug#11466).
2833 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
2834 (shell--requote-argument): New functions.
2835 (shell-completion-vars): Use them.
2836 (shell--parse-pcomplete-arguments): Rename from
2837 shell-parse-pcomplete-arguments.
2838 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
2839 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
2840 Obey comint-file-name-quote-list.
2842 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
2843 (smie-indent-keyword): Use it.
2845 2012-05-14 Stefan Merten <smerten@oekonux.de>
2847 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
2849 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2851 * net/rlogin.el (rlogin-mode-map): Fix last change.
2853 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
2855 * mail/smtpmail.el (smtpmail-send-command): Send the command and
2856 the following \r\n using a single `process-send-string', since the
2857 Lotus SMTP server refuses to accept any commands if they are sent
2858 with two `process-send-string's (Bug#11444).
2860 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2862 * shell.el (shell-parse-pcomplete-arguments):
2863 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
2865 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2867 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2868 (image-transform-scale, image-transform-right-angle-fudge): New vars.
2869 (image-transform-width, image-transform-fit-width): New functions.
2870 (image-transform-properties): Use them.
2871 (image-transform-check-size): New function.
2872 (image-toggle-display-image): Use it (for testing).
2873 (image-transform-set-rotation): Reduce angle mod 360.
2874 Delete obsolete comment.
2876 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2878 * image-mode.el: Fix scaling (bug#11399).
2879 (image-transform-resize): Doc fix.
2880 (image-transform-properties): Default scale is 1 and height should
2883 2012-05-13 Johan Bockgård <bojohan@gnu.org>
2885 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
2886 than hard-coding `car', to fix misbehavior when moving forward.
2888 2012-05-13 Chong Yidong <cyd@gnu.org>
2890 * emacs-lisp/tabulated-list.el (tabulated-list-format)
2891 (tabulated-list-entries, tabulated-list-padding)
2892 (tabulated-list-sort-key): Make permanent-local.
2894 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
2895 (electric-buffer-list): Put electric buffer menu
2896 command descriptions in this docstring, instead of the docstring
2897 of electric-buffer-menu-mode. Code cleanups.
2898 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
2899 Electric-buffer-menu-mode.
2900 (electric-buffer-update-highlight): Minor code cleanup.
2902 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
2904 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
2907 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2909 Move define-obsolete-variable-alias before the var's definition.
2910 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
2911 * tooltip.el (tooltip-hook):
2912 * textmodes/reftex-toc.el (reftex-toc-map):
2913 * textmodes/reftex-sel.el (reftex-select-label-map)
2914 (reftex-select-bib-map):
2915 * textmodes/reftex-index.el (reftex-index-map)
2916 (reftex-index-phrases-map):
2917 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
2918 * progmodes/meta-mode.el (meta-mode-map):
2919 * novice.el (disabled-command-hook):
2920 * loadhist.el (unload-hook-features-list):
2921 * frame.el (blink-cursor):
2922 * files.el (find-file-not-found-hooks, write-file-hooks)
2923 (write-contents-hooks):
2924 * emulation/tpu-edt.el (GOLD-map):
2925 * emacs-lock.el (emacs-lock-from-exiting):
2926 * emacs-lisp/generic.el (generic-font-lock-defaults):
2927 * emacs-lisp/chart.el (chart-map):
2928 * dos-fns.el (register-name-alist):
2929 * dired-x.el (dired-omit-files-p):
2930 * desktop.el (desktop-enable):
2931 * cus-edit.el (custom-mode-hook):
2932 * buff-menu.el (buffer-menu-mode-hook):
2933 * bookmark.el (bookmark-read-annotation-text-func)
2934 (bookmark-exit-hooks):
2935 * allout.el (allout-mode-deactivate-hook)
2936 (allout-exposure-change-hook, allout-structure-added-hook)
2937 (allout-structure-deleted-hook, allout-structure-shifted-hook):
2938 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
2939 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
2940 comes before the corresponding variable's definition.
2942 2012-05-12 Chong Yidong <cyd@gnu.org>
2944 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
2945 (Buffer-menu-mouse-select): Restore function (Bug#11459).
2946 (Buffer-menu-mode-map): Bind it.
2947 (Buffer-menu--pretty-name): Add a mouse-face property.
2949 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2951 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2952 (prolog-upper-case-string, prolog-lower-case-string)
2953 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2954 (prolog-use-smie, prolog-smie-grammar): New vars.
2955 (prolog-smie-forward-token, prolog-smie-backward-token)
2956 (prolog-smie-rules): New funs.
2957 (prolog-comment-indent): Remove.
2958 (prolog-mode-variables): Use default comment indentation instead.
2960 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2961 (prolog-mode): Don't call them any more.
2962 (prolog-electric-colon, prolog-electric-dash)
2963 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2965 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2967 * minibuffer.el (completion--twq-all): Again, allow case differences.
2969 * term.el: Move keymap initialization code to be more idiomatic.
2970 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2971 (term-terminal-menu): Move initialization into declaration.
2972 (term-escape-char): Let the user set it in her .emacs.
2974 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2975 Provide SMIE-based indentation (not enabled by default yet).
2976 (sh-mode-map): Don't bind electric keys.
2977 Use electric-pair-mode instead of skeleton-pair.
2978 (sh-assignment-regexp): Fit within 80 columns.
2979 (sh-indent-supported): Specify actual shell name instead of boolean.
2980 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2981 (sh-maybe-here-document): Use it. Make obsolete.
2982 (sh-electric-here-document-mode) New minor mode.
2983 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2984 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2985 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2986 (sh-smie-rc-grammar, sh-use-smie): New vars.
2987 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2988 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2989 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2990 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2991 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2992 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2993 (sh-set-shell): Use smie-setup if requested.
2995 * term.el (term-set-escape-char): Properly set term-escape-char.
2996 See http://stackoverflow.com/questions/10524656.
2998 2012-05-10 Chong Yidong <cyd@gnu.org>
3000 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
3001 Use url-generic-parse-url, and handle host names and Windows
3003 (ffap-url-unwrap-remote): Use url-generic-parse-url.
3004 (ffap-url-unwrap-remote): Accept list values, specifying a list of
3005 URL schemes to work on.
3006 (ffap--toggle-read-only): New function.
3007 (ffap-read-only, ffap-read-only-other-window)
3008 (ffap-read-only-other-frame): Use it.
3009 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
3010 necessary for ffap-url-unwrap-remote.
3012 2012-05-10 Dave Abrahams <dave@boostpro.com>
3014 * cus-start.el (create-lockfiles): Add it.
3016 2012-05-09 Chong Yidong <cyd@gnu.org>
3018 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
3019 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
3021 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3023 * shell.el (shell-completion-vars): Fix last change (bug#11348).
3025 2012-05-09 Chong Yidong <cyd@gnu.org>
3027 * ansi-color.el (ansi-color-process-output): Check for validity of
3028 comint-last-output-start before using it. This avoids a bad
3029 interaction with gdb-mi's input/output buffer.
3031 2012-05-09 Glenn Morris <rgm@gnu.org>
3033 * files.el (dir-locals-read-from-file):
3034 Mention dir-locals in any error message.
3036 2012-05-09 Chong Yidong <cyd@gnu.org>
3038 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
3039 package (Bug#11410).
3041 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
3042 variables into description.
3044 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3046 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
3047 shell-delimiter-argument-list (bug#11348).
3048 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
3050 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
3052 * textmodes/rst.el: Silence byte-compiler warnings.
3053 (rst-re-alist, rst-reset-section-caches): Move around.
3054 (rst-re): Use `characterp', not `char-valid-p'.
3055 (font-lock-beg, font-lock-end): Declare.
3057 * progmodes/idlw-shell.el (specs): Remove reference to deleted
3058 variable `idlwave-shell-activate-alt-keybindings' and simplify.
3060 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
3062 2012-05-08 Glenn Morris <rgm@gnu.org>
3064 * files.el (auto-mode-alist): Treat ".make" like ".mk".
3066 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3068 * vc/log-edit.el: Add GNU coding standards highlighting.
3069 (log-edit-font-lock-gnu-style)
3070 (log-edit-font-lock-gnu-keywords): New vars.
3071 (log-edit-font-lock-keywords): New fun.
3072 (log-edit-mode): Don't fold case in font-lock.
3073 (log-edit-font-lock-keywords): Do not assume case-folding.
3075 * imenu.el: Misc cleanup. Make docstrings out of comments.
3076 Use lexical-binding.
3077 (imenu--index-alist, imenu--last-menubar-index-alist)
3078 (imenu-menubar-modified-tick): Use defvar-local.
3079 (imenu--split-menu): Remove unused var.
3080 (imenu--cleanup-seen): Declare as global.
3081 (imenu--cleanup): Use dolist.
3083 * subr.el (defvar-local): Add debug spec and doc-string position.
3085 2012-05-08 Glenn Morris <rgm@gnu.org>
3087 * language/burmese.el, language/cham.el, language/czech.el:
3088 * language/english.el, language/georgian.el, language/greek.el:
3089 * language/japanese.el, language/khmer.el, language/korean.el:
3090 * language/lao.el, language/misc-lang.el, language/romanian.el:
3091 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
3092 * language/thai.el, language/utf-8-lang.el:
3093 Remove no-byte-compile setting.
3095 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
3097 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3099 * progmodes/make-mode.el (makefile-browse):
3100 Remove unnecessary interactive. (Bug#11324)
3102 2012-05-07 Glenn Morris <rgm@gnu.org>
3104 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
3106 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
3108 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3110 * loadup.el: Preload newcomment.el.
3111 * newcomment.el: Move autoload-only code to toplevel.
3113 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
3114 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
3115 Handle new :right-align column property.
3116 (tabulated-list-print-col): Idem, plus use `display' text-property to
3117 try and preserve alignment for variable pitch fonts.
3119 2012-05-07 Chong Yidong <cyd@gnu.org>
3121 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
3122 (tabulated-list-use-header-line): New var.
3123 (tabulated-list-init-header): Use it.
3124 (tabulated-list-print-fake-header): New function.
3125 (tabulated-list-print): Use it.
3126 (tabulated-list-sort-button-map): Add non-header-line commands.
3127 (tabulated-list-init-header): Add column name property to basic
3129 (tabulated-list-col-sort): Handle non-header-line button case.
3130 (tabulated-list--sort-by-column-name): Fix a corner case.
3132 * buff-menu.el (list-buffers--refresh):
3133 Handle Buffer-menu-use-header-line.
3135 2012-05-06 Chong Yidong <cyd@gnu.org>
3137 * buff-menu.el: Convert to Tabulated List mode.
3138 (Buffer-menu-buffer+size-width): Make obsolete.
3139 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
3140 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
3141 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
3142 documentation into docstring of buffer-menu.
3143 (Buffer-menu-toggle-files-only): Add an informative message.
3144 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
3145 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
3146 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
3147 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
3148 (Buffer-menu-execute, Buffer-menu-select)
3149 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
3150 (Buffer-menu-bury): Use Tabulated List machinery.
3151 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
3152 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
3154 (list-buffers--refresh): New function.
3155 (list-buffers-noselect): Use it.
3156 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
3157 (Buffer-menu--pretty-file-name): New helper functions.
3159 * loadup.el: Preload tabulated-list.
3161 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
3162 tabulated-list-sort-column.
3163 (tabulated-list-init-header): Add the initial aligning space even
3164 if tabulated-list-padding is zero.
3166 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
3168 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
3169 whose cdr is not a cons cell correctly (bug#11038).
3171 2012-05-06 Chong Yidong <cyd@gnu.org>
3173 * emacs-lisp/tabulated-list.el (tabulated-list-format):
3174 Accept additional plist in column descriptors.
3175 (tabulated-list-init-header): Obey it.
3176 (tabulated-list-get-entry): New function.
3177 (tabulated-list-put-tag): Use it. Use string-width instead of
3179 (tabulated-list--column-number): New function.
3180 (tabulated-list-print): Use it.
3181 (tabulated-list-print-col): New function.
3182 Set `tabulated-list-column-name' property on each column's text.
3183 (tabulated-list-print-entry): Use it.
3184 (tabulated-list-delete-entry, tabulated-list-set-col):
3186 (tabulated-list-sort-column): New command (Bug#11337).
3188 * buff-menu.el (list-buffers): Move C-x C-b binding from
3189 buff-menu.el to bindings.el.
3191 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
3192 :advertised-binding feature.
3194 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
3196 * progmodes/compile.el (compilation-internal-error-properties):
3197 Calculate start position correctly when end-col is set but
3198 end-line is not (Bug#11382).
3200 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
3202 * man.el (Man-unindent): Use text-property-default-nonsticky to
3203 prevent untabify from inheriting face properties (Bug#11408).
3205 2012-05-05 Stefan Merten <smerten@oekonux.de>
3207 * textmodes/rst.el: Major merge with upstream development up to
3208 Docutils SVN r7399 / rst.el V1.2.1.
3210 Clarify maintainership and authors.
3212 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
3213 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
3214 (rst-official-version, rst-official-cvs-rev, rst-version)
3215 (rst-package-emacs-version-alist): New functions and variables
3216 for version information.
3218 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
3219 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
3220 (rst-mode-syntax-table, rst-mode): New and corrected functions
3221 and variables representing reStructuredText features.
3223 (rst-re): New function for reStructuredText regexes. Use in
3226 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
3227 (rst-mode-map): Rebind keys.
3229 (rst-mode-lazy, rst-font-lock-keywords)
3230 (rst-font-lock-extend-region)
3231 (rst-font-lock-extend-region-internal)
3232 (rst-font-lock-extend-region-extend)
3233 (rst-font-lock-find-unindented-line-limit)
3234 (rst-font-lock-find-unindented-line-match)
3235 (rst-adornment-level, rst-font-lock-adornment-level)
3236 (rst-font-lock-adornment-match)
3237 (rst-font-lock-handle-adornment-pre-match-form)
3238 (rst-font-lock-handle-adornment-matcher): Major revision of
3239 font-locking. Integrate with other code. Use `jit-lock-mode'.
3241 (rst-preferred-adornments, rst-adjust-hook)
3242 (rst-new-adornment-down, rst-preferred-bullets)
3243 (rst-preferred-bullets, rst-indent, rst-indent-width)
3244 (rst-indent-field, rst-indent-literal-normal)
3245 (rst-indent-literal-minimized, rst-indent-comment): Change,
3246 extend and improve customization.
3248 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
3249 (rst-normalize-cursor-position, rst-get-decoration)
3250 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
3251 (rst-rstrip, rst-toc-insert-find-delete-contents)
3252 (rst-shift-fill-region, rst-compute-bullet-tabs)
3253 (rst-debug-print-tabs, rst-debug-mark-found)
3254 (rst-shift-region-guts, rst-shift-region-right)
3255 (rst-shift-region-left, rst-use-char-classes)
3256 (rst-font-lock-keywords-function)
3257 (rst-font-lock-indentation-point)
3258 (rst-font-lock-find-unindented-line-begin)
3259 (rst-font-lock-find-unindented-line-end)
3260 (rst-font-lock-find-unindented-line)
3261 (rst-font-lock-adornment-point, rst-font-lock-level)
3262 (rst-adornment-level-alist): Remove functions and variables.
3264 (rst-compare-adornments, rst-get-adornment-match)
3265 (rst-suggest-new-adornment, rst-get-adornments-around)
3266 (rst-adornment-complete-p, rst-get-next-adornment)
3267 (rst-adjust-adornment, rst-display-adornments-hierarchy)
3268 (rst-straighten-adornments): Standardize function names to
3269 use "adornment" instead of "decoration". Correct callers.
3270 Similar standardizing in many places.
3272 (rst-update-section, rst-adjust, rst-promote-region)
3273 (rst-enumerate-region, rst-bullet-list-region)
3274 (rst-repeat-last-character): Correct use of `interactive'.
3276 (rst-classify-adornment, rst-find-all-adornments)
3277 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
3278 (rst-find-leftmost-column, rst-repeat-last-character):
3281 (rst-find-title-line, rst-reset-section-caches)
3282 (rst-get-adornments-around, rst-adjust-adornment-work)
3283 (rst-arabic-to-roman, rst-roman-to-arabic)
3284 (rst-insert-list-pos, rst-insert-list-new-item)
3285 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
3288 (rst-all-sections, rst-section-hierarchy)
3289 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
3292 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
3293 configuration instead of only buffer. Change where necessary.
3295 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
3296 (rst-shift-region, rst-adaptive-fill): New functions for
3297 indentation and filling.
3299 (rst-comment-line-break, rst-comment-indent)
3300 (rst-comment-insert-comment, rst-comment-region)
3301 (rst-uncomment-region): New functions for handling comments.
3303 (rst-compile): Quote shell arguments.
3305 (rst-compile-pdf-preview, rst-compile-slides-preview):
3306 Delete temporary files after use.
3308 2012-05-05 Glenn Morris <rgm@gnu.org>
3310 * calendar/cal-html.el: Optionally include holidays in the output.
3311 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
3312 (cal-html-holidays): New option.
3313 (cal-html-css-default): Add holiday entry.
3314 (holiday-in-range): Autoload it.
3315 (cal-html-htmlify-entry): Add optional class argument.
3316 (cal-html-htmlify-list): Add optional holidays argument.
3317 (cal-html-insert-agenda-days): Include holidays in the output.
3318 (cal-html-one-month): Maybe include holidays.
3320 * calendar/holidays.el (holiday-in-range):
3321 Move here from cal-tex-list-holidays.
3322 * calendar/cal-tex.el (cal-tex-list-holidays):
3323 Make it an obsolete alias for holiday-in-range. Update all callers.
3325 2012-05-05 Chong Yidong <cyd@gnu.org>
3327 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
3330 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
3332 * files.el (file-auto-mode-skip): New var.
3333 (set-auto-mode-1): Use it.
3335 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
3337 * repeat.el: Use lexical-binding.
3338 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
3339 (repeat-undo-count): Remove.
3341 * progmodes/octave-mod.el (octave-abbrev-start):
3342 * progmodes/f90.el (f90-abbrev-start):
3343 * face-remap.el (text-scale-adjust):
3344 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
3346 * emacs-lisp/pcase.el (pcase--let*): New function.
3347 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
3349 (pcase--split-pred): Be more clever about ruling out overlap between
3350 a predicate and some constant pattern.
3351 (pcase--q1): Use `null' instead of (eq foo nil).
3353 * subr.el (setq-local, defvar-local): New macros.
3354 (kbd): Redefine as an alias.
3355 (with-selected-window): Leave unrelated frames alone.
3356 (set-temporary-overlay-map): New function.
3358 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3360 * subr.el (user-error): New function.
3361 * window.el (switch-to-buffer):
3362 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
3363 (smerge-match-conflict):
3364 * simple.el (previous-matching-history-element)
3365 (next-matching-history-element, goto-history-element, undo-more)
3367 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
3368 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
3369 (next-file, tags-loop-scan, list-tags, complete-tag):
3370 * progmodes/compile.el (compilation-loop):
3371 * mouse.el (mouse-minibuffer-check):
3372 * man.el (Man-bgproc-sentinel, Man-goto-page):
3373 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
3374 (Info-history-forward, Info-follow-reference, Info-menu)
3375 (Info-extract-menu-item, Info-extract-menu-counting)
3376 (Info-forward-node, Info-backward-node, Info-next-menu-item)
3377 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
3378 (Info-next-reference, Info-prev-reference, Info-index)
3379 (Info-index-next, Info-follow-nearest-node)
3380 (Info-copy-current-node-name):
3381 * imenu.el (imenu--make-index-alist)
3382 (imenu-default-create-index-function, imenu-add-to-menubar):
3383 * files.el (basic-save-buffer, recover-file):
3384 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3385 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
3386 (checkdoc-message-text, checkdoc-defun):
3387 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
3388 * cus-edit.el (customize-changed-options, customize-rogue)
3389 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
3390 (custom-variable-mark-to-reset-standard)
3391 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
3393 * completion.el (check-completion-length):
3394 * comint.el (comint-search-arg)
3395 (comint-previous-matching-input-string-position)
3396 (comint-previous-matching-input)
3397 (comint-replace-by-expanded-history-before-point, comint-send-input)
3398 (comint-copy-old-input, comint-backward-matching-input)
3399 (comint-goto-process-mark, comint-set-process-mark):
3400 * calendar/calendar.el (calendar-cursor-to-date): Use it.
3401 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
3403 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3405 * dabbrev.el (dabbrev--ignore-case-p): New function.
3406 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
3409 * files.el (automount-dir-prefix): Mark as obsolete.
3411 2012-05-04 Glenn Morris <rgm@gnu.org>
3413 * patcomp.el, play/bruce.el: Move to obsolete/.
3415 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
3417 Fix minor Y10k bugs.
3418 * arc-mode.el (archive-unixdate):
3419 * autoinsert.el (auto-insert-alist):
3420 * calc/calc-forms.el (math-this-year):
3421 * emacs-lisp/copyright.el (copyright-current-year)
3422 (copyright-update-year, copyright):
3423 * tar-mode.el (tar-clip-time-string):
3424 * time.el (display-time-update):
3425 Don't assume years have 4 digits.
3427 2012-05-04 Chong Yidong <cyd@gnu.org>
3429 * dos-w32.el (file-name-buffer-file-type-alist)
3430 (direct-print-region-use-command-dot-com):
3431 * ffap.el (ffap-menu-regexp):
3432 * find-file.el (ff-special-constructs):
3433 * follow.el (follow-debug):
3434 * forms.el (forms--debug):
3435 * iswitchb.el (iswitchb-all-frames):
3436 * ido.el (ido-all-frames):
3437 * emacs-lisp/timer.el (timer-max-repeats):
3438 * mail/feedmail.el (feedmail-mail-send-hook)
3439 (feedmail-mail-send-hook-queued):
3440 * mail/footnote.el (footnote-signature-separator):
3441 * mail/mailabbrev.el (mail-alias-separator-string)
3442 (mail-abbrev-mode-regexp):
3443 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
3444 * progmodes/idlwave.el (idlwave-libinfo-file)
3445 (idlwave-default-completion-case-is-down)
3446 (idlwave-library-routines): Convert defvars to defcustoms.
3448 * mail/rmail.el (rmail-decode-mime-charset):
3449 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
3450 (idlwave-shell-fix-inserted-breaks)
3451 (idlwave-shell-activate-alt-keybindings)
3452 (idlwave-shell-use-breakpoint-glyph):
3453 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
3455 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3457 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
3459 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
3461 * progmodes/verilog-mode.el (font-lock-keywords):
3462 Fix mis-highligting auto. Reported by Craig Barner.
3463 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
3464 defines from global name space. Reported by Dan Dever.
3465 (verilog-auto-reset, verilog-auto-reset-widths)
3466 (verilog-auto-tieoff): Support using unbased numbers for
3467 AUTORESET and AUTOTIEOFF.
3468 (verilog-submit-bug-report): Update variable list.
3469 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
3470 parenthesis from not matching. Reported by Michael Rytting.
3471 (verilog-auto-template-lint): Fix hash error when linting modules
3472 with no used templates.
3473 (verilog-warn, verilog-warn-error)
3474 (verilog-warn-fatal): When non-interactive report multiple
3475 warnings before exiting. Suggested by Brad Dobbie.
3476 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
3477 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
3478 to report unused template errors. Reported by Brad Dobbie.
3479 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
3480 nets, bug438. Reported by Vns Blore.
3481 (verilog-auto-inout-module, verilog-auto-reg)
3482 (verilog-read-decls, verilog-read-sub-decls-sig)
3483 (verilog-signals-edit-wire-reg, verilog-signals-with):
3484 Fix passing of Verilog data types in ANSI input/output ports
3485 such as "output logic" into the AUTOs. Special case "wire" and
3486 "reg" for backwards compatibility presuming Verilog 2001.
3487 (verilog-auto-ascii-enum): Add "auto enum" as alias.
3488 (verilog-preprocess): Fix replication of preprocess output.
3489 Reported by Brad Dobbie.
3490 (verilog-auto-inst-interfaced-ports):
3491 Create verilog-auto-inst-interfaced-ports, bug429.
3492 Reported by Julian Gorfajn.
3493 (verilog-after-save-font-hook)
3494 (verilog-before-save-font-hook): New variable.
3495 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
3496 (verilog-save-font-mods): Wrap disabling fontification, reported
3498 (verilog-do-indent, verilog-pretty-declarations-auto)
3499 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
3500 Reported by Pierre-David Pfister.
3501 (verilog-set-auto-endcomments): Fix endtask auto comments outside
3502 of class declarations, bug292. Reported by Kevin Heilman.
3503 (verilog-read-decls): Fix 'parameter type' not appearing in
3504 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
3505 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
3506 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
3507 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
3508 Reported by David Kravitz.
3510 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
3512 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
3513 assignment with tests in ifs and for loops.
3514 (verilog-extended-complete-re, verilog-complete-reg): Change so
3515 that DPI inport functions don't look like fuction declarations.
3516 (verilog-pretty-expr): Don't line up assignment
3517 operations to the test and increment in if and for loops
3518 (verilog-extended-complete-re, verilog-complete-reg): Change so
3519 that DPI inport functions don't look like fuction declarations.
3521 2012-05-03 Kenichi Handa <handa@m17n.org>
3523 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
3524 decoding, and show a warning message without signaling an error
3527 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3529 * emacs-lisp/bytecomp.el
3530 (byte-compile-file-form-custom-declare-variable): Compile all elements,
3531 since cconv.el might have introduced :fun-body, internal-make-closure,
3532 and friends for bytecomp to handle (bug#11391).
3533 * custom.el (defcustom): Avoid ((λ ..) ..).
3535 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
3537 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
3539 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
3541 * notifications.el (dbus-debug):
3542 * term/linux.el (gpm-mouse-enable):
3543 * term/screen.el (xterm-register-default-colors): Declare.
3545 2012-05-02 Chong Yidong <cyd@gnu.org>
3547 * cus-start.el (gc-cons-percentage, exec-suffixes)
3548 (dos-display-scancodes, dos-hyper-key, dos-super-key)
3549 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
3550 (make-cursor-line-fully-visible, void-text-area-pointer)
3551 (font-list-limit): Add customization data.
3553 * allout.el (allout-exposure-change-functions)
3554 (allout-structure-added-functions)
3555 (allout-structure-deleted-functions)
3556 (allout-structure-shifted-functions): Rename abnormal hooks from
3557 *-hook, and convert to defcustoms.
3558 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
3559 Convert to defcustoms.
3560 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
3562 * allout-widgets.el: Hook callers changed.
3564 2012-05-02 Eli Zaretskii <eliz@gnu.org>
3566 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
3567 the yanked message in preference to the default value of
3568 buffer-file-coding-system.
3570 2012-05-02 Martin Rudalics <rudalics@gmx.at>
3572 * window.el (display-buffer--action-function-custom-type):
3575 2012-05-02 Alan Mackenzie <acm@muc.de>
3577 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
3579 2012-05-01 Glenn Morris <rgm@gnu.org>
3581 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
3583 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
3585 * cus-edit.el (custom-variable-documentation): Simplify with format.
3587 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3588 Stefan Monnier <monnier@iro.umontreal.ca>
3590 * simple.el (suggest-key-bindings, execute-extended-command):
3591 Move from keyboard.c.
3593 2012-05-01 Chong Yidong <cyd@gnu.org>
3595 * follow.el: Eliminate advice.
3596 (set-process-filter, process-filter, sit-for): Advice deleted.
3597 (follow-mode-off-hook): Obsolete hook removed.
3598 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
3600 (follow-auto): Use a :set function.
3601 (follow-mode): Rewritten. Don't advise process filters.
3602 (follow-switch-to-current-buffer-all, follow-scroll-up)
3603 (follow-scroll-down): Assume follow-mode is bound.
3604 (follow-comint-scroll-to-bottom)
3605 (follow-align-compilation-windows): New functions.
3606 (follow--window-sorter): New function.
3607 (follow-all-followers): Use it to explicitly sort windows by their
3608 positions; don't make assumptions about next-window order.
3609 (follow-windows-start-end, follow-delete-other-windows-and-split)
3610 (follow-calc-win-start): Doc fix.
3611 (follow-windows-aligned-p, follow-select-if-visible): Don't call
3612 vertical-motion unnecessarily.
3613 (follow-adjust-window): New function.
3614 (follow-post-command-hook): Use it.
3615 (follow-call-set-process-filter, follow-call-process-filter)
3616 (follow-intercept-process-output, follow-tidy-process-filter-alist)
3617 (follow-stop-intercept-process-output, follow-generic-filter):
3619 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
3620 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
3621 New functions, replacing advice on scroll-bar-* commands.
3622 (follow-mwheel-scroll): New function (Bug#4112).
3624 * comint.el (comint-adjust-point): New function.
3625 (comint-postoutput-scroll-to-bottom): Use it.
3626 Call follow-comint-scroll-to-bottom for Follow mode buffers.
3628 2012-05-01 Glenn Morris <rgm@gnu.org>
3630 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
3631 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
3632 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
3633 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
3634 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
3635 Remove no-byte-compile setting.
3637 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
3639 * minibuffer.el (completion-table-with-quoting): Fix compatibility
3640 all-completions code to not return a number in the last cdr.
3642 2012-04-30 Leo Liu <sdl.web@gmail.com>
3644 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
3647 2012-04-29 Chong Yidong <cyd@gnu.org>
3649 * follow.el (follow-calc-win-end): Rewrite to handle partial
3650 screen lines correctly (Bug#8390).
3651 (follow-avoid-tail-recenter): Minor cleanup.
3653 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
3655 Avoid the obsolete `assoc' package.
3656 * speedbar.el (speedbar-refresh): Avoid adelete.
3657 (speedbar-file-lists): Simplify and avoid aput.
3658 * man.el (Man--sections, Man--refpages): New vars, replacing
3659 Man-sections-alist and Man-refpages-alist.
3660 (Man-build-section-alist, Man-build-references-alist):
3661 Use them; avoid aput.
3662 (Man--last-section, Man--last-refpage): New vars.
3663 (Man-follow-manual-reference): Use them.
3664 Use the `default' arg of completing-read.
3665 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
3667 2012-04-27 Chong Yidong <cyd@gnu.org>
3669 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
3671 * startup.el (x-apply-session-resources): New function.
3673 * term/ns-win.el (ns-initialize-window-system):
3674 * term/w32-win.el (w32-initialize-window-system):
3675 * term/x-win.el (x-initialize-window-system): Use it to properly
3676 set menu-bar-mode and other vars from X resources, even if the
3677 initial frame is not a window-system frame (Bug#2299).
3679 * subr.el (read-key): Avoid running filter function when setting
3680 up temporary tool bar entries (Bug#9922).
3682 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3684 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
3687 2012-04-27 Chong Yidong <cyd@gnu.org>
3689 * select.el (xselect--encode-string): New function, split from
3690 xselect-convert-to-string.
3691 (xselect-convert-to-string): Use it.
3692 (xselect-convert-to-filename, xselect-convert-to-os)
3693 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
3694 returned strings are properly encoded (Bug#11315).
3696 2012-04-27 Chong Yidong <cyd@gnu.org>
3698 * simple.el (delete-active-region): Move to killing custom group.
3700 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
3702 * progmodes/which-func.el (which-func-current): Quote %
3703 characters for mode-line processing.
3705 2012-04-27 Chong Yidong <cyd@gnu.org>
3707 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
3708 reaching eob (Bug#11286).
3710 2012-04-27 Eli Zaretskii <eliz@gnu.org>
3712 * progmodes/gdb-mi.el (gdb-control-level): New variable.
3713 (gdb): Make it buffer-local and init to zero.
3714 (gdb-control-commands-regexp): New variable.
3715 (gdb-send): Don't wrap in "-interpreter-exec console" if
3716 gdb-control-level is positive. Increment gdb-control-level
3717 whenever the command matches gdb-control-commands-regexp, and
3718 decrement it each time the command is "end". (Bug#11279)
3720 2012-04-27 Martin Rudalics <rudalics@gmx.at>
3722 * window.el (adjust-window-trailing-edge, enlarge-window)
3723 (shrink-window, window-resize):
3724 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
3725 windows (Bug#11276).
3727 2012-04-27 Chong Yidong <cyd@gnu.org>
3729 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
3730 fix "missing prefix" warning. All callers changed.
3732 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
3734 * emacs-lisp/assoc.el: Move to obsolete/.
3736 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3738 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
3740 * term/ns-win.el (ns-define-service):
3741 * progmodes/pascal.el (pascal-goto-defun):
3742 * progmodes/js.el (js--read-tab):
3743 * progmodes/etags.el (tags-lazy-completion-table):
3744 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
3745 * emacs-lisp/ewoc.el (ewoc--wrap):
3746 * emacs-lisp/assoc.el (aput, adelete, amake):
3747 * doc-view.el (doc-view-convert-current-doc):
3748 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
3750 2012-04-26 Chong Yidong <cyd@gnu.org>
3752 * image.el (image-type-from-buffer): Only return supported image
3755 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
3756 value, for symmetry with diff-end-of-hunk.
3757 (diff-split-hunk, diff-find-source-location)
3758 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
3759 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
3760 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
3761 compute the relevant hunk or file properly (Bug#6005).
3762 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
3764 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3773 * vc/vc.el: Replace lexical-let by lexical-binding.
3774 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
3775 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
3776 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
3778 2012-04-26 Chong Yidong <cyd@gnu.org>
3780 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
3781 (diff-mode-shared-map): Bind it to / and [remap undo].
3783 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
3784 (ediff-window-setup-function): Use it as the default, to set up
3785 windows based on whether the current frame is graphical (Bug#2138).
3786 (ediff-choose-window-setup-function-automatically): Make obsolete.
3788 * vc/ediff-init.el: Always define ediff-pixel-width/height.
3790 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
3792 * ffap.el: Remove old code for obsolete package.
3793 (ffap-complete-as-file-p): Remove.
3795 Use completion-table-with-quoting for comint and pcomplete.
3796 * comint.el (comint--unquote&requote-argument)
3797 (comint--unquote-argument, comint--requote-argument): New functions.
3798 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
3799 (comint-quote-filename): Use regexp-opt-charset.
3800 (comint--common-suffix, comint--common-quoted-suffix)
3801 (comint--table-subvert): Remove.
3802 (comint-unquote-function, comint-requote-function): New vars.
3803 (comint--complete-file-name-data): Use them with
3804 completion-table-with-quoting.
3805 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
3806 * pcomplete.el (pcomplete-arg-quote-list)
3807 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
3808 (pcomplete-unquote-argument-function): Default to non-nil.
3809 (pcomplete-unquote-argument): Simplify.
3810 (pcomplete--common-quoted-suffix): Remove.
3811 (pcomplete-requote-argument-function): New var.
3812 (pcomplete--common-suffix): New function.
3813 (pcomplete-completions-at-point): Use completion-table-with-quoting
3814 and completion-table-subvert.
3816 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
3817 (minibuffer--double-dollars): Preserve properties.
3818 (completion--sifn-requote): New function.
3819 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
3821 * minibuffer.el: Add support for completion of quoted/escaped data.
3822 (completion-table-with-quoting, completion-table-subvert): New funs.
3823 (completion--twq-try, completion--twq-all): New functions.
3824 (completion--nth-completion): New function.
3825 (completion-try-completion, completion-all-completions): Use it.
3827 2012-04-25 Leo Liu <sdl.web@gmail.com>
3829 * progmodes/python.el (python-pdbtrack-get-source-buffer):
3830 Use compilation-message if available to find real filename.
3832 2012-04-25 Chong Yidong <cyd@gnu.org>
3834 * vc/diff-mode.el (diff-setup-whitespace): New function.
3835 (diff-mode): Use it.
3837 * vc/diff.el (diff-sentinel):
3838 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
3839 Whitespace mode variables based on diff style (Bug#8612).
3841 2012-04-25 Leo Liu <sdl.web@gmail.com>
3843 * progmodes/python.el (python-send-region): Add suffix .py to the
3846 * files.el (auto-mode-alist): Use javascript-mode instead.
3848 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
3850 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
3852 * net/soap-client.el (soap-resolve-references-for-sequence-type)
3853 (soap-resolve-references-for-array-type): Hack to prevent self
3854 references, see Bug#9.
3855 (soap-parse-envelope): Report the contents of the 'detail' node
3856 when receiving a fault reply.
3857 (soap-parse-envelope): Report the contents of the entire 'detail' node.
3859 * net/soap-inspect.el (soap-sample-value-for-simple-type)
3860 (soap-inspect-simple-type): New function.
3862 * net/soap-client.el (soap-simple-type): New struct.
3863 (soap-default-xsd-types, soap-default-soapenc-types)
3864 (soap-decode-basic-type, soap-encode-basic-type):
3865 support unsignedInt and double basic types.
3866 (soap-resolve-references-for-simple-type)
3867 (soap-parse-simple-type, soap-encode-simple-type): New function.
3868 (soap-parse-schema): Parse xsd:simpleType declarations.
3870 * net/soap-client.el (soap-default-xsd-types)
3871 (soap-default-soapenc-types): Add integer, byte and anyURI types.
3872 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
3873 the local name of "soapenc:Array".
3874 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
3875 decoding integer, byte and anyURI xsd types.
3877 2012-04-25 Chong Yidong <cyd@gnu.org>
3879 * cus-edit.el (custom-buffer-create-internal): Update header text.
3881 2012-04-25 Eli Zaretskii <eliz@gnu.org>
3883 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
3884 settings on 'system-type', not on 'window-system'. On MS-Windows,
3885 set interactive-mode on in GDB.
3887 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3889 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
3890 (ruby-syntax-propertize-regexp): Remove.
3891 (ruby-syntax-propertize-function): Split regexp into chunks.
3892 Match following code directly.
3894 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
3896 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
3897 (ruby-syntax-propertize-regexp): New function.
3898 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
3899 by a special keyword.
3901 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
3902 (ruby-syntax-general-delimiters-goto-beg)
3903 (ruby-syntax-propertize-general-delimiters): New functions.
3904 (ruby-syntax-propertize-function): Use them to handle GDL.
3905 (ruby-font-lock-keywords): Move old handling of GDL...
3906 (ruby-font-lock-syntactic-keywords): .. to here.
3907 (ruby-calculate-indent): Adjust indentation for GDL.
3909 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
3911 * notifications.el (top): Remove unneeded declarations.
3912 (notifications-specification-version): Change to "1.2".
3913 (notifications-interface, notifications-notify-method)
3914 (notifications-close-notification-method): Fix docstring.
3915 (notifications-get-capabilities-method): New defconst.
3916 (notifications-notify): Add :action-items, :resident and
3917 :transient hints. Change "image_data" to "image-data" and
3918 "image_path" to "image-path".
3919 (notifications-get-capabilities): New defun.
3921 2012-04-24 Leo Liu <sdl.web@gmail.com>
3923 * progmodes/python.el: Move hideshow setup to the end.
3925 2012-04-24 Martin Rudalics <rudalics@gmx.at>
3927 * window.el (handle-select-window): Clear echo area since this is
3928 no more done by read_char (Bug#11304).
3930 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3932 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
3933 and `/ M' to filter-derived-mode.
3934 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
3935 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3936 (ibuffer-mark-by-mode): Use default rather than initial-input.
3937 (ibuffer-filter-by-derived-mode): Autoload and require-match.
3939 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
3941 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
3942 (ibuffer-filter-by-derived-mode): New filter.
3943 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
3945 2012-04-23 Andreas Politz <politza@fh-trier.de>
3947 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3949 2012-04-23 Chong Yidong <cyd@gnu.org>
3951 * cus-edit.el (customize-apropos, customize-apropos-options):
3952 Disable matching of non-option variables (Bug#11176).
3953 (customize-option, customize-option-other-window)
3954 (customize-changed-options): Doc fix.
3955 (customize-apropos-options, customize-apropos-faces)
3956 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3958 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
3959 Fix word list splitting (Bug#11132).
3960 (apropos-symbol, apropos-keybinding, apropos-label)
3961 (apropos-property, apropos-function-button)
3962 (apropos-variable-button, apropos-misc-button): New faces.
3963 (apropos-symbol-face, apropos-keybinding-face)
3964 (apropos-label-face, apropos-property-face, apropos-match-face):
3965 Variables removed (Bug#8396).
3966 (apropos-library-button, apropos-format-plist, apropos-print)
3967 (apropos-print-doc, apropos-describe-plist): Callers changed.
3969 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
3971 * net/xesam.el (xesam-mode-map): Use let-bound map in
3972 initialization. (Bug#11292)
3974 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3976 Preserve ispell session localwords when switching back to
3979 * textmodes/ispell.el (ispell-buffer-session-localwords):
3980 New buffer-local variable to hold buffer session localwords.
3981 (ispell-kill-ispell): Add option 'clear to delete session
3983 (ispell-command-loop, ispell-change-dictionary)
3984 (ispell-buffer-local-words): Preserve session localwords when
3987 * textmodes/flyspell.el (flyspell-process-localwords)
3988 (flyspell-do-correct): Preserve session localwords when needed.
3990 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3992 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
3993 using obsolete `translation-table-for-input'.
3994 (ispell-word, ispell-process-line, ispell-complete-word):
3995 Use plain `insert' instead of removed `ispell-insert-word'.
3997 2012-04-22 Chong Yidong <cyd@gnu.org>
3999 * cus-edit.el (custom-variable-menu)
4000 (custom-variable-reset-saved, custom-face-menu)
4001 (custom-face-reset-saved): If there is no saved value, make the
4002 "reset-saved" operation bring back the default (Bug#9509).
4003 (custom-face-state): Properly detect themed faces.
4005 * faces.el (face-spec-set): Stop supporting deprecated form of
4008 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
4010 Move functions from C to Lisp. Make non-blocking method calls
4011 the default. Implement further D-Bus standard interfaces.
4013 * net/dbus.el (dbus-message-internal): Declare function.
4014 Remove unneeded function declarations.
4015 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
4016 (dbus-message-type-method-return, dbus-message-type-error)
4017 (dbus-message-type-signal): Declare variables. Remove local
4019 (dbus-interface-dbus, dbus-interface-peer)
4020 (dbus-interface-introspectable, dbus-interface-properties)
4021 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
4023 (dbus-interface-objectmanager): New defconst.
4024 (dbus-call-method, dbus-call-method-asynchronously)
4025 (dbus-send-signal, dbus-method-return-internal)
4026 (dbus-method-error-internal, dbus-register-service)
4027 (dbus-register-signal, dbus-register-method): New defuns, moved
4029 (dbus-call-method-handler, dbus-setenv)
4030 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
4032 (dbus-call-method-non-blocking): Make it an obsolete function.
4033 (dbus-unregister-object, dbus-unregister-service)
4034 (dbus-handle-event, dbus-register-property)
4035 (dbus-property-handler): Obey the new structure of
4036 `bus-registered-objects'.
4037 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
4038 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4039 Use `dbus-call-method'.
4041 2012-04-22 Chong Yidong <cyd@gnu.org>
4043 * cus-edit.el (custom-commands, custom-reset-menu)
4044 (Custom-reset-standard): Tweak labels.
4045 (custom-reset-button-menu): Change default to t.
4046 (custom-buffer-create-internal): For the custom-reset-button-menu
4047 case, put the revert button first.
4048 (custom-group-subtitle): New face.
4049 (custom-group-value-create): Align docstring to a specific column.
4051 * wid-edit.el (widget-documentation-link-add): Don't handle
4052 indentation in this function.
4053 (widget-documentation-string-indent-to): New function.
4054 (widget-documentation-string-value-create): Use it.
4056 * autorevert.el (auto-revert):
4057 * epg-config.el (epg):
4058 * ibuffer.el (ibuffer):
4061 * eshell/eshell.el (eshell):
4062 * net/ange-ftp.el (ange-ftp):
4063 * progmodes/ebnf2ps.el (postscript):
4064 * progmodes/flymake.el (flymake):
4065 * progmodes/prolog.el (prolog):
4066 * progmodes/verilog-mode.el (verilog-mode):
4067 * progmodes/which-func.el (which-func):
4068 * term/xterm.el (xterm):
4069 * textmodes/picture.el (picture):
4070 * textmodes/tildify.el (tildify):
4071 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
4072 customization buffers.
4074 2012-04-22 Alan Mackenzie <acm@muc.de>
4076 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
4077 Adding a ) can hide the resulting (..) from searches. Fix it.
4078 Bound the backward search to the position of the existing (.
4080 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
4082 * progmodes/verilog-mode.el (verilog-mode): Check whether
4083 which-func-modes is t before adding verilog-mode.
4084 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4086 2012-04-21 Leo Liu <sdl.web@gmail.com>
4088 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
4090 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
4092 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
4093 filling of the last column of a table (Bug#5635).
4094 (woman-find-next-control-line): New arg, specifying an additional
4095 regexp component for the control line.
4096 (woman2-roff-buffer): Use it.
4097 (woman-break-table): New function.
4098 (woman2-TS): Use it.
4100 2012-04-21 Chong Yidong <cyd@gnu.org>
4102 * woman.el (woman-set-buffer-display-table, woman-decode-region)
4103 (woman-horizontal-escapes, woman-negative-vertical-space)
4104 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
4105 (WoMan-warn-ignored): Use ?\s instead of ?\ .
4107 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4109 * minibuffer.el (completion-file-name-table): Complete user names.
4111 2012-04-20 Leo Liu <sdl.web@gmail.com>
4113 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
4116 2012-04-20 Chong Yidong <cyd@gnu.org>
4118 * server.el (server-execute): Respect initial-buffer-choice if it
4119 is a string and there are no files to open (Bug#2825).
4120 (server-create-window-system-frame, server-create-tty-frame):
4121 Don't switch buffers here.
4122 (server-process-filter): Only try to open a window system frame if
4123 compiled with graphical support (Bug#8314).
4125 2012-04-20 Dan Nicolaescu <dann@gnu.org>
4127 * battery.el (battery-echo-area-format): Display remaining time
4128 for sysfs backend too (Bug#11269).
4129 (battery-linux-sysfs): Fix conditional for the charge.
4131 2012-04-20 Chong Yidong <cyd@gnu.org>
4133 * progmodes/gdb-mi.el (gdb): Revert previous change.
4134 (gdb-inferior-io--init-proc): New function.
4135 (gdb-init-1): Use it.
4136 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
4137 responsible for allocating a new pty and hooking it to gdb when
4138 the old pty gets an EIO due to process exit.
4139 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
4140 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
4141 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
4143 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4145 * window.el (window-min-size, window-sizable, window-min-delta)
4146 (window-max-delta, window--resizable, window-resizable)
4147 (window-total-size, window-full-height-p, window-full-width-p)
4148 (window-in-direction, window--resize-mini-window, window-resize)
4149 (window--resize-child-windows-normal)
4150 (window--resize-child-windows, window--resize-siblings)
4151 (window--resize-this-window, adjust-window-trailing-edge)
4152 (enlarge-window, shrink-window): Doc fixes.
4154 2012-04-20 Chong Yidong <cyd@gnu.org>
4156 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
4157 New function to call delete-process on the gdb-inferior buffer's pty.
4158 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
4159 pty process (Bug#11273).
4160 (gdb-update): New arg to suppress talking to the gdb process.
4161 (gdb-done-or-error): Use it.
4162 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
4163 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
4164 sentinel not being called.
4166 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
4168 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
4170 2012-04-20 Glenn Morris <rgm@gnu.org>
4172 * net/network-stream.el (open-network-stream): Doc fix.
4174 2012-04-20 Chong Yidong <cyd@gnu.org>
4176 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
4178 2012-04-20 Alan Mackenzie <acm@muc.de>
4180 Ensure searching for keywords is case sensitive.
4182 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
4183 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
4184 (c-defun-name, c-mark-function, c-cpp-define-name)
4185 (c-comment-indent, c-scan-conditionals, c-indent-defun)
4186 (c-context-line-break): Bind case-fold-search to nil.
4188 * progmodes/cc-mode.el (c-font-lock-fontify-region):
4189 Bind case-fold-search to nil.
4191 2012-04-20 Chong Yidong <cyd@gnu.org>
4193 * mail/sendmail.el (mail-bury): Call return action with the right
4194 Rmail buffer (Bug#11242).
4196 * server.el (server-process-filter): Handle corner case where both
4197 tty and nowait options are present (Bug#11102).
4199 2012-04-20 Eli Zaretskii <eliz@gnu.org>
4201 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
4202 (top level): Put into the executable the ident-style '$Id:' tag on
4205 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4207 * electric.el (electric-indent-post-self-insert-function): Check that
4208 electric-indent-mode is enabled in current buffer.
4210 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4212 * imenu.el (imenu-progress-message): Restore; it is "used" in
4213 erc/erc-imenu.el and net/snmp-mode.el.
4215 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
4217 * avoid.el (mouse-avoidance-mode): Mark unused arg.
4218 (mouse-avoidance-nudge-mouse): Remove unused binding.
4220 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
4222 * descr-text.el (describe-char):
4223 * progmodes/python.el (python-describe-symbol):
4224 Don't call `toggle-read-only', set `buffer-read-only'.
4226 * imenu.el (imenu-default-goto-function): Mark unused args.
4227 (imenu-progress-message): Remove obsolete macro; all callers changed.
4229 * subr.el (keymap-canonicalize): Remove unused binding.
4230 (read-passwd): Mark unused arg.
4232 * tutorial.el (tutorial--display-changes): Remove unused binding.
4233 (tutorial--save-tutorial-to): Remove unused variable.
4235 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
4236 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
4237 (package-generate-autoloads, package-menu--generate)
4238 (package-menu--find-upgrades): Remove unused bindings.
4240 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
4241 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
4242 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
4243 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
4244 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
4245 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
4246 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
4247 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
4248 (cua-delete-char-rectangle): Mark unused args.
4249 (cua-align-rectangle): Remove unused binding.
4251 * mail/rmail.el (compilation--message->loc)
4252 (epa--find-coding-system-for-mime-charset): Declare.
4254 * net/dbus.el (dbus-register-service): Declare.
4255 (dbus-name-owner-changed-handler): Remove unused binding.
4257 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
4258 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
4259 (nxml-scan-backward-within): Mark unused arg.
4260 (nxml-dynamic-markup-word): Remove unused binding.
4262 * mouse.el (mouse-menu-major-mode-map):
4263 * emacs-lisp/authors.el (authors-scan-change-log)
4264 (authors-add-to-author-list):
4265 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
4266 * emacs-lisp/smie.el (smie-auto-fill):
4267 * mail/sendmail.el (mail-bury):
4268 * mail/unrmail.el (unrmail):
4269 * net/tls.el (open-tls-stream):
4270 * textmodes/picture.el (picture-mouse-set-point):
4271 Remove unused bindings.
4273 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
4275 * net/tramp.el (tramp-action-password): Let-bind
4276 `enable-recursive-minibuffers' to t.
4278 2012-04-18 Sam Steingold <sds@gnu.org>
4280 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
4281 instead of 'string to accommodate values like [f11].
4282 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
4283 * progmodes/gdb-mi.el: Likewise.
4285 2012-04-18 Leo Liu <sdl.web@gmail.com>
4287 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
4289 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
4292 2012-04-18 Chong Yidong <cyd@gnu.org>
4294 * simple.el (line-move): Use forward-line if in batch mode
4297 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
4299 * files.el (after-find-file): Do not try to add a final newline if
4300 the buffer is read-only (Bug#11156).
4302 2012-04-17 Richard Stallman <rms@gnu.org>
4304 * mail/rmail.el (rmail-start-mail):
4305 Pass (rmail-mail-return...) for the return-action.
4306 Pass (rmail-yank-current-message...) for the yank-action.
4307 (rmail-yank-current-message): New function.
4308 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
4309 (rmail-reply): Likewise.
4310 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
4312 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
4313 buffer, not the last. Reject temp buffers. Use the rmail-mode
4316 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
4318 * server.el (server-ensure-safe-dir): Simplify.
4320 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
4322 * emacs-lisp/smie.el: Provide smarter auto-filling.
4323 (smie-auto-fill): New function.
4324 (smie-setup): Use it.
4326 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
4328 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
4330 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
4331 (comment-indent): Use it.
4333 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4335 * ses.el: The overall change is to add cell renaming, that is
4336 setting fancy names for cell symbols other than name matching
4337 "\\`[A-Z]+[0-9]+\\'" regexp .
4338 (ses-localvars): Add ses--renamed-cell-symb-list.
4339 (ses-create-cell-variable): New defun.
4340 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4341 (ses-relocate-formula): Relocate formulas only for cells the
4342 symbols of which are not renamed, i.e. symbols whose names do not
4343 match regexp "\\`[A-Z]+[0-9]+\\'".
4344 (ses-relocate-all): Relocate values only for cells the symbols of
4345 which are not renamed.
4346 (ses-load): Create cells variables as the (ses-cell ...) are read,
4347 in order to check row col consistency with cell symbol name only
4348 for cells that are not renamed.
4349 (ses-replace-name-in-formula): New defun.
4350 (ses-rename-cell): New defun.
4352 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
4354 * progmodes/perl-mode.el (perl-indent-parens-as-block):
4355 New option (bug#11118).
4356 (perl-calculate-indent): Respect it.
4358 2012-04-17 Glenn Morris <rgm@gnu.org>
4360 * dired-aux.el (dired-mark-read-string): Doc fix.
4362 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
4364 * dired-aux.el (dired-mark-read-string): Offer optional completion.
4365 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
4367 2012-04-17 Glenn Morris <rgm@gnu.org>
4369 * mouse.el (mouse-drag-track):
4370 * speedbar.el (speedbar-frame-mode):
4371 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
4373 2012-04-16 Leo Liu <sdl.web@gmail.com>
4375 * progmodes/python.el: Trivial cleanup.
4377 2012-04-16 Glenn Morris <rgm@gnu.org>
4379 * vc/vc.el (vc-string-prefix-p):
4380 * vc/pcvs-util.el (cvs-string-prefix-p):
4381 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
4382 * mpc.el (mpc-string-prefix-p):
4383 Make all of these into obsolete aliases for string-prefix-p.
4385 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
4387 * textmodes/two-column.el: Move custom options to the start.
4388 (frame-width): Remove compat definition.
4389 (2C-associate-buffer, 2C-dissociate):
4390 Use with-current-buffer rather than save-excursion.
4391 (2C-dissociate): Force a mode-line update.
4392 (2C-autoscroll): Use ignore-errors.
4394 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
4397 * emacs-lisp/cl-extra.el (*random-state*):
4398 Remove unnecessary declaration.
4400 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
4402 * play/cookie1.el (cookie-snarf):
4403 Give an explicit error if input file cannot be read.
4405 * play/yow.el (yow-file): Use expand-file-name rather than concat.
4407 * progmodes/perl-mode.el (c-macro-expand):
4408 Remove unnecessary autoload (it is in loaddefs.el).
4410 * textmodes/picture.el (picture-desired-column)
4411 (picture-update-desired-column): Convert comments to doc-strings.
4412 (picture-substitute): Remove function.
4413 (picture-mode-map): Initialize in the defvar.
4415 * woman.el: Remove eval-after-load for tar-mode.
4416 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
4417 (woman-tar-extract-file): Autoload it.
4419 * frame.el (automatic-hscrolling): Make this alias obsolete.
4421 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4423 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
4424 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
4425 (ispell-dictionary-base-alist): Revert to original XEmacs
4426 friendly version for default. [:alpha:] will be added in
4427 `ispell-set-spellchecker-params' if needed.
4429 2012-04-16 Chong Yidong <cyd@gnu.org>
4431 * image.el (imagemagick--file-regexp): New variable.
4432 (imagemagick-register-types): Use it.
4433 (imagemagick-types-inhibit): Add :set function. Allow new value
4434 of t to inhibit all types.
4436 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
4437 so we can preload it.
4439 * loadup.el (fboundp): Preload regexp-opt, needed by
4440 imagemagick-register-types.
4442 2012-04-15 Chong Yidong <cyd@gnu.org>
4444 * frame.el (scrolling): Remove nearly unused customization group.
4446 * scroll-all.el (scroll-all-mode): Move to windows group.
4448 2012-04-15 Chong Yidong <cyd@gnu.org>
4450 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
4452 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4454 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4455 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
4457 2012-04-15 Glenn Morris <rgm@gnu.org>
4459 * simple.el (process-file-side-effects): Doc fix.
4461 2012-04-15 Glenn Morris <rgm@gnu.org>
4463 * international/mule-cmds.el (set-language-environment): Doc fix.
4465 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
4467 * server.el (server-auth-key, server-generate-key): Doc fixes.
4468 (server-get-auth-key): Doc fix. Use `string-match-p'.
4469 (server-start): Reflow docstring.
4471 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
4473 * server.el (server-generate-key): `called-interactively-p'
4474 requires a parameter.
4476 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
4478 * server.el (server-auth-key): New variable.
4479 (server-generate-key, server-get-auth-key): New function.
4480 (server-start): Use the new variable and functions to allow
4481 setting a permanent server key (bug#9423).
4483 2012-04-14 Leo Liu <sdl.web@gmail.com>
4485 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
4487 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
4490 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
4491 Emacs uses American spelling.
4493 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
4495 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
4496 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
4497 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
4498 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
4500 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4502 * progmodes/which-func.el (which-func-modes): Change default.
4504 2012-04-14 Kim F. Storm <storm@cua.dk>
4506 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
4507 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
4509 2012-04-14 Chong Yidong <cyd@gnu.org>
4511 * custom.el (custom-theme-set-variables): Doc fix.
4513 2012-04-14 Glenn Morris <rgm@gnu.org>
4515 * international/mule.el (set-auto-coding-for-load): Doc fix.
4517 2012-04-14 Alan Mackenzie <acm@muc.de>
4519 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
4520 imenu work again for Objective C Mode. Correct the *-index values,
4521 these having been disturbed by a previous change in 2011-08.
4523 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
4524 Correct two search limits.
4526 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4528 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
4530 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
4532 * international/characters.el: Fix sorting.
4534 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4536 * international/characters.el: Add more missing Latin case pairs.
4538 2012-04-14 Glenn Morris <rgm@gnu.org>
4540 * files.el (dir-locals-set-class-variables): Doc fix.
4542 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4544 * international/characters.el: Add set-case-syntax-pair call for
4545 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
4546 counterpart. (Bug#11209)
4548 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
4550 2012-04-14 Glenn Morris <rgm@gnu.org>
4552 * calendar/holidays.el (calendar-check-holidays): Doc fix.
4554 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4556 * textmodes/ispell.el (ispell-dictionary-base-alist):
4557 Add data for Hebrew.
4559 2012-04-14 Chong Yidong <cyd@gnu.org>
4561 * net/rcirc.el (rcirc-cmd-quit):
4562 Revert 2012-03-18 change (Bug#11192).
4564 2012-04-14 Glenn Morris <rgm@gnu.org>
4566 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
4568 2012-04-14 Eli Zaretskii <eliz@gnu.org>
4570 * minibuffer.el (completion-in-region-mode-map):
4571 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
4573 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
4575 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
4577 2012-04-13 Masatake YAMATO <yamato@redhat.com>
4579 * minibuffer.el (minibuffer-local-filename-syntax): New variable
4580 to allow `C-M-f' and `C-M-b' to move to the nearest path
4581 separator (bug#9511).
4583 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
4585 * avoid.el: Require cl when compiling. And also move the
4586 `provide' to the end.
4588 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4590 * avoid.el (mouse-avoidance-banish-position): New variable.
4591 (mouse-avoidance-banish-destination): Use it (bug#10165).
4593 2012-04-13 Leo Liu <sdl.web@gmail.com>
4595 * progmodes/which-func.el (which-func-modes): Add objc-mode.
4597 2012-04-13 Ken Brown <kbrown@cornell.edu>
4599 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
4600 this is no longer needed now that cygstart understands file:// URLs.
4601 (browse-url-filename-alist): For the same reason, don't modify
4602 file:// URLs on Cygwin.
4604 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4606 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
4607 the region on shift if the binding is already shifted (bug#11221).
4609 2012-04-12 Glenn Morris <rgm@gnu.org>
4611 * mail/mailpost.el: Move to obsolete/.
4613 2012-04-12 Drew Adams <drew.adams@oracle.com>
4615 * imenu.el (imenu--generic-function): Ignore invisible definitions
4618 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
4620 * hexl.el (hexl-bits): New variable.
4621 (hexl-options): Mention the variable in the doc string.
4622 (hexl-rulerise, hexl-line-displen): New functions.
4623 (hexl-mode): Mention the new variable.
4624 (hexl-mode, hexl-current-address, hexl-current-address):
4626 (hexl-ascii-start-column): New function.
4627 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
4628 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
4630 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4632 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
4633 '("-i" ENCODING), in 2 separate command-line arguments, to specify
4634 the encoding, as expected by hunspell.
4636 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
4638 * battery.el (battery--linux-sysfs-regexp): New const.
4639 (battery-status-function): Use it. Remove yeeloong special case.
4640 (battery-yeeloong-sysfs): Remove.
4641 (battery-echo-area-format): Remove yeeloong special case.
4643 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4645 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
4646 Reported by Noah Friedman.
4648 * subr.el (read-passwd): Use read-string.
4650 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
4652 * vcursor.el (vcursor-move): Increase the priority of the overlay
4655 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
4657 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
4658 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
4660 2012-04-11 William Stevenson <yhvh2000@gmail.com>
4662 * textmodes/artist.el (artist-mode): Convert artist-mode to use
4663 define-minor-mode (bug#10760).
4665 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
4667 * progmodes/grep.el (rgrep): Tweak the find command line so
4668 that directories matching `grep-find-ignored-files' won't be
4671 2012-04-11 Chong Yidong <cyd@gnu.org>
4673 * startup.el (command-line): Remove support for long-obsolete
4674 variable font-lock-face-attributes.
4676 2012-04-11 Glenn Morris <rgm@gnu.org>
4678 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
4680 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4682 * window.el (window--state-get-1): Obey window-point-insertion-type.
4684 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
4686 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
4687 to previous function when point is on the first character of a
4688 function. Take care of that in `narrow-to-defun' (bug#6157).
4690 2012-04-11 Glenn Morris <rgm@gnu.org>
4692 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
4693 not just file-errors.
4695 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
4696 (vc-bzr-sha1): Use internal sha1.
4698 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
4700 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
4702 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
4704 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
4705 that start in the middle of the line (bug#10496).
4707 2012-04-10 Dan Nicolaescu <dann@gnu.org>
4709 * battery.el (battery-linux-proc-acpi): Only one battery is
4710 discharged at a time, but that seems to confuse battery.el when
4711 computing `rate-type' for the battery not being discharged
4714 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
4716 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
4718 * international/quail.el: Use dolist and simplify.
4719 (quail-define-package, quail-update-keyboard-layout)
4720 (quail-define-rules): Use dolist.
4721 (quail-insert-kbd-layout, quail-get-translation): CSE.
4723 * tmm.el: Use dolist, remove left over hook.
4724 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
4726 (calendar-load-hook): Don't mess with it.
4728 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
4729 Use derived-mode-p. Run the diff asynchronously.
4731 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4733 * obsolete/mouse-sel.el: Add an Obsolete-since header.
4735 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
4737 * misc.el: Display absolute path of loaded DLLs (bug#10424).
4738 (list-dynamic-libraries--loaded): New function.
4739 (list-dynamic-libraries--refresh): Use it.
4741 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
4743 * progmodes/python.el (python-fill-paragraph):
4744 Make python-fill-region in a multiline string work when font-lock is
4745 disabled (bug#7018).
4747 2012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
4749 * language/european.el (cp775): Add oem/legacy (en)coding on
4750 DOS/MS Windows for the Baltic languages. There are still plenty
4751 of texts written in this encoding/codepage (bug#6519).
4753 2012-04-10 Glenn Morris <rgm@gnu.org>
4755 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
4756 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
4758 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
4760 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
4761 next-line "n" and previous-line "p" in order to make recentf more
4762 consistent with ibuffer, dired or org-mode (bug#9387).
4764 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4766 * image.el (put-image): Return the overlay created instead of the
4767 optional input string (bug#7834). Note that this may break code
4768 that is (for some reason or other) depending on `put-image'
4769 returning the string.
4771 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
4773 * simple.el (zap-to-char): Allow zapping using input methods
4776 * textmodes/fill.el (fill-region): Leave point and mark where they
4777 were before filling (bug#5399).
4779 2012-04-09 Glenn Morris <rgm@gnu.org>
4781 * version.el (emacs-bzr-get-version):
4782 Handle lightweight checkouts of local branches.
4784 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
4786 * international/characters.el: Recover lost case pairs. (Bug#11209)
4788 2012-04-09 Chong Yidong <cyd@gnu.org>
4790 * custom.el (custom-variable-p): Return nil for non-symbol
4791 arguments instead of signaling an error.
4792 (user-variable-p): Obsolete alias for custom-variable-p.
4794 * apropos.el (apropos-variable):
4795 * files-x.el (read-file-local-variable):
4796 * simple.el (set-variable):
4797 * woman.el (woman-mini-help):
4798 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
4800 2012-04-09 Glenn Morris <rgm@gnu.org>
4802 * startup.el (normal-top-level): Don't look for leim-list.el
4803 in places where it will not be found. (Bug#910)
4805 * international/mule-cmds.el (set-default-coding-systems):
4806 * files.el (normal-mode):
4807 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
4808 This function was removed with ucs-tables.el in 2008.
4810 2012-04-08 Eli Zaretskii <eliz@gnu.org>
4812 * textmodes/ispell.el (ispell-check-version): For hunspell, set
4813 ispell-encoding8-command to "-i", without a trailing space.
4814 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
4815 separate command-line arguments, to specify the encoding, since
4816 that's how hunspell expects it.
4818 2012-04-08 Glenn Morris <rgm@gnu.org>
4820 * loadup.el: Load bindings before cus-start.
4821 This reduces somewhat the number of "rogue" settings in emacs -Q.
4823 2012-04-07 Glenn Morris <rgm@gnu.org>
4825 * version.el (emacs-bzr-get-version): New function.
4826 (emacs-bzr-version): New variable.
4827 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
4828 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
4830 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4832 * international/uni-bidi.el, international/uni-category.el:
4833 * international/uni-combining.el, international/uni-decimal.el:
4834 * international/uni-decomposition.el, international/uni-digit.el:
4835 * international/uni-lowercase.el, international/uni-mirrored.el:
4836 * international/uni-name.el, international/uni-numeric.el:
4837 * international/uni-titlecase.el, international/uni-uppercase.el:
4838 Update for Unicode 6.1.
4840 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4842 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
4844 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4846 * window.el (shrink-window): Mention the `window-min-height'
4847 variable in the doc string.
4849 2012-04-05 Bastien Guerry <bzg@altern.org>
4851 * color.el (color-lighten-name): Fix typo.
4853 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4855 * server.el (server--on-display-p): New function.
4856 (server--on-display-p): Use it.
4858 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
4860 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
4863 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4865 * comint.el (comint--common-quoted-suffix): Check string boundary
4866 before comparing (bug#11158).
4867 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
4869 2012-04-04 Chong Yidong <cyd@gnu.org>
4871 * minibuffer.el (completion-extra-properties): Doc fix.
4873 * subr.el (delayed-warnings-hook): Doc fix.
4875 2012-04-04 Daiki Ueno <ueno@unixuser.org>
4877 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
4878 selection (Bug#11159).
4879 (epa-insert-keys): Inform that the default public key will be
4880 exported if no key is selected.
4882 2012-04-04 Richard Stallman <rms@gnu.org>
4884 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
4886 2012-04-03 Chong Yidong <cyd@gnu.org>
4888 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
4889 mail-insert-file, not its obsolete alias mail-attach-file.
4891 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
4893 * notifications.el (notifications-notify): Fix docstring.
4895 2012-04-02 Glenn Morris <rgm@gnu.org>
4897 * emacs-lisp/authors.el (authors-aliases): Another addition.
4899 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
4901 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
4902 `tramp-compat-call-process' instead of `tramp-local-call-process'.
4903 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
4905 2012-04-01 Chong Yidong <cyd@gnu.org>
4907 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
4908 Handle root directory properly.
4909 (copy-directory): Caller changed.
4911 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4912 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
4914 2012-03-31 Glenn Morris <rgm@gnu.org>
4916 * term/xterm.el (xterm-extra-capabilities): Doc fix.
4918 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
4920 * calendar/calendar.el (calendar-window-list)
4921 (calendar-hide-window): Restore. (Bug#11140)
4922 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
4924 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
4926 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4928 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4929 Check if file is a symlink (Bug#10489).
4931 * files.el (copy-directory): Likewise.
4933 2012-03-30 Chong Yidong <cyd@gnu.org>
4935 * image.el (imagemagick-types-inhibit)
4936 (imagemagick-register-types): Doc fix.
4938 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4940 * textmodes/ispell.el (ispell-get-extended-character-mode):
4941 Disable extended-char-mode for hunspell. hunspell does not support it
4942 and treats ~word as ordinary words in pipe mode.
4944 2012-03-30 Glenn Morris <rgm@gnu.org>
4946 * tutorial.el (help-with-tutorial): Ensure local variables don't
4947 happen to make the buffer read-only. (Bug#11127)
4949 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4951 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4952 (perl-calculate-indent): Return `noindent' in strings.
4954 2012-03-28 Sam Steingold <sds@gnu.org>
4956 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4957 instead of the broken adhockery which does not prevent calendar
4958 buffers from being displayed at random after exit.
4959 (calendar-window-list, calendar-hide-window): Remove the broken
4962 2012-03-28 Glenn Morris <rgm@gnu.org>
4964 * replace.el (query-replace-map): Doc fix.
4966 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4968 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4969 contents. (Bug#11109)
4971 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4973 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4975 (avl-tree--check, avl-tree--check-node): New funs.
4977 2012-03-27 Martin Rudalics <rudalics@gmx.at>
4979 * window.el (switch-to-visible-buffer): New option.
4980 (switch-to-prev-buffer, switch-to-next-buffer):
4981 Observe switch-to-visible-buffer. Make sure that checking for a window
4982 showing a buffer already is done on the same frame.
4984 2012-03-27 Glenn Morris <rgm@gnu.org>
4986 * startup.el (mail-host-address): Doc fix.
4988 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4990 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4993 2012-03-26 Ami Fischman <ami@fischman.org>
4995 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4997 2012-03-26 Glenn Morris <rgm@gnu.org>
4999 * files.el (save-buffers-kill-emacs): Doc fix.
5001 * startup.el (normal-top-level, command-line, command-line-1):
5002 Give them doc strings.
5004 2012-03-25 Eli Zaretskii <eliz@gnu.org>
5006 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
5007 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
5009 2012-03-25 Chong Yidong <cyd@gnu.org>
5011 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
5012 theme if it was previously enabled before (Bug#11031).
5014 * cus-theme.el (custom-theme-write-faces): Retrieve current face
5015 spec with custom-face-get-current-spec if its :shown-value is not
5016 determined yet (Bug#9337).
5017 (customize-create-theme, custom-theme-revert): Doc fixes.
5019 * button.el (button-at): Minor addition to docstring.
5021 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
5023 * vc/vc.el (vc-merge): Fix a prompt.
5025 2012-03-24 Chong Yidong <cyd@gnu.org>
5027 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
5030 * button.el (button-at): Minor addition to docstring.
5032 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
5034 * newcomment.el (comment-choose-indent): No space after BOL.
5036 2012-03-22 Sam Steingold <sds@gnu.org>
5038 * window.el (switch-to-prev-buffer): Revert last patch because the
5039 bug turned out to be an advertised feature (Elisp manual 28.14).
5041 2012-03-22 Glenn Morris <rgm@gnu.org>
5043 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
5044 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
5046 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5048 * net/network-stream.el (network-stream-open-starttls): Make error
5049 message under Windows be less misleading.
5051 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
5053 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
5054 understands (bug#9942).
5056 2012-03-22 Chong Yidong <cyd@gnu.org>
5058 * simple.el (end-of-visible-line): Handle return value of
5059 next-single-property-change properly (Bug#9371).
5061 2012-03-22 Kenichi Handa <handa@m17n.org>
5063 * international/quail.el (quail-insert-kbd-layout): Fix previous
5064 change. To avoid unwanted bidi reordering, use
5065 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
5067 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
5069 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
5070 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
5071 (ruby-beginning-of-indent): Be more careful with the difference
5072 between word-boundary and symbol boundary.
5073 (ruby-mode-syntax-table): Make : a symbol constituent.
5075 2012-03-21 Andreas Politz <politza@fh-trier.de>
5077 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
5079 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5081 * progmodes/etags.el (tags-completion-at-point-function):
5084 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
5086 2012-03-21 Sam Steingold <sds@gnu.org>
5088 * progmodes/etags.el (tags-completion-at-point-function):
5089 Avoid the error when point is inside the pattern.
5091 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
5093 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
5096 2012-03-21 Drew Adams <drew.adams@oracle.com>
5098 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
5100 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
5102 * ido.el (ido-set-current-directory, ido-read-internal)
5103 (ido-choose-completion-string, ido-completion-help): Handle nil
5104 value of ido-completion-buffer (Bug#11008).
5106 2012-03-21 Sam Steingold <sds@gnu.org>
5108 * window.el (switch-to-prev-buffer): Do not switch to a visible
5109 window previous buffer, just like with the frame previous buffers.
5111 2012-03-21 Chong Yidong <cyd@gnu.org>
5113 * faces.el (make-face, make-empty-face, copy-face):
5114 * face-remap.el (face-remap-add-relative, face-remap-set-base):
5117 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5119 * wid-edit.el (widget-complete-field): Remove (bug#11051).
5120 (widget-complete): Remove broken use of it.
5122 2012-03-20 Chong Yidong <cyd@gnu.org>
5124 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
5125 Use string-width and truncate-string-width to handle arbitrary
5128 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
5130 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
5131 to draw rectangles, not squares. (Regression introduced by revno
5132 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
5134 2012-03-18 Chong Yidong <cyd@gnu.org>
5136 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
5137 it is not yet defined (for temacs).
5139 2012-03-18 Leo Liu <sdl.web@gmail.com>
5141 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
5143 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5145 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
5146 (ispell-choices-win-default-height, ispell-silently-savep)
5147 (ispell-dictionary-alist, ispell-encoding8-command)
5148 (ispell-check-version, ispell-aspell-find-dictionary)
5149 (ispell-valid-dictionary-list, ispell-words-keyword)
5150 (ispell-get-word, ispell-internal-change-dictionary)
5151 (ispell-region, ispell-skip-region-list)
5152 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
5153 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
5154 (ispell-message-text-end, ispell-message)
5155 (ispell-buffer-local-parsing): Doc fix.
5157 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
5159 * htmlfontify.el: Add support for code block fontification for ODT
5161 (hfy-optimisations): Define new option
5163 (hfy-fontify-buffer): Honor above setting.
5164 (hfy-begin-span, hfy-end-span): New routines factored out form
5165 `hfy-fontify-buffer'.
5166 (hfy-begin-span-handler, hfy-end-span-handler): New variables
5167 that permit insertion of custom tags.
5168 (hfy-fontify-buffer): Use above handlers.
5169 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
5170 (hfy-face-to-css): Re-defined to be a variable.
5171 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
5172 over multiple runs. This is made possible by having the caller let
5173 bind a special variable `hfy-user-sheet-assoc'.
5174 (htmlfontify-string): New defun.
5175 (hfy-compile-face-map): Make sure that the last char in the
5176 buffer is correctly fontified.
5177 (hfy-face-resolve-face): Whitespace only change.
5179 2012-03-17 Eli Zaretskii <eliz@gnu.org>
5181 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
5184 2012-03-16 Leo Liu <sdl.web@gmail.com>
5186 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
5188 2012-03-16 Alan Mackenzie <acm@muc.de>
5190 Further optimise the handling of large macros.
5192 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
5193 limit to a call of `c-literal-limits'.
5194 (c-determine-+ve-limit): New function.
5195 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
5196 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
5197 In CASE 5B, restrict a search limit to 500.
5198 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
5200 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
5201 Restrict macro bounds to +-500 from after-change's BEG END.
5203 2012-03-16 Leo Liu <sdl.web@gmail.com>
5205 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
5207 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
5209 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
5210 `special-mode' setting of `buffer-read-only'. (Bug#11010)
5212 2012-03-16 Glenn Morris <rgm@gnu.org>
5214 * view.el (view-buffer, view-buffer-other-window)
5215 (view-buffer-other-frame): Doc fixes re special mode-class.
5217 * subr.el (eval-after-load): If named feature is provided not from
5218 a file, run after-load forms. (Bug#10946)
5220 * calendar/calendar.el (calendar-insert-at-column):
5221 Handle non-unit-width characters a bit better. (Bug#10978)
5223 2012-03-15 Chong Yidong <cyd@gnu.org>
5225 * emacs-lisp/ring.el (ring-extend): New function.
5226 (ring-insert+extend): Extend the ring correctly (Bug#11019).
5228 * comint.el (comint-read-input-ring)
5229 (comint-add-to-input-history): Grow comint-input-ring lazily.
5231 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5233 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
5234 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
5236 * imenu.el: Fix multiple inheritance breakage (bug#9199).
5237 (imenu-add-to-menubar): Don't add a redundant index.
5238 (imenu-update-menubar): Handle a dynamically composed keymap.
5240 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
5242 * mail/sendmail.el (mail-encode-header):
5243 Bind rfc2047-encode-encoded-words to nil.
5245 2012-03-13 Glenn Morris <rgm@gnu.org>
5247 * calendar/calendar.el (calendar-string-spread):
5248 Handle non-unit-width characters a bit better. (Bug#10978)
5250 2012-03-13 Leo Liu <sdl.web@gmail.com>
5252 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
5253 directory and file as argument (Bug#10822).
5255 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5257 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
5258 For dynamically generated code, follow $PC.
5259 (gdb-disassembly-handler-custom): Handle no function name case.
5261 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
5263 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
5264 * emulation/ws-mode.el (ws-query-replace):
5265 * sort.el (sort-regexp-fields):
5266 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
5268 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5270 * dabbrev.el: Fix cycle completion order (bug#10963).
5271 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
5272 (dabbrev-completion): Don't use an obarray; provide
5273 a cycle-sort-function.
5275 2012-03-12 Leo Liu <sdl.web@gmail.com>
5277 * simple.el (kill-new): Use equal-including-properties for comparison.
5278 (kill-do-not-save-duplicates): Doc fix.
5280 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5282 * dabbrev.el: Fix cycle completion (bug#10963).
5283 Use lexical binding and wrap to 80 columns.
5284 (dabbrev-completion): Delay computing the list of completions.
5286 2012-03-12 Kenichi Handa <handa@m17n.org>
5288 * international/quail.el (quail-insert-kbd-layout): Surround each
5289 row by LRO and PDF instead of inserting many LRMs. Pad the left
5290 and right of each non-spacing marks. Insert invisible space
5291 between lower and upper characters to prevent composition.
5293 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5295 * minibuffer.el (minibuffer-complete): Don't get confused when the
5296 function is run twice via different commands (bug#10958).
5297 (complete-with-action): Fix docstring.
5299 2012-03-12 Chong Yidong <cyd@gnu.org>
5301 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
5302 (nxml-completion-at-point-function): New function.
5303 (nxml-mode): Use it.
5304 (nxml-bind-meta-tab-to-complete-flag): Default to t.
5306 * emacs-lisp/package.el (package-unpack, package-unpack-single):
5307 Load generated autoloads file before byte compiling (Bug#10970).
5308 (package--make-autoloads-and-compile): New helper fun.
5310 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
5312 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
5314 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
5316 * autorevert.el (auto-revert-handler): Ensure, that
5317 file-readable-p is applied only for local files or in
5318 auto-revert-tail-mode.
5320 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
5322 * server.el (server-eval-at): Handle non-tcp connections.
5323 Decode result string.
5325 * server.el (server-msg-size): New constant.
5326 (server-reply-print): New function.
5327 (server-eval-and-print): Use it.
5328 (server-eval-at): Use server-quote-arg and server-unquote-arg.
5331 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
5333 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
5336 2012-03-11 Chong Yidong <cyd@gnu.org>
5338 * simple.el (goto-line): Doc fix (Bug#9938).
5340 * subr.el (save-window-excursion): Doc fix (Bug#9979).
5342 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
5343 when finished (Bug#10963).
5345 2012-03-11 Martin Rudalics <rudalics@gmx.at>
5347 * window.el (split-window-below): Fix bug in case where
5348 split-window-keep-point is nil (Bug#10971).
5350 2012-03-11 Juri Linkov <juri@jurta.org>
5352 * replace.el (replace-highlight): Set isearch-word to nil
5353 unconditionally. (Bug#10887)
5355 2012-03-10 Eli Zaretskii <eliz@gnu.org>
5357 * net/mairix.el (mairix-replace-invalid-chars): Rename from
5358 mairix-replace-illegal-chars; all callers changed. Don't remove
5359 ^, ~, and = characters: they are meaningful in mairix search specs.
5360 (mairix-widget-create-query): Add usage information about mairix
5361 search forms: negating words, searching for substrings, etc.
5363 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
5365 * international/fontset.el (font-encoding-alist): Add an entry for
5368 2012-03-10 Richard Stallman <rms@gnu.org>
5370 * mail/sendmail.el (mail-encode-header):
5371 Set rfc2047-encode-encoded-words.
5373 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
5375 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
5376 view buffer means not swapped.
5377 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
5378 (rmail-write-region-annotate): Error if real text has disappeared.
5380 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
5382 2012-03-10 Chong Yidong <cyd@gnu.org>
5384 * emulation/cua-rect.el (cua--init-rectangles):
5385 * emulation/cua-base.el (cua--init-keymaps):
5386 Add delete-forward-char to remappings (Bug#9666).
5388 2012-03-10 Martin Rudalics <rudalics@gmx.at>
5390 * speedbar.el (speedbar-unhighlight-one-tag-line):
5391 Avoid unhighlighting due to frame switching (Bug#10275).
5393 2012-03-10 Chong Yidong <cyd@gnu.org>
5395 * minibuffer.el (completion-in-region, completion-help-at-point):
5396 Give the completion field overlay a high priority (Bug#6830).
5398 * dired.el (dired-goto-file): Recognize absolute file name
5399 listings (Bug#7126).
5400 (dired-goto-file-1): New helper function.
5401 (dired-toggle-read-only): Inhibit warnings.
5403 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
5405 * net/dbus.el (dbus-property-handler): Return empty array if
5406 there are no properties.
5408 2012-03-09 Leo Liu <sdl.web@gmail.com>
5410 * savehist.el (savehist-printable): Stricter check for string
5413 2012-03-09 Eli Zaretskii <eliz@gnu.org>
5415 * mail/smtpmail.el (smtpmail-send-it):
5416 Bind coding-system-for-write to *-unix, so that FCC files are kept in
5419 2012-03-09 Glenn Morris <rgm@gnu.org>
5421 * files.el (dir-locals-find-file):
5422 Don't check result is regular, readable.
5423 (dir-locals-read-from-file): Demote errors.
5425 2012-03-08 Eli Zaretskii <eliz@gnu.org>
5427 * international/quail.el (quail-insert-kbd-layout):
5428 Insert invisible LRM characters before each character in a keyboard
5429 layout cell, to prevent their reordering by bidi display engine.
5430 For details, see the discussion in
5431 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
5433 2012-03-08 Alan Mackenzie <acm@muc.de>
5435 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
5436 the starting position; make it extend the marked region when
5437 invoked repeatedly - all under appropriate circumstances.
5438 Fixes bugs #5525, #10906.
5440 2012-03-08 Glenn Morris <rgm@gnu.org>
5442 * files.el (locate-dominating-file, dir-locals-find-file):
5443 Undo 2012-03-06 change.
5445 2012-03-07 Eli Zaretskii <eliz@gnu.org>
5447 * international/quail.el (quail-help):
5448 Force bidi-paragraph-direction be left-to-right. See discussion in
5449 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
5452 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
5454 Avoid superfluous registering of signals. (Bug#10807)
5456 * notifications.el (notifications-on-action-object)
5457 (notifications-on-close-object): New defvars.
5458 (notifications-on-action-signal, notifications-on-closed-signal):
5459 Unregister the signal if not needed any longer.
5460 (notifications-notify): Register `notifications-action-signal' or
5461 `notifications-closed-signal', if :on-action or :on-close has been
5464 2012-03-07 Chong Yidong <cyd@gnu.org>
5466 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
5469 2012-03-06 Glenn Morris <rgm@gnu.org>
5471 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5472 (x-disown-selection-internal, x-get-selection-internal):
5473 Doc fix (add arglist signatures). (Bug#10783)
5475 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5477 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
5478 Handle breakpoints with no "type".
5480 2012-03-06 Glenn Morris <rgm@gnu.org>
5482 * files.el (locate-dominating-file): Add optional predicate argument.
5483 (dir-locals-find-file): Make use of above change.
5485 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
5487 * info.el (Info-insert-dir): Also try "dir.gz".
5489 2012-03-06 Glenn Morris <rgm@gnu.org>
5491 * files.el (dir-locals-find-file):
5492 Ignore non-readable or non-regular files. (Bug#10928)
5494 * files.el (locate-dominating-file): Doc fix.
5496 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
5498 * calendar/calendar.el (calendar-set-mode-line):
5499 `getenv' returns a string. (Bug#10951)
5501 2012-03-05 Leo Liu <sdl.web@gmail.com>
5503 * simple.el (backward-delete-char-untabify): Constrain point to
5506 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
5508 2012-03-05 Chong Yidong <cyd@gnu.org>
5510 * simple.el (count-words): If called from Lisp, return the word
5511 count, for symmetry with `count-lines'. Arglist changed.
5512 (count-words--message): Args changed. Consolidate counting code
5513 from count-words and count-words-region.
5514 (count-words-region): Caller changed.
5515 (count-lines-region): Make it an obsolete alias.
5517 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
5519 * saveplace.el (save-place-to-alist)
5520 (save-place-ignore-files-regexp): Allow value nil to disable this
5523 2012-03-04 Chong Yidong <cyd@gnu.org>
5525 * faces.el (face-spec-reset-face): For the default face, reset the
5526 attributes to default values (Bug#10748).
5528 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
5530 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
5531 previous patch: Check `message-send-mail-function', and not the
5532 default function (bug#10897).
5534 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
5536 * notifications.el (notifications-on-action-signal)
5537 (notifications-on-closed-signal): Check for unique service name of
5538 incoming event. Fix error in removing entry.
5539 (top): Register for signals with wildcard service name.
5540 (notifications-notify): Use daemon unique service name for map entries.
5542 2012-03-04 Chong Yidong <cyd@gnu.org>
5544 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
5546 2012-03-04 Glenn Morris <rgm@gnu.org>
5548 * abbrev.el (copy-abbrev-table, abbrev-table-p)
5549 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
5550 (expand-abbrev, define-abbrev-table): Doc fixes.
5552 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
5554 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
5555 `message-default-send-mail-function' and not `send-mail-function'
5556 when doing the prompting for `sendmail-query-once' before sending
5557 in Message buffers (bug#10897).
5559 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
5560 This is inconsistent with all the other stream functions, which leave
5561 the setting up to the higher levels (if so wanted) (bug#10931).
5563 2012-03-02 Alan Mackenzie <acm@muc.de>
5565 Depessimize the handling of very large macros.
5567 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
5568 (c-macro-cache-syntactic): New variables to implement a one
5569 element macro cache.
5570 (c-invalidate-macro-cache): New function.
5571 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
5572 Adapt to use the new cache.
5573 (c-state-safe-place): Use better the cache of safe positions.
5574 (c-state-semi-nonlit-pos-cache)
5575 (c-state-semi-nonlit-pos-cache-limit):
5576 New variables for...
5577 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
5578 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
5579 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
5580 Use c-state-semi-safe-place.
5582 * progmodes/cc-langs.el (c-get-state-before-change-functions):
5583 Add c-invalidate-macro-cache to the C, C++, Obj entries.
5585 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
5587 * jka-compr.el (jka-compr-call-process):
5588 Apply `file-accessible-directory-p' only when the default directory is
5591 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
5593 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
5594 access of FILE2, if FILE1 does not exist.
5596 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
5597 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
5599 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
5600 Add "PAGER=" to `process-environment'.
5602 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
5604 * progmodes/sql.el: Bug fix
5605 (sql-get-login-ext): Save login values in globals.
5606 (sql-get-login): Use new version of `sql-get-login-ext'.
5607 (sql-interactive-mode): Set global `sql-connection' to nil.
5608 (sql-connect): Set global values for connection.
5609 (sql-product-interactive): Save global values as buffer local.
5611 2012-02-29 Leo Liu <sdl.web@gmail.com>
5613 * abbrev.el (define-abbrevs): Reset sys to nil.
5615 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5617 * files.el (file-equal-p): Rename from `files-equal-p'.
5618 Return nil when one or both files don't exist.
5619 (file-subdir-of-p): Now only top directory must exists,
5620 return nil if it doesn't.
5621 (copy-directory): No need to test with `file-subdir-of-p' after
5623 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
5626 2012-02-28 Glenn Morris <rgm@gnu.org>
5628 * shell.el (shell-mode):
5629 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
5630 * play/landmark.el (landmark-font-lock-face-O):
5631 * play/handwrite.el (handwrite):
5632 * play/gomoku.el (gomoku-O):
5633 * net/browse-url.el (browse-url-browser-display):
5634 * international/mule.el (define-charset):
5635 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
5636 * filesets.el (filesets-find-file-delay):
5637 * eshell/em-xtra.el (eshell-xtra):
5638 * eshell/em-unix.el (eshell-grep):
5639 * emulation/viper.el (viper-mode):
5640 * emacs-lisp/regexp-opt.el (regexp-opt-group):
5641 * emacs-lisp/easymenu.el (easy-menu-define):
5642 * calendar/timeclock.el (timeclock-use-display-time):
5644 * bookmark.el (bookmark-save-flag):
5645 Doc fix (standardize possessive apostrophe usage).
5647 2012-02-27 Chong Yidong <cyd@gnu.org>
5649 * emulation/viper-cmd.el (viper-intercept-ESC-key):
5650 Fix key-binding lookup for ESC key (Bug#9146).
5652 * font-lock.el (font-lock-specified-p): Rename from
5653 font-lock-spec-present. Callers changed.
5655 2012-02-27 Daniel Hackney <dan@haxney.org>
5657 * emacs-lisp/package.el (package-compute-transaction):
5658 Handle holding a package version to t in package-load-list.
5660 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
5662 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
5663 (tramp-get-inode, tramp-get-device): Use cached values.
5665 2012-02-26 Alan Mackenzie <acm@muc.de>
5667 Check there is a font-lock specification before doing initial
5670 * font-core.el (font-lock-mode): Move the conditional from
5671 :after-hook to font-lock-initial-fontify.
5672 (font-lock-default-function): Move the check for a specification
5673 to font-lock-spec-present.
5675 * font-lock.el (font-lock-initial-fontify): Call ...
5676 (font-lock-spec-present): New function.
5678 2012-02-26 Jim Blandy <jimb@red-bean.com>
5680 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
5681 (gdb-send): Apply it to the operand of the '-interpreter-exec
5682 console' command, so that we can pass arguments with (say) quotes
5683 in them. Store exact string sent in gdb-debug-log (Bug#10765).
5685 2012-02-26 Chong Yidong <cyd@gnu.org>
5687 * help-fns.el (describe-function-1): Clarify description of
5688 remapping (Bug#10844).
5690 * files.el (files-equal-p): Doc fix.
5691 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
5692 and quit the loop once a mismatch is found.
5694 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
5696 * bs.el (bs--show-with-configuration): Don't throw an error
5697 if the window cannot be split; otherwise, subsequent calls to
5698 bs-show fail, restoring a stale window config. (Bug#10882)
5700 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
5702 * term/ns-win.el (global-map): Bind ns-drag-file to
5703 ns-find-file (Bug#5855, Bug#10050).
5705 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
5707 * calendar/parse-time.el (parse-time-string): Allow extractor to
5710 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
5712 * net/tramp.el (tramp-file-name-for-operation):
5713 Add `files-equal-p' and `file-subdir-of-p'.
5715 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
5716 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
5717 Add COPY-CONTENTS argument.
5719 2012-02-25 Chong Yidong <cyd@gnu.org>
5721 Add custom groups for VC backends, for consistency with vc-bzr.
5723 * vc/vc-arch.el (vc-arch):
5724 * vc/vc-cvs.el (vc-cvs):
5725 * vc/vc-git.el (vc-git):
5726 * vc/vc-hg.el (vc-hg):
5727 * vc/vc-mtn.el (vc-mtn):
5728 * vc/vc-rcs.el (vc-rcs):
5729 * vc/vc-sccs.el (vc-sccs):
5730 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
5731 All relevant defcustoms reassigned.
5733 2012-02-25 Chong Yidong <cyd@gnu.org>
5735 * newcomment.el (comment-styles): Add autoload (Bug#10868).
5737 * term/x-win.el (x-initialize-window-system): Reduce default for
5738 x-selection-timeout to 5 seconds (Bug#8869).
5740 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5742 * files.el (files-equal-p, file-subdir-of-p): New functions.
5743 (copy-directory): Error when trying to copy a directory on itself.
5744 Add missing copy-contents arg to tramp handler.
5745 * dired-aux.el (dired-copy-file-recursive): Same.
5746 (dired-create-files): Modify destination when source is equal to
5747 dest when copying files.
5748 Return also when dest is a subdir of source. (Bug#10489)
5750 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
5752 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
5755 2012-02-23 Alan Mackenzie <acm@muc.de>
5757 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
5758 parameter "after-hook:" to allow the expansion to run code after
5759 the execution of the mode hooks.
5761 * font-lock.el (font-lock-initial-fontify): New function extracted
5762 from font-lock-mode-internal.
5764 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
5767 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5769 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
5770 (completion--cache-all-sorted-completions): New function.
5771 (completion-all-sorted-completions): Use it.
5772 (completion--do-completion, minibuffer-force-complete):
5773 Use it to re-instate the flush hook.
5775 * icomplete.el (icomplete-completions): Replace last fix with a better
5778 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
5780 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
5781 when it might call us back infinitely (bug#10797).
5783 2012-02-23 Glenn Morris <rgm@gnu.org>
5785 * minibuffer.el (completion-category-overrides): Doc fix.
5787 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5789 * minibuffer.el (completion-table-with-context): Fix inf-loop.
5790 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
5792 2012-02-23 Glenn Morris <rgm@gnu.org>
5794 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
5795 (authors-obsolete-files-regexps, authors-ignored-files)
5796 (authors-ambiguous-files, authors-renamed-files-alist):
5799 2012-02-23 Juri Linkov <juri@jurta.org>
5801 * isearch.el (isearch-occur): Sync interactive spec with occur's
5802 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
5804 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
5806 2012-02-22 Juri Linkov <juri@jurta.org>
5808 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
5809 (ucs-insert): Doc fix. Check for hex digits in the string.
5810 Don't display `nil' in the error message. (Bug#10857)
5812 2012-02-22 Alan Mackenzie <acm@muc.de>
5814 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
5816 2012-02-22 Glenn Morris <rgm@gnu.org>
5818 * ffap.el (ffap-c-path):
5819 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
5821 2012-02-22 Chong Yidong <cyd@gnu.org>
5823 * custom.el (load-theme): Doc fix.
5825 2012-02-22 Glenn Morris <rgm@gnu.org>
5827 * dired-x.el (dired-guess-shell-alist-default):
5828 Remove escape sequences from nroff output. (Bug#172)
5830 2012-02-21 Glenn Morris <rgm@gnu.org>
5832 * vc/emerge.el (emerge-defvar-local):
5833 Set `permanent-local' property rather than unused `preserved'.
5835 * textmodes/picture.el (picture-delete-char): New alias.
5836 (picture-mode-map): Use it. (Bug#10860)
5837 (picture-mode): Doc fix.
5839 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
5841 * newcomment.el (uncomment-region-default): Remove unused binding.
5843 2012-02-21 Glenn Morris <rgm@gnu.org>
5845 * textmodes/picture.el (picture-motion, picture-motion-reverse)
5846 (picture-self-insert, picture-tab-chars): Doc fix.
5847 (picture-mode-map): Fix C-a, C-e.
5849 2012-02-20 Glenn Morris <rgm@gnu.org>
5851 * emacs-lisp/authors.el (authors-aliases): Add another entry.
5853 2012-02-20 Leo Liu <sdl.web@gmail.com>
5855 * icomplete.el (icomplete-completions): Check FROM arg before
5856 passing to substring (Bug#10850).
5858 2012-02-19 Chong Yidong <cyd@gnu.org>
5860 * comint.el: Require ansi-color.
5861 (comint-output-filter-functions): Add ansi-color-process-output.
5863 * ansi-color.el: Don't set comint-output-filter-functions; it is
5864 now in the initial value defined in comint.el.
5865 (ansi-color-apply-face-function): New variable.
5866 (ansi-color-apply-on-region): Use it.
5867 (ansi-color-apply-overlay-face): New function.
5869 * shell.el (shell): No need to require ansi-color.
5870 (shell-mode): Use ansi-color-apply-face-function to highlight
5871 color escapes using font-lock-face property (Bug#10835).
5873 2012-02-19 Chong Yidong <cyd@gnu.org>
5875 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
5876 mode-line formats (Bug#10839).
5878 2012-02-18 Glenn Morris <rgm@gnu.org>
5880 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
5882 * mail/undigest.el (unforward-rmail-message): Doc fix.
5884 * saveplace.el (save-place-ignore-files-regexp): Add :version.
5886 2012-02-18 Eli Zaretskii <eliz@gnu.org>
5888 * international/characters.el (script-list): Sync with the latest
5889 Unicode Character Database.
5891 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
5893 * international/titdic-cnv.el: Remove duplicate coding tag.
5894 * language/cham.el: Likewise.
5895 * language/tai-viet.el: Likewise.
5897 2012-02-18 Glenn Morris <rgm@gnu.org>
5899 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
5900 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
5901 (calendar-bahai-all-holidays-flag, calendar-other-dates):
5902 * calendar/diary-lib.el (diary-abbreviated-year-flag):
5903 * calendar/holidays.el (holiday-bahai-holidays)
5904 (calendar-holidays, list-holidays):
5905 Use utf-8 Bahá'í in doc-strings, menus, etc.
5907 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
5909 * saveplace.el (save-place-ignore-files-regexp): New variable
5910 allowing for excluding files from saving their location of point.
5911 The default value matches the temporary commit message editing
5912 files from Git, SVN, Bazaar, and Mercurial.
5913 (save-place-to-alist): Use it.
5915 2012-02-17 Lawrence Mitchell <wence@gmx.li>
5916 Stefan Monnier <monnier@iro.umontreal.ca>
5918 * newcomment.el (uncomment-region-default): Don't leave extra space
5919 when an arg is provided (bug#8150).
5921 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
5923 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
5925 2012-02-17 Glenn Morris <rgm@gnu.org>
5927 * net/socks.el: Require network-stream. (Bug#10599)
5929 2012-02-17 Kenichi Handa <handa@m17n.org>
5931 * international/charprop.el:
5932 * international/uni-name.el:
5933 * international/uni-old-name.el:
5934 * international/uni-comment.el: Regenerate.
5936 2012-02-16 Glenn Morris <rgm@gnu.org>
5938 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
5939 Interactively in calendar buffer, give an error if not on a date.
5941 2012-02-15 Glenn Morris <rgm@gnu.org>
5943 * shell.el (shell-delimiter-argument-list):
5944 Revert 2011-02-17 change. (Bug#8027)
5946 2012-02-15 Chong Yidong <cyd@gnu.org>
5948 * minibuffer.el (completion-at-point-functions): Doc fix.
5950 * custom.el (defcustom): Doc fix; note use of defvar.
5952 2012-02-15 Glenn Morris <rgm@gnu.org>
5954 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5957 2012-02-14 Glenn Morris <rgm@gnu.org>
5959 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5961 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5963 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5964 way the ports list is computed.
5965 (smtpmail-query-smtp-server): Prompt the user for a port number if
5966 we can't connect to any of the standard ports (bug#10810).
5968 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5970 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5972 2012-02-13 Glenn Morris <rgm@gnu.org>
5974 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5976 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5978 * net/gnutls.el (gnutls-trustfiles): New variable.
5979 (gnutls-negotiate): Use it.
5981 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5983 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5984 does its stuff if Gnus is running.
5986 2012-02-13 Alan Mackenzie <acm@muc.de>
5988 Fix a loop in c-set-fl-decl-start.
5990 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
5991 c-backward-syntactic-ws actually moves backwards.
5993 2012-02-13 Leo Liu <sdl.web@gmail.com>
5995 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5996 beginning so that all \C-o chars are removed.
5998 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
6000 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
6002 2012-02-12 Alan Mackenzie <acm@muc.de>
6004 Fix infinite loop with long macros.
6005 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
6007 2012-02-12 Chong Yidong <cyd@gnu.org>
6009 * window.el (display-buffer): Doc fix (Bug#10785).
6011 2012-02-12 Glenn Morris <rgm@gnu.org>
6013 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6014 (x-disown-selection-internal, x-get-selection-internal):
6015 Sync docs with the xselect.c versions.
6017 * allout-widgets.el: Add missing license notice.
6019 2012-02-11 Glenn Morris <rgm@gnu.org>
6021 * select.el (x-get-selection-internal, x-own-selection-internal)
6022 (x-disown-selection-internal):
6023 * x-dnd.el (x-get-selection-internal): Update declarations.
6025 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
6027 * window.el (window-sides-slots):
6028 * tool-bar.el (tool-bar-position):
6029 * term/xterm.el (xterm-extra-capabilities):
6030 * ses.el (ses-self-reference-early-detection):
6031 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
6032 (verilog-auto-wire-type)
6033 (verilog-auto-delete-trailing-whitespace)
6034 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
6035 (verilog-auto-tieoff-declaration):
6036 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
6037 (sql-oracle-statement-starters, sql-oracle-scan-on):
6038 * progmodes/prolog.el (prolog-align-comments-flag)
6039 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
6040 (prolog-left-indent-regexp, prolog-paren-indent-p)
6041 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
6042 (prolog-types, prolog-mode-specificators)
6043 (prolog-determinism-specificators, prolog-directives)
6044 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
6045 (prolog-electric-dot-flag)
6046 (prolog-electric-dot-full-predicate-template)
6047 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
6048 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
6049 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
6050 (prolog-program-switches, prolog-prompt-regexp)
6051 (prolog-debug-on-string, prolog-debug-off-string)
6052 (prolog-trace-on-string, prolog-trace-off-string)
6053 (prolog-zip-on-string, prolog-zip-off-string)
6054 (prolog-use-standard-consult-compile-method-flag)
6055 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
6056 (prolog-imenu-max-lines, prolog-info-predicate-index)
6057 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
6058 (prolog-char-quote-workaround):
6059 * progmodes/cc-vars.el (c-defun-tactic):
6060 * net/tramp.el (tramp-encoding-command-interactive)
6061 (tramp-local-end-of-line):
6062 * net/soap-client.el (soap-client):
6063 * net/netrc.el (netrc-file):
6064 * net/gnutls.el (gnutls):
6065 * minibuffer.el (completion-category-overrides)
6066 (completion-cycle-threshold)
6067 (completion-pcm-complete-word-inserts-delimiters):
6068 * man.el (Man-name-local-regexp):
6069 * mail/feedmail.el (feedmail-display-full-frame):
6070 * international/characters.el (glyphless-char-display-control):
6071 * eshell/em-ls.el (eshell-ls-date-format):
6072 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
6073 (lisp-lambda-list-keyword-parameter-indentation)
6074 (lisp-lambda-list-keyword-parameter-alignment):
6075 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
6076 * dired-x.el (dired-omit-verbose):
6077 * cus-theme.el (custom-theme-allow-multiple-selections):
6078 * calc/calc.el (calc-highlight-selections-with-faces)
6079 (calc-lu-field-reference, calc-lu-power-reference)
6080 (calc-note-threshold):
6081 * battery.el (battery-mode-line-limit):
6082 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6083 (archive-7z-update):
6084 * allout.el (allout-prefixed-keybindings)
6085 (allout-unprefixed-keybindings)
6086 (allout-inhibit-auto-fill-on-headline)
6087 (allout-flattened-numbering-abbreviation):
6088 * allout-widgets.el (allout-widgets-auto-activation)
6089 (allout-widgets-icons-dark-subdir)
6090 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
6091 (allout-widgets-theme-dark-background)
6092 (allout-widgets-theme-light-background)
6093 (allout-widgets-item-image-properties-emacs)
6094 (allout-widgets-item-image-properties-xemacs)
6095 (allout-widgets-run-unit-tests-on-load)
6096 (allout-widgets-time-decoration-activity)
6097 (allout-widgets-hook-error-post-time)
6098 (allout-widgets-track-decoration):
6099 Add missing :version tags to new defcustoms and defgroups.
6101 * progmodes/sql.el (sql-ansi-statement-starters)
6102 (sql-oracle-statement-starters): Add custom type.
6104 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
6105 (prolog-system-version): Give it a type.
6107 2012-02-11 Eli Zaretskii <eliz@gnu.org>
6109 * term/pc-win.el (x-select-text, x-selection-owner-p)
6110 (x-own-selection-internal, x-disown-selection-internal)
6111 (x-get-selection-internal): Sync doc strings and argument lists
6112 with xselect.c, common-win.el and x-win.el. (Bug#10783)
6114 2012-02-11 Leo Liu <sdl.web@gmail.com>
6116 * progmodes/python.el (python-end-of-statement): Fix infinite
6119 2012-02-10 Glenn Morris <rgm@gnu.org>
6121 * international/mule-cmds.el (unify-8859-on-encoding-mode)
6122 (unify-8859-on-decoding-mode): Properly mark as obsolete.
6124 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
6126 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
6127 about SMTP before checking the From header.
6129 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
6130 into own function for reuse by emacsbug.el.
6132 2012-02-10 Leo Liu <sdl.web@gmail.com>
6134 * subr.el (condition-case-unless-debug): Rename from
6135 condition-case-no-debug. All callers changed.
6136 (with-demoted-errors): Fix caller.
6138 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
6139 * nxml/rng-valid.el (rng-do-some-validation):
6140 * emacs-lisp/package.el (package-refresh-contents)
6141 (package-menu-execute):
6142 * desktop.el (desktop-create-buffer):
6143 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
6145 2012-02-10 Glenn Morris <rgm@gnu.org>
6147 * textmodes/bibtex.el:
6148 Add missing :version tags for new/changed defcustoms.
6150 * files.el (remote-file-name-inhibit-cache): Doc fixes.
6152 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
6154 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
6155 (smtpmail-via-smtp): Use it, or fall back on the From address.
6156 (smtpmail-send-it): Ditto.
6158 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
6160 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
6161 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
6162 (byte-compile-tmp-var): New const.
6163 (byte-compile-defvar): Use it to minimize .elc size.
6164 Just use `defvar' rather than simulate it (bug#10761).
6166 2012-02-09 Glenn Morris <rgm@gnu.org>
6168 * files.el (rename-uniquely): Doc fix. (Bug#3806)
6170 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
6173 * progmodes/compile.el (compilation-error-screen-columns)
6174 (compilation-first-column, compilation-filter-start): Doc fixes.
6176 * vc/log-view.el (log-view-toggle-entry-display):
6177 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
6179 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
6180 (report-emacs-bug-can-use-xdg-email):
6181 (report-emacs-bug-insert-to-mailer): Doc fixes.
6182 (report-emacs-bug): Message fix.
6184 * net/browse-url.el (browse-url-can-use-xdg-open)
6185 (browse-url-xdg-open): Doc fixes.
6187 * electric.el (electric-indent-mode, electric-pair-mode)
6188 (electric-layout-rules, electric-layout-mode): Doc fixes.
6189 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
6191 2012-02-08 Martin Rudalics <rudalics@gmx.at>
6193 * server.el (server-unselect-display): Don't inadvertently kill
6194 the current buffer. (Bug#10729)
6196 2012-02-08 Glenn Morris <rgm@gnu.org>
6198 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
6199 (sql-list-table): Doc fixes.
6201 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
6202 Comment out (does nothing).
6204 * completion.el (dynamic-completion-mode):
6205 * dirtrack.el (dirtrack-debug-mode):
6206 * electric.el (electric-layout-mode):
6207 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
6208 * face-remap.el (text-scale-mode, buffer-face-mode):
6209 * iimage.el (iimage-mode):
6210 * image-mode.el (image-transform-mode):
6211 * minibuffer.el (completion-in-region-mode):
6212 * scroll-lock.el (scroll-lock-mode):
6213 * simple.el (next-error-follow-minor-mode):
6214 * tar-mode.el (tar-subfile-mode):
6215 * tooltip.el (tooltip-mode):
6216 * vcursor.el (vcursor-use-vcursor-map):
6217 * wid-browse.el (widget-minor-mode):
6218 * emulation/tpu-edt.el (tpu-edt-mode):
6219 * emulation/tpu-extras.el (tpu-cursor-free-mode):
6220 * international/iso-ascii.el (iso-ascii-mode):
6221 * language/thai-util.el (thai-word-mode):
6222 * mail/supercite.el (sc-minor-mode):
6223 * net/goto-addr.el (goto-address-mode):
6224 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
6225 * progmodes/cwarn.el (cwarn-mode):
6226 * progmodes/flymake.el (flymake-mode):
6227 * progmodes/glasses.el (glasses-mode):
6228 * progmodes/hideshow.el (hs-minor-mode):
6229 * progmodes/pascal.el (pascal-outline-mode):
6230 * textmodes/enriched.el (enriched-mode):
6231 * vc/smerge-mode.el (smerge-mode):
6232 Doc fixes (minor mode argument).
6234 2012-02-07 Eli Zaretskii <eliz@gnu.org>
6236 * ls-lisp.el (ls-lisp-sanitize): New function.
6237 (ls-lisp-insert-directory): Use it to fix or remove any elements
6238 in file-alist with missing attributes. (Bug#4673)
6240 2012-02-07 Alan Mackenzie <acm@muc.de>
6242 Fix spurious recognition of c-in-knr-argdecl.
6244 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
6245 putative K&R region.
6247 2012-02-07 Alan Mackenzie <acm@muc.de>
6249 * progmodes/cc-engine.el (c-forward-objc-directive):
6250 Prevent looping in "#pragma mark @implementation".
6252 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
6254 * notifications.el (notifications-on-closed-signal): Make `reason'
6255 optional. (Bug#10744)
6257 2012-02-07 Glenn Morris <rgm@gnu.org>
6259 * emacs-lisp/easy-mmode.el (define-minor-mode):
6260 Doc fixes for the macro and the mode it defines.
6262 * image.el (imagemagick-types-inhibit): Doc fix.
6264 * cus-start.el (imagemagick-render-type): Add it.
6266 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
6268 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
6269 Set the default at load time, too, so that `font-lock-fontify-buffer'
6270 can be called without setting up the entire mode first. This fixes
6271 a bug in `mm-inline-text' with C MIME parts.
6273 2012-02-06 Chong Yidong <cyd@gnu.org>
6275 * simple.el (list-processes--refresh): Delete exited processes
6278 * comint.el (comint-next-prompt): next-single-char-property-change
6279 and prev-single-char-property-change never return nil (Bug#8657).
6281 * custom.el (defcustom): Doc fix (Bug#9711).
6283 2012-02-05 Chong Yidong <cyd@gnu.org>
6285 * cus-edit.el (custom-variable-reset-backup): Quote the value
6286 before storing it in the customized-value property (Bug#6712).
6287 (custom-display): Add a customization type tag.
6288 (custom-buffer-create-internal): Improve tooltip message.
6290 * wid-edit.el (widget-field-value-get): New optional arg to
6291 suppress trailing whitespace truncation.
6292 (character): Use it (Bug#2689).
6294 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
6296 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
6297 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
6299 2012-02-05 Chong Yidong <cyd@gnu.org>
6301 * cus-edit.el (custom-variable-value-create): For mismatched
6302 types, show the current value (Bug#7600).
6304 * custom.el (defcustom): Doc fix.
6306 2012-02-05 Glenn Morris <rgm@gnu.org>
6308 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
6310 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
6312 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
6313 (pp-buffer): Use `ignore-errors', `looking-at-p'.
6314 (pp-last-sexp): Use `looking-at-p'.
6316 2012-02-04 Glenn Morris <rgm@gnu.org>
6318 * files.el (revert-buffer):
6319 Doc fix (mention revert-buffer-in-progress-p).
6321 * emacs-lisp/ert-x.el (ert-simulate-command):
6322 Check deferred-action-list (which is obsolete) is bound.
6324 * subr.el (with-wrapper-hook): Doc fixes.
6326 * simple.el (filter-buffer-substring-functions)
6327 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
6329 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
6331 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
6332 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
6334 2012-02-04 Leo Liu <sdl.web@gmail.com>
6336 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
6338 2012-02-04 Glenn Morris <rgm@gnu.org>
6340 * image.el (image-extension-data): Add obsolete alias.
6342 * isearch.el (isearch-update): Doc fix.
6344 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
6346 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
6348 2012-02-03 Glenn Morris <rgm@gnu.org>
6350 * image.el (image-animated-p): Doc fix. Use image-animated-types.
6351 (image-animate-timeout): Doc fix.
6353 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
6355 2012-02-02 Glenn Morris <rgm@gnu.org>
6357 * server.el (server-auth-dir): Doc fix.
6358 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
6360 * subr.el (run-mode-hooks): Doc fix.
6362 2012-02-02 Juri Linkov <juri@jurta.org>
6364 * image-mode.el (image-toggle-display-image): Remove tautological
6365 `major-mode' from the `derived-mode-p' test.
6367 2012-02-02 Kenichi Handa <handa@m17n.org>
6369 * composite.el (compose-region): Cancel previous change.
6371 2012-02-02 Kenichi Handa <handa@m17n.org>
6373 * composite.el (compose-region, compose-string): Signal error for
6374 a null string component (Bug#6988).
6376 2012-02-01 Chong Yidong <cyd@gnu.org>
6378 * view.el (view-buffer-other-window, view-buffer-other-frame):
6379 Handle special modes like view-buffer (Bug#10650).
6380 (view-buffer): Simplify.
6382 * frame.el (set-frame-font): Tweak meaning of third argument.
6384 * dynamic-setting.el (font-setting-change-default-font):
6385 Use set-frame-font (Bug#9982).
6387 2012-02-01 Glenn Morris <rgm@gnu.org>
6389 * progmodes/compile.el (compilation-internal-error-properties):
6390 Respect compilation-first-column in the "*compilation*" buffer.
6392 * emacs-lisp/easy-mmode.el (define-minor-mode):
6393 Relax :variable's test for a named function.
6395 2012-01-31 Alan Mackenzie <acm@muc.de>
6397 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
6400 2012-01-31 Chong Yidong <cyd@gnu.org>
6402 * frame.el (set-frame-font): New arg ALL-FRAMES.
6404 * menu-bar.el (menu-set-font): Use set-frame-font.
6406 * faces.el (face-spec-reset-face): Don't apply unspecified
6407 attribute values to the default face.
6409 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
6411 * progmodes/cwarn.el (cwarn): Remove dead link.
6412 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
6413 Remove * from defcustom docstrings.
6414 (turn-on-cwarn-mode): Make obsolete.
6415 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
6416 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
6418 2012-01-31 Glenn Morris <rgm@gnu.org>
6420 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6421 Fix :variable handling of mode a symbol not equal to modefun.
6422 Allow named functions to be used as the cdr of :variable.
6424 2012-01-30 Glenn Morris <rgm@gnu.org>
6426 * emacs-lisp/authors.el (authors-fixed-entries):
6427 Remove reference to deleted file rnewspost.el.
6429 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
6431 * window.el (window-with-parameter): Remove unused variable `windows'.
6432 (window--side-check): Remove unused variable `code'.
6433 (window--resize-siblings): Remove unused variable `first'.
6434 (adjust-window-trailing-edge): Remove unused variable `failed'.
6435 (window-deletable-p, window--delete): Remove unused variable `buffer'.
6436 Use `let', not `let*'.
6437 (balance-windows-2): Remove unused variable `found'.
6438 (window--state-put-2): Remove unused variable `splits'.
6439 (window-state-put): Remove unused variable `selected'.
6440 (same-window-p): Use `string-match-p'.
6441 (display-buffer-assq-regexp): Remove unused variable `value'.
6442 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6443 Mark argument ALIST as ignored.
6444 (pop-to-buffer): Remove unused variable `old-window'.
6446 2012-01-29 Eli Zaretskii <eliz@gnu.org>
6448 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
6449 and .lzma compressed files.
6451 2012-01-29 Chong Yidong <cyd@gnu.org>
6453 * frame.el (window-system-default-frame-alist): Doc fix.
6455 * dynamic-setting.el (font-setting-change-default-font): Don't
6456 change the default face if SET-FONT argument is non-nil (Bug#9982).
6458 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
6460 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
6462 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6464 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
6465 breakpoints in files outside current directory (Bug#6098).
6467 2012-01-29 Chong Yidong <cyd@gnu.org>
6469 * progmodes/python.el: Require ansi-color at top-level.
6471 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
6472 Define and use in Emacs Lisp mode (Bug#9360).
6473 (lisp-mode-abbrev-table): Add doc.
6474 (lisp-mode-variables): Don't set local-abbrev-table.
6475 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
6477 2012-01-28 Roland Winkler <winkler@gnu.org>
6479 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
6481 2012-01-28 Roland Winkler <winkler@gnu.org>
6483 * textmodes/bibtex.el (bibtex-entry-alist): New function.
6484 (bibtex-set-dialect): Use it. Either set global values of
6485 dialect-dependent variables or bind these variables buffer-locally
6487 (bibtex-mode): Call bibtex-set-dialect via
6488 hack-local-variables-hook.
6489 (bibtex-dialect): Update docstring.
6490 Add safe-local-variable predicate.
6491 (bibtex-entry-alist, bibtex-field-alist): Initialize via
6493 (bibtex-mode-map): Define menu for each dialect.
6494 (bibtex-entry): Fix docstring.
6496 2012-01-28 Chong Yidong <cyd@gnu.org>
6498 * eshell/esh-arg.el (eshell-quote-argument): New function.
6500 * eshell/esh-ext.el (eshell-invoke-batch-file):
6501 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
6502 first arg to eshell-parse-command (Bug#10523).
6504 2012-01-28 Drew Adams <drew.adams@oracle.com>
6506 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
6507 `default-directory' is non-nil.
6509 2012-01-28 Eli Zaretskii <eliz@gnu.org>
6511 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
6512 line that displays system-configuration-options. (Bug#9924)
6514 2012-01-28 Drew Adams <drew.adams@oracle.com>
6516 * descr-text.el (describe-char): Show information about POS, in
6517 addition to information about the character at POS. Improve and
6518 update the doc string. Change "code point" to "code point in
6519 charset", to avoid confusion with the character's Unicode code
6520 point shown above that. (Bug#10129)
6522 2012-01-28 Eli Zaretskii <eliz@gnu.org>
6524 * descr-text.el (describe-char): Show the raw character, not only
6525 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
6526 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
6529 2012-01-28 Phil Hagelberg <phil@hagelb.org>
6531 * emacs-lisp/package.el (package-install):
6532 Run package-refresh-contents if there is no archive yet (Bug#9798).
6534 2012-01-28 Chong Yidong <cyd@gnu.org>
6536 * emacs-lisp/package.el (package-maybe-load-descriptor):
6537 New function, split from package-maybe-load-descriptor.
6538 (package-maybe-load-descriptor): Use it.
6539 (package-download-transaction): Fully load required packages
6540 inside the loop, so that `require' calls work (Bug#10593).
6541 (package-install): No need to call package-initialize now.
6543 2012-01-28 Chong Yidong <cyd@gnu.org>
6545 * simple.el (deactivate-mark): Doc fix (Bug#8614).
6547 * tooltip.el (tooltip-mode): Doc fix.
6548 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
6550 * frame.el (set-cursor-color): Doc fix (Bug#352).
6552 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
6553 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
6555 * cus-edit.el (custom-buffer-create-internal): Fix search button
6557 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
6559 2012-01-27 Eduard Wiebe <usenet@pusto.de>
6561 * dired.el (dired-mark-files-regexp):
6562 Include any subdirectory components. (Bug#10445)
6564 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
6566 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
6567 Handle [host]:port syntax. (Bug#10533)
6569 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
6571 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
6573 2012-01-26 Glenn Morris <rgm@gnu.org>
6575 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
6576 * term.el (term-raw-escape-map): Use Control-X-prefix.
6577 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
6579 2012-01-25 Martin Rudalics <rudalics@gmx.at>
6581 * window.el (window-state-get, window--state-get-1): Don't deal
6582 with fixed-sizeness of windows. Simplify code.
6584 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
6586 * window.el (window--state-get-1, window--state-put-2):
6587 Don't save and restore the mark.
6589 2012-01-25 Chong Yidong <cyd@gnu.org>
6591 * custom.el (custom-variable-p): Doc fix.
6593 2012-01-25 Glenn Morris <rgm@gnu.org>
6595 * dired.el (dired-goto-file): Handle some of the more common
6596 characters that `ls -b' escapes. (Bug#10596)
6598 * progmodes/compile.el (compilation-next-error-function):
6599 Respect compilation-first-column in the "*compilation*" buffer.
6600 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
6602 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
6604 2012-01-24 Glenn Morris <rgm@gnu.org>
6606 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
6608 2012-01-24 Julien Danjou <julien@danjou.info>
6610 * color.el (color-rgb-to-hsl): Fix value computing.
6611 (color-hue-to-rgb): New function.
6612 (color-hsl-to-rgb): New function.
6613 (color-clamp, color-saturate-hsl, color-saturate-name)
6614 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
6615 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
6617 2012-01-24 Glenn Morris <rgm@gnu.org>
6619 * vc/vc-rcs.el (vc-rcs-create-tag):
6620 * vc/vc-sccs.el (vc-sccs-create-tag):
6621 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
6623 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
6625 * eshell/esh-util.el (eshell-read-hosts-file):
6626 Skip comment lines. (Bug#10549)
6628 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
6630 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
6632 * subr.el (display-delayed-warnings): Doc fix.
6633 (collapse-delayed-warnings): New function to collapse identical
6635 (delayed-warnings-hook): Add it.
6637 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
6639 * net/tramp.el (tramp-action-login): Set connection property "login-as".
6641 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
6642 (tramp-default-user-alist): Don't add "pscp".
6643 (tramp-do-copy-or-rename-file-out-of-band): Use connection
6644 property "login-as", if set. (Bug#10530)
6646 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
6648 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
6649 "plink1" and "psftp". (Bug#10530)
6651 2012-01-21 Kenichi Handa <handa@m17n.org>
6653 * international/mule-cmds.el (prefer-coding-system): Show a
6654 warning message if the default value of file-name-coding-system
6657 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6659 * windmove.el (windmove-reference-loc):
6660 Fix windmove-reference-loc miscalculation.
6662 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
6664 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
6667 2012-01-21 Glenn Morris <rgm@gnu.org>
6669 * international/mule.el (auto-coding-alist): Add .tbz.
6671 * files.el (local-enable-local-variables): Doc fix.
6672 (inhibit-local-variables-regexps): Rename from
6673 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
6674 Doc fix. Add some extensions from auto-coding-alist.
6675 (inhibit-local-variables-suffixes):
6676 Rename from inhibit-first-line-modes-suffixes. Doc fix.
6677 (inhibit-local-variables-p):
6678 New function, extracted from set-auto-mode-1.
6679 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
6680 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
6681 (hack-local-variables): Doc fix. Make the mode-only case
6682 respect enable-local-variables and friends.
6683 Respect inhibit-local-variables-regexps for file-locals, but
6684 not for directory-locals.
6685 (set-visited-file-name):
6686 Take account of inhibit-local-variables-regexps.
6687 Whether it applies may change as the file name is changed.
6688 * jka-cmpr-hook.el (jka-compr-install):
6689 * jka-compr.el (jka-compr-uninstall):
6690 Update for inhibit-first-line-modes-suffixes name change.
6692 2012-01-20 Martin Rudalics <rudalics@gmx.at>
6694 * help-macro.el (make-help-screen): Temporarily restore original
6695 binding for minor-mode-map-alist (Bug#10454).
6697 2012-01-19 Julien Danjou <julien@danjou.info>
6699 * color.el (color-name-to-rgb): Use the white color to find the max
6700 color component value and return correctly computed values.
6701 (color-name-to-rgb): Add missing float conversion for max value.
6703 2012-01-19 Martin Rudalics <rudalics@gmx.at>
6705 * window.el (window--state-get-1, window-state-get): Do not use
6706 special state value for window-persistent-parameters.
6707 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
6708 (window--state-put-2): Reset all window parameters to nil before
6709 assigning values of persistent parameters.
6711 2012-01-18 Alan Mackenzie <acm@muc.de>
6713 Eliminate sluggishness and hangs in fontification of "semicolon
6716 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
6717 Change value 10000 -> 3000.
6718 (c-state-safe-place): Reformulate so it doesn't stack up an
6719 infinite number of wrong entries in c-state-nonlit-pos-cache.
6720 (c-determine-limit-get-base, c-determine-limit): New functions to
6721 determine backward search limits disregarding literals.
6722 (c-find-decl-spots): Amend commenting.
6723 (c-cheap-inside-bracelist-p): New function which detects "={".
6725 * progmodes/cc-fonts.el
6726 (c-make-font-lock-BO-decl-search-function): Give a limit to a
6728 (c-font-lock-declarations): Fix an occurrence of point being
6729 undefined. Check additionally for point being in a bracelist or
6730 near a macro invocation without a semicolon so as to avoid a
6731 fruitless time consuming search for a declarator. Give a more
6732 precise search limit for declarators using the new
6735 2012-01-18 Glenn Morris <rgm@gnu.org>
6737 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
6738 (set-auto-mode): Doc fixes.
6740 2012-01-17 Glenn Morris <rgm@gnu.org>
6742 * isearch.el (search-nonincremental-instead): Fix doc typo.
6744 * dired.el (dired-insert-directory): Handle newlines in directory name.
6745 (dired-build-subdir-alist): Unescape newlines in directory name.
6747 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
6749 * net/tramp.el (tramp-local-end-of-line): New defcustom.
6750 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
6751 (tramp-action-terminal): Use it. (Bug#10530)
6753 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6755 * minibuffer.el (completion--replace): Strip properties (bug#10062).
6757 2012-01-16 Martin Rudalics <rudalics@gmx.at>
6759 * window.el (window-state-ignored-parameters): Remove variable.
6760 (window--state-get-1): Rename argument MARKERS to IGNORE.
6761 Handle persistent window parameters. Make copy of clone-of
6762 parameter only if requested. (Bug#10348)
6763 (window--state-put-2): Install a window parameter only if it has
6764 a non-nil value or an existing parameter shall be overwritten.
6766 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
6768 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
6770 2012-01-14 Eli Zaretskii <eliz@gnu.org>
6772 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
6773 don't pass the (nil) value of `upnode' to string-match.
6775 2012-01-14 Chong Yidong <cyd@gnu.org>
6777 * startup.el (command-line): Fix X resource class for cursorColor.
6778 Fix values recognized by the cursorBlink resource.
6780 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
6782 * epg.el (epg--make-temp-file): Avoid permission race condition
6783 when running on old Emacs versions (bug#10403).
6785 2012-01-14 Glenn Morris <rgm@gnu.org>
6787 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
6789 2012-01-13 Alan Mackenzie <acm@muc.de>
6791 Fix filling for when filladapt mode is enabled.
6793 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
6794 c-mask-paragraph, pass in `fill-paragraph' rather than
6795 `fill-region-as-paragraph'. (This is a reversion of a previous
6797 * progmodes/cc-mode.el (c-basic-common-init):
6798 Make fill-paragraph-handle-comment buffer local and set it to nil.
6800 2012-01-13 Glenn Morris <rgm@gnu.org>
6802 * dired.el (dired-switches-escape-p): New function.
6803 (dired-insert-directory): Use dired-switches-escape-p.
6804 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
6806 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
6808 2012-01-12 Glenn Morris <rgm@gnu.org>
6810 * mail/sendmail.el (mail-mode): Update paragraph-separate for
6811 changes in adaptive-fill-regexp. (Bug#10276)
6813 2012-01-11 Alan Mackenzie <acm@muc.de>
6815 Fix Emacs bug #10463 - put `widen's around the critical spots.
6817 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
6818 widen around each invocation of c-state-pp-to-literal. Remove an
6819 unused let variable.
6821 2012-01-11 Glenn Morris <rgm@gnu.org>
6823 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
6826 2012-01-10 Chong Yidong <cyd@gnu.org>
6828 * net/network-stream.el (network-stream-open-starttls):
6829 Avoid emitting a confusing error message when the server gives a bad
6830 response to the capability command.
6832 2012-01-10 Glenn Morris <rgm@gnu.org>
6834 * mail/unrmail.el (unrmail): Tweak previous change.
6836 2012-01-09 Chong Yidong <cyd@gnu.org>
6838 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
6840 2012-01-08 Alan Mackenzie <acm@muc.de>
6842 Optimise font locking in long enum definitions.
6844 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
6845 arm to a cond form to handle enums.
6846 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
6847 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
6849 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6851 * files.el (move-file-to-trash): Preserve default file modes on error.
6854 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6856 * faces.el (set-face-attribute): Clarify the meaning of the nil
6859 * subr.el (with-selected-frame): Mention that the selected frame
6860 is restored (bug#9980).
6862 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
6865 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
6866 (password-read): Don't autoload unused function.
6868 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
6870 * progmodes/which-func.el (which-func-mode): Turn into a
6871 non-interactive function and mark as obsolete (bug#10428).
6873 2012-01-06 Chong Yidong <cyd@gnu.org>
6875 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
6876 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
6877 functions, along with 1 and -1.
6879 2012-01-06 Eli Zaretskii <eliz@gnu.org>
6881 * time.el (display-time-load-average)
6882 (display-time-default-load-average): Doc fixes. See the thread
6884 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
6887 2012-01-06 Glenn Morris <rgm@gnu.org>
6889 * mail/unrmail.el (unrmail): Give an explicit error if the input file
6890 has no messages. (Bug#10377)
6892 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
6893 than Info-edit. (Bug#10385)
6895 * time.el (display-time-load-average, display-time-next-load-average):
6898 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
6899 local setting of buffer-read-only to the input buffer. (Bug#10419)
6901 * calendar/calendar.el (calendar-mode):
6902 Locally set scroll-margin to 0. (Bug#10379)
6904 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
6906 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
6908 2012-01-05 Glenn Morris <rgm@gnu.org>
6910 * eshell/em-unix.el (diff-no-select): Autoload it.
6911 (eshell/diff): Use diff-no-select. (Bug#10420)
6913 2012-01-05 Chong Yidong <cyd@gnu.org>
6915 * shell.el (shell-dynamic-complete-functions): Revert last change.
6916 (shell-command-completion-function): New function.
6917 (shell-completion-vars): Use it to implement
6918 shell-completion-execonly (Bug#10417).
6920 * custom.el (enable-theme): Don't set custom-safe-themes.
6922 * cus-theme.el (custom-theme-merge-theme):
6923 Ignore custom-enabled-themes and custom-safe-themes.
6925 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
6927 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
6928 first prompt in `sql-interacive-mode'.
6929 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
6931 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
6932 (sql-product-interactive): Bug fix: Set `sql-buffer' in
6933 context of original buffer. Invoke `sql-login-hook'.
6935 2012-01-04 Eli Zaretskii <eliz@gnu.org>
6937 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
6938 letters in cite-prefix.
6940 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6942 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
6944 2012-01-03 Chong Yidong <cyd@gnu.org>
6946 * shell.el (shell-dynamic-complete-functions):
6947 Put pcomplete-completions-at-point, so as to try
6948 comint-filename-completion first (Bug#10417).
6950 2012-01-02 Richard Stallman <rms@gnu.org>
6952 * battery.el (battery-status-function):
6953 Detect when to use battery-yeeloong-sysfs.
6954 (battery-echo-area-format): Add string for Yeeloong.
6955 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6956 (battery-yeeloong-sysfs): New function.
6958 2012-01-02 Chong Yidong <cyd@gnu.org>
6960 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6961 (dirtrack): Merge code for handling relative filenames in prompt
6962 from shell-dir-cookie-watcher.
6963 (dirtrack-debug-message): New arg to avoid excess format calls.
6965 * shell.el (shell-dir-cookie-re): Variable deleted.
6966 (shell-dir-cookie-watcher): Function deleted.
6967 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6970 2012-01-01 Eli Zaretskii <eliz@gnu.org>
6972 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6973 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
6976 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6978 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6980 2011-12-31 Eli Zaretskii <eliz@gnu.org>
6982 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6983 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6985 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
6987 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6988 also for alternative shells.
6989 (tramp-open-connection-setup-interactive-shell): Check, whether
6990 the shell is a busybox.
6991 (tramp-send-command): Don't suppress multiple prompts for
6992 busyboxes, it hurts.
6994 2011-12-28 Chong Yidong <cyd@gnu.org>
6996 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6997 (gdb-get-source-file): Move mode line update to
6998 gdb-get-source-file (Bug#10087).
7000 2011-12-25 Chong Yidong <cyd@gnu.org>
7002 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
7003 gud-gdb-marker-filter without taking it as an argument.
7004 (gud-gdb-run-command-fetch-lines): Caller changed.
7005 (gud-gdb-completion-function): New variable.
7006 (gud-gdb-completion-at-point): Use it.
7007 (gud-gdb-completions-1): Split from gud-gdb-completions.
7009 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
7010 function as separate arguments.
7011 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
7012 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
7013 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
7014 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
7015 (gdb-stopped, def-gdb-auto-update-trigger)
7016 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
7017 (gdb-get-changed-registers, gdb-get-main-selected-frame):
7019 (gud-gdbmi-completions): New function.
7020 (gdb): Use it for generating the completion table.
7022 2011-12-24 Alan Mackenzie <acm@muc.de>
7024 Introduce a mechanism to widen the region used in context font
7025 locking. Use this to protect declarations from losing their contexts.
7027 * progmodes/cc-langs.el (c-before-font-lock-functions):
7028 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
7029 (c-before-context-fontification-functions): New defvar, a list of
7030 functions to be run just before context (etc.) font locking.
7032 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
7033 New, functionality extracted from
7034 c-neutralize-syntax-in-and-mark-CPP.
7035 (c-in-after-change-fontification): New variable.
7036 (c-after-change): Set c-in-after-change-fontification.
7037 (c-set-fl-decl-start): Rejig its interface, so it can be called
7038 from both after-change and context fontifying.
7039 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
7041 (c-standard-font-lock-fontify-region-function): New variable.
7042 (c-font-lock-fontify-region): New function.
7044 2011-12-24 Juri Linkov <juri@jurta.org>
7046 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
7049 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
7051 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
7052 existence of source file. (Bug#10325)
7054 2011-12-23 Alan Mackenzie <acm@muc.de>
7056 Fix unstable fontification inside templates.
7058 * progmodes/cc-langs.el (c-before-font-lock-functions):
7059 Newly created from the singular version. The (c c++ objc) entry now
7060 additionally has c-set-fl-decl-start. The other languages (apart
7061 from AWK) have that as a single entry.
7063 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7064 The functionality for "local" declarations has been extracted to
7065 c-set-fl-decl-start.
7067 * progmodes/cc-mode.el (c-common-init, c-after-change):
7068 Changes due to pluralisation of c-before-font-lock-functions.
7069 (c-set-fl-decl-start): New function, extracted from
7070 c-font-lock-enclosing-decls and enhanced.
7072 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
7074 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
7076 2011-12-22 Juri Linkov <juri@jurta.org>
7078 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
7080 2011-12-22 Chong Yidong <cyd@gnu.org>
7082 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
7084 2011-12-21 Drew Adams <drew.adams@oracle.com>
7086 * files.el (file-remote-p): Fix docstring. (Bug#10319)
7088 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7090 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
7092 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
7094 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
7095 highlighting and support. Fix up comments for capitalization.
7096 (cfengine-mode-debug): New var.
7097 (cfengine3-mode): Change the modeline indicator to "CFE3".
7098 (cfengine3-font-lock-keywords): Improve defun highlighting.
7099 (cfengine2-actions): Rename from `cfengine-actions'.
7100 (cfengine2-font-lock-keywords): Rename from
7101 `cfengine-font-lock-keywords'.
7102 (cfengine2-imenu-expression): Rename from
7103 `cfengine-imenu-expression'.
7104 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
7105 (cfengine2-beginning-of-defun): Rename from
7106 `cfengine-beginning-of-defun'.
7107 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
7108 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
7109 (cfengine2-mode): Rename from `cfengine-mode'. Change the
7110 modeline indicator to "CFE2".
7111 (cfengine-mode): Defalias to `cfengine-auto-mode'.
7112 (cfengine-mode-abbrevs): Mark obsolete.
7114 2011-12-21 Chong Yidong <cyd@gnu.org>
7116 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
7119 2011-12-20 Martin Rudalics <rudalics@gmx.at>
7121 * window.el (window-normalize-buffer-to-display): Remove.
7122 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
7124 2011-12-19 Chong Yidong <cyd@gnu.org>
7126 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
7127 Don't signal an error in a predicate function; return non-nil.
7128 (vc-dir-mark-file): Move the error here.
7129 (vc-dir-mark-unmark): If acting on the region, keep going if one
7130 of the entries cannot be marked/unmarked.
7131 (vc-dir-mark-all-files): If current entry is a directory, mark
7132 only child files, as documented.
7134 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
7136 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
7137 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
7140 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
7142 * term/ns-win.el (ns-get-selection-internal)
7143 (ns-store-selection-internal): Declare.
7144 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
7145 Declare as obsolete.
7146 (ns-get-pasteboard, ns-paste-secondary):
7147 Use ns-get-selection-internal.
7148 (ns-set-pasteboard, ns-copy-including-secondary):
7149 Use ns-store-selection-internal.
7151 2011-12-17 Chong Yidong <cyd@gnu.org>
7153 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
7154 (vc-deduce-fileset): Doc fix.
7156 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
7158 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
7160 2011-12-13 Sam Steingold <sds@gnu.org>
7162 * man.el (Man-getpage-in-background): When running under a
7163 window-system, ignore $MANWIDTH and $COLUMNS.
7165 2011-12-15 Kenichi Handa <handa@m17n.org>
7167 * language/ethio-util.el: Change coding tag to utf-8-emacs.
7168 (setup-ethiopic-environment-internal): Comment out key-binding for
7169 ethio-toggle-punctuation.
7171 2011-12-13 Alan Mackenzie <acm@muc.de>
7173 Add the switch statement to AWK Mode.
7175 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
7176 "default" to the keywords regexp.
7178 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
7179 expression as the rest.
7180 (c-nonlabel-token-key): Allow string literals for AWK.
7181 Refactor for the other modes.
7183 Large brace-block initialisation makes CC Mode slow: Fix.
7184 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
7185 routines. Limit backward searching in c-font-lock-enclosing.decl.
7187 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
7188 pp-state and literal type in addition to the limits.
7189 (c-state-safe-place): New defun, extracted from c-state-literal-at.
7190 (c-state-literal-at): Use the above new defun.
7191 (c-slow-in-literal, c-fast-in-literal): Remove.
7192 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
7194 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
7195 being in a literal. Add a limit for backward searching.
7197 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
7200 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
7202 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
7204 2011-12-13 Martin Rudalics <rudalics@gmx.at>
7206 * window.el (delete-other-windows): Use correct frame in call to
7207 window-with-parameter.
7209 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
7211 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
7212 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
7213 (makefile-gmake-statements, makefile-makepp-statements):
7214 Use it and add new makepp keywords.
7215 (makefile-makepp-font-lock-keywords): Add new patterns.
7216 (makefile-match-function-end): Match new [...] and [[...]].
7218 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
7220 * ses.el (ses-call-printer-return, ses-cell-property-get)
7221 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
7222 (ses-create-cell-variable, ses-reset-header-string)
7223 (ses-cell-set-formula, ses-repair-cell-reference-all)
7224 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
7225 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
7226 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
7227 (ses-aset-with-undo, ses-load, ses-truncate-cell)
7228 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
7229 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
7230 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
7231 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
7232 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
7233 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
7234 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
7235 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
7237 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
7239 * ses.el: The overall change is to add cell renaming, that is
7240 setting fancy names for cell symbols other than name matching
7241 "\\`[A-Z]+[0-9]+\\'" regexp .
7242 (ses-create-cell-variable): New defun.
7243 (ses-relocate-formula): Relocate formulas only for cells the
7244 symbols of which are not renamed, i.e. symbols whose names do not
7245 match regexp "\\`[A-Z]+[0-9]+\\'".
7246 (ses-relocate-all): Relocate values only for cells the symbols of
7247 which are not renamed.
7248 (ses-load): Create cells variables as the (ses-cell ...) are read,
7249 in order to check row col consistency with cell symbol name only
7250 for cells that are not renamed.
7251 (ses-replace-name-in-formula): New defun.
7252 (ses-rename-cell): New defun.
7254 2011-12-11 Chong Yidong <cyd@gnu.org>
7256 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
7257 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
7259 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
7261 * window.el (other-window): Fix docstring.
7263 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7265 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
7266 `from' or `to' address before taking its substring.
7267 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
7268 encoded name is chopped in the middle of the encoded string, and
7269 thus displayed encoded.
7271 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
7273 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
7275 2011-12-10 Eli Zaretskii <eliz@gnu.org>
7277 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
7278 to use texinfo-update-node and commands that call it if the
7279 Texinfo file uses @node lines without next/prev/up pointers.
7280 Correct outdated description about texinfo-master-menu.
7281 (texinfo-all-menus-update, texinfo-master-menu)
7282 (texinfo-update-node, texinfo-every-node-update)
7283 (texinfo-multiple-files-update): Doc fix. Warn against updating
7284 all the @node lines.
7285 (texinfo-master-menu): Only call texinfo-update-node if the prefix
7286 argument is numeric. Explain better in the doc string what the
7287 function really does.
7288 (texinfo-insert-master-menu-list): Improve the error message
7289 displayed if there's no menu in the Top node.
7290 (Bug#2975) See also this thread:
7291 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
7293 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
7295 * speedbar.el (speedbar-supported-extension-expressions):
7296 Add .adb and .ads, commonly used for Ada source code (bug#10256).
7298 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
7300 * printing.el (pr-mode-alist):
7301 * simple.el (filter-buffer-substring-functions)
7302 (completion-list-insert-choice-function):
7303 * window.el (window-with-parameter, window-atom-root)
7304 (window-sides-slots, window-size-fixed, window-min-delta)
7305 (window-max-delta, window--resize-mini-window)
7306 (window--resize-child-windows-normal, window-tree)
7307 (delete-other-windows, quit-window, split-window)
7308 (display-buffer-record-window, special-display-buffer-names)
7309 (special-display-regexps, special-display-popup-frame)
7310 (same-window-p, split-window-sensibly)
7311 (display-buffer-overriding-action, display-buffer-alist)
7312 (display-buffer-base-action, display-buffer, switch-to-buffer)
7313 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
7314 (fit-window-to-buffer, recenter-positions)
7315 (mouse-autoselect-window-state, mouse-autoselect-window-select):
7316 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
7317 and remove unneeded backslashes in docstrings.
7319 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
7321 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
7323 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
7324 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
7326 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
7327 when reading the makefile (bug#10116).
7329 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
7331 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
7334 2011-12-06 Glenn Morris <rgm@gnu.org>
7336 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
7338 2011-12-06 Chong Yidong <cyd@gnu.org>
7340 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
7342 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
7344 * textmodes/table.el (table-shorten-cell): Fix typo.
7346 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
7348 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
7350 2011-12-05 Eli Zaretskii <eliz@gnu.org>
7352 * descr-text.el (describe-char): Fix display of strong
7353 right-to-left characters and directional embeddings and overrides.
7355 * simple.el (what-cursor-position): Fix display of codepoints of
7356 strong right-to-left characters.
7358 2011-12-05 Chong Yidong <cyd@gnu.org>
7360 * faces.el (read-color): Doc fix.
7362 2011-12-05 Glenn Morris <rgm@gnu.org>
7364 * align.el (align--set-marker): Add doc-string.
7365 Don't try to move something that is not a marker. (Bug#10216)
7367 2011-12-04 Glenn Morris <rgm@gnu.org>
7369 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
7370 overly zealous deletion of trailing whitespace.
7372 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
7374 * server.el (server-delete-client): On Windows, do not try to delete
7376 (server-process-filter): On Windows, treat requests for a tty frame as
7377 if they were for a GUI frame if the running server is in GUI mode.
7379 2011-12-03 Glenn Morris <rgm@gnu.org>
7381 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
7383 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
7385 * electric.el: Streamline electric-indent's hook.
7386 (electric-indent-chars): Revert to simple list.
7387 (electric-indent-functions): New var.
7388 (electric-indent-post-self-insert-function): Use it.
7390 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
7391 there's no inferior buffer (bug#10196).
7392 (prolog-consult-compile): Don't use toggle-read-only.
7394 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
7396 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
7397 interrupt. (Bug#10187)
7399 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
7401 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
7404 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
7407 2011-12-02 Juri Linkov <juri@jurta.org>
7409 * info.el (Info-search): Display "end of manual" when Isearch
7410 reaches the end of single-file Info manual. (Bug#9918)
7412 2011-12-02 Eli Zaretskii <eliz@gnu.org>
7414 * isearch.el (isearch-message-prefix): Run the input method part
7415 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
7417 2011-12-02 Juri Linkov <juri@jurta.org>
7419 * isearch.el (isearch-occur): Use `word-search-regexp' for
7421 (isearch-search-and-update): Add condition for `isearch-word' and
7422 call `word-search-regexp'. (Bug#10145)
7424 2011-12-01 Glenn Morris <rgm@gnu.org>
7426 * eshell/em-hist.el (eshell-hist-initialize):
7427 Handle eshell-history-size nil and HISTSIZE set or unset.
7428 (eshell-history-file-name, eshell-history-size): Fix custom type.
7430 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
7432 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
7434 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
7436 * progmodes/verilog-mode.el (verilog-pretty-expr):
7437 Rework verilog-pretty-expr to handle new assignment operators in system
7438 verilog, such as += *= and the like.
7439 (verilog-assignment-operator-re): Regular expression to find the
7440 assigment operator in a verilog assignment.
7441 (verilog-assignment-operation-re): Regular expression to find an
7442 assignment statement for pretty-expr.
7443 (verilog-in-attribute-p): Query returns true if point is in an
7444 attribute context; used to skip these for expression line up from
7446 (verilog-in-parameter-p): Query returns true if point is in an
7447 parameter definition context; used to skip these for expression
7448 line up from pretty-expr.
7449 (verilog-in-parenthesis-p): Query returns true if point is in a
7450 parenthetical expression, specifically ( ) but not [ ] or { };
7451 used by pretty-expr.
7452 (verilog-just-one-space): If there is no space, don't add one.
7453 (verilog-get-lineup-indent-2): Specifically skip just attribute
7454 contexts for expression lineup, rather than skipping all
7455 parenthetical expressions.
7456 (verilog-calculate-indent): Fix comment, and fix indent.
7457 (verilog-do-indent): Indent declarations in lists (suggested by
7459 (verilog-mode-abbrev-table): Populate abbrev mode with the various
7461 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
7464 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
7466 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
7467 parameters with embedded comments. Reported by Ray Stevens.
7468 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
7469 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
7470 Reported by Tim Holt.
7471 (verilog-auto): Fix AUTOing a upper module then AUTOing module
7472 instantiated by upper module causing wrong expansion until AUTOed a
7473 second time. Reported by K C Buckenmaier.
7474 (verilog-diff-auto): Fix showing .* as a difference when
7475 `verilog-auto-star-save' off. Reported by Dan Dever.
7476 (verilog-auto-reset, verilog-read-always-signals)
7477 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
7478 temporary signals in reset list if
7479 verilog-auto-reset-blocking-in-non is nil, and match assignment
7480 style to each signal's assignment type, bug381.
7481 Reported by Thomas Esposito.
7482 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
7483 (verilog-uvm-statement-re): Support UVM indentation and
7484 highlighting, with old OVM keywords only.
7485 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
7486 Support AUTOTIEOFF creating non-wire data types.
7487 Suggested by Jonathan Greenlaw.
7488 (verilog-auto-insert-lisp, verilog-delete-to-paren)
7489 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
7490 (verilog-inject-sense, verilog-read-inst-pins)
7491 (verilog-read-sub-decls, verilog-read-sub-decls-line):
7492 Fix mismatching parenthesis inside commented out code when deleting
7493 AUTOINST, bug383. Reported by Jonathan Greenlaw.
7494 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
7495 non-numeric vector width. Reported by Alex Reed.
7496 (verilog-auto-ascii-enum): Add "onehot" option to work around not
7497 detecting signals with parameter widths. Reported by Alex Reed.
7498 (verilog-auto-delete-trailing-whitespace):
7499 With `verilog-auto-delete-trailing-whitespace' remove trailing
7500 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
7501 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
7502 Fix verilog-scan-cache corruption when running user AUTO expansion
7503 hooks that call indentation routines.
7504 (verilog-simplify-range-expression): Fix typo ignoring lower case
7506 (verilog-delete-auto): Fix delete-autos to also remove user created
7507 automatics, as long as they start with AUTO.
7508 (verilog-batch-diff-auto, verilog-diff-auto)
7509 (verilog-diff-function): Add `verilog-diff-auto' and bind to
7510 "C-c?" to report differences in AUTO expansion, ignoring spaces.
7511 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
7512 (verilog-in-paren-quick, verilog-re-search-backward-quick)
7513 (verilog-re-search-forward-quick, verilog-syntax-ppss):
7514 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
7515 is disabled and its cache will get corrupt, causing AUTOS not to
7516 expand. Instead use only -quick functions.
7517 (verilog-scan-region): Fix scanning over escaped quotes.
7518 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
7519 (verilog-re-search-backward-quick)
7520 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
7521 related functions now ignore strings, to fix misparsing of strings
7522 with magic comments embedded in them.
7523 (verilog-read-auto-template):
7524 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
7525 Reported by Brad Dobbie.
7526 (verilog-read-auto-template):
7527 Fix 'verilog-auto-inst-template-numbers' with comments.
7528 Reported by Brad Dobbie.
7529 (verilog-auto-inst, verilog-auto-inst-param)
7530 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
7531 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
7532 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
7533 debugging templates without merge conflicts, bug357.
7534 Reported by Brad Dobbie.
7535 (verilog-read-auto-template):
7536 Fix verilog-auto-inst-template-numbers with multiple templates.
7537 Reported by Brad Dobbie.
7538 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
7539 abbrevs so user won't be asked to save.
7540 (verilog-read-auto-lisp-present): Fix to start at beginning of
7541 buffer in case called outside of verilog-auto.
7542 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
7543 to "X-2". Reported by Matthew Myers.
7544 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
7545 all inputs from module templates. Reported by Leith Johnson.
7546 (verilog-module-inside-filename-p): Fix locating programs as with
7548 (verilog-auto-inst-port): Fix vl-width expressions when using
7549 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
7550 (verilog-decls-get-regs, verilog-decls-get-signals,
7551 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
7552 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
7553 verilog-read-decls): Combine reg and wire structures into one var
7554 structure to represent SystemVerilog concepts.
7555 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
7556 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
7557 (verilog-auto-wire-type, verilog-insert-definition):
7558 Add verilog-auto-wire-type and AUTOLOGIC to support using
7559 SystemVerilog "logic" keyword instead of "wire"/"reg".
7560 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
7561 to declares outputs that also have assignments (presumably in an
7562 ifdef or generate if so there's not a driver conflict).
7563 Reported by Matthew Myers.
7564 (verilog-auto-declare-nettype, verilog-insert-definition):
7565 Add verilog-auto-declare-nettype to fix declarations using
7566 `default_nettype none. Reported by Julian Gorfajn.
7567 (verilog-read-always-signals-recurse, verilog-read-decls)
7568 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
7569 malformed end statement, bug325. Reported by Joshua Wise and
7571 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
7572 (verilog-inst-comment-re): Fix not deleting Interfaced comment
7573 when expanding .* in interfaces, bug320.
7574 Reported by Pierre-David Pfister.
7575 (verilog-read-module-name): Fix import statements between module
7576 name and open parenthesis, bug317.
7577 Reported by Pierre-David Pfister.
7578 (verilog-simplify-range-expression): Fix simplification of
7579 multiplications inside AUTOWIRE connections, bug303.
7580 (verilog-auto-inst-port): Support parameter expansion in
7581 multidimensional arrays.
7582 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
7583 after "assert property". Reported by Julian Gorfajn.
7584 (verilog-simplify-range-expression): Fix "couldn't merge" errors
7585 with multiplication, bug303.
7586 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
7587 Reported by Jan Frode Lonnum.
7589 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
7591 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
7592 (hfy-shell-file-name, hfy-shell):
7593 * international/fontset.el (x-decompose-font-name): Fix typos.
7595 2011-11-29 Ken Brown <kbrown@cornell.edu>
7597 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
7598 (gdb-version): Remove defvar.
7599 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
7600 (gdb-gud-context-command, gdb-non-stop-handler)
7601 (gdb-current-context-command, gdb-stopped): Use it.
7602 (gdb-init-1): Enable pretty printing here.
7603 (gdb-non-stop-handler): Don't enable pretty-printing here.
7604 Check to see if the target supports non-stop mode; if not, turn off
7605 non-stop mode. Use the following.
7606 (gdb-check-target-async): New defun.
7607 (gud-watch, gdb-stopped): Fix whitespace.
7608 (gdb-get-source-file): Don't try to display the source file if
7609 `gdb-main-file' is nil.
7611 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7613 * align.el: Try to generate fewer markers (bug#10047).
7614 (align--set-marker): New macro.
7615 (align-region): Use it.
7617 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
7619 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
7621 2011-11-29 Chong Yidong <cyd@gnu.org>
7623 * indent.el (indent-for-tab-command, indent-according-to-mode):
7625 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
7627 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
7629 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
7630 aware of remote file names. (Bug#10124)
7632 2011-11-29 Chong Yidong <cyd@gnu.org>
7634 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
7636 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
7638 * files.el (find-file): Don't use force-same-window (bug#10144).
7639 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
7640 use pop-to-buffer if the selected window can't be used.
7641 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
7643 2011-11-28 Eli Zaretskii <eliz@gnu.org>
7645 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
7648 2011-11-28 Chong Yidong <cyd@gnu.org>
7650 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
7652 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
7654 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
7655 gdb-get-source-file-list on gdb-create-source-file-list.
7657 2011-11-26 Eli Zaretskii <eliz@gnu.org>
7659 * whitespace.el (whitespace-newline): Use a different foreground
7660 color for 16-color light-background displays.
7662 2011-11-24 Chong Yidong <cyd@gnu.org>
7664 * window.el (display-buffer--special-action): Doc fix.
7666 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
7668 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
7669 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
7670 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
7671 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
7672 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
7673 (avl-tree-stack-first):
7674 * emacs-lisp/cconv.el (cconv--analyse-use):
7675 * net/gnutls.el (gnutls-negotiate): Fix typos.
7677 2011-11-24 Glenn Morris <rgm@gnu.org>
7679 * lpr.el (lpr-windows-system, lpr-lp-system):
7680 * mail/binhex.el (binhex-begin-line):
7681 * progmodes/grep.el (grep-history, grep-find-history):
7682 * textmodes/flyspell.el:
7683 * vc/pcvs-defs.el (cvs-global-menu):
7684 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
7685 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
7686 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
7688 * net/tls.el: Fix case of "GnuTLS".
7690 * paths.el (rmail-file-name): Format doc-string for make-docfile.
7692 * version.el (emacs-build-system): Give it a doc-string.
7694 2011-11-24 Juri Linkov <juri@jurta.org>
7696 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
7698 2011-11-24 Glenn Morris <rgm@gnu.org>
7700 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
7701 if called on a non-mime message just toggle the headers. (Bug#8006)
7703 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
7705 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
7706 (allout-lead-with-comment-string, allout-structure-deleted-hook)
7707 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
7708 (allout-rebullet-heading, allout-open-sibtopic)
7709 (allout-toggle-current-subtree-encryption)
7710 (allout-toggle-subtree-encryption, allout-encrypt-string)
7711 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
7712 (allout-distinctive-bullets-string, allout-auto-activation):
7713 * window.el (window-normalize-buffer-to-display):
7714 * progmodes/verilog-mode.el (verilog-batch-indent):
7715 * textmodes/bibtex.el (bibtex-field-braces-opt)
7716 (bibtex-field-strings-opt):
7717 * vc/cvs-status.el (cvs-tree-merge):
7720 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
7722 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
7723 `non-essential' to t, in order to avoid remote connections.
7725 2011-11-23 Eli Zaretskii <eliz@gnu.org>
7727 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7728 On MS-DOS and MS-Windows, compare with loaddefs.el
7731 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7733 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
7735 2011-11-23 Glenn Morris <rgm@gnu.org>
7737 * paths.el (rmail-file-name): Reformat the doc-string so that it
7740 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
7741 (rmail-auto-file): Ignore case in the "special" field names,
7742 as mail-fetch-field does for all others.
7744 * mail/rmail.el (rmail-forward):
7745 * mail/rmailkwd.el (rmail-set-label):
7746 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
7747 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
7749 * mail/rmail.el (rmail-current-message): Doc fix.
7751 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
7753 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7755 * server.el (server-eval-and-print): Allow C-g (bug#6585).
7757 2011-11-22 Glenn Morris <rgm@gnu.org>
7759 * mail/rmailmm.el (test-rmail-mime-handler)
7760 (test-rmail-mime-bulk-handler)
7761 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
7763 2011-11-21 Juri Linkov <juri@jurta.org>
7765 * calc/calc.el (calc-read-key-sequence):
7766 Let-bind `input-method-function' to nil. (Bug#10018)
7768 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7770 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
7771 Tell the caller that the next line needs recomputation, even
7772 though it doesn't start a sexp (bug#10094).
7774 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7776 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
7778 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7780 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7781 Use force-same-window.
7783 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7785 * descr-text.el (describe-char-unicode-data):
7786 * json.el (json-string-escape):
7787 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
7788 (Footnote-unicode, Footnote-style-p):
7789 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
7791 2011-11-20 Chong Yidong <cyd@gnu.org>
7793 * window.el (replace-buffer-in-windows): Restore interactive spec.
7795 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7797 * electric.el (electric-indent-mode): Fix last change (too optimistic).
7799 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
7800 (byte-compile-global-not-obsolete-vars): New var.
7801 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
7803 (byte-compile-warn-obsolete): Align text with the one in *Help*.
7805 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7807 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
7808 * progmodes/pascal.el (electric-pascal-equal):
7809 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
7810 * xml.el (xml-substitute-special): Fix typos.
7812 2011-11-20 Glenn Morris <rgm@gnu.org>
7814 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
7815 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
7817 (rmail-decode-mime-charset): Mark as obsolete.
7819 * mail/rmailsum.el (rmail-message-regexp-p-1):
7820 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
7821 Before using mime functions, check they are set. (Bug#10077)
7823 2011-11-19 Juri Linkov <juri@jurta.org>
7825 * info.el (Info-finder-find-node): Use `package--builtins' instead
7826 of `package-alist'. Use node names formed by the pattern "Keyword "
7827 and the keyword name.
7829 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7831 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
7833 2011-11-19 Juri Linkov <juri@jurta.org>
7835 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
7836 that calls `revert-buffer' on all Info buffers. (Bug#9915)
7837 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
7838 `old-history', `old-history-forward'. Add let-binding
7839 `window-selected'. Remove calls to `kill-buffer',
7840 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
7841 before calling `Info-find-node', so `Info-find-node-2' will reread
7842 the Info file. Restore window positions only when `window-selected'
7845 2011-11-19 Juri Linkov <juri@jurta.org>
7847 * isearch.el (isearch-lazy-highlight-new-loop):
7848 Remove condition `(not isearch-error)'. (Bug#9918)
7850 * misearch.el (multi-isearch-search-fun): Add condition
7851 `(not bound)' to ignore lazy-highlighting search.
7852 Add the search-failed message "end of multi" when the end of
7853 multi-sequence is reached. Uncapitalize the search-failed
7854 message "Repeat for next buffer".
7856 * info.el (Info-search): Add the search-failed message
7857 "end of the manual" when the end of the manual is reached
7860 2011-11-19 Juri Linkov <juri@jurta.org>
7862 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
7863 Use non-destructive `remove' instead of `delete' because
7864 `Info-history-list' stored to `Info-isearch-initial-history-list' in
7865 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
7867 2011-11-19 Juri Linkov <juri@jurta.org>
7869 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
7870 to nil instead of binding `search-ring' and `regexp-search-ring'.
7873 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7875 * simple.el (line-move): Force movement by logical lines for any
7876 hscrolled window, not only when auto-hscroll-mode is on.
7877 (line-move-visual): Update doc string to that effect. (Bug#10076)
7879 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7881 * language/european.el (macintosh): Define as alias for mac-roman.
7883 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7885 * mail/rmailmm.el (rmail-mime-display-header)
7886 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
7887 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
7888 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
7889 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
7890 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
7892 (rmail-mime-entity-segment): To get past the tagline, move forward
7893 2 more lines, to account for the 2 empty lines that precede and
7894 follow the line with the buttons.
7895 (rmail-mime-update-tagline): Move one more line, to get past the
7896 empty line that follows the buttons in the tagline. (Bug#9520)
7898 2011-11-19 Martin Rudalics <rudalics@gmx.at>
7900 * window.el (window-max-delta-1, window-min-delta-1)
7901 (window-min-size-1, window-state-get-1, window-state-put-1)
7902 (window-state-put-2): Use "window--" prefix.
7904 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7906 * emacs-lisp/smie.el: Improve warnings and conflict detection.
7907 (smie-warning-count): New var.
7908 (smie-set-prec2tab): Use it.
7909 (smie-bnf->prec2): Improve warnings. Add docstring.
7910 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
7911 (smie-bnf--set-class): New function.
7912 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
7915 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
7916 (compilation-error-properties, compilation-move-to-column):
7917 Handle compilation-first-column while in the target buffer.
7919 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
7920 Don't hardcode point-min==1.
7922 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
7923 (eshell-rewrite-for-command): Remove workaround.
7924 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
7925 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
7926 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
7928 * files-x.el (modify-file-local-variable): Obey commenting conventions.
7930 2011-11-17 Glenn Morris <rgm@gnu.org>
7932 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7933 Ignore buffer-local generated-autoload-file if it is the same
7934 as the global value. (Bug#10049)
7936 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
7938 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
7939 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
7940 (reftex-toc-previous-heading, reftex-toc-max-level)
7941 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
7942 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
7943 (reftex-toc-do-promote, reftex-toc-promote-prepare)
7944 (reftex-toc-promote-action, reftex-toc-extract-section-number)
7945 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
7946 (reftex-toc-rename-label, reftex-toc-visit-location)
7947 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7948 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7949 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7950 leaving "*toc*" only for references to the buffer.
7952 2011-11-17 Martin Rudalics <rudalics@gmx.at>
7954 * window.el (window-resize, delete-window, split-window):
7955 Replace window-splits by window-combination-resize.
7956 * cus-start.el (window-splits): Replace by window-combination-resize.
7958 2011-11-17 Glenn Morris <rgm@gnu.org>
7960 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7961 Make bash entry derive from sh entry, not shell entry.
7963 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
7965 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7968 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
7970 * menu-bar.el (menu-bar-file-menu):
7971 * printing.el (pr-ps-utility):
7972 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7973 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7974 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7975 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7976 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7977 (icalendar--convert-cyclic-to-ical)
7978 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7979 (icalendar--convert-ical-to-diary)
7980 (icalendar--convert-recurring-to-diary)
7981 (icalendar--convert-non-recurring-all-day-to-diary)
7982 (icalendar-import-format-sample):
7983 * progmodes/idlw-shell.el (idlwave-shell-mode):
7984 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7985 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7986 (vhdl-ps-print-init): Fix typos.
7988 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7990 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7991 FSF and collapse date sequence, obscure author/maintainer email address
7992 better, remove extra version line, track relocation of author's webpage.
7994 * progmodes/python.el (python-pdbtrack-input-prompt)
7995 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7996 regular python pdb prompts. Adjustments shamelessly taken exactly as
7997 suggested in EmacsWiki page (tiny change):
7998 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8000 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
8002 * expand.el (expand-pos, expand-index, expand-point):
8003 Remove redundant info from docstring.
8004 (expand-add-abbrevs): Doc fix.
8005 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
8006 (expand-sample-perl-mode-expand-list): Fix typos.
8008 * net/dbus.el (dbus-event-member-name):
8009 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
8010 * term/pc-win.el (msdos-create-frame-with-faces):
8011 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
8013 2011-11-16 Martin Rudalics <rudalics@gmx.at>
8015 * window.el (split-window, window-state-get-1)
8016 (window-state-put-1, window-state-put-2): Rename occurrences of
8017 window-nest to window-combination-limit.
8018 * cus-start.el (window-nest): Rename to window-combination-limit.
8020 2011-11-16 Chong Yidong <cyd@gnu.org>
8022 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
8025 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8027 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
8028 `completing-read' will remove *Completions* and will preserve
8029 current-buffer for us.
8030 (tmm-add-prompt): Users of *Completions* will always (re)set its
8032 (tmm-old-comp-map): Remove.
8034 2011-11-16 Glenn Morris <rgm@gnu.org>
8036 * mail/rmailedit.el: Require rmailmm when compiling.
8037 (rmail-old-mime-state): New declaration.
8038 (rmail-edit-current-message): If editing a mime message,
8039 edit the "raw" message from the mbox buffer.
8040 (rmail-cease-edit): Handle mime messages. (Bug#9840)
8042 2011-11-15 Glenn Morris <rgm@gnu.org>
8044 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
8045 which wasn't being used. Add optional arg to force given state.
8046 (rmail-mime): Add optional arg to force given state.
8048 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8050 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8051 * frame.el (display-mm-dimensions-alist):
8052 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
8053 (outline-move-subtree-down):
8054 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
8055 (newsticker--treeview-do-get-node):
8056 * net/quickurl.el (quickurl-list-buffer-name):
8057 * progmodes/dcl-mode.el (dcl-mode):
8058 * progmodes/gdb-mi.el (gdb-mapcar*):
8059 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
8061 2011-11-15 Glenn Morris <rgm@gnu.org>
8063 * mail/rmail.el (rmail-file-coding-system): It's only ever used
8064 in a boolean sense, so just make it a boolean, and fix the doc.
8065 (rmail-show-mime-function, rmail-mime-feature)
8066 (rmail-require-mime-maybe): Doc fixes.
8067 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
8069 * mail/rmailmm.el (rmail-show-mime): Doc fix.
8071 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
8073 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
8074 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
8075 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
8076 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
8078 2011-11-15 Glenn Morris <rgm@gnu.org>
8080 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
8081 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
8082 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
8083 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
8084 (rmail-mime, rmail-show-mime): Doc fixes.
8086 * term/ns-win.el (mode-line-frame-identification):
8087 Leave it alone. (Bug#10051)
8089 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
8091 * mail/rmailout.el (rmail-output-to-rmail-buffer):
8092 Handle empty buffers. (Bug#9978)
8094 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
8096 * international/mule.el (define-charset):
8097 * mail/rmailmm.el (rmail-mime-find-header-encoding):
8098 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
8099 * progmodes/verilog-mode.el (verilog-backward-token):
8100 * textmodes/ispell.el (lookup-words):
8101 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
8103 2011-11-14 Glenn Morris <rgm@gnu.org>
8105 * progmodes/executable.el
8106 (executable-make-buffer-file-executable-if-script-p):
8107 Handle file-modes returning nil.
8109 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
8110 message - not necessary, and causes problems. (Bug#9831)
8112 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
8114 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
8116 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
8117 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
8118 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
8120 2011-11-12 Martin Rudalics <rudalics@gmx.at>
8122 * window.el (window-resize, delete-window): Use window-splits
8123 variable instead of function.
8124 (window-state-get-1, window-state-put-2, window-state-put):
8125 Don't deal with windows' splits status.
8127 2011-11-12 Glenn Morris <rgm@gnu.org>
8129 * apropos.el (apropos-do-all, apropos-library, apropos-value)
8130 (apropos-documentation): Doc fixes.
8132 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
8134 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
8135 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
8137 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
8139 * electric.el (electric-indent-post-self-insert-function): Make it
8140 possible for a char to only indent in some circumstances.
8141 (electric-indent-mode): Simplify.
8143 2011-11-11 Martin Rudalics <rudalics@gmx.at>
8145 * window.el (windows-with-parameter): Remove unused function.
8146 (windows-at-side): Rename to window-at-side-list.
8147 (window-check, window-atom-check, window-atom-check-1)
8148 (window-side-check, window-size-ignore, window-size-fixed-1)
8149 (window-in-direction-2): Prefix with "window--".
8150 (window-tree-1): Rename to window--subtree, fix doc-string.
8152 2011-11-11 Glenn Morris <rgm@gnu.org>
8154 * subr.el (eval-after-load): If FILE is already loaded,
8155 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
8157 2011-11-10 Glenn Morris <rgm@gnu.org>
8159 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
8160 Call svn via vc-svn-command rather than vc-do-command.
8161 (vc-svn-command): Add --non-interactive. (Bug#9993)
8162 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
8164 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8165 Add toggle-read-only. (Bug#7292)
8166 * files.el (toggle-read-only): Mention that it should only
8167 be used interactively. (Bug#10006)
8169 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
8171 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8172 Adjust regexp for OCaml warnings.
8174 * electric.el (electric-pair-post-self-insert-function): Let user
8175 turn it off buffer-locally (bug#9932).
8177 * progmodes/python.el (python-beginning-of-statement):
8180 * progmodes/compile.el: Better handle TABs (bug#9749).
8181 (compilation-internal-error-properties)
8182 (compilation-next-error-function): Obey the target buffer's
8183 compilation-error-screen-columns.
8185 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
8187 * progmodes/meta-mode.el: Remove obsolete comments.
8188 (meta-right-comment-regexp, meta-ignore-comment-regexp):
8189 Fix typos in docstrings.
8191 2011-11-09 Martin Rudalics <rudalics@gmx.at>
8193 * window.el (window-size-fixed-p): Rewrite doc-string.
8194 (window-resizable-p): Rename to window--resizable-p. Update callers.
8195 (window--resizable): New function. Make all callers of
8196 window-resizable call window--resizable instead.
8197 (window-resizable): Rewrite in terms of window--resizable.
8199 2011-11-08 Glenn Morris <rgm@gnu.org>
8201 * progmodes/delphi.el (delphi-mode-syntax-table):
8202 Let define-derived-mode define a proper syntax table. (Bug#9994)
8204 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8206 * window.el: Stay away from defsubst.
8207 (window-list-no-nils): Remove.
8208 (window-state-get-1, window-state-get): Use backquote instead.
8210 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8212 * emacs-lisp/find-func.el (find-function-read):
8213 Fix incorrect use of default argument in `completing-read'.
8215 2011-11-08 Martin Rudalics <rudalics@gmx.at>
8217 * window.el (display-buffer-function, special-display-function):
8218 Mention display-buffer-record-window but do not mention
8219 help-setup parameter in doc-strings.
8220 (window-min-delta): Fix doc-string typo.
8222 2011-11-08 Chong Yidong <cyd@gnu.org>
8224 * window.el (window-total-height, window-total-width): Doc fix.
8225 (window-body-size): Move from C.
8226 (window-body-height, window-body-width): Move to C.
8228 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8230 * window.el: Make special-display like display-buffer-alist (bug#9532).
8231 (display-buffer--special-action): New function, morphed
8232 from display-buffer--special.
8233 (display-buffer): Use it to handle special-display-buffers at higher
8234 priority (just after display-buffer-alist).
8235 (display-buffer-fallback-action, display-buffer--other-frame-action)
8236 (pop-to-buffer-same-window): Remove display-buffer--special.
8238 2011-11-07 Glenn Morris <rgm@gnu.org>
8240 * calendar/cal-menu.el (cal-menu-set-date-title):
8241 Do nothing if not in a calendar. (Bug#9976)
8243 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
8245 * files.el (find-file): Always use selected-window.
8247 2011-11-07 Martin Rudalics <rudalics@gmx.at>
8249 * window.el (window-combinations): Make WINDOW argument
8250 mandatory. Rewrite doc-string.
8251 (walk-window-subtree, window-atom-check, window-min-delta)
8252 (window-max-delta, window--resize-this-window)
8253 (window--resize-root-window-vertically, window-tree)
8254 (balance-windows, window-state-put): Rewrite doc-strings as to
8255 not mention the term "subwindow".
8256 (window--resize-subwindows-skip-p): Rename to
8257 window--resize-child-windows-skip-p.
8258 (window--resize-subwindows-normal): Rename to
8259 window--resize-child-windows-normal.
8260 (window--resize-subwindows): Rename to
8261 window--resize-child-windows.
8262 (window-or-subwindow-p): Rename to window--in-subtree-p.
8264 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8266 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
8267 Ensure that mbox format messages end in two newlines (Bug#9974).
8269 2011-11-06 Chong Yidong <cyd@gnu.org>
8271 * window.el (window-combination-p): Function deleted; its
8272 side-effect is not used in any existing code.
8273 (window-combinations, window-combined-p): Call window-*-child
8276 2011-11-05 Chong Yidong <cyd@gnu.org>
8278 * window.el (window-valid-p): Rename from window-any-p.
8279 (window-size-ignore, window-state-get): Callers changed.
8280 (window-normalize-window): Rename from window-normalize-any-window.
8281 New arg LIVE-ONLY, replacing window-normalize-live-window.
8282 (window-normalize-live-window): Delete.
8283 (window-combination-p, window-combined-p, window-combinations)
8284 (walk-window-subtree, window-atom-root, window-min-size)
8285 (window-sizable, window-sizable-p, window-size-fixed-p)
8286 (window-min-delta, window-max-delta, window-resizable)
8287 (window-resizable-p, window-full-height-p, window-full-width-p)
8288 (window-current-scroll-bars, window-point-1, set-window-point-1)
8289 (window-at-side-p, window-in-direction, window-resize)
8290 (adjust-window-trailing-edge, maximize-window, minimize-window)
8291 (window-deletable-p, delete-window, delete-other-windows)
8292 (record-window-buffer, unrecord-window-buffer)
8293 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
8294 (quit-window, split-window, window-state-put)
8295 (set-window-text-height, fit-window-to-buffer)
8296 (shrink-window-if-larger-than-buffer): Callers changed.
8298 2011-11-04 Eli Zaretskii <eliz@gnu.org>
8300 * mail/rmail.el (rmail-simplified-subject): Decode subject with
8301 rfc2047-decode-string.
8302 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
8305 * window.el (window-body-height, window-body-width): Mention in
8306 the doc string that the return values are in frame's canonical
8309 2011-11-03 Alan Mackenzie <acm@muc.de>
8311 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
8312 change in cc-engine.el.
8314 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
8316 * window.el (switch-to-buffer): Use `force-same-window' interactively.
8318 2011-11-02 Martin Rudalics <rudalics@gmx.at>
8320 * window.el (quit-window): Call unrecord-window-buffer after
8321 showing another buffer in the window. (Bug#9937)
8322 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
8324 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
8326 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
8327 Accept status with more than 9 shelves. (Bug#9935)
8328 Reported by Colin D Bennett <colin@gibibit.com>.
8330 2011-11-01 Martin Rudalics <rudalics@gmx.at>
8332 * help.el (with-help-window): Don't reference
8333 temp-buffer-show-specifiers in doc-string.
8335 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
8337 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
8340 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8342 * whitespace.el: New version 13.2.2.
8343 (whitespace-newline-mode): Disable properly. Reported by Sarah
8346 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
8348 * net/newst-treeview.el: Remove "Time-stamp".
8349 (newsticker--group-manage-orphan-feeds): Do not call
8350 newsticker--treeview-tree-update.
8351 (newsticker-treeview-update, newsticker-treeview):
8352 Call newsticker--treeview-tree-update if necessary.
8354 2011-10-30 Martin Rudalics <rudalics@gmx.at>
8356 * window.el (window-iso-combination-p, window-iso-combined-p)
8357 (window-iso-combinations): Remove "iso-" infix.
8358 Suggested by Chong Yidong.
8359 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
8360 (window-max-delta-1, window-resize, window--resize-siblings)
8361 (window--resize-this-window, adjust-window-trailing-edge)
8362 (split-window, balance-windows-1)
8363 (shrink-window-if-larger-than-buffer):
8364 * calendar/calendar.el (calendar-generate-window):
8365 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
8367 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
8369 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
8370 in place (bug#9907).
8371 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
8372 (eshell-rewrite-if-command, eshell-rewrite-for-command)
8373 (eshell-structure-basic-command, eshell-rewrite-while-command)
8374 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
8375 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
8376 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
8377 (eshell-do-pipelines-synchronously, eshell-eval-command):
8378 Use backquotes and prefer setq to set.
8379 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
8380 (eshell-macrop): Use functionp.
8381 (eshell-do-eval): Handle multiple expressions in `while' body.
8383 2011-10-30 Chong Yidong <cyd@gnu.org>
8385 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
8386 instead of set-mark (Bug#9810).
8388 2011-10-30 Chong Yidong <cyd@gnu.org>
8390 * window.el (split-window-below, split-window-right): Rename from
8391 split-window-above-each-other and split-window-side-by-side
8392 respectively. All callers changed.
8393 (split-window-sensibly, split-window-sensibly): Use them.
8394 (split-window-keep-point): Doc fix.
8396 * isearch.el: Add isearch-scroll property to split-window-below
8397 and split-window-right.
8399 * follow.el (follow-mode):
8400 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8401 * progmodes/ada-xref.el (ada-gdb-application):
8402 * emulation/vip.el (vip-buffer-in-two-windows):
8403 * image-dired.el (image-dired-dired-with-window-configuration):
8404 * dired-x.el (dired-do-find-marked-files):
8405 * dired.el (dired-pop-to-buffer):
8406 * bs.el (bs--show-with-configuration):
8407 * vc/emerge.el (emerge-setup-windows):
8408 * textmodes/two-column.el (2C-two-columns):
8409 * textmodes/reftex-toc.el (reftex-toc):
8410 * progmodes/gdb-mi.el (gdb-setup-windows):
8411 * progmodes/fortran.el (fortran-window-create):
8412 * net/newst-treeview.el (newsticker--treeview-window-init):
8413 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
8414 * emulation/tpu-edt.el (tpu-gold-map):
8415 * emulation/crisp.el (crisp-mode-map):
8416 * calendar/calendar.el (calendar-basic-setup): Callers changed.
8418 2011-10-29 Chong Yidong <cyd@gnu.org>
8420 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
8422 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
8424 * textmodes/flyspell.el (flyspell-word): Fix char offset for
8425 forged Ispell output (Bug#7904).
8427 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
8429 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8431 * doc-view.el: Avoid ugly errors about not finding nil.
8432 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
8433 (doc-view-dvipdf-program, doc-view-unoconv-program)
8434 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
8435 Avoid nil or absolute file name as default value.
8436 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
8438 2011-10-28 Alan Mackenzie <acm@muc.de>
8440 * progmodes/cc-defs.el (c-version): -> 5.32.2.
8442 2011-10-28 Alan Mackenzie <acm@muc.de>
8444 Amend the handling of c-beginning/end-of-defun in nested declaration
8447 * progmodes/cc-vars.el (c-defun-tactic): Move here from
8448 cc-langs.el. Change it to a defcustom.
8450 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
8453 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8454 Prevent "class foo : bar" being spuriously recognized as a label.
8456 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
8457 Add parameter `inclusive' (to include enclosing braces in the region).
8458 (c-widen-to-enclosing-decl-scope): New function.
8459 (c-while-widening-to-decl-block): New macro.
8460 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
8461 outward for defun boundaries, and correspondingly change symbol
8462 `respect-enclosure' to `go-outward'.
8463 (c-declaration-limits): Change algorithm to report only the "innermost"
8466 2011-10-28 Deniz Dogan <deniz@dogan.se>
8468 * net/rcirc.el (rcirc-mode): Use hard newlines.
8470 2011-10-28 Alan Mackenzie <acm@muc.de>
8472 Amend to indent and fontify macros "which include their own semicolon"
8473 correctly, using the "virtual semicolon" mechanism.
8475 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
8477 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
8478 Recode to scan one line at a time rather than having \n and \r
8479 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
8480 (c-forward-label): Amend for virtual semicolons.
8481 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
8483 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
8484 of the new C macros.
8486 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
8487 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
8488 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
8489 (c-opt-cpp-macro-define): Make into a full language variable.
8490 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
8491 AWK Mode (including \n, \r) removed, no longer needed.
8493 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
8494 Invoke c-make-macro-with-semi-re.
8496 * progmodes/cc-vars.el (c-macro-with-semi-re):
8497 (c-macro-names-with-semicolon): New variables.
8498 (c-make-macro-with-semi-re): New function.
8500 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8502 * vc/log-edit.el: Fill empty field rather than adding new one.
8503 (log-edit-add-field): New function.
8504 (log-edit-insert-changelog): Use it.
8506 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8508 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
8510 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8512 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
8513 (gdb--check-interpreter): New function.
8516 2011-10-27 Glenn Morris <rgm@gnu.org>
8518 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
8519 (least-positive-float, least-negative-float)
8520 (least-positive-normalized-float, least-negative-normalized-float)
8521 (float-epsilon, float-negative-epsilon):
8522 Remove unnecessary declarations.
8524 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
8525 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
8526 (least-positive-float, least-negative-float)
8527 (least-positive-normalized-float, least-negative-normalized-float)
8528 (float-epsilon, float-negative-epsilon): Add doc-strings,
8529 based on those in cl.texi.
8531 * files.el (set-visited-file-name): If the major-mode changed,
8532 reload the local variables. (Bug#9796)
8534 2011-10-27 Chong Yidong <cyd@gnu.org>
8536 * subr.el (change-major-mode-after-body-hook): New hook.
8537 (run-mode-hooks): Run it.
8539 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8540 Use change-major-mode-before-body-hook.
8542 * simple.el (fundamental-mode):
8543 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
8544 change introducing fundamental-mode-hook.
8546 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
8548 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
8550 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
8552 * ido.el (ido-file-name-all-completions-1): Do not require
8553 tramp.el explicitly. (Bug#7583)
8555 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
8557 * progmodes/octave-mod.el:
8558 * progmodes/octave-inf.el: Update maintainer.
8560 2011-10-26 Chong Yidong <cyd@gnu.org>
8562 * subr.el (with-wrapper-hook): Rewrite doc.
8564 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
8566 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
8567 filenames "/method:foo:". (Bug#9793)
8569 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8571 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
8574 2011-10-24 Glenn Morris <rgm@gnu.org>
8576 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
8578 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
8580 * notifications.el: Add the requirement of a running D-Bus session
8581 bus to the Commentary.
8583 2011-10-24 Juri Linkov <juri@jurta.org>
8585 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
8586 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
8589 2011-10-24 Juri Linkov <juri@jurta.org>
8591 * info.el (Info-following-node-name-re): Add newline to the list
8592 of allowed characters for leading space. (Bug#9824)
8594 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
8596 * progmodes/octave-inf.el (inferior-octave-mode-map):
8597 Fix C-c C-h binding.
8598 * progmodes/octave-mod.el (octave-help): Remove.
8600 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
8602 Sync with Tramp 2.2.3.
8604 * net/tramp-cache.el (top): Pacify byte-compiler using
8605 `init-file-user' and `site-run-file'.
8607 * net/trampver.el: Update release number.
8609 2011-10-23 Chong Yidong <cyd@gnu.org>
8611 * files.el (toggle-read-only): Remove obsolete comment about
8614 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
8615 for toggle-read-only. Note that this hasn't called vc-next-action
8616 since 2008-05-02, though it wasn't documented at the time.
8618 * vc/ediff-init.el (ediff-toggle-read-only-function):
8619 Use toggle-read-only.
8621 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
8623 Fix bug #9560, sporadic wrong indentation; improve instrumentation
8626 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
8627 correct faulty logical expression.
8628 (c-parse-state-state, c-record-parse-state-state):
8629 (c-replay-parse-state-state): New defvar/defuns.
8630 (c-debug-parse-state): Use new functions.
8632 2011-10-22 Martin Rudalics <rudalics@gmx.at>
8634 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
8635 last fix. Use window-in-direction correctly.
8637 2011-10-21 Chong Yidong <cyd@gnu.org>
8639 * progmodes/idlwave.el (idlwave-mode):
8640 * progmodes/vera-mode.el (vera-mode): No need to set
8641 require-final-newline; that's done in prog-mode.
8642 Suggested by Stefan Monnier.
8644 2011-10-21 Martin Rudalics <rudalics@gmx.at>
8646 * mouse.el (mouse-drag-window-above)
8647 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
8648 (mouse-drag-mode-line-1, mouse-drag-header-line)
8649 (mouse-drag-vertical-line-rightward-window): Remove.
8650 (mouse-drag-line): New function.
8651 (mouse-drag-mode-line, mouse-drag-header-line)
8652 (mouse-drag-vertical-line): Call mouse-drag-line.
8653 * window.el (window-at-side-p, windows-at-side): New functions.
8655 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
8657 * tar-mode.el (tar-grind-file-mode):
8658 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
8660 2011-10-21 Chong Yidong <cyd@gnu.org>
8662 * progmodes/idlwave.el (idlwave-mode):
8663 * progmodes/vera-mode.el (vera-mode):
8664 Use mode-require-final-newline.
8666 2011-10-20 Glenn Morris <rgm@gnu.org>
8668 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
8670 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
8672 * emulation/cua-base.el (cua-set-mark): Fix case of string.
8674 2011-10-20 Chong Yidong <cyd@gnu.org>
8676 * emulation/cua-base.el (cua-mode):
8677 * mail/footnote.el (footnote-mode):
8678 * mail/mailabbrev.el (mail-abbrevs-mode):
8679 * net/xesam.el (xesam-minor-mode):
8680 * progmodes/bug-reference.el (bug-reference-mode):
8681 * progmodes/cap-words.el (capitalized-words-mode):
8682 * progmodes/compile.el (compilation-minor-mode)
8683 (compilation-shell-minor-mode):
8684 * progmodes/gud.el (gud-tooltip-mode):
8685 * progmodes/hideif.el (hide-ifdef-mode):
8686 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
8687 * progmodes/subword.el (subword-mode):
8688 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
8689 * progmodes/which-func.el (which-function-mode):
8690 * term/tvi970.el (tvi970-set-keypad-mode):
8691 * term/vt100.el (vt100-wide-mode):
8692 * textmodes/flyspell.el (flyspell-mode):
8693 * textmodes/ispell.el (ispell-minor-mode):
8694 * textmodes/nroff-mode.el (nroff-electric-mode):
8695 * textmodes/paragraphs.el (use-hard-newlines):
8696 * textmodes/refill.el (refill-mode):
8697 * textmodes/reftex.el (reftex-mode):
8698 * textmodes/rst.el (rst-minor-mode):
8699 * textmodes/sgml-mode.el (html-autoview-mode)
8700 (sgml-electric-tag-pair-mode):
8701 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
8702 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
8703 * emulation/crisp.el (crisp-mode):
8704 * emacs-lisp/eldoc.el (eldoc-mode):
8705 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
8706 minor mode behavior.
8708 2011-10-19 Juri Linkov <juri@jurta.org>
8710 * descr-text.el (describe-char): Add #x2010 and #x2011 to
8711 the list of hard-coded chars with escape-glyph face.
8713 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
8715 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
8717 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
8719 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
8722 2011-10-19 Glenn Morris <rgm@gnu.org>
8724 * vc/vc-bzr.el (vc-bzr-after-dir-status):
8725 Ignore ignored files. (Bug#9726)
8727 2011-10-19 Chong Yidong <cyd@gnu.org>
8729 Doc fix for minor modes, stating that an omitted argument enables
8730 the mode unconditionally when called from Lisp.
8732 * abbrev.el (abbrev-mode):
8733 * allout.el (allout-mode):
8734 * autoinsert.el (auto-insert-mode):
8735 * autoarg.el (autoarg-mode, autoarg-kp-mode):
8736 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
8737 (global-auto-revert-mode):
8738 * battery.el (display-battery-mode):
8739 * composite.el (global-auto-composition-mode)
8740 (auto-composition-mode):
8741 * delsel.el (delete-selection-mode):
8742 * desktop.el (desktop-save-mode):
8743 * dired-x.el (dired-omit-mode):
8744 * dirtrack.el (dirtrack-mode):
8745 * doc-view.el (doc-view-minor-mode):
8746 * double.el (double-mode):
8747 * electric.el (electric-indent-mode, electric-pair-mode):
8748 * emacs-lock.el (emacs-lock-mode):
8749 * epa-hook.el (auto-encryption-mode):
8750 * follow.el (follow-mode):
8751 * font-core.el (font-lock-mode):
8752 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
8753 * help.el (temp-buffer-resize-mode):
8754 * hilit-chg.el (highlight-changes-mode)
8755 (highlight-changes-visible-mode):
8756 * hi-lock.el (hi-lock-mode):
8757 * hl-line.el (hl-line-mode, global-hl-line-mode):
8758 * icomplete.el (icomplete-mode):
8759 * ido.el (ido-everywhere):
8760 * image-file.el (auto-image-file-mode):
8761 * image-mode.el (image-minor-mode):
8762 * iswitchb.el (iswitchb-mode):
8763 * jka-cmpr-hook.el (auto-compression-mode):
8764 * linum.el (linum-mode):
8765 * longlines.el (longlines-mode):
8766 * master.el (master-mode):
8767 * mb-depth.el (minibuffer-depth-indicate-mode):
8768 * menu-bar.el (menu-bar-mode):
8769 * minibuf-eldef.el (minibuffer-electric-default-mode):
8770 * mouse-sel.el (mouse-sel-mode):
8771 * msb.el (msb-mode):
8772 * mwheel.el (mouse-wheel-mode):
8773 * outline.el (outline-minor-mode):
8774 * paren.el (show-paren-mode):
8775 * recentf.el (recentf-mode):
8776 * reveal.el (reveal-mode, global-reveal-mode):
8777 * rfn-eshadow.el (file-name-shadow-mode):
8778 * ruler-mode.el (ruler-mode):
8779 * savehist.el (savehist-mode):
8780 * scroll-all.el (scroll-all-mode):
8781 * scroll-bar.el (scroll-bar-mode):
8782 * server.el (server-mode):
8783 * shell.el (shell-dirtrack-mode):
8784 * simple.el (auto-fill-mode, transient-mark-mode)
8785 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
8786 (line-number-mode, column-number-mode, size-indication-mode)
8787 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
8788 * strokes.el (strokes-mode):
8789 * time.el (display-time-mode):
8790 * t-mouse.el (gpm-mouse-mode):
8791 * tool-bar.el (tool-bar-mode):
8792 * tooltip.el (tooltip-mode):
8793 * type-break.el (type-break-mode-line-message-mode)
8794 (type-break-query-mode):
8795 * view.el (view-mode):
8796 * whitespace.el (whitespace-mode, whitespace-newline-mode)
8797 (global-whitespace-mode, global-whitespace-newline-mode):
8798 * xt-mouse.el (xterm-mouse-mode): Doc fix.
8800 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8801 Fix autogenerated docstring.
8803 2011-10-19 Juri Linkov <juri@jurta.org>
8805 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
8806 by checking environment variables "DESKTOP_SESSION" and
8807 "XDG_CURRENT_DESKTOP". (Bug#9779)
8809 2011-10-19 Juri Linkov <juri@jurta.org>
8811 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
8812 (browse-url-chromium-program, browse-url-chromium-arguments):
8814 (browse-url-default-browser): Check for `browse-url-chromium' and
8815 call `browse-url-chromium-program'.
8816 (browse-url-chromium): New command. (Bug#9779)
8818 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
8820 * facemenu.el (list-colors-duplicates): On Windows, detect more
8821 duplicates by assuming that only colors matching "^System" are
8822 special "system colors". (Bug#9722)
8824 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8826 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
8827 to distinguish the author from the committer.
8829 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
8831 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
8833 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
8835 * international/mule.el (sgml-html-meta-auto-coding-function):
8836 Add support for detecting encoding in HTML5 specified only as
8837 <meta charset="UTF-8">. Implementation just makes http-equiv and
8838 content-type parts from HTML4 encoding string optional. (Bug#9716)
8840 2011-10-18 Glenn Morris <rgm@gnu.org>
8842 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
8844 2011-10-18 Chong Yidong <cyd@gnu.org>
8846 * faces.el (cursor): Doc fix.
8848 2011-10-17 Chong Yidong <cyd@gnu.org>
8850 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
8852 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
8854 * dirtrack.el (dirtrack): Support shell buffers with path
8855 prefixes, e.g. tramp-based remote shells. (Bug#9647)
8857 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
8859 * json.el: Bump version to 1.3 and note change in History.
8860 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
8862 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8864 * comint.el (comint-insert-input, comint-send-input)
8865 (comint-get-old-input-default, comint-backward-matching-input)
8866 (comint-next-prompt): Use nil instead of `input' for field property of
8867 past user input (bug#114).
8869 * minibuffer.el (completion--replace): Inherit surrounding properties
8871 (minibuffer-complete-and-exit): Use it.
8873 * comint.el (comint--table-subvert): Quote the all-completions output
8876 2011-10-17 Martin Rudalics <rudalics@gmx.at>
8878 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
8880 * menu-bar.el (menu-bar-file-menu): Add entry for making new
8881 window on right of selected. (Bug#9350) Reword other window
8882 entries and separate them from frame entries.
8884 2011-10-15 Glenn Morris <rgm@gnu.org>
8886 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
8889 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
8891 * net/network-stream.el (network-stream-open-starttls):
8892 Improve detection of failure due to lack of TLS support.
8894 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
8895 putting the input text in front and in bold.
8897 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8899 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
8901 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
8904 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
8905 unread-command-events rather than pushing yet-another event.
8907 2011-10-14 Eli Zaretskii <eliz@gnu.org>
8909 * mail/sendmail.el (sendmail-query-once): Improve the wording of
8910 the explanation of the possible choices. Make the options passed
8911 to completing-read shorter.
8913 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8915 * textmodes/flyspell.el (flyspell-large-region): Make sure
8916 extended character mode is used if defined (Bug#1339).
8918 2011-10-13 Eli Zaretskii <eliz@gnu.org>
8920 * simple.el (what-cursor-position): Fix the display of the
8921 character info for LRE, LRO, RLE, and RLO characters by appending
8924 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8926 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
8927 even in case of error; add debug spec; simplify data flow.
8928 (with-timeout-handler): Remove.
8930 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
8932 Fix Bug#6019, Bug#9315.
8934 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
8935 complete `buffer-file-name', the local file name part could look
8936 remotely (for example on VMS).
8938 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
8939 `tramp-run-real-handler'.
8940 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
8941 already quoted by '"'.
8943 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
8944 Let `file-name-handler-alist' be nil, the local file name part
8945 could look remotely (for example on VMS).
8947 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8949 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8951 (flyspell-post-command-hook): ...to here.
8953 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8955 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8957 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8958 using completion. Protect against "slow" callers.
8959 Remove the "message hack".
8961 2011-10-11 Juri Linkov <juri@jurta.org>
8963 * isearch.el (isearch-lazy-highlight-word): New variable.
8964 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8967 2011-10-11 Glenn Morris <rgm@gnu.org>
8969 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8970 like f90-previous-statement does.
8972 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8974 * eshell/eshell.el (eshell-command): History should be saved
8975 only in interactive use, to avoid error.
8977 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8979 * minibuffer.el (completion-file-name-table): Fix last change,
8980 i.e. ignore normal errors but not the other ones.
8982 2011-10-10 Martin Rudalics <rudalics@gmx.at>
8984 * window.el (special-display-buffer-names)
8985 (special-display-regexps): Remove some remnants of earlier
8986 changes from doc-strings.
8987 (quit-windows-on): New function.
8989 * vc/vc.el (vc-revert, vc-rollback):
8990 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8991 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
8992 (Bug#6183) (Bug#7074) (Bug#7447)
8994 2011-10-09 Martin Rudalics <rudalics@gmx.at>
8996 * window.el (frame-auto-hide-function): Add version tag.
8999 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
9001 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
9004 2011-10-09 Leo Liu <sdl.web@gmail.com>
9006 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
9009 2011-10-08 Glenn Morris <rgm@gnu.org>
9011 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
9012 before the first code statement zero indent. (Bug#9690)
9014 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
9016 * simple.el (count-words-region): Always count in the region.
9017 Report the number of lines and characters too.
9018 (count-words): New command, which counts in the buffer if the
9019 region is inactive, as count-words-region used to.
9020 (count-words--message): New function. Handle plurals.
9021 (count-lines-region): Make it an alias for count-words-region.
9023 * bindings.el (esc-map): Replace count-lines-region with
9026 2011-10-08 Martin Rudalics <rudalics@gmx.at>
9028 * window.el (window--delete): Delete dedicated frame
9029 unconditionally when argument KILL is non-nil. (Bug#9699)
9030 (switch-to-buffer): Fix doc-string typo.
9032 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9034 * eshell/eshell.el (eshell-command): Avoid using hooks.
9036 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
9038 * bindings.el ([M-left],[M-right]): Bind to left-word and
9039 right-word respectively.
9041 2011-10-07 Glenn Morris <rgm@gnu.org>
9043 * cus-start.el (debug-on-quit): Fix custom type.
9045 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9047 * subr.el (define-key-after): Clarify that the function is not
9048 useful for non-menu keymaps.
9050 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
9052 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9054 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
9055 in current minibuffer (Fix bug with recursive minibuffers).
9057 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
9059 * progmodes/gdb-mi.el (gdb): Doc fix.
9061 2011-10-05 Martin Rudalics <rudalics@gmx.at>
9063 * window.el (frame-auto-hide-function): New option replacing
9064 frame-auto-delete. Suggested by Stefan Monnier.
9065 (window--delete): Call frame-auto-hide-function instead of
9066 investigating frame-auto-delete.
9067 (window-point-1, set-window-point-1): New functions.
9068 (window-in-direction, record-window-buffer, window-state-get-1)
9069 (display-buffer-record-window): Use window-point-1 instead of
9071 (set-window-buffer-start-and-point): Use set-window-point-1.
9073 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9075 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
9077 2011-10-05 Glenn Morris <rgm@gnu.org>
9079 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
9080 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
9082 2011-10-05 Leo Liu <sdl.web@gmail.com>
9084 * subr.el (read-char-choice): Fix argument to buffer-live-p which
9085 works with buffer object.
9087 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9089 * mpc.el (mpc-tool-bar-map): Add labels.
9091 2011-10-04 Glenn Morris <rgm@gnu.org>
9093 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9095 2011-10-04 Martin Rudalics <rudalics@gmx.at>
9097 * window.el (window--delete): New function.
9098 (frame-auto-delete): Resuscitate option.
9099 (bury-buffer, replace-buffer-in-windows)
9100 (quit-window): Rewrite using window--delete.
9101 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9102 Pass display-buffer-mark-dedicated to window--display-buffer-2
9105 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9107 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
9108 returns a list (bug#9554). Add remote file name completion.
9109 * comint.el (comint--table-subvert): Curry and get quote&unquote
9110 functions as arguments.
9111 (comint--complete-file-name-data): Adjust call accordingly.
9112 * pcomplete.el (pcomplete--table-subvert): Remove.
9113 (pcomplete-completions-at-point): Use comint--table-subvert instead.
9115 * minibuffer.el (completion-table-case-fold): Use currying.
9116 (completion--styles-type, completion--cycling-threshold-type):
9118 (completion-styles, completion-category-overrides)
9119 (completion-cycle-threshold): Use them.
9120 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
9121 completion-table-case-fold.
9123 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
9125 * minibuffer.el (completion-category-overrides): Fix type of styles
9126 and add more user friendly tags (bug#9660).
9128 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9130 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
9131 (mule-input-method-string): New widget.
9132 (default-input-method, language-info-custom-alist): Use it.
9134 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9136 * pcomplete.el: Require comint.
9137 (pcomplete--common-suffix): Remove.
9138 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
9139 (pcomplete--table-subvert): Sync with comint--table-subvert.
9140 (pcomplete--entries): Use comint-completion-file-name-table.
9141 * comint.el (comint-unquote-filename): Simplify.
9142 (comint-completion-file-name-table): New function (bug#9616).
9143 (comint--complete-file-name-data): Use it.
9145 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
9146 (pcmpl-gnu-tar-buffer): Remove.
9147 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9148 around. Make sure pcomplete-suffix-list is only changed temporarily.
9149 Don't look inside the tar's file if it's too large.
9151 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
9153 * cus-edit.el (custom-mode-map):
9154 * epa.el (epa-key-list-mode-map):
9155 * man.el (Man-mode-map):
9156 * startup.el (splash-screen-keymap):
9157 * simple.el (special-mode-map): Use scroll-up-command and
9158 scroll-down-command.
9160 * progmodes/idlw-help.el (idlwave-help-mode-map):
9161 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
9162 * net/newst-plainview.el (newsticker-mode-map):
9163 * emulation/ws-mode.el (wordstar-mode-map):
9164 * emulation/vi.el (vi-com-map):
9165 * calc/calc-graph.el (calc-graph-show-dumb):
9166 * term/sun.el (terminal-init-sun):
9167 * term/ns-win.el (global-map):
9168 * progmodes/grep.el (grep-mode-map):
9169 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
9170 * mail/rmail.el (rmail-mode-map):
9171 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
9173 * custom.el (custom-safe-themes, load-theme): Treat value of t for
9174 custom-safe-themes as special.
9176 2011-10-01 Julien Danjou <julien@danjou.info>
9178 * notifications.el (notifications-notify): Fix docstring.
9180 2011-10-01 Per Starbäck <per@starback.se>
9182 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
9184 2011-09-30 Martin Rudalics <rudalics@gmx.at>
9186 * startup.el (command-line-1): Fix last fix by inserting
9187 initial-scratch-message into *scratch* before displaying it.
9188 (Bug#9605) and (Bug#9636)
9190 2011-09-29 Eli Zaretskii <eliz@gnu.org>
9192 * simple.el (line-move): If auto-hscroll-mode is disabled and the
9193 window is hscrolled, move by logical lines. (Bug#9607)
9194 (line-move-visual): Update the doc string to the above effect.
9196 2011-09-29 Martin Rudalics <rudalics@gmx.at>
9198 * window.el (display-buffer-record-window): When WINDOW is the
9199 selected window use `point' instead of `window-point'. (Bug#9626)
9201 * startup.el (command-line-1): Use insert-before-markers when
9202 inserting initial-scratch-message. (Bug#9605)
9204 * help.el (help-window): Remove variable.
9206 2011-09-29 Glenn Morris <rgm@gnu.org>
9208 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
9210 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
9212 * descr-text.el (describe-char-categories): Accept category
9213 descriptions more than one line long.
9215 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9217 * simple.el (delete-trailing-whitespace): Fix last change.
9219 * progmodes/perl-mode.el (perl-syntax-propertize-function):
9220 Don't confuse "y => 3" as the beginning of a `y' operation.
9222 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
9223 object has more than 4 slots (bug#9613).
9225 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
9227 * subr.el (with-output-to-temp-buffer):
9228 * net/quickurl.el (quickurl, quickurl-browse-url):
9229 Fix typos in docstrings.
9231 2011-09-27 Eli Zaretskii <eliz@gnu.org>
9233 * minibuffer.el (completion-styles)
9234 (completion-category-overrides): Cross reference each other in doc
9237 2011-09-27 Glenn Morris <rgm@gnu.org>
9239 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
9240 to split-string. (Bug#9606)
9242 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9244 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
9247 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
9249 * emacs-lisp/package.el (list-packages): Fix echo area message.
9251 2011-09-27 Leo Liu <sdl.web@gmail.com>
9253 * ido.el (ido-read-internal): Accept cons cell HIST arg.
9255 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
9257 * net/dbus.el (dbus-unregister-object): Don't release services for
9258 registered signals. (Bug#9581)
9260 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
9262 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
9263 function that picks between cfengine 2 and 3 support
9264 automatically. Update docs accordingly.
9266 2011-09-22 Kenichi Handa <handa@m17n.org>
9268 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
9270 (indian-itrans-v5-table-for-tamil): New variable.
9271 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
9273 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
9275 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
9276 that's true if the current command involved collapsing of text.
9277 It's reset to false at the beginning of the next command.
9278 (allout-post-command-business): Move the cursor to the beginning
9279 of entry if the cursor is hidden and collapsing activity just
9282 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
9284 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
9285 tracking (Bug#9541).
9287 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
9289 * net/newst-reader.el (newsticker-html-renderer)
9290 (newsticker-show-news): Automatically load html rendering package
9291 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
9292 because w3m-fill-column is let-bound" and the error "Symbol's value
9293 as variable is void: w3m-fill-column".
9295 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
9297 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
9298 Release services only if they are defined. (Bug#9581)
9300 2011-09-23 Richard Stallman <rms@gnu.org>
9302 * textmodes/paragraphs.el (forward-sentence): For backwards case,
9303 distinguish start of paragraph from start of its text.
9305 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
9307 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
9308 (rmail-generate-viewer-buffer): Put that hook on view buffer.
9309 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
9311 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
9313 * international/mule-diag.el (mule-diag): Insert a newline after
9314 each fontset description.
9316 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9318 * simple.el (delete-trailing-whitespace):
9319 Document last change; simplify.
9321 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
9323 * simple.el (delete-trailing-whitespace): Also delete
9324 extra newlines at the end of the buffer.
9326 * textmodes/picture.el: Make motion commands obey shift-select-mode.
9327 (picture-newline): Use forward-line so as to ignore fields.
9329 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9331 * subr.el (with-wrapper-hook): Fix edebug spec.
9333 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9335 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
9338 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
9340 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
9341 Fix nasty bug using wrong cached values.
9343 2011-09-23 Alan Mackenzie <acm@muc.de>
9345 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
9347 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
9349 * window.el (pop-to-buffer): Ensure right window is selected if we
9350 chose another frame.
9352 2011-09-22 Eli Zaretskii <eliz@gnu.org>
9354 * simple.el (what-cursor-position): Use get-char-property-change
9355 and next-single-char-property-change, to be able to show display
9356 properties that come from overlays as well as text properties.
9358 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
9360 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
9362 * cmuscheme.el (run-scheme, switch-to-scheme):
9363 * cus-edit.el (customize-group, custom-buffer-create)
9367 * mail/sendmail.el (mail):
9368 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
9370 2011-09-22 Richard Stallman <rms@gnu.org>
9372 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
9373 move back only to line beg, don't move back over blank lines.
9375 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
9377 * files.el (copy-directory): Set directory attributes only in case
9378 they could be retrieved from the source directory. (Bug#9565)
9380 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
9382 * progmodes/hideshow.el (hs-looking-at-block-start-p)
9383 (hs-find-block-beginning, hs-hide-level-recursive):
9384 Ignore strings as well as comments. (Bug#9502)
9386 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
9388 * progmodes/sql.el (sql-comint-postgres):
9389 Convert port number to a string. (Bug#9566)
9391 2011-09-22 Martin Rudalics <rudalics@gmx.at>
9393 * window.el (quit-window): Undedicate window when switching to
9394 previous buffer. Reported by Thierry Volpiatto
9395 <thierry.volpiatto@gmail.com>.
9396 (special-display-popup-frame): When popping up a new frame reset
9397 its previous buffers to nil. Simplify code.
9399 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
9401 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
9402 and process filter, as done also in `shell-command'.
9404 2011-09-21 Martin Rudalics <rudalics@gmx.at>
9406 * window.el (set-window-buffer-start-and-point):
9407 Call set-window-start with NOFORCE argument t.
9408 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
9409 (quit-window): Reword doc-string. Handle new format of
9410 quit-restore parameter. Don't delete window if it has a
9411 previous buffer we can show instead of the present one.
9412 (display-buffer-record-window): Rewrite using a new format for
9413 the quit-restore window parameter
9414 (special-display-popup-frame, display-buffer-same-window)
9415 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9416 (display-buffer-pop-up-window, display-buffer-use-some-window):
9417 Adapt symbol passed to display-buffer-record-window.
9418 * help.el (help-window-setup): Handle new format of quit-restore
9421 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9423 * faces.el (face-list): Fix docstring (bug#9564).
9425 * window.el (display-buffer--action-function-custom-type):
9426 Don't include internal functions in the Custom interface.
9428 2011-09-20 Juri Linkov <juri@jurta.org>
9430 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
9431 (Info-forward-node, Info-backward-node, Info-next-preorder)
9432 (Info-last-preorder): Use it. (Bug#9528)
9434 2011-09-20 Juri Linkov <juri@jurta.org>
9436 * info.el (Info-last-preorder): Visit last menu item only when
9437 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
9439 2011-09-20 Julien Danjou <julien@danjou.info>
9441 * password-cache.el (password-cache-remove): Remove entries even if the
9442 value is nil, so that password with a nil value (negative caching) is
9443 possible to invalidate.
9445 2011-09-20 Lawrence Mitchell <wence@gmx.li>
9447 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
9448 all whitespace around breakpoint. (Bug#9553)
9449 (f90-find-breakpoint): Only break at whitespace inside a comment.
9451 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9453 * minibuffer.el (completion-file-name-table): Keep track of errors.
9454 (completion-table-with-predicate): Handle the case where pred1 is nil.
9455 * pcomplete.el (pcomplete-completions-at-point): Simplify.
9457 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9459 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
9460 (debugger-return-value): Signal an error if the debugging context does
9461 not await any return value.
9463 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
9464 * image-mode.el (image-toggle-display-text)
9465 (image-toggle-display-image): Stay away from evil `intangible'.
9467 2011-09-19 Leo Liu <sdl.web@gmail.com>
9469 * replace.el (occur-revert-arguments): Make it permanent-local.
9470 (occur-mode): Don't call font-lock-defontify.
9472 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
9474 * net/ldap.el (ldap-search-internal): Don't push empty search
9477 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9479 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
9481 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
9483 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
9484 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
9486 2011-09-18 Juri Linkov <juri@jurta.org>
9488 * buff-menu.el (Buffer-menu-mode-map):
9489 * dired.el (dired-mode-map):
9490 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
9491 (lisp-interaction-mode-map):
9492 * emacs-lisp/package.el (package-menu-mode-map):
9493 * epa.el (epa-key-list-mode-map):
9494 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
9495 (menu-bar-options-menu):
9496 * outline.el (outline-mode-menu-bar-map):
9497 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
9498 * vc/vc-dir.el (vc-dir-menu-map):
9499 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
9500 Capitalize non-function content words in menu item strings.
9502 * dired.el (dired-mode-map): Add menu item for
9503 `image-dired-dired-toggle-marked-thumbs'.
9505 2011-09-18 Juri Linkov <juri@jurta.org>
9507 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
9508 to `isearch-case-fold-search' and restore its original value
9509 after the `isearch-mode' call.
9511 2011-09-18 Juri Linkov <juri@jurta.org>
9513 * progmodes/grep.el (grep-process-setup): Don't check code for 1
9514 because `zgrep' returns 1 for successful matches (bug#9226).
9516 2011-09-18 Juri Linkov <juri@jurta.org>
9518 * info.el (Info-extract-menu-node-name): Check the second match
9519 for empty string (second test-case of bug#9528).
9520 (Info-last-preorder): Let-bind `Info-history' to nil to not add
9521 intermediate nodes to the history (first test-case of bug#9528).
9523 2011-09-18 Juri Linkov <juri@jurta.org>
9525 * info.el (Info-mode-syntax-table): New variable.
9526 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
9528 2011-09-18 Juri Linkov <juri@jurta.org>
9530 * info.el (Info-file-supports-index-cookies):
9531 Increment line-beginning-position's arg from 3 to 4 because makeinfo
9532 outputs one more line for long file names (bug#4142).
9534 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
9536 * newcomment.el (comment-normalize-vars): If prompting for
9537 comment-start, set comment-start-skip too (Bug#8424).
9539 2011-09-18 Johan Bockgård <bojohan@gnu.org>
9541 * icomplete.el: Fix previous fix of Bug#5849.
9542 (icomplete-mode): Don't set completion-show-inline-help.
9543 (icomplete-minibuffer-setup): Set completion-show-inline-help
9544 locally during icompletion.
9546 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
9548 * woman.el (woman2-process-escapes): Don't delete unrecognized
9551 * files.el (inhibit-first-line-modes-regexps): Add image files.
9552 (hack-local-variables-prop-line): Return nil for malformed
9553 prop-lines (Bug#9044).
9555 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
9557 * net/tramp.el (top): Don't require 'shell.
9558 (tramp-methods): Fix docstring.
9559 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
9560 Return complete remote file name. Handle "smb" case.
9561 Use `tramp-tmpdir', if defined for the respective method.
9562 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
9564 * net/tramp-compat.el (top): Require 'shell.
9566 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
9567 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
9568 `tramp-current-host'.
9569 (tramp-get-remote-tmpdir): Remove.
9571 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
9572 `tramp-tmpdir' entries.
9573 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
9574 (tramp-smb-handle-file-attributes): Ignore errors.
9575 (tramp-smb-wait-for-output): Check also for process end.
9577 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
9579 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
9580 when sending QUIT (bug#9312).
9582 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
9584 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
9585 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
9586 occur-mode-display-occurrence.
9587 (occur-edit-mode): Add usage message.
9588 (occur-cease-edit): New command.
9589 (occur-after-change-function): Use text properties to find the
9590 position of the prefix text.
9591 (occur-engine): Set stickiness of prefix text properties.
9593 2011-09-17 Glenn Morris <rgm@gnu.org>
9595 * progmodes/etags.el (complete-tag):
9596 Fix call to completion-in-region. (Bug#9526)
9598 2011-09-17 Juri Linkov <juri@jurta.org>
9600 * textmodes/ispell.el (ispell-word): Add to the error message
9601 the word, ispell program name and current dictionary (bug#9121).
9602 (ispell-tex-arg-end): Capitalize "error" in the error message.
9604 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
9606 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
9609 2011-09-17 Juri Linkov <juri@jurta.org>
9611 * window.el (window-safe-min-height, window-safe-min-width):
9612 Fix typos (followup to bug#9522).
9614 2011-09-17 Sven Joachim <svenjoac@gmx.de>
9616 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
9618 2011-09-16 Eli Zaretskii <eliz@gnu.org>
9620 * simple.el (line-move): If goal-column is set, move by logical
9621 lines, not by display lines. (Bug#971)
9622 (next-line, previous-line, goal-column, line-move-visual): Doc fix
9623 to reflect the above change.
9625 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9627 * image.el (imagemagick-register-types): Use regexp-opt.
9629 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9631 * window.el (display-buffer-base-action): Rename from
9632 display-buffer-default-action. Make default value empty.
9633 (display-buffer-overriding-action): Convert to defvar.
9634 (display-buffer-fallback-action): New var.
9636 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
9638 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
9640 (package--add-to-archive-contents): If there is a duplicate entry
9641 with an older version, remove it.
9642 (package-menu-mark-delete, package-menu-mark-install)
9643 (package-menu-mark-unmark): Make unused args optional.
9644 (package-menu-mark-obsolete-for-deletion):
9645 Use package-menu-get-status instead of a regexp search.
9646 (package-menu-get-status): Use tabulated-list-entry.
9647 (package-menu-mark-upgrades): New command.
9648 (package-menu-mode-map): Bind it to U. Add it to menu bar.
9649 (package-menu-execute): Do installation before deletion.
9650 (package-menu-refresh, package-menu-execute): Use derived-mode-p
9651 instead of checking major-mode.
9652 (package-menu--find-upgrades): New function.
9654 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
9656 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
9657 passwords in the log buffer.
9658 (smtpmail-process-filter): Update the process marker so that the
9659 "broken by peer" status message is inserted in the right place.
9661 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
9663 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
9664 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
9665 bibtex-completion-at-point-function.
9666 (bibtex-completion-at-point-function): Use them.
9668 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
9670 * mpc.el (mpc-constraints-tag-lookup): New function.
9671 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
9672 also to browser "album|playlist".
9674 2011-09-14 Juri Linkov <juri@jurta.org>
9676 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
9677 (isearch-edit-string): Use length of `isearch-string' when
9678 `isearch-fail-pos' returns nil.
9679 (isearch-message): Remove duplicate code and call
9680 `isearch-fail-pos' with arg `t'.
9682 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
9684 * replace.el (occur-mode-goto-occurrence): Don't force using other
9687 * dired-aux.el (dired-do-chmod): Don't provide initial input.
9689 2011-09-14 Martin Rudalics <rudalics@gmx.at>
9691 * window.el (display-buffer-window): Remove.
9692 (display-buffer-record-window): Use help-setup window parameter
9693 instead of variable display-buffer-window.
9694 (display-buffer-function, special-display-buffer-names)
9695 (special-display-function): Mention help-setup parameter instead
9696 of display-buffer-window in doc-string.
9697 * help.el (help-window-setup): New argument help-window.
9698 Use help-window-setup parameter instead of display-buffer-window.
9699 Reword some messages.
9700 (with-help-window): Pass window used for displaying the buffer
9701 to help-window-setup. Don't set display-buffer-window.
9703 2011-09-13 Glenn Morris <rgm@gnu.org>
9705 * emacs-lisp/debug.el (debugger-make-xrefs):
9706 Preserve point. (Bug#9462)
9708 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9710 * window.el (window-deletable-p): Use next-frame.
9712 2011-09-13 Martin Rudalics <rudalics@gmx.at>
9714 * window.el (window-auto-delete): Remove.
9715 (window-deletable-p): Remove argument FORCE. Don't deal with
9716 dedication and previous buffers.
9717 (switch-to-prev-buffer): Don't delete window.
9718 (delete-windows-on): Delete a window's frame if and only if the
9719 window is dedicated.
9720 (replace-buffer-in-windows): Delete buffer's window or frame if
9721 and only if window is dedicated.
9722 (quit-window): Handle quit-restore as before last change.
9723 (bury-buffer): Delete window only if window-deletable-p returns t.
9725 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
9727 * window.el (window-deletable-p): Never delete the last frame on a
9730 2011-09-13 Glenn Morris <rgm@gnu.org>
9732 * help.el (describe-key-briefly): Copy previous standard-output change.
9734 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
9736 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
9738 2011-09-13 Glenn Morris <rgm@gnu.org>
9740 * emacs-lisp/lisp-mode.el (lisp-indent-function):
9741 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
9743 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
9745 * dired-aux.el (dired-mark-read-string): Don't return default
9746 value on empty input (Bug#9361).
9747 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
9748 Omit initial minibuffer contents.
9749 (dired-do-chmod): Signal an error on empty input.
9750 (dired-mark-read-string): Don't return default on empty input.
9752 * files.el (file-modes-symbolic-to-number): Doc fix.
9754 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9756 * international/mule-cmds.el (ucs-completions): Remove.
9757 (read-char-by-name): Use complete-with-action instead; add metadata.
9759 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9761 * window.el (display-buffer--action-function-custom-type)
9762 (display-buffer--action-custom-type): New vars.
9763 (display-buffer-alist, display-buffer-default-action)
9764 (display-buffer-overriding-action): Add defcustom types.
9766 * frame.el (delete-other-frames): Doc fix (Bug#276).
9768 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9770 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
9772 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9774 Change modes that used same-window-* vars to use switch-to-buffer.
9776 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
9777 Use switch-to-buffer.
9779 * cus-edit.el (customize-group, custom-buffer-create)
9780 (customize-browse, custom-buffer-create-other-window):
9781 Use switch-to-buffer or switch-to-buffer-other-window.
9783 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
9784 (Info-prev, Info-up, Info-speedbar-goto-node)
9785 (info-display-manual): Use switch-to-buffer.
9786 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
9788 * mail/sendmail.el (mail): Use switch-to-buffer.
9789 (mail-recover): Use switch-to-buffer-other-window.
9791 * cmuscheme.el (run-scheme, switch-to-scheme):
9794 * net/rlogin.el (rlogin):
9795 * net/telnet.el (telnet, rsh):
9796 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
9798 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
9800 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
9802 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9804 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
9805 so don't mention it (bug#9301).
9806 (dired-sort-toggle-or-edit): Clarify string further.
9808 * faces.el (face-spec-set-match-display): Make `(type graphic)'
9809 match `x', `w32' and `ns', like the manual says (bug#9029).
9811 * subr.el (eval-after-load): Doc string clarification (bug#9125).
9812 (process-kill-buffer-query-function): Mention the buffer name in
9815 * image-mode.el (image-next-line): The line parameter is mandatory
9818 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
9819 which can be useful (bug#9301).
9821 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
9823 * subr.el (match-string): Mention that the current buffer should
9824 be the same as the search was done in (bug#9282).
9826 * facemenu.el: Disable the remove-* commands if the mark isn't
9829 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9831 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
9833 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
9835 * replace.el (occur-mode-goto-occurrence)
9836 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
9839 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
9842 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
9843 special-display and same-window variables.
9844 (mail-other-window): Use switch-to-buffer-other-window.
9845 (mail-other-frame): USe switch-to-buffer-other-frame.
9847 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
9848 Use display-buffer-other-frame.
9849 (gdb-display-gdb-buffer): Use pop-to-buffer.
9851 * progmodes/gud.el (gud-goto-info): Use info-other-window.
9853 * progmodes/python.el: Don't set same-window-buffer-names.
9855 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
9857 * window.el (display-buffer-alist): Add *Python*.
9859 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9861 * window.el (display-buffer-alist): Add entry for buffers
9862 previously handled same-window-*.
9863 (display-buffer-alist, display-buffer-default-action)
9864 (display-buffer-overriding-action): Mark as risky.
9865 (display-buffer-alist): Document action function changes.
9866 (display-buffer--same-window-action)
9867 (display-buffer--other-frame-action): New variables.
9868 (switch-to-buffer, display-buffer-other-frame): Use them.
9869 (display-buffer): Rename reuse-frame entry to reusable-frames.
9870 (display-buffer-reuse-selected-window): Function deleted.
9871 (display-buffer-reuse-window): Handle reusable-frames alist entry.
9872 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
9873 (display-buffer-special): New function.
9874 (display-buffer--maybe-pop-up-frame-or-window): Rename from
9875 display-buffer-reuse-or-pop-window. Split off special-display
9876 part into display-buffer-special.
9877 (display-buffer-use-some-window): Don't perform any special
9878 pop-up-frames handling.
9879 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
9880 (display-buffer--maybe-same-window): Rename from
9881 display-buffer-maybe-same-window.
9883 * info.el: Don't set same-window-regexps.
9884 (info-setup): New function.
9885 (info-other-window, info): Call it.
9887 * cus-edit.el: Don't set same-window-regexps.
9888 (customize-group): New argument.
9889 (customize-group-other-window): Use it.
9890 (customize-face, customize-face-other-window): Likewise.
9891 (custom-buffer-create-other-window): Use pop-to-buffer directly.
9895 * progmodes/gud.el: Don't set same-window-regexps.
9901 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
9903 2011-09-10 Juri Linkov <juri@jurta.org>
9905 * isearch.el (isearch-edit-string): Remove obsolete mention of
9906 `C-w' (`isearch-yank-word-or-char') from docstring.
9907 (isearch-query-replace): Fix typo in docstring (bug#9466).
9909 2011-09-10 Juri Linkov <juri@jurta.org>
9911 * paren.el (show-paren-function): Don't show escaped parens.
9912 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
9914 2011-09-10 Eli Zaretskii <eliz@gnu.org>
9916 * mail/sendmail.el (mml-to-mime, mml-attach-file)
9917 (mm-default-file-encoding): Remove autoload forms, they are
9918 replaced with autoload cookies in mml.el and mm-encode.el.
9919 (mail-add-attachment): New command.
9920 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
9921 (mail-mode): Mention mail-insert-file and mail-add-attachment in
9923 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
9925 2011-09-10 Reuben Thomas <rrt@sc3d.org>
9927 * simple.el (count-words-region): Use buffer if there's no region
9930 2011-09-09 Juri Linkov <juri@jurta.org>
9932 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
9933 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
9934 (wdired-isearch-filter-read-only): New function. (Bug#6362)
9936 2011-09-09 Alan Mackenzie <acm@muc.de>
9938 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
9939 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
9941 2011-09-09 Eli Zaretskii <eliz@gnu.org>
9943 Fix for Savannah bug#9392.
9944 * simple.el (mail-encode-mml): New defvar.
9946 * mail/rmail.el (mail-encode-mml): Add a defvar.
9947 (rmail-enable-mime-composing): Default to t.
9948 (rmail-forward): Use MIME method of forwarding only if both
9949 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9950 Set mail-encode-mml non-nil if the MIME method was used.
9952 * mail/sendmail.el (mml-to-mime): Add autoload form.
9953 (mail-encode-mml): Add a defvar.
9954 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9956 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9957 message through mml-to-mime, and reset mail-encode-mml to nil.
9959 2011-09-09 Glenn Morris <rgm@gnu.org>
9961 * woman.el (woman-if-body): When processing an .el block,
9962 do not delete the next .el block as well. (Bug#9447)
9963 (woman-special-characters): Add oq, cq, and hy characters.
9965 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9967 * window.el (window-deletable-p): Make sure window is live before
9968 invoking window-prev-buffers.
9970 2011-09-08 Leo Liu <sdl.web@gmail.com>
9972 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9974 2011-09-08 Juri Linkov <juri@jurta.org>
9976 * progmodes/compile.el (compilation-environment): Make it
9977 a defcustom (bug#8340).
9979 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9981 * window.el (frame-auto-delete): Rename to window-auto-delete.
9982 Make it control auto-deletion of windows and/or frames.
9983 (window-deletable-p): New argument FORCE. Rewrite conditions
9984 for deleting window/frame. (Bug#9419)
9985 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9986 Rewrite handling of case when window/frame can be deleted.
9987 (delete-windows-on): Call window-deletable-p with new FORCE
9988 argument t. (Bug#9456)
9990 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
9992 * help-mode.el (help-mode): Restore autoload.
9994 2011-09-07 Juri Linkov <juri@jurta.org>
9996 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9997 `compilation-environment'. Set buffer-local
9998 `compilation-environment' to `thisenv' later after (funcall mode).
10001 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
10002 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
10003 instead of replacing its value. (Bug#8340)
10005 2011-09-07 Juri Linkov <juri@jurta.org>
10007 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
10008 based on text properties put by `grep-filter' instead of matching
10010 (grep-mode): Set buffer-local `compilation-error-screen-columns'
10011 to the value of `grep-error-screen-columns' (bug#9438).
10013 2011-09-07 Juri Linkov <juri@jurta.org>
10015 * simple.el (next-error-highlight, next-error-highlight-no-select):
10016 Doc fix (bug#9432).
10018 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
10020 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10021 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
10023 2011-09-07 Leo Liu <sdl.web@gmail.com>
10025 * net/rcirc.el (rcirc-mode): Conditionally initialize
10028 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10030 * emacs-lisp/find-func.el (find-function-C-source): Only set
10031 find-function-C-source-directory after checking that we found a source
10032 file there (bug#9440).
10034 2011-09-06 Alan Mackenzie <acm@muc.de>
10036 * isearch.el (isearch-other-meta-char): Wherever a key list is
10037 unread, "unread" the prefix arg, too. This fixes bug #8901.
10039 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10041 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
10043 2011-09-05 Juri Linkov <juri@jurta.org>
10045 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
10047 2011-09-05 Juri Linkov <juri@jurta.org>
10049 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
10050 keeping point where processing of grep matches begins, and
10051 continue to delete remaining escape sequences from the same point.
10052 (grep-filter): Make leading zero optional in "0?1;31m" because
10053 git-grep emits "\033[1;31m" escape sequences unlike expected
10054 "\033[01;31m" as GNU Grep does (bug#9408).
10055 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
10057 2011-09-05 Juri Linkov <juri@jurta.org>
10059 * subr.el (y-or-n-p): Capitalize "yes".
10061 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
10063 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
10064 `tramp-cache-unload-hook' where appropriate.
10065 (tramp-methods): Rename `tramp-remote-sh' to
10066 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
10067 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
10069 * net/tramp-sh.el (top): Don't require 'shell.
10070 (tramp-methods): Add `tramp-remote-shell' and
10071 `tramp-remote-shell-args' entries.
10072 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
10073 (tramp-sh-handle-shell-command): Remove.
10074 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
10075 Use `tramp-remote-shell'.
10077 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
10079 * mail/sendmail.el (sendmail-query-once-function): Delete.
10080 (sendmail-query-once): Save directly to send-mail-function.
10081 Update message-send-mail-function too.
10083 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
10085 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10087 * progmodes/python.el (python-mode-map): Use correct function to
10088 start python interpreter from menu-bar (as reported by Geert
10090 (inferior-python-mode-map): Fix typo.
10091 (python-shell-map): Remove.
10093 2011-09-03 Deniz Dogan <deniz@dogan.se>
10095 * net/rcirc.el (rcirc-print): Simplify code for
10096 rcirc-scroll-show-maximum-output. There is no need to walk
10097 through all windows to find the right one.
10099 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10101 * help.el (help-return-method): Doc fix.
10103 2011-09-03 Martin Rudalics <rudalics@gmx.at>
10105 * window.el (window-deletable-p): Don't return a non-nil value
10106 when there's a buffer that was shown in the window before.
10108 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10109 Set window's previous buffers to nil.
10111 2011-09-03 Eli Zaretskii <eliz@gnu.org>
10113 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
10114 newline before and after the tag line, so it doesn't interfere
10115 with determining the paragraph direction of bidirectional text.
10117 2011-09-03 Leo Liu <sdl.web@gmail.com>
10119 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
10121 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10123 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
10124 (pop-to-buffer): Change interactive spec. Pass second argument
10125 directly to display-buffer.
10126 (display-buffer): Fix interactive spec. Use functionp to
10127 distinguish between a function and a list of functions.
10129 * abbrev.el (edit-abbrevs):
10130 * arc-mode.el (archive-extract):
10131 * autoinsert.el (auto-insert):
10132 * bookmark.el (bookmark-bmenu-list):
10133 * files.el (find-file):
10134 * view.el (view-buffer):
10135 * progmodes/compile.el (compilation-goto-locus):
10136 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
10138 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
10140 * window.el (display-buffer-alist): Doc fix.
10141 (display-buffer): Add docstring. Don't treat
10142 display-buffer-default specially.
10143 (display-buffer-reuse-selected-window)
10144 (display-buffer-same-window, display-buffer-maybe-same-window)
10145 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10146 (display-buffer-pop-up-window)
10147 (display-buffer-reuse-or-pop-window)
10148 (display-buffer-use-some-window): New functions.
10149 (display-buffer-default-action): Use them.
10150 (display-buffer-default): Delete.
10151 (pop-to-buffer-1): Fix choice of actions.
10153 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
10155 * minibuffer.el (completion--insert-strings): Don't get confused by
10156 completion entries that end with an LF char.
10158 2011-09-01 Eli Zaretskii <eliz@gnu.org>
10160 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
10162 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
10164 * window.el (display-buffer): Restore interactive spec.
10165 (display-buffer-same-window, display-buffer-other-window):
10167 (pop-to-buffer-1): New function. Use the above.
10168 (pop-to-buffer, pop-to-buffer-same-window): Use it.
10169 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
10171 * view.el (view-buffer-other-window, view-buffer-other-frame):
10172 Just use pop-to-buffer.
10174 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10176 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
10178 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
10180 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
10182 2011-08-31 Richard Stallman <rms@gnu.org>
10184 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
10185 of the separation of rmail-view-buffer from rmail-buffer.
10186 If you say no to "replace original", the decrypt is in the
10187 view buffer. If you say yes, the decrypt goes into the
10190 2011-08-31 Martin Rudalics <rudalics@gmx.at>
10192 * window.el (display-buffer-window): Rewrite doc-string.
10193 (display-buffer-record-window): New function.
10194 (display-buffer-macro-specifiers)
10195 (display-buffer-even-window-sizes, display-buffer-set-height)
10196 (display-buffer-set-width, display-buffer-in-window)
10197 (display-buffer-reuse-window, display-buffer-split-specifiers)
10198 (display-buffer-side-specifiers, display-buffer-split-window-1)
10199 (display-buffer-split-window, display-buffer-split-atom-window)
10200 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10201 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
10202 (display-buffer-other-window-means-other-frame)
10203 (display-buffer-normalize-special)
10204 (display-buffer-normalize-default)
10205 (display-buffer-normalize-argument)
10206 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
10207 (display-buffer-normalize-specifiers, display-buffer-frame)
10208 (display-buffer-same-window, display-buffer-same-frame)
10209 (display-buffer-other-window)
10210 (display-buffer-same-frame-other-window)
10211 (display-buffer-other-frame, pop-to-buffer-same-window)
10212 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
10213 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
10214 (switch-to-buffer-same-frame)
10215 (switch-to-buffer-other-window-same-frame)
10216 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
10217 (display-buffer-alist-set-1, display-buffer-alist-set-2)
10218 (display-buffer-alist-set): Remove.
10219 (display-buffer-function, special-display-buffer-names)
10220 (special-display-regexps, special-display-function):
10221 In doc-string refer to display-buffer-window and quit-restore
10223 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
10224 (special-display-frame-alist, special-display-popup-frame)
10225 (same-window-buffer-names, same-window-regexps, same-window-p)
10226 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10227 (split-window-preferred-function, split-height-threshold)
10228 (split-width-threshold, window-splittable-p)
10229 (split-window-sensibly, window--try-to-split-window)
10230 (window--frame-usable-p, even-window-heights)
10231 (window--even-window-heights, window--display-buffer-1)
10232 (window--display-buffer-2, display-buffer-other-frame):
10233 Restore old Emacs 23 code, order and doc-strings where applicable.
10234 (display-buffer-default, display-buffer-assq-regexp): New functions.
10235 (display-buffer-alist): Rewrite doc-string.
10236 (display-buffer-default-action)
10237 (display-buffer-overriding-action): New variables.
10238 (display-buffer, switch-to-buffer): Rewrite.
10239 (pop-to-buffer): Restore Emacs 23 behavior but use
10240 window-normalize-buffer-to-display.
10241 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
10242 Restore Emacs 23 behavior but use
10243 window-normalize-buffer-to-switch-to.
10244 (pop-to-buffer-same-window): Rewrite.
10245 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
10246 Rewrite using Emacs 23 options.
10248 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
10250 * net/tramp.el (tramp-root-regexp): Remove.
10251 (tramp-completion-file-name-regexp-unified)
10252 (tramp-completion-file-name-regexp-separate)
10253 (tramp-completion-file-name-regexp-url): Don't use leading volume
10254 letter on win32 systems. (Bug#5303, Bug#9311)
10255 (tramp-drop-volume-letter): Simplify definition.
10256 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10258 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10260 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
10263 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
10265 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
10267 2011-08-29 Juri Linkov <juri@jurta.org>
10269 * isearch.el (isearch-done): Don't display message "Mark saved"
10270 when arg `edit' is non-nil to prevent its flicker in the echo area.
10272 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10274 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
10275 obsolete packages for deletion.
10277 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
10279 * help-mode.el (help-mode-map): Add special-mode-map to parent.
10280 (help-mode): Derive help-mode from special-mode. Don't invoke
10281 view-mode from help-mode.
10282 (help-xref-override-view-map): Remove.
10283 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
10284 view-mode is not used anymore.
10286 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
10288 * server.el (server-port): Doc fix.
10290 * cus-theme.el (custom-theme-choose-mode): Inherit from
10291 special-mode (Bug#9124).
10292 (custom-theme-choose-mode-map): Add special-mode to parent.
10294 2011-08-28 Alan Mackenzie <acm@muc.de>
10296 * progmodes/cc-fonts.el
10297 (c-make-font-lock-BO-decl-search-function): New function.
10298 (c-basic-matchers-after - "Fontify the clauses after various
10299 keywords"): Extract the three keyword lists for the 3 erroneous
10300 constructs from the list of four, and use the new function above
10301 in place of an old one.
10303 2011-08-28 Deniz Dogan <deniz@dogan.se>
10305 * net/rcirc.el (rcirc-insert-prev-input)
10306 (rcirc-insert-next-input): Remove unused argument.
10308 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10310 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
10312 2011-08-27 Alan Mackenzie <acm@muc.de>
10314 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
10315 handle function pointer parameters properly.
10317 2011-08-27 Martin Rudalics <rudalics@gmx.at>
10319 * window.el (display-buffer-reuse-window): Fix case where
10320 selected window was reused with non-nil OTHER-WINDOW argument.
10323 2011-08-27 Deniz Dogan <deniz@dogan.se>
10325 * net/rcirc.el (rcirc-check-auth-status): Adding support for
10326 oftc's NickServ messages.
10328 2011-08-27 Glenn Morris <rgm@gnu.org>
10330 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
10332 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
10334 * emacs-lisp/package.el (package-install): Call package-initialize
10335 if called interactively.
10337 2011-08-26 Leo Liu <sdl.web@gmail.com>
10339 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
10341 2011-08-25 Juri Linkov <juri@jurta.org>
10343 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
10344 `search-whitespace-regexp' (bug#9364).
10346 2011-08-25 Juri Linkov <juri@jurta.org>
10348 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
10349 `regexp-search-ring' to their global values to protect from
10350 updating by `read-from-minibuffer' (bug#9185).
10352 2011-08-25 Juri Linkov <juri@jurta.org>
10354 * textmodes/ispell.el (ispell-command-loop): Add newline
10355 at the end of the "Use option `i'..." line.
10357 2011-08-25 Juri Linkov <juri@jurta.org>
10359 * battery.el (display-battery-mode): If `battery-status-function'
10360 or `battery-mode-line-format' is nil, display the message and set
10361 `display-battery-mode' to nil (bug#9363).
10363 2011-08-25 Eli Zaretskii <eliz@gnu.org>
10365 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
10366 bidi-string-mark-left-to-right; they are unnecessary now.
10368 2011-08-25 Deniz Dogan <deniz@dogan.se>
10370 * net/quickurl.el: Documentation typo fixes.
10372 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
10374 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
10376 2011-08-25 Glenn Morris <rgm@gnu.org>
10378 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
10380 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
10381 (smtpmail-via-smtp): Handle nil response from smtp.
10383 2011-08-24 Juri Linkov <juri@jurta.org>
10385 * proced.el (proced-marked): Inherit from `error' instead of
10386 `font-lock-warning-face'.
10388 * ibuffer.el (ibuffer-marked-face): Change default face from
10389 `font-lock-warning-face' to `warning'.
10390 (ibuffer-deletion-face): Change default face from
10391 `font-lock-type-face' to `error'.
10393 * battery.el (battery-update): Use the face `error' instead of
10394 `font-lock-warning-face' (bug#6117).
10396 2011-08-24 Juri Linkov <juri@jurta.org>
10398 * faces.el (success): Change face color from "Green3" to
10399 "ForestGreen" on light background (bug#9353).
10401 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
10403 * window.el (quit-window): Rename from quit-restore-window.
10404 Use same arglist as old quit-window.
10405 (frame-auto-delete): Doc fix.
10407 * view.el (view-mode-exit): Use quit-window.
10409 2011-08-24 Juri Linkov <juri@jurta.org>
10411 * isearch.el (isearch-ring-adjust1): Start visiting previous
10412 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
10413 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
10414 for empty search string (when the last search string is reused
10415 automatically) to adjust the isearch ring to the last element and
10416 prepare the correct index for further M-p commands (bug#9185).
10418 2011-08-24 Kenichi Handa <handa@m17n.org>
10420 * international/ucs-normalize.el: If decomposition property of
10421 CHAR is the default one (i.e. a list of CHAR itself), treat it as
10423 (nfd, nfkd): Likewise.
10425 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10427 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
10428 from process filters aren't reliably transmitted to the surrounding
10429 accept-process-output.
10430 (mpc-proc-check): New function.
10431 (mpc-proc-sync): Use it (bug#8293)
10433 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10435 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
10436 Add compatibility functions (bug#9313).
10438 2011-08-23 Eli Zaretskii <eliz@gnu.org>
10440 * cus-start.el (all): Add entry for bidi-paragraph-direction.
10442 * international/uni-bidi.el: Regenerate.
10444 2011-08-23 Kenichi Handa <handa@m17n.org>
10446 * international/charprop.el:
10447 * international/uni-bidi.el:
10448 * international/uni-category.el:
10449 * international/uni-combining.el:
10450 * international/uni-comment.el:
10451 * international/uni-decimal.el:
10452 * international/uni-decomposition.el:
10453 * international/uni-digit.el:
10454 * international/uni-lowercase.el:
10455 * international/uni-mirrored.el:
10456 * international/uni-name.el:
10457 * international/uni-numeric.el:
10458 * international/uni-old-name.el:
10459 * international/uni-titlecase.el:
10460 * international/uni-uppercase.el: Regenerate.
10462 2011-08-23 Martin Rudalics <rudalics@gmx.at>
10464 * help.el (help-window-setup): Fix message displayed when other
10465 window is reused. (Bug#9341)
10467 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10469 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
10470 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
10472 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
10474 * shell.el (shell-parse-pcomplete-arguments): New function.
10475 (shell-completion-vars): Use it instead (bug#9160).
10477 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10479 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
10480 strings and comments (bug#9333).
10482 * emacs-lisp/debug.el (debug-arglist): New function.
10483 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
10484 (debug-on-entry-1): Handle interpreted closures (bug#9120).
10486 2011-08-22 Juri Linkov <juri@jurta.org>
10488 * progmodes/compile.el (compilation-mode-font-lock-keywords):
10489 Revert regexp that highlights output switches to its old
10490 pre-2010-10-28 value and remove one `?' from it (bug#9319).
10492 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
10493 to check for empty output (bug#9226).
10495 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
10497 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
10498 symbol-constituent as the default, as that stops font-lock from
10499 working properly (Bug#8843).
10501 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10503 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
10504 `coding-system-for-*' around the process open call to avoid
10505 auth-source side effects.
10506 (smtpmail-try-auth-methods): Expand the secret password.
10507 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
10510 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
10512 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
10514 * emacs-lisp/find-func.el (find-function-noselect): New arg
10517 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
10518 signal an error for built-in functions (Bug#6664).
10520 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10522 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
10523 (smtpmail-try-auth-methods): Use it.
10525 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
10527 * font-lock.el (font-lock-fontify-region)
10528 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
10529 (font-lock-default-unfontify-buffer)
10530 (font-lock-default-fontify-region)
10531 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
10533 * progmodes/compile.el (compilation-error-properties):
10534 Fix confusion between file struct and message struct (Bug#9319).
10535 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
10538 * net/browse-url.el (browse-url-firefox): Don't call
10539 browse-url-firefox-sentinel unless using -remote (Bug#9328).
10541 2011-08-20 Glenn Morris <rgm@gnu.org>
10543 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
10545 * tutorial.el (tutorial--default-keys): Update some default bindings.
10547 * files.el (hack-local-variables): Fully ignore case for "mode:".
10549 2011-08-20 Alan Mackenzie <acm@muc.de>
10551 Resolve invalid use of a regexp in regexp-opt.
10553 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
10554 detection for a java annotation.
10556 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
10557 detection for a java annotation.
10559 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
10561 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
10563 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
10565 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
10568 2011-08-20 Alan Mackenzie <acm@muc.de>
10570 Fontify CPP expressions correctly when starting in the middle of
10571 such a construct. Mainly for when jit-lock etc. starts a chunk
10574 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
10576 (c-make-font-lock-search-form): New function, extracted from
10577 c-make-font-lock-search-function.
10578 (c-make-font-lock-search-function): Use the above function.
10579 (c-make-font-lock-context-search-function): New function.
10580 (c-cpp-matchers): Enhance the preprocessor expression case with
10582 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
10583 which takes an expression.
10585 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
10587 2011-08-20 Martin Rudalics <rudalics@gmx.at>
10589 * window.el (display-buffer-reuse-window)
10590 (display-buffer-pop-up-window): Don't reuse or split a side
10593 2011-08-19 Glenn Morris <rgm@gnu.org>
10595 * files.el (hack-local-variables-prop-line, hack-local-variables):
10596 Downcase "Mode:". (Bug#9331)
10598 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
10600 * international/characters.el: Add L and R categories.
10602 * subr.el (bidi-string-mark-left-to-right): Rename from
10603 string-mark-left-to-right. Use category search.
10605 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
10607 2011-08-18 Juri Linkov <juri@jurta.org>
10609 * faces.el (error, warning, success): New faces with definitions
10610 copied from old default values of `font-lock-warning-face',
10611 `compilation-warning', `compilation-info' (bug#6117).
10613 * font-lock.el (font-lock-warning-face): Inherit from `error'.
10615 * progmodes/compile.el (compilation-error): Inherit from `error'.
10616 (compilation-warning): Inherit from `warning'.
10617 (compilation-info): Inherit from `success'.
10619 * dired.el (dired-marked): Inherit from `warning'.
10620 (dired-flagged): Inherit from `error'.
10622 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10624 * mail/smtpmail.el (auth-source): Require to avoid problems with
10625 binding variables (bug#9298). Also clean up some unused
10628 * net/network-stream.el (network-stream-open-starttls):
10629 Support using starttls.el without using gnutls-cli.
10631 2011-08-17 Juri Linkov <juri@jurta.org>
10633 * progmodes/grep.el (rgrep): Handle the case when
10634 `grep-find-command' is a cons cell (bug#9278).
10636 2011-08-17 Martin Rudalics <rudalics@gmx.at>
10638 * window.el (display-buffer-pop-up-frame): Run frame creation
10639 function with BUFFER current (as special-display-popup-frame
10640 does). Reported by Drew Adams.
10642 2011-08-17 Daiki Ueno <ueno@unixuser.org>
10644 * epa-mail.el: Simplify GnuPG group expansion using
10646 (epa-mail-group-alist, epa-mail-group-modtime)
10647 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
10648 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
10649 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
10652 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
10654 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
10656 2011-08-16 Alan Mackenzie <acm@muc.de>
10658 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
10659 Correct, to avoid the inside of macros.
10661 2011-08-16 Richard Stallman <rms@gnu.org>
10663 * epa-mail.el: Handle GnuPG group definitions.
10664 (epa-mail-group-alist, epa-mail-group-modtime)
10665 (epa-mail-gnupg-conf-file): New variables.
10666 (epa-mail-parse-groups, epa-mail-sync-groups)
10667 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
10668 (epa-mail-expand-recipients): New functions.
10669 (epa-mail-encrypt): Call epa-mail-expand-recipients.
10671 * mail/rmail.el (rmail-epa-decrypt): New command.
10673 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
10674 Don't bind buffer-read-only, just inhibit-read-only.
10675 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
10676 (epa-decrypt-armor-in-region): Make error message clearer.
10678 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
10680 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
10681 and "a2b" to "ab" for `prefix'.
10683 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
10685 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
10687 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
10688 Fourquet (Bug#8804).
10690 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
10692 * startup.el (argi): Declare as global variable (bug#9275).
10694 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
10696 * subr.el (string-mark-left-to-right): Search the entire string
10697 for RTL script, not just the terminating character. Doc fix.
10699 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
10701 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
10703 (js--regexp-literal, js-syntax-propertize-function): Remove.
10704 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
10705 (js-mode-map): Don't rebind electric keys.
10706 (js-insert-and-indent): Remove.
10707 (js-mode): Setup electric-layout and electric-indent instead.
10709 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
10711 2011-08-12 Daiki Ueno <ueno@unixuser.org>
10713 * epa.el (epa-progress-callback-function): Fix the logic of
10714 displaying progress.
10715 * epa-file.el (epa-file-insert-file-contents): Make progress
10716 display more user-friendly.
10717 (epa-file-write-region): Ditto.
10719 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
10721 * subr.el (string-mark-left-to-right): New function.
10723 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
10724 Use string-mark-left-to-right.
10725 (list-buffers-noselect): Caller changed.
10727 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
10728 Use string-mark-left-to-right.
10729 (tabulated-list-print): Recenter after moving point.
10731 2011-08-10 Juri Linkov <juri@jurta.org>
10733 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
10734 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
10735 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
10737 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
10739 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
10742 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
10744 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
10745 character. (Bug#6594)
10747 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
10749 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
10750 (image-dired--with-db-file): New macro.
10751 (image-dired-write-tags, image-dired-remove-tag)
10752 (image-dired-create-gallery-lists, image-dired-write-comments)
10753 (image-dired-get-comment, image-dired-mark-tagged-files)
10754 (image-dired-list-tags, image-dired-gallery-generate): Use it.
10755 (image-dired-gallery-generate): Use insert-file-contents.
10757 * time.el (display-time-world-list, display-time-world-display):
10758 * time-stamp.el (time-stamp-string):
10759 * vc/add-log.el (add-change-log-entry): Use setenv instead of
10760 set-time-zone-rule (Bug#7337).
10762 2011-08-08 Daiki Ueno <ueno@unixuser.org>
10764 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
10765 (epg-error-to-string, epg-errors-to-string): New function.
10766 (epg-wait-for-completion): Reverse errors list.
10767 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
10768 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
10769 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
10770 (epg-sign-keys, epg-generate-key-from-file)
10771 (epg-generate-key-from-string): Format errors by using
10772 epg-errors-to-string (bug#9255).
10773 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
10775 2011-08-07 Juri Linkov <juri@jurta.org>
10777 * faces.el (list-faces-display): Remove extra angle bracket
10778 from `help-mode-map'.
10780 * info.el (Info-history-toc-nodes): Doc fix.
10782 * longlines.el (longlines-mode): Doc fix.
10784 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10786 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
10787 of statements and in a few more cases (bug#9183).
10789 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
10791 (cl-transform-lambda): Use them (bug#9239).
10793 2011-08-05 Martin Rudalics <rudalics@gmx.at>
10795 * window.el (display-buffer-same-window)
10796 (display-buffer-same-frame, display-buffer-other-window)
10797 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
10798 (pop-to-buffer-other-window)
10799 (pop-to-buffer-same-frame-other-window)
10800 (pop-to-buffer-other-frame): Make them defuns.
10801 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
10803 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10805 * subr.el (make-composed-keymap): Move from C. Change calling
10806 convention, and improve docstring to bring attention to a subtle point.
10807 * minibuffer.el (completing-read-default): Adjust accordingly.
10809 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
10811 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10812 (tramp-open-shell): Use `tramp-shell-quote-argument'.
10814 * net/trampver.el: Update release number.
10816 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10818 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
10821 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10823 * mail/sendmail.el (sendmail-query-once): Restore the current
10824 buffer after querying (bug#9074).
10826 * dired.el (dired-flagged): Use different faces for marked and
10827 flagged files (bug#6117).
10829 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
10832 * ido.el (ido-mode): Switch off the message if called
10835 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
10836 before 587, since it appears that that's more likely to work for
10839 * cus-edit.el (custom-file): When running under emacs -q, always
10840 refuse to save the customizations, even if the .emacs file doesn't
10843 * info.el: Remove the `Info-beginning-of-buffer' function
10846 * net/network-stream.el (network-stream-open-starttls):
10847 Use `starttls-available-p' to see whether starttls.el can be used.
10849 2011-08-01 Martin Rudalics <rudalics@gmx.at>
10851 * window.el (display-buffer-in-window): Don't set dedicated status
10852 of window here (Bug#9215).
10853 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10854 (display-buffer-pop-up-side-window)
10855 (display-buffer-in-side-window): Set dedicated status of window here.
10857 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10859 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
10860 before binding generated-autoload-file.
10862 2011-08-01 Deniz Dogan <deniz@dogan.se>
10864 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
10866 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
10868 Sync with Tramp 2.2.2.
10870 * net/trampver.el: Update release number.
10872 2011-07-30 Juri Linkov <juri@jurta.org>
10874 * dired-aux.el (dired-touch-initial): Remove function.
10875 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
10876 current time, and `default' to the last modification time of the
10877 current marked file (bug#6887).
10879 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
10881 * simple.el (goto-line): Use string-to-number to provide a
10882 numeric argument to read-number (bug#9163).
10884 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
10886 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
10887 connection process, it could be nil.
10889 2011-07-27 Leo Liu <sdl.web@gmail.com>
10891 Simplify url handling in rcirc-mode.
10893 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
10894 (rcirc-browse-url-at-mouse): Remove.
10895 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
10897 2011-07-26 Alan Mackenzie <acm@muc.de>
10899 Fontify bitfield declarations properly.
10901 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
10902 (c-symbol-chars): Now exported as a lang variable.
10903 (c-not-primitive-type-keywords): New lang variable.
10905 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
10906 QT keyword "more" to prevent "more slots: ...." being spuriously
10907 parsed as a bitfield declaration.
10909 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10910 Refactor and enhance to handle bitfield declarations.
10911 (c-punctuation-in): New function.
10912 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
10913 declarations properly.
10915 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
10917 * calendar/icalendar.el (icalendar--all-events): Take care of
10918 multiple vcalendars in a single file.
10919 (icalendar--convert-float-to-ical): Checkdoc fixes.
10921 2011-07-25 Deniz Dogan <deniz@dogan.se>
10923 * image.el (insert-image): Clarifying docstring.
10925 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
10927 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
10928 `tramp-send-command-and-check' if there is no error.
10929 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
10931 2011-07-22 Alan Mackenzie <acm@muc.de>
10933 Prevent cc-langs.elc being loaded at run time.
10935 * progmodes/cc-mode.el: Remove two autoload forms which loaded
10938 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
10939 "(require 'cc-langs)". Quote a form so it will evaluate at
10940 (cc-mode's) compilation time.
10942 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
10944 * net/tramp.el (tramp-file-name-handler): Avoid recursive
10945 loading. (Bug#9114)
10947 2011-07-21 Martin Rudalics <rudalics@gmx.at>
10949 * window.el (display-buffer-pop-up-window)
10950 (display-buffer-pop-up-side-window)
10951 (display-buffer-in-side-window): Call display-buffer-set-height
10952 and display-buffer-set-width after setting the new window's
10953 buffer so `fit-window-to-buffer' and friends work on the right buffer.
10955 2011-07-20 Sam Steingold <sds@gnu.org>
10957 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10958 (etags-tags-included-tables): Call `convert-standard-filename' on
10959 the file names contained in TAGS so that windows Emacs can handle
10960 TAGS files created by cygwin ctags.
10962 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10964 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10965 which apparently didn't work.
10967 2011-07-19 Roland Winkler <winkler@gnu.org>
10969 * proced.el (proced-send-signal): For *Marked Processes* buffer
10970 put point at beginning of buffer.
10972 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
10974 * proced.el (proced-format): Make header lines align with the text
10977 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10979 * view.el (view-buffer): Allow running in `special' modes if we're
10980 visiting a file (bug#8615).
10982 2011-07-19 Martin Rudalics <rudalics@gmx.at>
10984 * window.el (display-buffer-alist-of-strings-p)
10985 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10987 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10990 2011-07-18 Alan Mackenzie <acm@muc.de>
10992 Fontify declarators properly when, e.g., a jit-lock chunk begins
10993 inside a declaration.
10995 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10997 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10999 (c-complex-decl-matchers): Insert reference to
11000 c-font-lock-enclosing-decls.
11002 * progmodes/cc-engine.el (c-backward-single-comment):
11003 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
11004 to nil around calls to (forward-comment -1).
11006 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11008 * image.el (put-image): Doc typo fix.
11010 * progmodes/etags.el (tags-search): Doc typo fix.
11012 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
11013 password if we get errors 550 to 554.
11015 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
11017 * net/gnutls.el (gnutls-log-level): Remove.
11019 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
11020 indentation character (bug#6380).
11022 * files.el (buffer-offer-save): Made permanently local (bug#6241).
11024 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
11025 to clarify what the problem is (bug#4291).
11027 * simple.el (current-kill): Clarify what
11028 `interprogram-paste-function' does (bug#7500).
11029 (auto-fill-mode): Document `auto-fill-function' in relation to
11030 `auto-fill-mode' (bug#2470).
11032 2011-07-16 Lawrence Mitchell <wence@gmx.li>
11034 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
11035 method if slot is read-only (bug#9035).
11037 2011-07-16 Martin Rudalics <rudalics@gmx.at>
11039 * frame.el (select-frame-set-input-focus): New argument NORECORD.
11040 * window.el (pop-to-buffer): Select window used even if it was
11041 selected before, see discussion of (Bug#8615), (Bug#6954).
11042 Pass argument NORECORD on to select-frame-set-input-focus.
11044 2011-07-15 Glenn Morris <rgm@gnu.org>
11046 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
11049 2011-07-09 Lawrence Mitchell <wence@gmx.li>
11051 * net/gnutls.el (gnutls-min-prime-bits): New variable.
11052 (gnutls-negotiate): Use it.
11054 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11056 * net/gnutls.el (gnutls-negotiate):
11057 Upcase `gnutls-algorithm-priority'.
11059 2011-07-15 Glenn Morris <rgm@gnu.org>
11061 * jka-compr.el (jka-compr-verbose): Move from here...
11062 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
11063 Add missing :version tag.
11064 * info.el: No need to require jka-compr when compiling.
11066 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11068 * net/gnutls.el (gnutls-algorithm-priority): New variable.
11069 (gnutls-negotiate): Use it.
11071 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
11073 * info.el (Info-beginning-of-buffer): New command.
11074 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
11075 announcing `b' as the key (bug#8325).
11076 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
11078 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
11080 * international/mule-cmds.el
11081 (describe-specified-language-support): Make the error message
11082 clearer (bug#8905).
11084 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
11086 * isearch.el (isearch-barrier): Add a doc string, since it's
11087 mentioned in a function doc string (bug#8678).
11089 2011-07-15 Martin Rudalics <rudalics@gmx.at>
11091 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
11092 buffer argument (Bug#9083) and self-identifying label argument.
11094 2011-07-15 Glenn Morris <rgm@gnu.org>
11096 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
11098 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11100 * man.el (Man-fontify-manpage): Fix message when formatting the
11101 man page (bug#7929).
11103 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11105 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
11106 argument LRM; if non-nil, append an invisible LRM character to the
11108 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
11109 last argument non-nil, when formatting buffer names.
11110 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
11111 paragraph direction.
11113 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11115 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
11116 the man page name (bug#7929).
11118 * image.el (put-image): Mention the `put-image' overlay property
11121 * scroll-bar.el (set-scroll-bar-mode): Mention that
11122 `scroll-bar-mode' lists the values (bug#7772).
11124 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
11125 command (bug#7729).
11127 * rect.el (apply-on-rectangle): Return the point after the last
11129 (string-rectangle): Go to the point after the last operation
11132 * printing.el (pr-toggle-region): Clarify the documentation
11133 slightly (bug#7493).
11135 * time.el (display-time-update):
11136 Allow `display-time-mail-function' to return nil (bug#7158).
11137 Fix suggested by Detlev Zundel.
11139 * vc/diff.el (diff): Clarify the order the file names are read
11142 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
11143 the doc string (bug#7015).
11145 * font-lock.el (font-lock-maximum-decoration): Mention what
11146 numeric levels mean (bug#6935).
11148 * startup.el (initial-buffer-choice): Don't mention the `none'
11149 selection, which is against policy.
11151 2011-07-14 Martin Rudalics <rudalics@gmx.at>
11153 * window.el (display-buffer-normalize-special):
11154 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
11156 2011-07-14 Eli Zaretskii <eliz@gnu.org>
11158 * subr.el (version<, version<=, version=): Mention "-CVS" and
11159 "-12345" alpha version numbers.
11161 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11163 * bindings.el: Add advertised binding for set-mark-command
11166 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
11168 * bindings.el (mode-line-other-buffer):
11169 * bookmark.el (bookmark-bmenu-2-window):
11170 * bs.el (bs-cycle-next, bs-cycle-previous):
11171 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
11174 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11177 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
11179 * follow.el (follow-debug-message, follow-redisplay):
11180 * jka-cmpr-hook.el (with-auto-compression-mode):
11181 Fix typos in docstrings.
11183 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11185 * subr.el (with-silent-modifications): Clarify somewhat what the
11186 macro inhibits (bug#6525).
11188 * simple.el (eval-expression): Note what it does if called
11189 interactively (bug#6495).
11191 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11193 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
11194 Use pop-to-buffer buffer-or-name if it is nil.
11196 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11197 Remove switch-to-buffer.
11199 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11201 * files.el (make-directory): Clarify that an error will be raised
11202 if there's an error (bug#6397).
11204 * startup.el (initial-buffer-choice): Add `none' as a choice
11207 * subr.el (add-hook): Clarify section about buffer-local hooks
11210 * dired.el (dired-flagged): Clarify doc string (bug#6117).
11212 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11214 * tabify.el (untabify): Preserve the current column so that point
11215 doesn't move (bug#6032).
11217 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11219 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
11220 Rewrite to avoid awkward possessive "s" (bug#5986).
11222 2011-07-13 Glenn Morris <rgm@gnu.org>
11224 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
11225 (dired-insert-directory): Give a message the first time
11226 if ls is found not to support --dired.
11228 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11230 * simple.el (toggle-truncate-lines): Clarify what is toggled
11231 (bug#5580). Text by Drew Adams.
11233 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
11235 * simple.el (blink-matching-open): Make the error message from the
11236 last change less verbose.
11238 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11240 * font-lock.el (font-lock-comment-face): Use the high contrast
11241 "yellow" color for font-lock-comment-face on low color terminals
11242 using a dark background color (bug#4221).
11244 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11246 * dired.el (dired-insert-set-properties): Make the doc string
11247 reflect what it does now (bug#5325).
11249 * simple.el (blink-matching-open): Say that we were unable to find
11250 the match within the limit, if we're limited (bug#5122).
11252 * international/mule-cmds.el (prefer-coding-system): Add an
11253 example (bug#4869).
11255 * progmodes/etags.el (tags-search): Document `file-list-form'
11258 2011-07-13 Lawrence Mitchell <wence@gmx.li>
11260 * net/browse-url.el (browse-url-default-browser)
11261 (browse-url-browser-function): Make the default browser choice a
11262 bit more logical (bug#4300). Also clean up the doc string.
11264 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
11266 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
11267 binary endings (bug#4440).
11269 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11271 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
11272 which can be pretty annoying (bug#8971).
11274 * jka-compr.el (jka-compr-verbose): New variable, and use
11275 throughout (bug#8971).
11277 * info.el (Info-find-file): Fall back on the installation
11278 directory if we can't find the info node anywhere else.
11280 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
11282 * vc/vc.el (vc-revert-file):
11283 Don't set file time-stamp in the past. (Bug#5181)
11285 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11287 * files.el (after-find-file): Give a better error message when
11288 trying to find a symlink that points to a file that doesn't exist
11291 * progmodes/cc-vars.el: Remove (probably) misleading comment
11294 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11296 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
11298 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11300 * mouse-sel.el: Hack restoring functionality, while keeping
11301 compatibility with 2010-07-03 changes to mouse selection.
11302 (mouse-sel-primary-overlay): New var.
11303 (mouse-sel-selection-alist): Use it.
11304 (mouse-sel-mode): Doc fix; remove points that are default features
11307 2011-07-12 Johan Bockgård <bojohan@gnu.org>
11309 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11310 Fix previous fix (bug#2490).
11312 2011-07-12 Roland Winkler <winkler@gnu.org>
11314 * textmodes/bibtex.el (bibtex-initialize):
11315 Use pop-to-buffer-same-window.
11316 (bibtex-search-entries): Fix interactive call.
11318 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11320 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11321 Fontise bytecomp Error lines more correctly (bug#2490).
11322 Fix suggested by Johan Bockgård.
11324 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
11326 * dired-x.el (dired-guess-default): Use `delete-dups'.
11328 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
11330 * dired.el (dired-mark-prompt):
11331 * dired-aux.el (dired-read-shell-command): Doc fix.
11333 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11335 * mail/sendmail.el (sendmail-query-once):
11336 Use `customize-save-variable' unconditionally, now that it works under
11339 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11341 * cus-edit.el (custom-file): Take an optional no-error variable.
11342 (customize-save-variable): Set the variable, and give a warning if
11343 running under "emacs -q".
11345 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
11347 * loadhist.el (unload-feature-special-hooks):
11348 Add `auto-coding-functions', `fill-nobreak-predicate' and
11349 `find-directory-functions' (bug#5327).
11351 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11353 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
11355 * cus-edit.el (custom-guess-name-alist): -alist variables should
11356 use the `alist' type (bug#3120). Suggested by Drew Adams.
11358 * printing.el: Add documentation to all the `pr-toggle-' commands.
11360 2011-07-11 Leo Liu <sdl.web@gmail.com>
11362 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
11363 backends where it makes sense (bug#2623).
11365 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11367 * dired-x.el (dired-guess-default): Remove duplicate shell command
11368 entries (bug#2028).
11369 (dired-guess-default): Fix grammar in doc string (bug#2028).
11370 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
11372 * subr.el (remove-duplicates): New conveniency function.
11374 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
11376 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
11379 2011-07-10 Martin Rudalics <rudalics@gmx.at>
11381 * window.el (display-buffer-normalize-default): Don't invert
11382 meaning of even-window-heights. Reported by Eli Zaretskii
11385 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
11387 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
11389 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
11391 * window.el (display-buffer): Fix arguments to
11392 display-buffer-reuse-window in last change.
11394 * faces.el (link): Use a less saturated blue on light backgrounds.
11396 * startup.el (fancy-startup-text, fancy-about-text)
11397 (fancy-startup-tail): Use font-lock faces, for background safety.
11399 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
11401 * emulation/viper-cmd.el (viper-change-state-to-vi):
11402 Limit triggering of abbrev expansion (Bug#9038).
11404 2011-07-09 Martin Rudalics <rudalics@gmx.at>
11406 * window.el (display-buffer-default-specifiers): Remove.
11407 (display-buffer-macro-specifiers): Remove default specifiers.
11408 (display-buffer-alist): Default to nil.
11409 (display-buffer-reuse-window): New optional argument other-window.
11410 (display-buffer-pop-up-window): Allow splitting internal
11411 windows. Check whether a live window was created.
11412 (display-buffer-other-window-means-other-frame)
11413 (display-buffer-normalize-arguments): Rename to
11414 display-buffer-normalize-argument and rewrite. Set the
11415 other-window specifier.
11416 (display-buffer-normalize-special): New function.
11417 (display-buffer-normalize-options): Rename to
11418 display-buffer-normalize-default and rewrite.
11419 (display-buffer-normalize-options-inhibit): Remove.
11420 (display-buffer-normalize-specifiers): Rewrite.
11421 (display-buffer): Process other-window specifier and call
11422 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
11424 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
11425 (display-buffer-alist-set): Don't handle 'unset default values.
11426 (display-buffer-in-window, display-buffer-alist-set):
11427 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
11428 <tassilo@member.fsf.org>.
11430 2011-07-09 Leo Liu <sdl.web@gmail.com>
11432 * register.el (insert-register): Restore accidental change on
11433 2011-06-26. (Bug#9028)
11435 2011-07-09 Glenn Morris <rgm@gnu.org>
11437 * subr.el (remq): Handle the empty list. (Bug#9024)
11439 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
11441 * mail/sendmail.el (send-mail-function): No longer delay custom
11443 * custom.el (custom-initialize-delay): Doc fix.
11445 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11447 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
11449 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
11451 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
11452 human-friendly prompt.
11454 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11456 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
11457 provided by a particular plugin.
11459 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11461 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
11462 save customizations (with "emacs -Q"), just set the variable
11463 instead of erroring out.
11465 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11467 2011-07-08 Juri Linkov <juri@jurta.org>
11469 * arc-mode.el (archive-zip-expunge, archive-zip-update)
11470 (archive-zip-update-case): Use 7z if found by `executable-find'.
11471 The order of searching the available programs is the same as in
11472 `archive-zip-extract' (bug#8968).
11474 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11476 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
11477 (menu-bar-options-menu): Tweak descriptions.
11479 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11481 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
11482 menu items into verb phrases (bug#1421). Also refill to fit under
11485 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11487 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
11488 (Info-read-node-name): Doc fix (Bug#1084).
11490 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
11491 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
11492 (end-of-sexp, beginning-of-sexp)
11493 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
11494 (forward-symbol, forward-same-syntax, word-at-point)
11495 (sentence-at-point): Doc fix (Bug#1144).
11497 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11499 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
11500 should cover it (bug#1281).
11502 * cus-edit.el (custom-show): Mark as obsolete.
11504 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
11505 negotiation fails, then possibly try again with a non-encrypted
11506 connection (bug#9017).
11508 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
11511 2011-07-07 Richard Stallman <rms@gnu.org>
11513 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
11514 property, and handle its changed format.
11515 Look for the correct line number.
11516 Use file's line contents (but not past first =) to find
11517 correct line in message.
11519 2011-07-07 Kenichi Handa <handa@m17n.org>
11521 * international/characters.el (build-unicode-category-table):
11523 (unicode-category-table): Set it by unicode-property-table-internal.
11525 * international/mule-cmds.el (char-code-property-alist): Move to
11527 (get-char-code-property): Call unicode-property-table-internal to
11528 load a file. Call get-unicode-property-internal where necessary.
11529 (put-char-code-property): Call unicode-property-table-internal to
11530 load a file. Call put-unicode-property-internal where necessary.
11531 put-unicode-property-internal where necessary.
11532 (char-code-property-description):
11533 Call unicode-property-table-internal to load a file.
11535 * international/charprop.el:
11536 * international/uni-bidi.el:
11537 * international/uni-category.el:
11538 * international/uni-combining.el:
11539 * international/uni-comment.el:
11540 * international/uni-decimal.el:
11541 * international/uni-decomposition.el:
11542 * international/uni-digit.el:
11543 * international/uni-lowercase.el:
11544 * international/uni-mirrored.el:
11545 * international/uni-name.el:
11546 * international/uni-numeric.el:
11547 * international/uni-old-name.el:
11548 * international/uni-titlecase.el:
11549 * international/uni-uppercase.el: Regenerate.
11551 * loadup.el: Load international/charprop.el before
11552 international/characters.
11554 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
11556 * window.el (next-buffer, previous-buffer): Signal an error if
11557 called from a minibuffer window.
11559 * bindings.el: Revert 2011-07-04 change.
11561 2011-07-06 Richard Stallman <rms@gnu.org>
11563 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
11564 (rmail-mime-insert-bulk, rmail-mime-insert-text):
11565 Treat markers like ints.
11566 (rmail-mime-entity): Doc fix.
11568 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11570 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
11571 defcustom again for backwards compatibility.
11573 * simple.el (shell-command-on-region): Fill.
11575 * dired-aux.el (dired-kill-line): Add a doc string.
11577 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
11578 to "\\sw\\|\\s_" (bug#358).
11580 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
11581 (dired-unmark-backward): Ditto.
11582 (dired-flag-backup-files): Ditto.
11584 * dired-x.el (dired-mark-sexp): Ditto.
11586 2011-07-06 Richard Stallman <rms@gnu.org>
11588 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
11589 (rmail-mime-entity): New arg TRUNCATED.
11590 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
11592 (rmail-mime-save): Warn if entity is truncated.
11593 (rmail-mime-toggle-hidden): Likewise, for showing.
11594 (rmail-mime-process-multipart): Record when an entity is truncated.
11596 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
11597 if ENTITY is a string.
11599 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
11601 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
11602 of faces when `M-C-x'-ing their definitions (bug#8378).
11603 Also clean up the code slightly.
11605 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
11606 because that makes the colors go away.
11608 * mail/sendmail.el (send-mail-function): Change the default to
11609 `sendmail-query-once'.
11610 (sendmail-query-once): Add an autoload cookie.
11612 * net/network-stream.el (network-stream-open-starttls): Try using
11613 a plain connection even if the server offered STARTTLS, and we
11614 kinda wanted to use it, if Emacs doesn't have any STARTTLS
11615 capability. This should make smtpmail.el work in slightly more
11618 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
11620 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
11622 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
11624 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
11626 * progmodes/sql.el: Version 3.0
11627 (sql-product-alist): Add product :completion-object,
11628 :completion-column, and :statement attributes.
11629 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
11630 (sql-mode-syntax-table): Mark all punctuation.
11631 (sql-font-lock-keywords-builder): Temporarily remove fallback on
11633 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
11634 (sql-mode-oracle-font-lock-keywords): Improve.
11635 (sql-oracle-show-reserved-words): New function for development.
11636 (sql-product-font-lock): Simplify for source code buffers.
11637 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
11639 (sql-highlight-product): Set product specific syntax table.
11640 (sql-mode-map): Add statement movement functions.
11641 (sql-ansi-statement-starters, sql-oracle-statement-starters):
11643 (sql-statement-regexp, sql-beginning-of-statement)
11644 (sql-end-of-statement, sql-signum): New functions.
11645 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
11646 (sql-show-sqli-buffer): Bug fix.
11647 (sql-interactive-mode): Store connection data as buffer local.
11648 (sql-connect): Add NEW-NAME parameter. Redesign interaction
11649 with sql-interactive-mode.
11650 (sql-save-connection): Save buffer local settings.
11651 (sql-connection-menu-filter): Change menu entry name.
11652 (sql-product-interactive): Bug fix.
11653 (sql-preoutput-hold): New variable.
11654 (sql-interactive-remove-continuation-prompt): Bug fixes.
11655 (sql-debug-redirect): New variable.
11656 (sql-str-literal): New function.
11657 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
11659 (sql-oracle-save-settings, sql-oracle-restore-settings)
11660 (sql-oracle-list-all, sql-oracle-list-table): New functions.
11661 (sql-completion-object, sql-completion-column)
11662 (sql-completion-sqlbuf): New variables.
11663 (sql-build-completions-1, sql-build-completions)
11664 (sql-try-completion): New functions.
11665 (sql-read-table-name): Use them.
11666 (sql-contains-names): New buffer local variable.
11667 (sql-list-all, sql-list-table): Use it.
11668 (sql-oracle-completion-types): New variable.
11669 (sql-oracle-completion-object, sql-sqlite-completion-object)
11670 (sql-postgres-completion-object): New functions.
11672 2011-07-06 Glenn Morris <rgm@gnu.org>
11674 * window.el (pop-to-buffer): Doc fix.
11676 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
11678 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
11680 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
11682 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
11684 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
11686 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
11688 * button.el (button): Inherit from link face. Suggested by Dan
11691 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11693 * progmodes/gdb-mi.el: Fit in 80 columns.
11694 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
11697 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
11698 if imenu is simply not configured (bug#8941).
11700 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
11702 * allout.el (allout-post-undo-hook): New allout outline-change
11703 event hook to signal undo activity.
11704 (allout-post-command-business): Run allout-post-undo-hook if an
11705 undo just occurred.
11706 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
11707 * allout-widgets.el (allout-widgets-after-undo-function):
11708 Ensure the integrity of the current item's decoration after it has been
11709 in the vicinity of an undo.
11710 (allout-widgets-mode): Include allout-widgets-after-undo-function
11711 on the new allout-post-undo-hook.
11713 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11715 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
11716 Let define-derived-mode define it.
11717 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
11718 cycles of abbrev-table inheritance (bug#8998).
11720 2011-07-05 Roland Winkler <winkler@gnu.org>
11722 * textmodes/bibtex.el: Add support for biblatex.
11723 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
11724 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
11725 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
11726 (bibtex-entry-alist, bibtex-field-alist): New variables.
11727 (bibtex-entry-field-alist): Obsolete alias for
11728 bibtex-BibTeX-entry-alist.
11729 (bibtex-entry-alist, bibtex-field-alist): New widgets.
11730 (bibtex-set-dialect): New command.
11731 (bibtex-entry-type, bibtex-entry-head)
11732 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
11733 Bind via bibtex-set-dialect.
11734 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
11735 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
11736 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
11737 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
11738 Define via bibtex-set-dialect.
11739 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
11740 Obey bibtex-no-opt-remove-re.
11741 (bibtex-vec-push, bibtex-vec-incr): New functions.
11742 (bibtex-format-entry, bibtex-field-list)
11743 (bibtex-print-help-message, bibtex-validate)
11744 (bibtex-search-entries): Use new format of bibtex-entry-alist.
11746 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11748 * progmodes/compile.el (compilation-goto-locus):
11749 * net/tramp-cmds.el (tramp-append-tramp-buffers):
11750 * bs.el (bs-cycle-next, bs-cycle-previous):
11751 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
11752 * bindings.el (mode-line-other-buffer):
11753 * autoinsert.el (auto-insert):
11754 * arc-mode.el (archive-extract):
11755 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
11757 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11759 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
11760 Fix check of `emacs-lock-unlockable-modes'.
11761 Coerce true values of `emacs-lock--try-unlocking' to t.
11763 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11765 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
11766 * emacs-lock.el: New file.
11768 2011-07-05 Julien Danjou <julien@danjou.info>
11770 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
11771 than `boundp' to check if face is set.
11773 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11775 * register.el (registerv-make):
11776 * window.el (window-min-height): Fix typos in docstrings.
11778 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11780 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
11783 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11785 * server.el (server-execute): Catch quit and call
11786 `server-return-error' to pass the error back to emacsclient and
11787 close the connection (bug#8942).
11789 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
11791 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
11792 insecure exception for current topic. Also note that auto-saves
11793 are handled differently.
11795 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
11796 State variables for tracking auto-save inhibition situation.
11798 (allout-write-contents-hook-handler): Rename from
11799 'allout-write-file-hook-handler', and describe how it depends on
11800 write-contents-functions sensitivity to non-nil value to prevent
11803 (allout-auto-save-hook-handler): Remove. auto-save does not check
11804 this in individual buffers, only in the starting buffer, so this
11805 is not the right way for us to inhibit auto-save in a buffer
11806 according to its condition.
11808 (allout-mode): Use new allout-write-contents-hook-handler, and
11809 only with write-contents-functions. Remove auto-save provisions -
11810 they're implemented elsewhere.
11812 (allout-before-change-handler): If undo is in progress, note that
11813 for attention of allout-post-command-business.
11815 (allout-post-command-business): If the command we're following was
11816 an undo, check for change in the status of encrypted items and
11817 adjust auto-save inhibitions accordingly.
11819 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
11820 according to whether there are or aren't any plain-text topics
11821 pending encryption.
11823 (allout-inhibit-auto-save-info-for-decryption):
11824 Adjust buffer-saved-size and some allout state to inhibit auto-saves
11825 if there are plain-text topics pending encryption.
11827 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
11828 buffer-saved-size and some allout state to not inhibit auto-saves
11829 if there are no longer any plain-text topics pending encryption.
11831 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
11832 No longer provide for exemption of the current topic.
11834 2011-07-04 Juri Linkov <juri@jurta.org>
11836 Add 7z operations to delete and save changed members (bug#8968).
11837 * arc-mode.el (archive-7z-expunge, archive-7z-update):
11839 (archive-7z-write-file-member): New function.
11840 (archive-7z-summarize): Fix the number of dashes in the
11843 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11845 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
11848 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
11850 * bindings.el: Ignore next-buffer and previous-buffer in
11851 minibuffer-local-map.
11853 * font-lock.el (font-lock-builtin-face): Change light background
11854 color to dark slate blue (Bug#6693).
11856 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
11858 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
11860 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11862 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
11863 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11864 Add switch-to-buffer.
11866 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11868 * isearch.el (isearch-search-fun-function): Clarify further the
11869 meaning of the function returned.
11871 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
11873 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
11875 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
11876 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
11878 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
11879 `tramp-default-remote-path' does not exist.
11880 (tramp-send-command-and-read): New optional argument NOERROR.
11881 (tramp-open-connection-setup-interactive-shell)
11882 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
11883 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
11884 (tramp-process-sentinel): Flush also process' connection property.
11885 (tramp-sh-handle-start-file-process): Do not set process
11886 sentinel. It is done now ...
11887 (tramp-maybe-open-connection): ... here. (Bug#8929)
11889 2011-07-04 MON KEY <monkey@sandpframing.com>
11891 * play/animate.el (animate-string): Doc fixes and allow changing
11892 the buffer name (bug#5417).
11894 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11896 * play/animate.el (animation-buffer-name): Rename from *animate*.
11898 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11900 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
11901 This is simpler and helps future-proof the code.
11902 (timer-until): Use time-subtract and float-time.
11903 (timer--time-less-p): Use time-less-p.
11905 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11907 * type-break.el (timep): Use the value of `float-time' to avoid a
11908 byte-compiler warning.
11910 * server.el (server-eval-and-print): Return any result, even nil.
11912 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11914 * type-break.el: Accept time formats that the builtins accept.
11915 (timep, type-break-time-difference): Accept any format that
11916 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
11917 This is simpler and helps future-proof the code.
11918 (type-break-time-difference): Round rather than ignoring
11919 subseconds components.
11921 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11923 * info.el (Info-apropos-matches): Make non-interactive, since it
11924 doesn't seem to do anything useful as a command (bug#8829).
11926 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
11928 * frame.el (frame-background-mode, frame-set-background-mode):
11929 Move from faces.el.
11930 (frame-default-terminal-background): New function.
11932 * custom.el (custom-push-theme): Don't record faces in `changed'
11933 theme; this doesn't work correctly for per-frame face settings.
11934 (disable-theme): Use face-set-after-frame-default to reset faces.
11935 (custom--frame-color-default): New function.
11937 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11939 * dired.el (dired-flagging-regexp): Remove unused variable
11942 2011-03-29 Kevin Ryde <user42@zip.com.au>
11944 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11945 `perl-Test2' extend to match possible "fail #N" rep count
11948 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11950 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11951 `smtpmail-via-smtp' now returns the error instead of nil.
11953 * isearch.el (isearch-search-fun-function): Clarify the doc string
11956 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
11958 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11959 unnecessary spaces (bug#8987).
11961 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11963 * net/network-stream.el (open-network-stream): Use the
11964 :end-of-capability command thoughout.
11966 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11968 * net/network-stream.el (open-network-stream): Add the
11969 :end-of-capability command parameter, used by pop3.el.
11971 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11973 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11975 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11976 for list)" (bug#6475).
11978 * files.el (file-expand-wildcards): Ignore non-readable
11979 sub-directories while trying to find matches instead of signaling
11980 an error (bug#6297).
11982 * man.el (Man-reference-regexp): Allow matching possible
11983 word-wrapped references (bug#6289).
11985 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11986 for consistency with the other vc buffers (bug#6197).
11987 (vc-checkin): Ditto.
11989 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11991 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11993 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11995 * custom.el (defcustom): Clarify that :set is only used in the
11996 Customize user interface (bug#6089).
11998 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11999 associated with a file, refuse to run instead of erroring out
12002 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
12003 the doc string, since it appears that using `fill-column' always
12004 controls the width (bug#7845).
12006 * simple.el (shell-command-on-region): Say where the error output
12007 went if `shell-command-default-error-buffer' is set (bug#6857).
12009 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
12011 * allout.el (allout-yank-processing): Adjust cursor position for
12012 backwards-deleted space.
12014 (allout-rebullet-heading): Register changes with
12015 allout-exposure-changed-hook, so the modified topic is properly
12018 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12020 * minibuffer.el (completion-in-region): Document PREDICATE
12023 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
12024 of keyword/argument pairs (bug#6904).
12026 * replace.el (multi-occur):
12027 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
12029 2011-07-02 Drew Adams <drew.adams@oracle.com>
12031 * dired.el (dired-mark-if): Make the message about whether it's
12032 marking or unmarking clearer (bug#8523).
12034 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12036 * disp-table.el (display-table-print-array): New function.
12037 (describe-display-table): Use it to print the vectors more pretty
12040 2011-07-02 Martin Rudalics <rudalics@gmx.at>
12042 * window.el (window-state-get-1): Don't assign clone numbers.
12043 Add clone-of item to list of window parameters.
12044 (window-state-put-2): Don't process clone numbers.
12045 (display-buffer-alist): Fix doc-string.
12047 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12049 * subr.el (remq): Don't allocate if it's not needed.
12050 (keymap--menu-item-binding, keymap--menu-item-with-binding)
12051 (keymap--merge-bindings): New functions.
12052 (keymap-canonicalize): Use them to refine the canonicalization.
12053 * minibuffer.el (minibuffer-local-completion-map)
12054 (minibuffer-local-must-match-map): Move initialization from C.
12055 (minibuffer-local-filename-completion-map): Move initialization from C;
12056 don't inherit from anything here.
12057 (minibuffer-local-filename-must-match-map): Make obsolete.
12058 (completing-read-default): Use make-composed-keymap to combine
12059 minibuffer-local-filename-completion-map with either
12060 minibuffer-local-must-match-map or
12061 minibuffer-local-filename-completion-map.
12063 2011-07-01 Glenn Morris <rgm@gnu.org>
12065 * type-break.el (type-break-time-sum): Use dolist.
12067 * textmodes/flyspell.el (flyspell-word-search-backward):
12068 Replace CL function.
12070 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12072 * mouse.el (mouse--strip-first-event): New function.
12073 (function-key-map): Use it to map fringe clicks to normal clicks
12076 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
12077 (vc-bzr-revision-completion-table): Add support for annotate and date.
12079 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
12080 inherit from parent.
12082 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
12084 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
12085 (dired-show-file-type): Doc fixup (bug#8818).
12087 * dired.el (dired-mode): Fix up the doc string as suggested by
12088 Drew Adams (bug#8817).
12090 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
12091 cookie, since the manual says that it should be possible to add
12092 this function to `find-file-hook' (bug#8709).
12094 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12096 * progmodes/cfengine.el: Moved all cfengine3.el functionality
12097 here. Noted Ted Zlatanov as the maintainer.
12098 (cfengine-common-settings, cfengine-common-syntax): New functions
12099 to set up common things between `cfengine-mode' and
12101 (cfengine3-mode): New mode.
12102 (cfengine3-defuns cfengine3-defuns-regex
12103 (cfengine3-class-selector-regex cfengine3-category-regex)
12104 (cfengine3-vartypes cfengine3-font-lock-keywords)
12105 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
12106 (cfengine3-indent-line): Add from cfengine3.el.
12108 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
12110 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
12112 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
12114 2011-07-01 Martin Rudalics <rudalics@gmx.at>
12116 * window.el (same-window-buffer-names, same-window-regexps)
12117 (same-window-p, special-display-frame-alist)
12118 (special-display-popup-frame, special-display-function)
12119 (special-display-buffer-names, special-display-regexps)
12120 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
12121 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12122 (split-window-preferred-function, split-height-threshold)
12123 (split-width-threshold, even-window-heights)
12124 (display-buffer-mark-dedicated, window-splittable-p)
12125 (split-window-sensibly, window-safely-shrinkable-p):
12127 (display-buffer): Don't spread args with function specifier
12128 because special-display-popup-frame won't like it.
12130 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12132 Time-stamp simplifications and fixes.
12133 These improve accuracy slightly, and future-proof the code
12134 against some potential changes to current-time format.
12136 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
12137 by using time-since and float-time.
12139 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
12140 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
12141 + NNN microseconds".
12143 * type-break.el (type-break-time-sum): Rewrite using time-add.
12145 * play/hanoi.el (hanoi-current-time-float): Remove.
12146 All uses replaced by float-time.
12148 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
12149 This yields a more-accurate answer.
12150 (rng-time-to-float): Remove; no longer needed.
12152 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
12154 * calendar/timeclock.el (timeclock-seconds-to-time):
12155 Defalias to seconds-to-time, since they're the same thing.
12157 * emacs-lisp/elp.el (elp-elapsed-time):
12158 * emacs-lisp/benchmark.el (benchmark-elapse):
12159 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
12161 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12163 * window.el (bury-buffer): Don't iconify the only frame.
12164 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
12165 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
12167 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
12169 * eshell/em-smart.el (eshell-smart-display-navigate-list):
12170 Add mouse-yank-primary.
12172 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12174 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
12176 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12178 * emacs-lisp/find-func.el (find-library--load-name): New fun.
12179 (find-library-name): Use it to find relative load names when provided
12180 absolute file name (bug#8803).
12182 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12184 * textmodes/flyspell.el (flyspell-word): Consider words that
12185 differ only in case as potential doublons (bug#5687).
12187 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
12188 Remove two rather uninteresting debugging-like messages to make
12189 debbugs.el more silent.
12191 * comint.el (comint-password-prompt-regexp): Accept "Response" as
12192 a password-like phrase.
12194 2011-06-30 Masatake YAMATO <yamato@redhat.com>
12196 * progmodes/cc-guess.el: New file.
12198 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
12200 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
12201 derived from `c-basic-common-init'.
12203 * progmodes/cc-mode.el (top-level): Require cc-guess.
12204 (c-basic-common-init): Use `cc-choose-style-for-mode'.
12206 2011-06-30 Lawrence Mitchell <wence@gmx.li>
12208 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
12210 2011-06-30 Alan Mackenzie <acm@muc.de>
12212 * progmodes/cc-engine.el (c-guess-continued-construct):
12213 Correct the handling of template-args-cont, particularly for when font
12214 lock is disabled. Name this case as "CASE G".
12216 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
12218 * allout.el (allout-yank-processing): Fix injection of extra space
12219 between bullet and non-whitespace character in first topic when
12220 pasting, ensuring that the actual spacing in the pasted topic
12221 following the bullet char is preserved. This extra space was
12222 causing pasted encrypted topics to get a decrypted status even
12223 when the content was actually still encrypted. Now the decryption
12224 status from before the paste is preserved.
12226 (allout-flag-region): Set all allout overlays so they evaporate
12227 when reduced to zero length (evanescent), to prevent overlay
12230 2011-06-30 Glenn Morris <rgm@gnu.org>
12232 * w32-fns.el (w32-charset-info-alist): Declare.
12234 * find-dired.el (find-grep-options): Simplify.
12236 * term/ns-win.el (ns-set-resource): Declare.
12238 * ses.el (row, col): Declare dynamic variables honestly.
12240 * textmodes/reftex-parse.el (index-tags): Declare.
12242 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
12244 * cus-edit.el (customize-push-and-save): New function.
12246 * files.el (hack-local-variables-confirm): Use it.
12248 * custom.el (load-theme): New arg NO-CONFIRM.
12249 Use customize-push-and-save (Bug#8720).
12250 (custom-enabled-themes): Doc fix.
12252 * cus-theme.el (customize-create-theme)
12253 (custom-theme-merge-theme): Callers to load-theme changed.
12255 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12257 * thingatpt.el (thing-at-point-short-url-regexp): Require that
12258 short URLs have at least one dot in them (bug #7614).
12260 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
12261 nil, because using a pty is apparently too slow (bug #895).
12263 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
12265 * mail/sendmail.el (sendmail-query-once): New function.
12266 (sendmail-query-once-function): New variable.
12268 2011-06-29 Glenn Morris <rgm@gnu.org>
12270 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
12272 * ses.el (top-level): Require cl when compiling.
12273 (ses-set-localvars): Fix error statement.
12274 Call it at compile time to silence a storm of warnings.
12276 2011-06-29 Martin Rudalics <rudalics@gmx.at>
12278 * window.el (normalize-live-buffer): Rename to
12279 window-normalize-buffer.
12280 (normalize-live-frame): Rename to window-normalize-frame.
12281 (normalize-any-window): Rename to window-normalize-any-window.
12282 (normalize-live-window): Rename to window-normalize-live-window.
12283 (make-window-atom): Rename to window-make-atom.
12284 (window-resize-reset): Rename to window--resize-reset.
12285 (window-resize-reset-1): Rename to window--resize-reset-1.
12286 (resize-mini-window): Rename to window--resize-mini-window.
12287 (resize-subwindows-skip-p): Rename to
12288 window--resize-subwindows-skip-p.
12289 (resize-subwindows-normal): Rename to
12290 window--resize-subwindows-normal.
12291 (resize-subwindows): Rename to window--resize-subwindows.
12292 (resize-other-windows): Rename to window--resize-siblings.
12293 (resize-this-window): Rename to window--resize-this-window.
12294 (resize-root-window): Rename to window--resize-root-window.
12295 (resize-root-window-vertically): Rename to
12296 window--resize-root-window-vertically.
12297 (normalize-buffer-to-display): Rename to
12298 window-normalize-buffer-to-display.
12299 (normalize-buffer-to-switch-to): Rename to
12300 window-normalize-buffer-to-switch-to.
12301 Correspondingly update all callers of the functions listed
12303 (display-buffer-alist, display-buffer-normalize-arguments)
12304 (display-buffer-normalize-options, display-buffer)
12305 (display-buffer-alist-set): Use "function" instead of
12308 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
12310 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
12311 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
12312 debbugs.gnu.org. Mention acknowledgment email.
12314 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
12316 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
12317 buffer multibyteness, since it shouldn't matter.
12319 2011-06-28 Martin Rudalics <rudalics@gmx.at>
12321 * window.el (display-buffer-in-side-window): Handle dedicated
12322 windows as in display-buffer-reuse-window.
12323 (display-buffer-normalize-alist): Use value of override
12325 (display-buffer-normalize-specifiers): Use value of
12326 other-window-means-other-frame specifier.
12327 (display-buffer-alist): Rewrite some texts in widgets.
12328 (display-buffer): Spread arguments when calling function
12329 specified by fun-with-args.
12331 2011-06-28 Deniz Dogan <deniz@dogan.se>
12333 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
12336 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
12337 selectors (Bug#5732).
12338 (css-proprietary-nmstart-re): Use `regexp-opt'.
12340 2011-06-27 Jari Aalto <jari.aalto@cante.net>
12342 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
12343 (eshell-ls-date-format): New defcustom.
12344 (eshell-ls-file): Use it.
12346 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12348 * help-fns.el (describe-variable): Fix message for terminal-local vars.
12350 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
12352 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
12353 (ange-ftp-make-tmp-name): New arg.
12354 (ange-ftp-file-local-copy): Use it.
12356 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
12358 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
12359 no-conversion (Bug#8870).
12361 2011-06-27 Martin Rudalics <rudalics@gmx.at>
12363 * window.el (window-right, window-left, window-child)
12364 (window-child-count, window-last-child)
12365 (window-iso-combination-p, walk-window-tree-1)
12366 (window-atom-check-1, window-tree-1, delete-window)
12367 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
12368 new naming conventions - window-vchild, window-hchild,
12369 window-next and window-prev are now called window-top-child,
12370 window-left-child, window-next-sibling and window-prev-sibling
12372 (resize-window-reset): Rename to window-resize-reset.
12373 (resize-window-reset-1): Rename to window-resize-reset-1.
12374 (resize-window): Rename to window-resize.
12375 (window-min-height, window-min-width)
12376 (resize-mini-window, resize-this-window, resize-root-window)
12377 (resize-root-window-vertically, adjust-window-trailing-edge)
12378 (enlarge-window, shrink-window, maximize-window)
12379 (minimize-window, delete-window, quit-restore-window)
12380 (split-window, balance-windows, balance-windows-area-adjust)
12381 (balance-windows-area, window-state-put-2)
12382 (display-buffer-even-window-sizes, display-buffer-set-height)
12383 (display-buffer-set-width, set-window-text-height)
12384 (fit-window-to-buffer): Rename all "resize-window" prefixed
12385 calls to use the "window-resize" prefix convention.
12386 (display-buffer-alist): Fix symbol for label specifier.
12387 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
12388 corresponding specifier.
12389 Reported by Juanma Barranquero <lekktu@gmail.com>.
12391 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12393 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
12395 (ses-call-printer): Does not pass an empty string to formatter when the
12396 cell is empty to keep from barking printer Calc math-format-value.
12398 2011-06-27 Richard Stallman <rms@gnu.org>
12400 * battery.el (battery-mode-line-limit): New variable.
12401 (battery-update): Handle it.
12403 * mail/rmailmm.el (rmail-mime-process-multipart):
12404 Handle truncated messages.
12406 2011-06-27 Glenn Morris <rgm@gnu.org>
12408 * progmodes/flymake.el (flymake-err-line-patterns):
12409 Allow for column numbers in the ant/javac pattern. (Bug#8866)
12411 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12413 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
12414 (ses--clean-!, ses--clean-_): New functions.
12415 (ses-range): Add configurability of readout order, and conversion
12418 * ses.el (ses-repair-cell-reference-all): New function.
12419 (ses-cell-symbol): Set macro as safe, so that it can be used in
12422 * ses.el: Update cycle detection algorithm.
12423 (ses-localvars): Add ses--Dijkstra-attempt-nb and
12424 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
12425 (ses-set-localvars): New function.
12426 (ses-make-cell): Add property-list as a cell element.
12427 (ses-cell-property-get-fun, ses-cell-property-get)
12428 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
12429 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
12431 (ses-cell-property-set, ses-cell-property-pop)
12432 (ses-cell-property-get-handle): New macro.
12433 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
12434 New aliases, used for code readability.
12435 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
12437 (ses-self-reference-early-detection): New defcustom.
12438 (ses-formula-references): Robustify against self-referring cells.
12439 (ses-mode): Use ses-set-localvars.
12440 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
12441 before lauching the update processing.
12442 (ses-initialize-Dijkstra-attempt): New function.
12443 (ses-recalculate-cell): Update for cycle detection based on
12444 Dijkstra algorithm.
12446 * ses.el: Fix commenting and indenting convention.
12448 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12450 * bs.el (bs-cycle-next): Complete last change.
12452 2011-06-27 Drew Adams <drew.adams@oracle.com>
12454 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
12456 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12458 * net/network-stream.el (network-stream-open-starttls):
12459 Don't re-get capabilities unless we've reestablished connection.
12460 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
12462 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
12463 to binary to possibly avoid line encoding issues on Windows (among
12466 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12468 * net/network-stream.el (open-network-stream): Return an :error
12469 saying what the problem was, if possible.
12471 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
12474 * net/network-stream.el (network-stream-open-starttls): If we
12475 wanted to use STARTTLS, and the server offered it, but we weren't
12476 able to because we had no STARTTLS support, then close the connection.
12477 (open-network-stream): Return an :error element, if present.
12479 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12481 * hl-line.el (hl-line-sticky-flag): Doc fix.
12482 (global-hl-line-sticky-flag): New option (Bug#8323).
12483 (global-hl-line-highlight): Obey it.
12485 * vc/vc.el (vc-revert-show-diff): Default to t.
12487 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
12489 * allout-widgets.el (allout-widgets-post-command-business):
12490 Stop decorating intermediate isearch matches. They're not being
12491 undecorated when an isearch is continued past, and isearch
12492 automatically collapses them. This leads to "widget leaks", where
12493 decorated items accumulate in collapsed areas. Lines with lots of
12494 hidden widgets can slow down cursor travel, substantially.
12495 Too much complicated machinery would be needed to ensure undecoration,
12496 so we're doing without this nicety.
12498 (allout-widgets-tally-string): Don't try to do a hash-table-count
12499 of allout-widgets-tally when it's nil. This eliminates spurious "Error
12500 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
12501 *Messages* when allout-widgets-maintain-tally is t.
12503 2011-06-26 Martin Rudalics <rudalics@gmx.at>
12505 * window.el (display-buffer-normalize-argument): Rename to
12506 display-buffer-normalize-arguments. Handle special meaning of
12507 LABEL argument. Respect special-display-function when popping up
12508 a new frame. Fix code searching for a window showing the buffer
12510 (display-buffer-normalize-specifiers):
12511 Call display-buffer-normalize-arguments.
12512 (display-buffer-in-window): Don't undedicate the window if its
12513 buffer remains the same.
12514 Reported by Drew Adams <drew.adams@oracle.com>.
12515 (display-buffer-alist): Add choice for same-window macro
12517 (display-buffer): Mention special meaning of LABEL argument in
12518 doc-string. Fix quoting. Don't pop up a new frame even as
12521 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
12523 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
12524 avoid deleting the current window in some cases (bug#8911).
12526 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
12528 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
12531 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12533 * net/network-stream.el (network-stream-open-starttls):
12534 Use built-in TLS support if `gnutls-available-p' is true.
12535 (network-stream-open-tls): Ditto.
12537 2011-06-26 Leo Liu <sdl.web@gmail.com>
12539 * register.el (registerv): New struct.
12540 (registerv-make): New function.
12541 (jump-to-register, describe-register-1, insert-register):
12542 Support the jump-func, print-func and insert-func slot of a registerv
12545 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12547 * vc/vc.el (vc-revert-show-diff): New defcustom.
12548 (vc-diff-internal): New arg specifying diff buffer.
12549 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
12550 reuse an existing *vc-diff* buffer (Bug#8927).
12552 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
12554 2011-06-26 Glenn Morris <rgm@gnu.org>
12556 * progmodes/f90.el (f90-critical-indent): New option.
12557 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
12558 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
12559 (f90-mode): Doc fix.
12560 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
12561 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
12562 (f90-beginning-of-block, f90-next-block, f90-indent-region)
12563 (f90-match-end): Handle block, critical.
12565 2011-06-25 Glenn Morris <rgm@gnu.org>
12567 * calendar/diary-lib.el (diary-included-files): Doc fix.
12568 (diary-include-files): New function, extracted from
12569 diary-include-other-diary-files and diary-mark-included-diary-files.
12570 (diary-include-other-diary-files, diary-mark-included-diary-files):
12571 Just call diary-include-files.
12572 (diary-mark-entries): Reset diary-included-files on first call.
12574 * calendar/diary-lib.el (diary-mark-entries)
12575 (diary-mark-included-diary-files):
12576 Visit included diary-files in temp buffers.
12578 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
12579 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
12580 (f90-start-block-re, f90-imenu-generic-expression)
12581 (f90-looking-at-program-block-start, f90-no-block-limit):
12582 Add support for submodules.
12584 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
12585 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
12587 2011-06-25 Eli Zaretskii <eliz@gnu.org>
12589 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
12590 buffer-file-type before setting its value, to avoid disastrous
12591 global effects on decoding files for DOS/Windows systems. (Bug#8780)
12593 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12595 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
12597 * ses.el (ses-unload-function):
12598 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
12600 * proced.el (proced-unload-function):
12601 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
12603 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
12605 * server.el (server-create-window-system-frame): Add parameters arg.
12606 (server-process-filter): Doc fix. Handle frame-parameters.
12608 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
12610 Fix bug#8730, bug#8781.
12612 * loadhist.el (unload--set-major-mode): New function.
12613 (unload-feature): Use it.
12615 * progmodes/python.el (python-after-info-look): Add autoload cookie.
12616 (python-unload-function): New function.
12618 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
12620 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
12622 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
12624 * net/browse-url.el (browse-url-firefox-program): Add icecat to
12625 the candidates list.
12627 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
12629 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
12631 2011-06-23 Richard Stallman <rms@gnu.org>
12633 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
12634 (rmail-variables): Set next-error-move-function.
12635 (rmail-what-message): Take argument POS.
12636 (rmail-next-error-move): New function.
12638 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
12640 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
12641 messages for adjacent non-terminals.
12643 2011-06-23 Richard Stallman <rms@gnu.org>
12645 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
12646 (rmail-show-message-1): Preserve buffer modified flag.
12647 (rmail-start-mail): Don't specify use of rmail-mail-return;
12648 that's done by mail-bury now.
12649 (rmail-mail-return): Handle arg NEWBUF.
12651 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
12653 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
12656 2011-06-23 Martin Rudalics <rudalics@gmx.at>
12658 * window.el (get-lru-window, get-mru-window)
12659 (get-largest-window): Never return a minibuffer window.
12660 (display-buffer-pop-up-window): Fix a bug that could lead to
12661 reusing the minibuffer window.
12662 (display-buffer): Pass original specifier argument to
12663 display-buffer-function instead of the normalized one.
12664 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
12666 2011-06-22 Leo Liu <sdl.web@gmail.com>
12668 * minibuffer.el (completing-read-function)
12669 (completing-read-default): Move from minibuf.c
12671 2011-06-22 Richard Stallman <rms@gnu.org>
12673 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
12674 to Rmail even if not started by a special Rmail command.
12676 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
12677 Copy the buffer currently showing just one message.
12679 2011-06-22 Roland Winkler <winkler@gnu.org>
12681 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
12682 (bibtex-clean-entry): First delete the old key so that a
12683 customized algorithm for generating the new key does not get
12684 confused by the old key.
12685 (bibtex-url): Obey regexp of first step.
12686 (bibtex-search-entries): Do not use add-to-list with local
12689 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12691 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
12692 stored a user name, then query for the password first, instead of
12693 waiting for SMTP to give an error message and the trying again.
12695 2011-06-22 Lawrence Mitchell <wence@gmx.li>
12697 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
12698 BUFFER in call-process.
12700 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
12702 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
12704 (smtpmail-try-auth-methods): Require user name and password from
12707 2011-06-22 Martin Rudalics <rudalics@gmx.at>
12709 * window.el (display-buffer-default-specifiers)
12710 (display-buffer-alist): Remove entries for pop-up-frame-alist.
12711 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
12712 (split-window): Normalize SIDE argument (Bug#8916).
12714 * frame.el (pop-up-frame-alist, pop-up-frame-function)
12715 (special-display-frame-alist, special-display-popup-frame):
12716 Remove duplicate declarations. These are now in window.el.
12718 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12720 * mail/smtpmail.el (smtpmail-via-smtp):
12721 Set :use-starttls-if-possible so that we always use STARTTLS if the
12722 server supports it. SMTP servers that support STARTTLS commonly
12725 * net/network-stream.el (network-stream-open-starttls): Support
12726 upgrading to STARTTLS always, even if we don't have built-in support.
12727 (open-network-stream): Add the :always-query-capabilities keyword.
12729 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
12730 upgrades with `open-network-stream', and rely solely on
12731 auth-source for all credentials. Big changes throughout the file,
12733 (smtpmail-auth-credentials): Remove.
12734 (smtpmail-starttls-credentials): Remove.
12735 (smtpmail-via-smtp): Check for servers saying they want AUTH after
12738 * net/network-stream.el (network-stream-open-starttls):
12739 Provide support for client certificates both for external and built-in
12741 (auth-source): Require.
12742 (open-network-stream): Document the :client-certificate keyword.
12743 (network-stream-certificate): Change cert-cert to cert and
12746 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
12748 * net/tramp-cache.el (top): Don't load the persistency file when
12749 "emacs -Q" has been called.
12751 2011-06-21 Tim Harper <timcharper@gmail.com>
12753 * term/ns-win.el (ns-initialize-window-system):
12754 Set application-specific `ApplePressAndHoldEnabled' system
12755 resource to NO as it is not yet supported by the NS port.
12757 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
12759 * misc.el (list-dynamic-libraries--refresh): Compute header here...
12760 (list-dynamic-libraries): ...not here.
12762 2011-06-21 Leo Liu <sdl.web@gmail.com>
12764 * subr.el (sha1): Implement sha1 using secure-hash.
12766 2011-06-21 Martin Rudalics <rudalics@gmx.at>
12768 * window.el (display-buffer-alist): In default value do not
12769 enforce searching a window on any but the selected frame.
12770 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12771 (display-buffer-select-window): Remove function.
12772 (display-buffer-in-window): When a window on another frame gets
12773 reused, do not select it any more but just raise its frame if
12774 necessary (Bug#8851) and (Bug#8856).
12775 (display-buffer-normalize-options): Handle pop-up-frames related
12776 options more faithfully.
12777 (pop-to-buffer): Don't rely on `display-buffer' selecting the
12778 window if it is on another frame.
12779 (display-buffer-alist, display-buffer-default-specifiers):
12780 Don't make new frame unsplittable by default.
12781 (display-buffer-normalize-argument): Fix doc-string typo and use
12782 'same-frame-other-window instead of 'other-window when associating
12783 with display-buffer-macro-specifiers.
12785 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
12787 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
12789 (5x5-mode-map, 5x5-mode-menu): Bind them.
12790 (5x5-draw-grid): Tweak the solver's rendering.
12792 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12794 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
12795 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
12797 2011-06-21 Drew Adams <drew.adams@oracle.com>
12799 * menu-bar.el: Use function variable instead of switch-to-buffer.
12800 (menu-bar-select-buffer-function): New variable.
12801 (menu-bar-update-buffers): Use it (bug#8876).
12803 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12805 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
12808 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
12810 * x-dnd.el (x-dnd-version-from-flags)
12811 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
12812 and long as number (Bug#8899).
12813 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
12815 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12817 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
12818 (completion-try-completion, completion-all-completions): Compute the
12819 metadata argument if it's missing; make it optional (bug#8795).
12821 * wid-edit.el: Use lex-bind and move towards completion-at-point.
12822 (widget-complete): Use new :completion-function property.
12823 (widget-completions-at-point): New function.
12824 (default): Use :completion-function instead of :complete.
12825 (widget-default-completions): Rename from widget-default-complete;
12827 (widget-string-complete, widget-file-complete, widget-color-complete):
12829 (file, symbol, function, variable, coding-system, color):
12830 * international/mule-cmds.el (default-input-method, charset)
12831 (language-info-custom-alist):
12832 * cus-edit.el (face): Use new property :completions.
12834 * progmodes/pascal.el (pascal-completions-at-point): New function.
12835 (pascal-mode): Use it.
12836 (pascal-mode-map): Use completion-at-point.
12837 (pascal-toggle-completions): Make obsolete.
12838 (pascal-complete-word, pascal-show-completions):
12839 * progmodes/octave-mod.el (octave-complete-symbol):
12840 Redefine as obsolete alias.
12841 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
12842 Signal absence of completion info for old Octave,
12843 (inferior-octave-complete): Redefine as obsolete alias.
12844 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
12845 (meta-completions-at-point): Rename from meta-complete-symbol and
12846 adapt it for use on completion-at-point-functions.
12847 (meta-common-mode): Use it.
12848 (meta-looking-at-backward, meta-match-buffer): Remove.
12849 (meta-complete-symbol): Redefine as obsolete alias.
12850 (meta-common-mode-map): Use completion-at-point.
12851 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
12852 (makefile-mode-map): Use completion-at-point.
12853 (makefile-completions-at-point): Rename from makefile-complete and
12854 adapt it for use on completion-at-point-functions.
12855 (makefile-mode): Use it.
12856 (makefile-complete): Redefine as obsolete alias.
12858 2011-06-20 Deniz Dogan <deniz@dogan.se>
12860 * net/rcirc.el: Delete trailing whitespaces once and for all.
12862 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
12864 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
12866 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
12868 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
12870 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
12872 2011-06-19 Martin Rudalics <rudalics@gmx.at>
12874 * window.el (display-buffer-other-window-means-other-frame):
12875 Call display-buffer-normalize-alist.
12876 (display-buffer-normalize-specifiers-1): Rename to
12877 display-buffer-normalize-argument. New argument other-frame.
12879 (display-buffer-normalize-specifiers-2): Rename to
12880 display-buffer-normalize-options.
12881 (display-buffer-normalize-alist-1): New function.
12882 (display-buffer-normalize-specifiers-3): Rename to
12883 display-buffer-normalize-alist.
12884 Call display-buffer-normalize-alist-1.
12885 (display-buffer-normalize-options-inhibit): New variable.
12886 (display-buffer-normalize-specifiers): Rewrite calling
12887 display-buffer-normalize-alist,
12888 display-buffer-normalize-argument, and
12889 display-buffer-normalize-options. Don't call the latter if
12890 display-buffer-normalize-options-inhibit is non-nil.
12891 (frame-auto-delete): New option.
12892 (window-deletable-p): Use frame-auto-delete.
12893 (window-list-no-nils, window-state-ignored-parameters)
12894 (window-state-get-1, window-state-get, window-state-put-list)
12895 (window-state-put-1, window-state-put-2, window-state-put):
12897 (display-buffer-normalize-options): Move special-display-p group
12898 after pop-up-frame group (Bug#8851) and (Bug#8856).
12900 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
12902 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
12904 (rx-submatch-n): New function.
12907 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
12910 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
12912 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
12914 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
12915 anytime existing face settings are present (Bug#8889).
12917 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
12918 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
12919 Remove unused argument.
12921 2011-06-18 Martin Rudalics <rudalics@gmx.at>
12923 * window.el (display-buffer-default-specifiers):
12924 Remove pop-up-frame. Add pop-up-window-min-height,
12925 pop-up-window-min-width, and another reuse-window specifier
12926 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
12927 (display-buffer-normalize-specifiers-2):
12928 Handle split-height-threshold and split-width-threshold also when
12929 pop-up-windows is unset. Add a reuse-window specifier for the
12930 case popping up a new window fails.
12931 (special-display-popup-frame): Remove double quoting.
12932 (display-buffer-normalize-specifiers-1): Fix thinko.
12934 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12936 * shell.el (shell-completion-vars): Set pcomplete-termination-string
12937 according to comint-completion-addsuffix.
12939 * pcomplete.el: Convert to lexical binding and fix bug#8819.
12940 (pcomplete-suffix-list): Mark as obsolete.
12941 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
12942 pcomplete-seen in the closure.
12943 (pcomplete-comint-setup): Setup completion-at-point as well.
12944 (pcomplete--entries): New function.
12945 (pcomplete--env-regexp): New var.
12946 (pcomplete-entries): Rewrite to work with partial-completion and
12947 without relying on pcomplete-suffix-list.
12948 (pcomplete-pare-list): Remove, unused.
12950 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12952 * window.el (display-buffer-alist): Set pop-up-window-min-height
12953 and pop-up-window-min-width in default value. Reported by
12954 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12955 other-window-means-other-frame.
12956 (display-buffer-macro-specifiers): Comment out entry for
12957 other-window specifier.
12958 (display-buffer-other-window-means-other-frame): New function.
12959 (display-buffer-normalize-specifiers-1): New arguments
12960 buffer-name and label. Treat other-window case specially.
12961 (display-buffer-normalize-specifiers-2): Treat other-window case
12963 (display-buffer-normalize-specifiers-3): New function.
12964 (display-buffer-normalize-specifiers):
12965 Call display-buffer-normalize-specifiers-3.
12967 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12969 * window.el (same-window-p): Fix two typos introduced when
12970 adding with-no-warnings.
12971 (display-buffer-normalize-specifiers-1): Don't check
12972 pop-up-frames for 'unset initialization.
12973 (display-buffer-normalize-specifiers-2): Major rewrite using
12974 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12975 (pop-up-frames, display-buffer-reuse-frames)
12976 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12977 Suggested by David Engster <deng@randomsample.de>.
12978 (even-window-heights): Initialize to 'unset.
12979 (display-buffer-alist-set): Handle new 'unset initializations.
12980 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12983 2011-06-16 Martin Rudalics <rudalics@gmx.at>
12985 * window.el (display-buffer-normalize-specifiers-1):
12986 Respect current value of pop-up-frames for most reasonable values of
12987 second argument of display-buffer (Bug#8865).
12988 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12989 (switch-to-buffer-other-window-same-frame)
12990 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12992 (display-buffer): Don't check noninteractive when calling
12993 display-buffer-pop-up-frame.
12994 (display-buffer-pop-up-frame): Never pop up a frame in
12995 noninteractive mode (Bug#8857).
12996 (enlarge-window, shrink-window): Don't report an error when the
12997 window can't be resized as requested (Bug#8862).
12999 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13001 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
13003 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
13005 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
13007 2011-06-15 Alan Mackenzie <acm@muc.de>
13009 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
13010 for declarators, disable knr checking to speed up for normal files.
13011 2: Refactor, replacing a sequence of nested if forms by a cond form.
13013 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13015 * net/network-stream.el (open-network-stream): Add the keyword
13016 :always-query-capabilities for the case where you want to force a
13017 `plain' network connection, but the protocol still requires the
13018 capabilitiy command (i.e., SMTP and EHLO).
13020 * subr.el (process-live-p): Rename from `process-alive-p' for
13021 consistency with other `-live-p' functions.
13023 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13025 * window.el (same-window-buffer-names, same-window-regexps)
13026 (special-display-frame-alist, special-display-popup-frame)
13027 (special-display-function, special-display-buffer-names)
13028 (special-display-regexps, pop-up-frame-alist)
13029 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
13030 (pop-up-windows, split-window-preferred-function)
13031 (split-height-threshold, split-width-threshold, even-window-heights)
13032 (display-buffer-mark-dedicated): Don't encourage the use of
13033 display-buffer-alist from Elisp code.
13035 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
13037 * progmodes/python.el (python-mode): Derive from prog-mode.
13038 * progmodes/ps-mode.el (ps-mode):
13039 * progmodes/mixal-mode.el (mixal-mode):
13040 * progmodes/cfengine.el (cfengine-mode):
13041 * progmodes/ld-script.el (ld-script-mode): Likewise.
13043 2011-06-15 Martin Rudalics <rudalics@gmx.at>
13045 * window.el (display-buffer-alist): Trim default value to avoid
13046 popping up a new frame (Bug#8857) or reusing an arbitrary window
13048 (display-buffer): Do not fall back on popping up a new frame in
13049 batch mode (Bug#8857).
13051 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
13053 * cus-theme.el (describe-theme-1): Use custom-theme-p.
13054 (custom-theme-summary): New function.
13055 (customize-themes): Use it.
13057 2011-06-13 Glenn Morris <rgm@gnu.org>
13059 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
13061 2011-06-13 Martin Rudalics <rudalics@gmx.at>
13063 * help.el (help-window): Remove variable.
13064 (help-window-point-marker, temp-buffer-max-height)
13065 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
13066 (help-print-return-message): Don't set help-window.
13067 (resize-temp-buffer-window): Rewrite cod eand doc-string.
13068 (help-window-setup-finish): Remove.
13069 (help-window-display-message, help-window-setup)
13070 (with-help-window): Major rewrite based on new
13071 display-buffer-window variable.
13073 * help-mode.el (help-mode-finish): Remove help-window related
13076 * view.el (view-exits-all-viewing-windows): Remove reference to
13077 view-return-to-alist in doc-string.
13078 (view-return-to-alist): Make obsolete.
13079 (view-buffer): Call pop-to-buffer-same-window and remove
13081 (view-buffer-other-window): Call pop-to-buffer-other-window and
13082 simplify code. Ignore second argument.
13083 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
13084 simplify code. Ignore second argument.
13085 (view-return-to-alist-update): Make obsolete.
13086 (view-mode-enter): Rename second argument to QUIT-RESTORE.
13087 Rewrite using quit-restore window parameters.
13088 (view-mode-exit): Rename second argument to EXIT-ONLY.
13089 Rewrite using quit-restore-window.
13090 (View-exit, View-exit-and-edit, View-leave, View-quit)
13091 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
13092 appropriate arguments.
13093 (view-end-message): Use quit-restore window parameter.
13095 * window.el (display-buffer-function): Rewrite doc-string.
13096 (display-buffer-window, display-buffer-alist): New variables.
13097 (display-buffer-split-specifiers)
13098 (display-buffer-side-specifiers)
13099 (display-buffer-macro-specifiers): New constants.
13100 (display-buffer-even-window-sizes, display-buffer-set-height)
13101 (display-buffer-set-width, display-buffer-select-window)
13102 (display-buffer-in-window, display-buffer-reuse-window)
13103 (display-buffer-split-window-1, display-buffer-split-window)
13104 (display-buffer-split-atom-window, display-buffer-pop-up-window)
13105 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
13106 (display-buffer-in-side-window, normalize-buffer-to-display)
13107 (display-buffer-normalize-specifiers-1)
13108 (display-buffer-normalize-specifiers-2)
13109 (display-buffer-normalize-specifiers, display-buffer-frame):
13111 (display-buffer): Major rewrite.
13112 (display-buffer-other-window, display-buffer-other-frame)
13113 (pop-to-buffer, switch-to-buffer-other-window)
13114 (switch-to-buffer-other-frame): Rewrite.
13115 (display-buffer-same-window, display-buffer-same-frame)
13116 (display-buffer-same-frame-other-window)
13117 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
13118 (pop-to-buffer-other-window)
13119 (pop-to-buffer-same-frame-other-window)
13120 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
13121 (switch-to-buffer-other-window-same-frame): New functions.
13122 (same-window-p, special-display-p): Rewrite disabling warnings.
13124 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13125 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
13127 (same-window-buffer-names, same-window-regexps)
13128 (special-display-frame-alist, special-display-popup-frame)
13129 (special-display-function, special-display-buffer-names)
13130 (special-display-regexps, pop-up-frame-alist)
13131 (pop-up-frame-function, split-window-preferred-function)
13132 (split-height-threshold, split-width-threshold)
13133 (even-window-heights): Make obsolete.
13135 2011-06-12 Glenn Morris <rgm@gnu.org>
13137 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
13138 Misc simplifications.
13140 2011-06-12 Martin Rudalics <rudalics@gmx.at>
13142 * window.el (window-safely-shrinkable-p): Restore function which
13143 was inadvertently removed in change from 2011-06-11. Declare as
13146 * calendar/calendar.el (calendar-generate-window):
13147 Use window-iso-combined-p instead of combination of one-window-p and
13148 window-safely-shrinkable-p.
13150 2011-06-12 Glenn Morris <rgm@gnu.org>
13152 * progmodes/fortran.el (fortran-mode-syntax-table):
13153 * progmodes/f90.el (f90-mode-syntax-table):
13154 Set % to punctuation. (Bug#8820)
13155 (f90-find-tag-default): Remove, no longer needed.
13157 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
13159 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
13161 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
13163 * image.el (image-animated-p): Return animation delay in seconds.
13164 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
13165 (image-animate-timeout): Remove DELAY argument. Don't assume
13166 every subimage has the same delay; get it from image-animated-p.
13167 (image-animate): Caller changed.
13169 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
13171 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
13172 to ignored backtrace functions.
13174 2011-06-11 Glenn Morris <rgm@gnu.org>
13176 * calendar/appt.el (appt-disp-window-function): Doc fix.
13177 (appt-check): Handle overlapping appointments. (Bug#8337)
13179 2011-06-11 Martin Rudalics <rudalics@gmx.at>
13181 * window.el (window-tree-1, window-tree): New functions, moving
13182 the latter to window.el.
13183 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
13184 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
13185 (bw-refresh-edges): Remove.
13186 (balance-windows-1, balance-windows-2): New functions.
13187 (balance-windows): Rewrite in terms of window tree functions,
13188 balance-windows-1 and balance-windows-2.
13189 (bw-adjust-window): Remove.
13190 (balance-windows-area-adjust): New function with functionality of
13191 bw-adjust-window but using resize-window.
13192 (set-window-text-height): Rewrite doc-string.
13193 Use normalize-live-window and resize-window.
13194 (enlarge-window-horizontally, shrink-window-horizontally):
13195 Rename argument to DELTA.
13196 (window-buffer-height): New function.
13197 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
13198 Rewrite using new window resize routines.
13199 (kill-buffer-and-window, mouse-autoselect-window-select):
13200 Use ignore-errors instead of condition-case.
13201 (quit-window): Call delete-frame instead of delete-windows-on
13202 for the only buffer on frame.
13204 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13206 * loadup.el (top-level): Load window before files for the sake
13207 of replace-buffer-in-windows.
13209 * files.el (read-buffer-to-switch)
13210 (switch-to-buffer-other-window)
13211 (switch-to-buffer-other-frame, display-buffer-other-frame):
13214 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
13215 (previous-buffer): Move to window.el.
13217 * bindings.el (unbury-buffer): Move to window.el.
13219 * window.el (delete-other-windows-vertically): Move after
13220 definition of delete-other-windows.
13221 (other-window, delete-windows-on, replace-buffer-in-windows):
13222 Move here from window.c.
13223 (record-window-buffer, unrecord-window-buffer)
13224 (set-window-buffer-start-and-point, switch-to-prev-buffer)
13225 (switch-to-next-buffer): New functions.
13226 (get-next-valid-buffer, last-buffer, next-buffer): Move here
13227 from simple.el. Call switch-to-next-buffer.
13228 (previous-buffer): Move here from simple.el.
13229 Call switch-to-prev-buffer.
13230 (bury-buffer): Move here from buffer.c. Switch to previous
13231 buffer when window cannot be deleted.
13232 (unbury-buffer): Move here from bindings.el.
13233 (ctl-x-map): Move binding for other-window from window.c to
13235 (read-buffer-to-switch, switch-to-buffer-other-window)
13236 (switch-to-buffer-other-frame): Move here from files.el.
13237 (normalize-buffer-to-switch-to): New functions.
13238 (switch-to-buffer): Move here from buffer.c.
13239 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
13241 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13243 * window.el (window-min-height, window-min-width): Move here
13244 from window.c. Add defcustoms and rewrite doc-strings.
13245 (resize-mini-window, resize-window): New functions.
13246 (adjust-window-trailing-edge, enlarge-window, shrink-window):
13247 Move here from window.c.
13248 (maximize-window, minimize-window): New functions.
13249 (delete-window, delete-other-windows, split-window): Move here
13251 (window-split-min-size): New function.
13252 (split-window-keep-point): Mention split-window-above-each-other
13253 instead of split-window-vertically.
13254 (split-window-above-each-other, split-window-vertically):
13255 Rename split-window-vertically to split-window-above-each-other
13256 and provide defalias for old definition.
13257 (split-window-side-by-side, split-window-horizontally):
13258 Rename split-window-horizontally to split-window-side-by-side
13259 and provide defalias for the old definition.
13260 (ctl-x-map): Move bindings for delete-window,
13261 delete-other-windows and enlarge-window here from window.c.
13262 Replace bindings for split-window-vertically and
13263 split-window-horizontally by bindings for
13264 split-window-above-each-other and split-window-side-by-side.
13266 * cus-start.el (all): Remove entries for window-min-height and
13267 window-min-width. Add entries for window-splits and
13270 2011-06-09 Glenn Morris <rgm@gnu.org>
13272 * calendar/appt.el (appt-mode-line): New function.
13273 (appt-check, appt-disp-window): Use it.
13275 * files.el (hack-one-local-variable-eval-safep):
13276 Allow minor-modes with explicit +/-1 arguments.
13278 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
13280 * term/xterm.el (xterm): Add defgroup.
13281 (xterm-extra-capabilities): Add defcustom to supply known xterm
13282 capabilities, skip querying them, or query them (default).
13283 (terminal-init-xterm): Use it.
13284 (terminal-init-xterm-modify-other-keys): New function to set up
13285 modifyOtherKeys support to simplify `terminal-init-xterm'.
13287 2011-06-09 Martin Rudalics <rudalics@gmx.at>
13289 * window.el (resize-window-reset, resize-window-reset-1)
13290 (resize-subwindows-skip-p, resize-subwindows-normal)
13291 (resize-subwindows, resize-other-windows, resize-this-window)
13292 (resize-root-window, resize-root-window-vertically)
13293 (window-deletable-p, window-or-subwindow-p)
13294 (frame-root-window-p): New functions.
13296 2011-06-09 Glenn Morris <rgm@gnu.org>
13298 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
13299 (ange-ftp-get-files): Use it.
13301 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
13303 * mail/sendmail.el (mail-recover-1, mail-recover):
13304 * files.el (recover-file, recover-session):
13305 Handle dired-listing-switches not being just a single short option.
13307 2011-06-09 Glenn Morris <rgm@gnu.org>
13309 * calendar/appt.el (appt-display-message, appt-disp-window):
13310 Handle lists of appointments.
13312 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13314 * window.el (one-window-p): Move down in code.
13315 Rewrite doc-string.
13316 (window-current-scroll-bars): Rewrite doc-string.
13317 Normalize live window argument.
13318 (walk-windows, get-window-with-predicate, count-windows):
13319 Rewrite doc-string. Use window-list-1.
13320 (window-in-direction-2, window-in-direction, get-mru-window):
13323 2011-06-08 Reuben Thomas <rrt@sc3d.org>
13325 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
13326 Doc fix (Bug#8713).
13328 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
13330 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
13332 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
13334 * loadhist.el (unload-feature-special-hooks):
13335 Add `comint-output-filter-functions'.
13337 2011-06-08 Ivan Kanis <gnu@kanis.fr>
13339 * calendar/appt.el (appt-check): Move some initializations into the let.
13341 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13343 * window.el (window-height): Defalias to window-total-height.
13344 (window-width): Defalias to window-body-width.
13346 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
13348 * image-mode.el (image-toggle-animation): New command.
13349 (image-mode-map): Bind it to RET.
13350 (image-mode): Update message.
13351 (image-toggle-display-image): Avoid a spurious cache flush.
13352 (image-transform-rotation): Doc fix.
13353 (image-transform-properties): Return quickly in the normal case.
13354 (image-animate-loop): Rename from image-animate-max-time.
13356 * image.el (image-animate-max-time): Move to image-mode.el.
13357 (create-animated-image): Remove unnecessary function.
13358 (image-animate): Rename from image-animate-start. New arg.
13359 (image-animate-stop): Remove; just use image-animate-timer.
13360 (image-animate-timer): Use car-safe.
13361 (image-animate-timeout): Rename argument.
13363 2011-06-07 Martin Rudalics <rudalics@gmx.at>
13365 * window.el (get-lru-window, get-largest-window): Move here from
13366 window.c. Rename first argument to ALL-FRAMES.
13367 Rephrase doc-strings.
13368 (get-buffer-window-list): Rewrite using window-list-1.
13369 Rephrase doc-string.
13370 (window-safe-min-height, window-safe-min-width): New constants.
13371 (window-size-ignore, window-min-size, window-min-size-1)
13372 (window-sizable, window-sizable-p, window-size-fixed-1)
13373 (window-size-fixed-p, window-min-delta-1, window-min-delta)
13374 (window-max-delta-1, window-max-delta, window-resizable)
13375 (window-resizable-p, window-total-height, window-total-width)
13376 (window-body-width): New functions.
13377 (window-full-height-p, window-full-width-p): Rewrite using
13379 (window-body-height): Rewrite using window-body-size.
13381 2011-06-06 Martin Rudalics <rudalics@gmx.at>
13383 * window.el (window-right, window-left, window-child)
13384 (window-child-count, window-last-child, window-any-p)
13385 (normalize-live-buffer, normalize-live-frame)
13386 (normalize-any-window, normalize-live-window)
13387 (window-iso-combination-p, window-iso-combined-p)
13388 (window-iso-combinations)
13389 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
13390 (windows-with-parameter, window-with-parameter)
13391 (window-atom-root, make-window-atom, window-atom-check-1)
13392 (window-atom-check, window-side-check, window-check):
13394 (ignore-window-parameters, window-sides, window-sides-vertical)
13395 (window-sides-slots): New variables.
13396 (window-size-fixed): Move down in code. Minor doc-string fix.
13398 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
13400 * comint.el (comint-dynamic-complete-as-filename)
13401 (comint-dynamic-complete-filename): Correctly call
13402 completion-in-region.
13404 2011-06-05 Deniz Dogan <deniz@dogan.se>
13406 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
13409 2011-06-05 Deniz Dogan <deniz@dogan.se>
13411 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
13412 (rcirc): Use it to prompt for encryption.
13414 2011-06-05 Roland Winkler <winkler@gnu.org>
13416 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
13417 (bibtex-search-entries): New command bound to C-c C-a.
13418 (bibtex-display-entries): New function.
13420 2011-06-05 Roland Winkler <winkler@gnu.org>
13422 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
13423 (bibtex-insert-kill): After yanking insert newline if necessary.
13424 (bibtex-initialize): Call bibtex-string-files-init only once.
13425 (bibtex-mode): Do not call easy-menu-add.
13426 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
13427 (bibtex-yank): Set arg properly if nil.
13429 2011-06-05 Roland Winkler <winkler@gnu.org>
13431 * textmodes/bibtex.el (bibtex-search-entry-globally):
13433 (bibtex-search-entry): Use it.
13435 2011-06-05 Roland Winkler <winkler@gnu.org>
13437 * textmodes/bibtex.el (bibtex-entry-format): New option
13439 (bibtex-format-entry, bibtex-reformat): Honor this option.
13440 (bibtex-parse-entry): Return fields in proper order.
13442 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
13444 * doc-view.el (doc-view-remove-if): Move computation of result out
13445 of `dolist' to silence misleading lexical-binding warning.
13447 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
13449 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
13450 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
13452 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
13454 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
13457 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
13459 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
13460 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
13461 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
13462 (tramp-parse-putty):
13463 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
13464 (tramp-completion-function-alist-ssh)
13465 (tramp-completion-function-alist-telnet)
13466 (tramp-completion-function-alist-su)
13467 (tramp-completion-function-alist-putty): Set `tramp-autoload'
13470 * net/tramp-ftp.el:
13472 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
13473 load "tramp.el" `tramp-set-completion-function'.
13475 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
13477 * shell.el: Require and use pcomplete.
13478 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
13479 (shell-completion-vars): Set pcomplete-default-completion-function.
13481 2011-06-04 Deniz Dogan <deniz@dogan.se>
13483 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
13486 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13488 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
13490 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
13492 * bs.el (bs--mark-unmark, bs--nth-wrapper):
13493 * mpc.el (mpc-select-extend, mpc-songpointer-context):
13494 * vc/log-view.el (log-view-beginning-of-defun):
13495 * vc/smerge-mode.el (smerge-apply-resolution-patch)
13496 (smerge-refine-forward, smerge-refine-chopup-region):
13497 Silence warning for unused `dotimes' counter variables.
13499 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13501 * net/tramp.el (tramp-with-progress-reporter): Rename from
13502 with-progress-reporter. Use `declare'.
13503 * net/tramp-smb.el:
13505 * net/tramp-gvfs.el: Update all uses.
13507 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
13509 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
13510 buffer isn't killed before making it current.
13512 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13514 Silence various byte-compiler warnings.
13515 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
13516 `access-type' and new obsolescence format.
13517 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
13519 (byte-compile-check-variable): New `access-type' argument.
13520 Only warn if the access-type is obsolete.
13521 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
13522 (byte-compile-variable-set): Adjust callers.
13523 * help-fns.el (describe-variable): Adjust to new obsolescence format.
13524 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
13525 setting it as obsolete.
13526 * simple.el (minibuffer-completing-symbol):
13527 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
13528 access as obsolete.
13529 * minibuffer.el (minibuffer-completing-file-name): Don't make it
13531 * international/quail.el (quail-mouse-choose-completion): Remove unused
13532 code referring to obsolete var.
13533 (quail-choose-completion-string): Remove.
13534 * server.el (server-clients-with, server-kill-buffer-query-function)
13535 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
13536 * proced.el (proced-send-signal):
13537 * emacs-lisp/lisp.el (lisp-complete-symbol):
13538 Replace completion-annotate-function with completion-extra-properties.
13540 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
13542 * simple.el (goto-line): Use read-number.
13543 (overriding-map-is-bound): Remove.
13544 (saved-overriding-map): Change default.
13545 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
13546 Take the map as argument.
13547 (universal-argument, negative-argument, digit-argument): Use it.
13548 (restore-overriding-map): Adjust.
13549 (do-auto-fill): Use fill-forward-paragraph.
13550 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
13552 * minibuffer.el (minibuffer-inactive-mode-map): New var.
13553 (minibuffer-inactive-mode): New major mode.
13554 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
13555 the *Messages* buffer" hack.
13556 (mouse-popup-menubar): Don't burp if the event is a normal key.
13558 Miscellaneous tweaks.
13559 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
13560 lexical scoping as in subr.el's dolist and dotimes.
13561 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
13562 Silence compiler warning.
13563 * thingatpt.el (forward-whitespace): Trivial coding style fix.
13564 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
13565 * international/ccl.el (ccl-compile): Trivial simplification.
13566 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
13567 * emacs-lisp/testcover.el (testcover-end): Remove spurious
13568 `printflag' argument.
13569 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
13570 Purecopy the whole obsolescence data.
13572 2011-06-01 Leo Liu <sdl.web@gmail.com>
13574 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
13575 improve doc-string as suggested by Marco Pessotto
13576 <melmothx@gmail.com>.
13577 (rcirc-print): Fix last change.
13579 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13581 * minibuffer.el (complete-with-action): Return nil for the metadata and
13582 boundaries of non-functional tables.
13583 (completion-table-dynamic): Return nil for the metadata.
13584 (completion-table-with-terminator): Add default case, using
13585 complete-with-action.
13586 (completion--metadata): New function.
13587 (completion-all-sorted-completions, minibuffer-completion-help): Use it
13588 to try and avoid pathological performance problems.
13589 (completion--embedded-envvar-table): Return `category' metadata.
13591 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
13593 * subr.el (process-alive-p): New tiny convenience function.
13595 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13597 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
13598 content but also its previous major mode.
13600 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
13602 * emacs-lisp/debug.el (debug): Restore the previous content of the
13603 *Backtrace* buffer when we exit with C-M-c.
13605 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
13607 * minibuffer.el: Add metadata method to completion tables.
13608 (completion-category-overrides): New defcustom.
13609 (completion-metadata, completion--field-metadata)
13610 (completion-metadata-get, completion--styles)
13611 (completion--cycle-threshold): New functions.
13612 (completion-try-completion, completion-all-completions):
13613 Add `metadata' argument to choose completion-styles.
13614 (completion--do-completion): Use metadata to choose cycling.
13615 (completion-all-sorted-completions): Use metadata for sorting.
13616 Remove :completion-cycle-penalty which is not needed any more.
13617 (completion--try-word-completion): Add `metadata' argument.
13618 (minibuffer-completion-help): Check metadata for annotation function
13620 (completion-file-name-table): Return `category' metadata.
13621 (minibuffer-completing-file-name): Make obsolete.
13622 * simple.el (minibuffer-completing-symbol): Make obsolete.
13623 * icomplete.el (icomplete-completions): Pass new `metadata' param to
13624 completion-try-completion.
13626 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
13628 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
13630 2011-05-30 Leo Liu <sdl.web@gmail.com>
13632 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
13633 (rcirc-print): Decode all incoming messages (bug#8744).
13634 (rcirc-decode-coding-system): Allow value nil for automatic coding
13637 2011-06-01 Glenn Morris <rgm@gnu.org>
13639 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
13641 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13643 * image.el (image-animate-max-time): Allow nil and t values.
13645 (create-animated-image): Doc fix.
13646 (image-animate-start): Remove second arg; just use
13647 image-animate-max-time.
13648 (image-animate-timeout): Doc fix. Args changed.
13650 * image-mode.el (image-toggle-display-image): Ensure that the
13651 image spec passed to the animate timer is the same object as in
13652 the buffer's display property (Bug#6981).
13653 (image-transform-properties): Doc fix.
13655 * image.el (image-animate-max-time): Default to nil.
13657 2011-05-29 Martin Rudalics <rudalics@gmx.at>
13659 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
13660 entire buffer list (Bug#8184).
13662 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13664 * image.el (imagemagick-types-inhibit)
13665 (imagemagick-register-types): Doc fix.
13667 2011-05-29 Deniz Dogan <deniz@dogan.se>
13669 * net/rcirc.el (rcirc): Use the user's stored encryption method by
13672 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
13674 * select.el: Don't perform clipboard-manager saving in hooks;
13675 leave the hooks empty.
13677 2011-05-28 Leo Liu <sdl.web@gmail.com>
13679 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
13680 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
13681 (occur-edit-mode): New major mode (Bug#8463).
13682 (occur-after-change-function): New function.
13683 (occur-engine): Give Occur tags a read-only property.
13685 2011-05-28 Kevin Ryde <user42@zip.com.au>
13687 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
13689 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13691 * bindings.el (help-echo): Make the initial non-indicator dash
13692 empty on graphical terminals (Bug#7295).
13694 * files.el (auto-mode-alist): Move config rule after the
13695 in-stripping one (Bug#8547).
13697 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
13699 * startup.el (normal-splash-screen): Remove gratuitous mode-line
13700 setting (Bug#8740).
13702 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
13704 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
13705 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
13708 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13710 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
13712 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
13714 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
13715 (hs-hide-block-at-point, hs-find-block-beginning)
13716 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
13719 2011-05-28 Glenn Morris <rgm@gnu.org>
13721 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
13723 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
13725 * help-fns.el (describe-function-1): If the function is a derived
13726 major mode, print the parent mode.
13728 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
13729 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
13731 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
13733 * minibuffer.el (completion--capf-wrapper): Check applicability before
13734 returning non-nil for non-exclusive completion data.
13735 * progmodes/etags.el (tags-completion-at-point-function):
13736 * info-look.el (info-lookup-completions-at-point): Mark as
13738 (info-complete): Adjust accordingly.
13740 * info-look.el: Convert to lexical-binding and completion-at-point.
13741 (info-lookup-completions-at-point): New function.
13742 (info-complete): Use it and completion-in-region.
13744 2011-05-28 Drew Adams <drew.adams@oracle.com>
13746 * isearch.el: Let M-e start with point at the first mismatched char.
13747 (isearch-fail-pos): New function.
13748 (isearch-edit-string): Use it.
13750 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13752 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13754 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
13756 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
13757 traversal functions for avl-trees.
13758 (avl-tree--stack): New struct.
13759 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
13760 (avl-tree-enter): Add optional `updatefun' arg.
13761 (avl-tree--do-enter): Add optional `updatefun' arg.
13762 Change return value.
13763 (avl-tree-delete): Add optional `test' and `nilflag' args.
13764 (avl-tree--do-delete): Add `test' and `nilflag' args.
13765 Change return value.
13766 (avl-tree-member): Add optional `nilflag'
13767 (avl-tree-member-p): New function.
13768 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
13769 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
13770 (avl-tree-stack-empty-p): New functions.
13772 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
13773 avl-tree--del-balance1 and make it work both ways.
13774 (avl-tree--del-balance2): Remove.
13775 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
13776 make it work both ways.
13777 (avl-tree--enter-balance2): Remove.
13778 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
13780 (avl-tree--mapc, avl-tree-map): Add direction argument.
13782 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
13784 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
13786 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
13788 * select.el: Support clipboard managers with built-in function
13789 x-clipboard-manager-save, via delete-frame-functions and
13791 (xselect-convert-to-targets): Add MULTIPLE target to list.
13792 (xselect-convert-to-save-targets): New function.
13794 2011-05-27 Kenichi Handa <handa@m17n.org>
13796 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
13797 let-binding rfc2047-encode-encoded-words to nil.
13799 2011-05-27 Glenn Morris <rgm@gnu.org>
13801 * mail/emacsbug.el: Don't require url-util.
13803 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
13805 * files.el (set-auto-mode):
13806 Also respect mode: entries at the end of the file. (Bug#8586)
13808 2011-05-26 Glenn Morris <rgm@gnu.org>
13810 * files.el (hack-local-variables-prop-line, hack-local-variables):
13811 Downcase mode names, as seems to be traditional.
13812 (hack-local-variables, hack-local-variables-apply): Doc fixes.
13814 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
13815 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
13817 2011-05-25 Julien Danjou <julien@danjou.info>
13819 * textmodes/rst.el (rst-define-level-faces): Do not define face
13820 symbol if it is already defined.
13822 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
13824 * play/5x5.el (5x5-new-game, 5x5-randomize):
13825 Reset 5x5-solver-output to nil when a new grid is cast.
13826 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
13827 these debugging traces, as defmacro breaks the compiled code.
13829 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13831 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13833 2011-05-24 Leo Liu <sdl.web@gmail.com>
13835 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
13836 (vc-bzr-sha1): Adapt.
13838 * sha1.el: Remove. Function `sha1' is now builtin.
13840 * bindings.el: Provide sha1 feature.
13842 2011-05-24 Kenichi Handa <handa@m17n.org>
13844 * mail/sendmail.el: Require `rfc2047'.
13845 (mail-insert-from-field): Do not perform RFC2047 encoding.
13846 (mail-encode-header): New function.
13847 (sendmail-send-it): Set buffer-file-coding-system of the work
13848 buffer to the return value of select-message-coding-system.
13849 Call mail-encode-header.
13851 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
13853 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
13855 * mail/supercite.el (sc-default-cite-frame):
13856 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
13858 2011-05-24 Glenn Morris <rgm@gnu.org>
13860 * progmodes/python.el (brm-menu): Declare.
13862 * emulation/viper.el (viper-set-hooks): Declare.
13864 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
13865 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
13866 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
13867 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
13868 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
13869 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
13871 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13873 Add an :exit-function for completion-at-point.
13875 * minibuffer.el (completion--done): New fun.
13876 (completion--do-completion): Use it. New arg `expect-exact'.
13877 (minibuffer-complete, minibuffer-complete-word): Don't output message,
13878 since completion--do-completion does it for us now.
13879 (minibuffer-force-complete): Use completion--done and
13880 completion--replace. Handle sole-completion case with more care.
13881 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
13882 (completion-extra-properties): New var.
13883 (completion-annotate-function): Make obsolete.
13884 (minibuffer-completion-help): Adjust accordingly.
13885 Use completion-list-insert-choice-function.
13886 (completion-at-point, completion-help-at-point):
13887 Bind completion-extra-properties.
13888 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
13889 * simple.el (completion-list-insert-choice-function): New var.
13890 (completion-setup-function): Preserve it.
13891 (choose-completion): Pay attention to it, shuffle the code a bit.
13892 (choose-completion-string): New arg `insert-function'.
13894 * textmodes/bibtex.el: Convert to lexical binding.
13895 (bibtex-mode-map): Use completion-at-point.
13896 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
13897 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
13898 (bibtex-complete): Define as obsolete alias.
13899 (bibtex-complete-internal): Remove.
13900 (bibtex-format-entry): Remove unused sub-group in regexp.
13901 * shell.el (shell--command-completion-data)
13902 (shell-environment-variable-completion):
13903 * pcomplete.el (pcomplete-completions-at-point):
13904 * comint.el (comint--complete-file-name-data): Use :exit-function
13905 instead of completion-table-with-terminator so it also works for
13908 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13910 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
13912 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
13915 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
13917 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
13919 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
13920 customization variable and implement: If non-nil, auto-fill will
13921 be inhibited while on topic's header line.
13923 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
13925 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
13926 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
13927 always have a solution in grid size = 5 cases.
13928 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
13929 (5x5-solver-output, 5x5-log-buffer): New vars.
13930 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
13931 Make these variables buffer local to achieve 5x5 multi-session-ness.
13932 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
13933 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
13934 (5x5-solve-suggest): New funs.
13935 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
13936 randomize a grid so that we ensure that there is always a solution.
13937 (5x5-make-random-grid): Allow other movement than flipping.
13939 2011-05-23 Kevin Ryde <user42@zip.com.au>
13941 * emacs-lisp/advice.el (ad-read-advised-function):
13942 Use `function-called-at-point' as the default, if it has
13943 advice and passes PREDICATE.
13945 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13947 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13948 byte-compile-lambda if it's actually a lambda.
13950 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13951 Fix function quoting. Use backquote better.
13953 2011-05-22 Yuanle Song <sylecn@gmail.com>
13955 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13956 matching (Bug#8516).
13958 2011-01-22 Jari Aalto <jari.aalto@cante.net>
13960 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13961 different face (Bug#8178).
13963 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
13965 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13966 defface (Bug#8144).
13968 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13970 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13971 funcall as well (bug#8712). Warn when performing those conversions.
13972 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13974 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13976 2011-05-22 Glenn Morris <rgm@gnu.org>
13978 * files.el (hack-local-variables-prop-line): Small simplifications.
13979 (hack-local-variables, hack-local-variables-prop-line):
13980 If MODE-ONLY, return the mode, rather than just `t'.
13982 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13984 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13986 2011-05-21 Glenn Morris <rgm@gnu.org>
13988 * files.el (hack-local-variables-prop-line, hack-local-variables):
13989 If only interested in the mode, don't bother doing the other stuff.
13991 * image-mode.el (image-after-revert-hook):
13992 Redraw all frames on which the image is visible. (Bug#8567)
13994 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13996 * wid-edit.el (widget-checklist-match-inline):
13997 Fix 2011-04-19 change. (Bug#8649)
13999 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
14001 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
14002 Also allow singlespace after single-letter capitals followed by a dot.
14004 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
14005 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
14007 2011-05-20 Nix <nix@esperi.org.uk>
14009 * files.el (basic-save-buffer-2):
14010 Fix handling of break-hardlink-on-save with non-existent files.
14012 2011-05-19 Deniz Dogan <deniz@dogan.se>
14014 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
14015 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
14017 2011-05-19 Glenn Morris <rgm@gnu.org>
14019 * progmodes/f90.el (f90-type-def-re):
14020 Handle "type, bind(c)". (Bug#8691)
14022 * emacs-lisp/autoload.el (batch-update-autoloads):
14023 Set autoload-excludes by parsing loadup.el rather than Makefiles.
14025 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
14027 * net/tramp.el (tramp-process-actions): Set "first-password-request"
14028 property for the correct connection in case of multihops.
14030 2011-05-18 Glenn Morris <rgm@gnu.org>
14032 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
14033 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
14035 Rationalize calendar handling of day and month abbrev-arrays.
14036 * calendar/calendar.el (calendar-customized-p): New function.
14037 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
14038 (calendar-day-name-array, calendar-month-name-array): Doc fix.
14040 (calendar-abbrev-length, calendar-day-abbrev-array)
14041 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
14042 (calendar-day-abbrev-array, calendar-month-abbrev-array):
14043 Elements may no longer be nil.
14044 (calendar-day-name, calendar-month-name):
14045 Update for changed nature of abbrev arrays.
14046 * calendar/diary-lib.el (diary-name-pattern):
14047 Update for changed nature of abbrev arrays.
14048 (diary-mark-entries-1): Update calendar-make-alist calls.
14049 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
14050 * calendar/cal-html.el (cal-html-day-abbrev-array):
14051 Simply inherit from calendar-day-abbrev-array.
14053 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14055 * progmodes/grep.el (grep-mode): Disable default
14056 compilation-directory-matcher setting (bug#8684).
14058 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
14060 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
14061 instead of "head" and "tail". There were problems with SunOS 5.9,
14062 and it performs better.
14064 2011-05-17 Glenn Morris <rgm@gnu.org>
14066 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
14068 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
14069 Replace obsolete function.
14071 * shell.el (pcomplete-parse-arguments-function): Declare.
14073 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
14074 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
14075 (appt-check): Doc fixes.
14076 (appt-disp-window-function, appt-delete-window-function):
14077 Remove needless special case in custom :type.
14078 (appt-display-count): Default to 0, not nil.
14079 (appt-check): Reset appt-display-count to 0, not nil.
14081 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
14083 * progmodes/python.el (python-font-lock-keywords):
14084 Add the Python 3.X keyword "nonlocal" (bug#8639).
14086 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14088 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
14090 2011-05-16 Kevin Ryde <user42@zip.com.au>
14092 * info-look.el (makefile-automake-mode): New setups, looking in
14093 automake manual, then makefile-mode.
14094 (makefile-mode): Remove automake manual, have it just in
14095 makefile-automake-mode since there's various things different or
14096 not relevant to plain make.
14097 (makefile-mode): Remove "other-modes" non-existent automake-mode,
14098 believe a hypothetical automake-mode would go to makefile-mode,
14099 not the other way around.
14101 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
14103 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
14104 hunk-end tags (Bug#8672).
14106 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
14107 vc-annotate-show-diff-revision-at-line (Bug#8671).
14109 2011-05-14 Glenn Morris <rgm@gnu.org>
14111 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
14112 in the middle of an existing one with multiple authors. (Bug#8645)
14113 (change-log-font-lock-keywords): Also handle multiple author lines
14114 with leading tabs. (Bug#8644)
14116 * calendar/appt.el (appt-check): Rename some local variables.
14117 Some simplification/reordering.
14119 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
14120 (feedmail-sendmail-f-doesnt-sell-me-out)
14121 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14122 (feedmail-debug-sit-for, feedmail-queue-express-hook)
14123 (feedmail-queue-runner-message-sender): Set :version.
14124 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
14125 (bbdb-dwim-net-address, vm-mail): Declare.
14126 (feedmail-binmail-gnulinuxish-template):
14127 Rename from feedmail-binmail-linuxish-template.
14128 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
14129 Use insert-buffer-substring.
14131 2011-05-14 Bill Carpenter <bill@carpenter.org>
14133 * mail/feedmail.el (feedmail-patch-level): Increase.
14134 (feedmail-debug): New custom group.
14135 (feedmail-confirm-outgoing-timeout)
14136 (feedmail-sendmail-f-doesnt-sell-me-out)
14137 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14138 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
14139 (feedmail-sender-line, feedmail-from-line)
14140 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
14141 (feedmail-spray-this-address)
14142 (feedmail-spray-address-fiddle-plex-list)
14143 (feedmail-queue-use-send-time-for-date)
14144 (feedmail-queue-use-send-time-for-message-id)
14145 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
14146 (feedmail-buffer-eating-function):
14148 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
14149 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
14150 (feedmail-message-action-scroll-down): New functions.
14151 (feedmail-queue-directory, feedmail-queue-draft-directory):
14152 Use expand-file-name.
14153 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
14154 Remove C-v help entry.
14155 (feedmail-queue-buffer-file-name): New variable.
14156 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
14157 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
14158 (feedmail-message-action-send-strong, feedmail-message-action-edit)
14159 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
14160 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
14161 (feedmail-message-action-toggle-spray)
14162 (feedmail-run-the-queue-no-prompts)
14163 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
14164 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
14165 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
14166 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
14167 (feedmail-envelope-deducer, feedmail-fiddle-from)
14168 (feedmail-fiddle-sender, feedmail-default-date-generator)
14169 (feedmail-fiddle-date, feedmail-fiddle-message-id)
14170 (feedmail-fiddle-spray-address)
14171 (feedmail-fiddle-list-of-spray-fiddle-plexes)
14172 (feedmail-fiddle-list-of-fiddle-plexes)
14173 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
14174 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
14175 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
14176 Change default. Doc fix.
14177 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
14178 (feedmail-binmail-linuxish-template): New constant.
14179 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
14180 Respect feedmail-sendmail-f-doesnt-sell-me-out.
14181 (feedmail-send-it): Add debug call.
14182 Use feedmail-queue-buffer-file-name, and
14183 feedmail-send-it-immediately-wrapper.
14184 (feedmail-message-action-send): Add debug call.
14185 Use feedmail-send-it-immediately-wrapper.
14186 (feedmail-queue-express-to-queue): Add debug call.
14187 Run feedmail-queue-express-hook.
14188 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
14189 (feedmail-message-action-help-blat):
14190 Rename from feedmail-queue-send-edit-prompt-help-first.
14191 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
14192 Check line-endings. Handle errors better.
14193 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
14194 Doc fix. Add debug call.
14195 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
14196 Use feedmail-queue-send-edit-prompt-inner.
14197 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
14198 (feedmail-queue-send-edit-prompt-inner): New function, extracted
14199 from feedmail-queue-send-edit-prompt.
14200 (feedmail-queue-send-edit-prompt-help)
14201 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
14202 (feedmail-tidy-up-slug): Add debug call.
14203 Respect feedmail-queue-slug-suspect-regexp.
14204 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
14205 (feedmail-dump-message-to-queue): Add debug call.
14206 Expand queue-directory.
14207 (feedmail-dump-message-to-queue): Change message slightly.
14208 Use feedmail-say-chatter.
14209 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
14210 (feedmail-send-it-immediately-wrapper): New function.
14211 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
14212 Insert empty string rather than newline. Handle full-frame case.
14213 Use catch/throw. Use feedmail-say-chatter.
14214 (feedmail-fiddle-from): Try mail-host-address.
14215 (feedmail-default-message-id-generator): Doc fix.
14216 Bind system-time-locale. Handle missing end.
14217 (feedmail-fiddle-x-mailer): Add debug call.
14218 Handle feedmail-x-mailer-line being nil.
14219 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
14220 Add debug call. Use buffer-substring-no-properties.
14221 (feedmail-say-debug, feedmail-say-chatter): New functions.
14222 (feedmail-find-eoh): Give an explicit error.
14224 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
14226 * net/newst-treeview.el (newsticker-treeview-face): Change default
14227 family from helvetica to sans.
14228 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
14229 etc/images/newsticker.
14231 * net/newst-reader.el (newsticker-feed-face): Change default
14232 family from helvetica to sans.
14234 * net/newst-plainview.el (newsticker-new-item-face)
14235 (newsticker-old-item-face, newsticker-immortal-item-face)
14236 (newsticker-obsolete-item-face, newsticker-date-face)
14237 (newsticker-statistics-face): Change default family from
14239 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
14240 etc/images/newsticker.
14242 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
14243 (newsticker--process-auto-mark-filter-match): Tell user about
14246 2011-05-13 Didier Verna <didier@xemacs.org>
14248 Common Lisp indentation improvements on defmethod and lambda-lists.
14249 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
14251 (lisp-lambda-list-keyword-parameter-indentation)
14252 (lisp-lambda-list-keyword-parameter-alignment)
14253 (lisp-lambda-list-keyword-alignment): New customizable user options.
14254 (lisp-indent-defun-method): Improve docstring.
14255 (extended-loop-p): Fix comment.
14256 (lisp-indent-lambda-list-keywords-regexp): New variable.
14257 (lisp-indent-lambda-list): New function.
14258 (lisp-indent-259): Use it.
14259 (lisp-indent-defmethod): Support for more than one
14260 method qualifier and properly indent methods lambda-lists.
14261 (defgeneric): Provide a missing common-lisp-indent-function property.
14263 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14265 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
14266 bounds for the empty string (bug#8667).
14268 2011-05-13 Glenn Morris <rgm@gnu.org>
14270 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
14272 * mail/sendmail.el (sendmail-program): Try executable-find first.
14273 (sendmail-send-it): `sendmail-program' cannot be unbound.
14275 * calendar/appt.el (appt-make-list): Simplify.
14276 (appt-time-msg-list): Doc fix.
14277 (appt-check): Change mode-line message at the time of the appointment.
14279 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
14281 * progmodes/ld-script.el (ld-script-keywords)
14282 (ld-script-builtins): Update keywords list.
14284 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14286 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
14288 * shell.el (shell-completion-vars): New function.
14290 * simple.el (read-shell-command): Use it.
14291 (blink-matching-open): No need for " [...]" in minibuffer-message.
14293 2011-05-12 Glenn Morris <rgm@gnu.org>
14295 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
14296 (appt-check): Simplify.
14298 2011-05-12 Eli Zaretskii <eliz@gnu.org>
14300 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
14301 literal "/dev/null".
14303 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14305 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
14308 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
14310 * progmodes/which-func.el (which-function):
14311 Use add-log-current-defun instead of add-log-current-defun-function,
14312 which might not be defined (Bug#8260).
14314 2011-05-12 Glenn Morris <rgm@gnu.org>
14316 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
14317 Let byte-compile-initial-macro-environment always take precedence.
14319 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14321 * net/rcirc.el: Add support for SSL/TLS connections.
14322 (rcirc-server-alist): New field `encryption'.
14323 (rcirc): Check `encryption' settings.
14324 (rcirc-connect): New arg `encryption'. Use open-network-stream.
14325 Merge make-local-variable into `set'.
14326 (rcirc--connection-open-p): New function.
14327 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
14328 the process is not a network process (e.g. running gnutls-cli).
14329 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
14330 Make rcirc-(en|de)code-coding-system local here.
14331 (rcirc-mode): Merge make-local-variable into `set'.
14332 (rcirc-parent-buffer): Make permanent buffer-local.
14333 (rcirc-multiline-minor-mode): Don't do it here.
14334 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
14335 there's no server buffer.
14337 2011-05-11 Glenn Morris <rgm@gnu.org>
14339 * newcomment.el (comment-kill): Prefix "unused" local.
14341 * term/w32console.el (get-screen-color): Declare.
14343 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
14344 Handle symbol elements of byte-compile-initial-macro-environment.
14346 2011-05-10 Leo Liu <sdl.web@gmail.com>
14348 * bookmark.el (bookmark-bmenu-mode-map):
14349 Bind bookmark-bmenu-search to `/'.
14351 * mail/footnote.el: Convert to utf-8 encoding.
14352 (footnote-unicode-string, footnote-unicode-regexp): New variable.
14353 (Footnote-unicode): New function.
14354 (footnote-style-alist): Add unicode style to the list.
14355 (footnote-style): Doc fix.
14357 2011-05-10 Jim Meyering <meyering@redhat.com>
14359 Fix doubled-word typos.
14360 * international/quail.el (quail-insert-kbd-layout): and and -> and
14361 * kermit.el: and and -> and
14362 * net/ldap.el (ldap-search-internal): to to -> to
14363 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
14364 * progmodes/js.el (js-mode): and and -> and
14365 * textmodes/artist.el (artist-move-to-xy): at at -> at
14366 (artist-draw-region-trim-line-endings): if if -> if
14367 And Safetyc -> Safety.
14368 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
14370 2011-05-10 Glenn Morris <rgm@gnu.org>
14371 Stefan Monnier <monnier@iro.umontreal.ca>
14373 * files.el (hack-one-local-variable-eval-safep):
14374 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
14376 2011-05-10 Glenn Morris <rgm@gnu.org>
14378 * calendar/diary-lib.el (diary-list-entries-hook)
14379 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
14380 (diary-nongregorian-marking-hook, diary-list-entries)
14381 (diary-include-other-diary-files, diary-mark-entries)
14382 (diary-mark-included-diary-files): Doc fixes.
14384 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
14386 * misc.el: Require tabulated-list.el during compilation.
14388 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
14390 * progmodes/compile.el (compilation-start):
14391 Run compilation-filter-hook for the async case too.
14392 (compilation-filter-hook): Doc fix.
14394 2011-05-09 Deniz Dogan <deniz@dogan.se>
14396 * wdired.el: Remove outdated installation comment. Fix usage
14399 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
14401 * misc.el: Implement new command `list-dynamic-libraries'.
14402 (list-dynamic-libraries--loaded-only-p): New variable.
14403 (list-dynamic-libraries--refresh): New function.
14404 (list-dynamic-libraries): New command.
14406 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
14408 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14409 Fix the ant regexp to handle end-line and end-column info from jikes.
14410 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
14411 higher priority to avoid clobbering by gnu.
14413 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
14415 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
14416 if the face has existing theme settings (Bug#8454).
14418 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
14420 * progmodes/perl-mode.el (perl-imenu-generic-expression):
14421 Only match variables declared via `my' or `our' (Bug#8261).
14423 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
14424 special file names `.' and `..' (Bug#8259).
14426 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
14428 * progmodes/grep.el (grep-mode-font-lock-keywords):
14429 Remove buffer-changing entries.
14430 (grep-filter): New function.
14431 (grep-mode): Add it to compilation-filter-hook.
14433 * progmodes/compile.el (compilation-filter-hook)
14434 (compilation-filter-start): New defvars.
14435 (compilation-filter): Call compilation-filter-hook prior to
14436 updating the process mark.
14438 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14440 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
14442 2011-05-07 Eli Zaretskii <eliz@gnu.org>
14444 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
14445 mailclient-send-it even if window-system is nil. (Bug#8595)
14447 * term/w32console.el (terminal-init-w32console):
14448 Call get-screen-color and use its output to set the frame
14449 background-mode. (Bug#8597)
14451 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14453 Make bytecomp.el understand that defmethod defines funs (bug#8631).
14454 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
14456 (defgeneric, eieio--defmethod): Use them.
14457 (eieio-defgeneric): Remove.
14458 (defmethod): Call defgeneric in a way visible to the byte-compiler.
14460 2011-05-07 Glenn Morris <rgm@gnu.org>
14462 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
14463 Use let rather than let*.
14464 (timeclock-find-discrep): Remove unused local.
14466 * calendar/diary-lib.el (diary-comment-start): Doc fix.
14468 * calendar/appt.el (appt-time-msg-list): Doc fix.
14470 2011-05-06 Noah Friedman <friedman@splode.com>
14472 * apropos.el (apropos-print-doc): Only use
14473 emacs-lisp-docstring-fill-column when it is bound to an integer,
14474 per that variable's documentation.
14476 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14478 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
14479 and warnings are not silently discarded (e.g. use -d instead of -P).
14481 2011-05-06 Glenn Morris <rgm@gnu.org>
14483 * calendar/appt.el (appt-message-warning-time): Doc fix.
14484 (appt-warning-time-regexp): New option.
14485 (appt-make-list): Respect appt-message-warning-time.
14487 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
14489 (diary-add-to-list): Strip comments from the displayed string.
14490 (diary-mode): Set comment-start and comment-end.
14492 * vc/diff-mode.el (smerge-refine-subst): Declare.
14493 (diff-refine-hunk): Don't require smerge-mode when compiling.
14495 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
14497 * simple.el (list-processes): Return nil as the docstring says.
14499 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
14501 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
14503 (ange-ftp-write-region, ange-ftp-insert-file-contents)
14504 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
14505 determining of binary transfer. (Bug#7383)
14507 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
14509 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14510 Fix port computation bug. (Bug#8618)
14512 2011-05-05 Glenn Morris <rgm@gnu.org>
14514 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
14516 * simple.el (shell-dynamic-complete-functions)
14517 (comint-dynamic-complete-functions): Declare.
14519 * net/network-stream.el (gnutls-negotiate):
14520 * simple.el (tabulated-list-print): Fix declarations.
14522 * progmodes/gud.el (syntax-symbol, syntax-point):
14523 Remove unnecessary and incorrect declarations.
14525 * emacs-lisp/check-declare.el (check-declare-scan):
14526 Handle byte-compile-initial-macro-environment in bytecomp.el
14528 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
14530 Fix earlier half-done eieio-defmethod change (bug#8338).
14531 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
14532 Streamline and change calling convention.
14533 (defmethod): Adjust accordingly and simplify.
14534 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
14535 new eieio--defmethod.
14536 (slot-boundp): Minor CSE simplification.
14538 2011-05-05 Milan Zamazal <pdm@zamazal.org>
14540 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
14541 (glasses-make-readable): Use glasses-separate-capital-groups.
14543 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
14545 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
14546 (warning-series): Doc fix.
14547 (display-warning): Don't try to create the buffer if we just found it.
14549 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
14551 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
14552 (autoload-find-generated-file): New function.
14553 (generate-file-autoloads): Bind generated-autoload-file to
14555 (update-file-autoloads, update-directory-autoloads):
14556 Use autoload-find-generated-file. If called interactively, prompt for
14557 output file (Bug#7989).
14558 (batch-update-autoloads): Doc fix.
14560 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
14562 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
14564 2011-05-04 Glenn Morris <rgm@gnu.org>
14566 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
14567 function, so it follows changes in calendar-date-style.
14568 (diary-fancy-date-matcher): New function.
14569 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
14570 (diary-fancy-font-lock-fontify-region-function):
14571 Use diary-fancy-date-pattern as a function.
14573 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
14574 non-numbers for `year' etc pseudo-variables. (Bug#8583)
14576 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
14578 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
14579 instead of positional arguments. Allow :keylist and :crlfiles
14581 (open-gnutls-stream): Call it.
14583 * net/network-stream.el (network-stream-open-starttls): Adjust to
14584 call `gnutls-negotiate' with :process and :hostname arguments.
14586 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
14588 * minibuffer.el (completion--message): New function.
14589 (completion--do-completion, minibuffer-complete)
14590 (minibuffer-force-complete, minibuffer-complete-word): Use it.
14591 (completion--do-completion): Don't ignore completion-auto-help when in
14594 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
14595 internal encoding (e.g. tibetan zero is not whitespace).
14596 (global-whitespace-mode): Prefer save-current-buffer.
14597 (whitespace-trailing-regexp): Remove useless save-match-data.
14598 (whitespace-empty-at-bob-regexp): Minor simplification.
14600 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
14602 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
14604 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
14606 * textmodes/ispell.el (ispell-add-per-file-word-list):
14607 Use `concat' to create string for insertion.
14609 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14611 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
14612 Avoid open-line which runs post-self-insert-hook.
14613 (bibtex-fill-entry): Remove unused `end' var.
14615 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
14617 * textmodes/ispell.el (ispell-add-per-file-word-list):
14618 Protect against `nil' value of `comment-start' (Bug#8579).
14620 2011-05-03 Leo Liu <sdl.web@gmail.com>
14622 * isearch.el (isearch-yank-pop): New command.
14623 (isearch-mode-map): Bind it to `M-y'.
14624 (isearch-forward): Mention it.
14626 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
14628 * simple.el (minibuffer-complete-shell-command): Remove.
14629 (minibuffer-local-shell-command-map): Use completion-at-point.
14630 (read-shell-command): Setup completion vars here instead.
14631 (read-expression-map): Bind TAB to symbol completion.
14633 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
14634 error directly rather via storing it into `results'.
14636 2011-05-02 Leo Liu <sdl.web@gmail.com>
14638 * vc/diff.el: Fix description.
14640 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14642 * server.el (server-eval-at): New function.
14644 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
14646 * net/network-stream.el (open-network-stream): Take a :nowait
14647 parameter and pass it on to `make-network-process'.
14648 (network-stream-open-plain): Ditto.
14650 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
14652 * faces.el (face-spec-set-match-display): Don't match toolkit
14653 options on terminal frames.
14655 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
14657 * progmodes/pascal.el: Use lexical binding.
14658 (pascal-mode-map): Remove author preferences.
14660 * pcomplete.el (pcomplete-std-complete): Don't abuse
14661 completion-at-point.
14663 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14665 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
14666 removing code that has been dead since 1991 or so.
14668 * startup.el (command-line): When warning about "_emacs", use a
14669 delayed warning to allow the user to filter it out.
14671 2011-04-28 Deniz Dogan <deniz@dogan.se>
14673 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
14674 user has not joined.
14676 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14678 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
14679 aren't any completions at point.
14681 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
14683 * subr.el (display-delayed-warnings): New function.
14684 (delayed-warnings-hook): New variable.
14686 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
14688 * minibuffer.el (completion-at-point, completion-help-at-point):
14689 Don't presume that a given completion-at-point-function will always
14690 use the same calling convention.
14692 * pcomplete.el (pcomplete-completions-at-point):
14693 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
14694 pcomplete-seen is non-nil.
14695 (pcomplete-comint-setup): Also recognize the new comint/shell
14696 completion functions.
14697 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
14698 pcomplete-seen is non-nil.
14700 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
14702 * calendar/icalendar.el (diary-lib): Add require statement.
14703 (icalendar--create-uid): Read out a uid from a text-property on
14704 the first character in the entry. This allows for code to add its
14705 own uid to the entry.
14706 (icalendar--convert-float-to-ical): Add export of
14707 `diary-float'-entries save for those with the optional DAY
14710 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
14712 * subr.el (shell-quote-argument): Use alternate escaping strategy
14713 when we spot a variable reference in a string.
14715 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14717 * cus-start.el (all): Define customization for debug-on-event.
14719 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
14721 * subr.el (shell-quote-argument): Escape correctly under Windows.
14723 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14725 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
14727 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
14729 * net/tramp.el (tramp-process-actions): Add POS argument.
14730 Delete region between POS and (pos).
14732 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
14733 Use `nil' position in `tramp-process-actions' call.
14734 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
14736 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
14737 position in `tramp-process-actions' call.
14739 * net/trampver.el: Update release number.
14741 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
14743 * custom.el (defcustom): Obey lexical-binding.
14745 Fix octave-inf completion problems reported by Alexander Klimov.
14746 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
14747 Inherit from octave-mode-syntax-table.
14748 (inferior-octave-mode): Set info-lookup-mode.
14749 (inferior-octave-completion-at-point): New function.
14750 (inferior-octave-complete): Use it and completion-in-region.
14751 (inferior-octave-dynamic-complete-functions): Use it as well, and use
14752 comint-filename-completion.
14753 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
14754 symbol elements which shouldn't be word elements.
14755 (octave-font-lock-keywords, octave-beginning-of-defun)
14756 (octave-function-header-regexp): Adjust regexps accordingly.
14757 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
14759 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
14761 * net/gnutls.el (gnutls-errorp): Declare before first use.
14763 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14765 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
14766 verify-error, and verify-hostname-error parameters. Check whether
14767 default trustfile exists before going to use it. Add missing
14768 argument to gnutls-message-maybe call. Return value.
14769 Reported by Claudio Bley <claudio.bley@gmail.com>.
14770 (open-gnutls-stream): Add usage example.
14772 * net/network-stream.el (network-stream-open-starttls): Give host
14773 parameter to `gnutls-negotiate'.
14774 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
14775 * subr.el (shell-quote-argument): Escape correctly under Windows.
14777 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
14779 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
14780 Use correct match group (bug#8438).
14782 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14784 * emacs-lisp/package.el (package-built-in-p): Fix typo.
14785 (package-menu--generate): New arg specifying packages to show.
14786 (package-menu-refresh, package-menu-execute, list-packages):
14788 (package-show-package-list): New function, replacing deleted
14789 package--list-packages (renamed because it is non-internal).
14791 * finder.el (finder-list-matches): Use package-show-package-list
14792 instead of deleted package--list-packages.
14794 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
14795 Based on a previous implementation by Juanma Barranquero (Bug#8366).
14796 (vc-annotate-mode-map): Bind it to RET.
14798 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
14800 * progmodes/etags.el (next-file): Don't use set-buffer to change
14801 buffers (Bug#8478).
14803 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14805 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
14807 * apropos.el (apropos-label-face): Avoid variable-pitch face.
14808 (apropos-accumulator): Doc fix.
14809 (apropos-function, apropos-macro, apropos-command)
14810 (apropos-variable, apropos-face, apropos-group, apropos-widget)
14811 (apropos-plist): Add face property.
14812 (apropos-symbols-internal): Fix indentation.
14813 (apropos-print): Simplify help, and recognize apropos-multi-type.
14814 (apropos-print-doc): Use button-type-get to extract the button's
14815 face property. Fill docstring (Bug#8352).
14817 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
14819 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
14821 * play/mpuz.el (mpuz-silent): Doc fix.
14822 (mpuz-mode-map): Use mapc.
14823 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
14824 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
14825 Fix typos in docstrings.
14827 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
14828 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
14830 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
14832 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
14834 * minibuffer.el (completion--do-completion): Avoid the "Next char
14835 not unique" prompt if icomplete-mode is enabled (Bug#5849).
14837 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
14838 mouse-2 into unread-command-events, it is interpreted correctly.
14840 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
14841 (image-toggle-display): Doc fix.
14843 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
14845 * textmodes/page.el (what-page): Use line-number-at-pos to
14846 calculate line number (Bug#6825).
14848 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14850 * eshell/esh-mode.el (find-tag-interactive): Declare function.
14851 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
14852 Pass argument NO-DEFAULT to `find-tag-interactive'.
14854 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14856 Lexical-binding cleanup.
14858 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
14859 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
14860 * progmodes/ada-prj.el (ada-prj-initialize-values)
14861 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
14862 (ada-prj-show-value):
14863 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
14864 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
14865 (antlr-invalidate-context-cache, antlr-options-menu-filter)
14866 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
14867 * progmodes/bug-reference.el (bug-reference-push-button):
14868 * progmodes/fortran.el (fortran-line-length):
14869 * progmodes/glasses.el (glasses-change):
14870 * progmodes/octave-mod.el (octave-fill-paragraph):
14871 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
14872 (python-pdbtrack-grub-for-buffer, python-sentinel):
14873 * progmodes/sql.el (sql-save-connection):
14874 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
14875 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
14876 Mark unused parameters.
14878 * progmodes/compile.el (compilation--flush-directory-cache)
14879 (compilation--flush-parse, compile-internal): Mark unused parameters.
14880 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
14881 (compilation-next-error-function): Remove unused variable `timestamp'.
14883 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
14884 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
14886 * progmodes/dcl-mode.el (dcl-end-of-command):
14887 Remove unused variable `start'.
14888 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
14889 (dcl-option-value-basic, dcl-option-value-offset)
14890 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
14891 Mark unused parameters.
14892 (dcl-save-local-variable): Remove unused variable `val'.
14895 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
14896 Mark unused parameters.
14897 (delphi-ignore-changes): Move before first use.
14898 (delphi-charset-token-at): Remove unused variable `start'.
14899 (delphi-else-start): Remove unused variable `if-count'.
14900 (delphi-comment-block-start, delphi-comment-block-end):
14901 Remove unused variable `kind'.
14902 (delphi-indent-line): Remove unused variable `new-point'.
14904 * progmodes/ebrowse.el (ebrowse-files-list)
14905 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
14906 Mark unused parameters. Don't quote `lambda'.
14907 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
14908 Don't quote `lambda'.
14909 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
14910 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
14911 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
14912 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
14913 Use `ignore-errors'.
14914 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
14915 (ebrowse-view/find-file-and-search-pattern)
14916 (ebrowse-view/find-member-declaration/definition):
14917 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
14918 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
14919 Rename parameter PREFIX-ARG to PREFIX.
14920 (ebrowse-tags-read-name): Remove unused variables `start' and
14922 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
14925 * progmodes/etags.el (local-find-tag-hook): Declare.
14926 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
14927 Mark unused parameters.
14929 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
14930 (executable-interpret): Mark unused parameter.
14932 * progmodes/flymake.el (flymake-process-sentinel)
14933 (flymake-after-change-function)
14934 (flymake-create-temp-with-folder-structure)
14935 (flymake-get-include-dirs-dot): Mark unused parameters.
14936 (flymake-safe-delete-directory): Remove unused variable `err'.
14938 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
14939 (speedbar-timer-fn, speedbar-line-text)
14940 (speedbar-change-expand-button-char, speedbar-delete-subblock)
14941 (speedbar-center-buffer-smartly): Declare functions.
14942 (gdb-find-watch-expression): Remove unused variable `array'.
14943 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
14944 (gdb-starting): Mark unused parameters.
14945 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
14946 (gdb-table-string): Remove unused variable `res'.
14947 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14948 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14949 (gdb-display-buffer): Remove unused variable `cur-size'.
14951 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14952 allow lexical-binding compilation.
14953 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14954 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14955 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14956 Mark unused parameters.
14957 (gud-gdb-marker-filter): Remove unused variable `match'.
14958 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14959 lambda expressions and funcall them, instead of using `fset'.
14961 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14962 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14964 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14965 variable `header-beg'; use `let'.
14967 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14968 `restart', `last-sexp' and `at-do'.
14970 * progmodes/js.el (js--debug): Mark unused parameter.
14971 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14972 (js--splice-into-items): Remove unused variable `item'.
14973 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14975 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14976 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14977 (makefile-complete): Remove unused variable `try'.
14978 (makefile-fill-paragraph, makefile-match-function-end):
14979 Mark unused parameters.
14981 * progmodes/octave-inf.el (inferior-octave-complete):
14982 Remove unused variable `proc'.
14983 (inferior-octave-output-digest): Mark unused parameter.
14985 * progmodes/perl-mode.el (perl-calculate-indent):
14986 Remove unused variable `err'.
14988 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14989 (prolog-indent-line): Mark unused parameters.
14990 (prolog-indent-line): Remove unused variable `beg'.
14992 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14993 (reporter-dont-compact-list): Declare.
14995 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14996 Remove unused variable `char'.
14997 (sh-debug): Mark unused parameter.
14998 (sh-get-indent-info): Remove unused variable `start'.
14999 (sh-calculate-indent): Remove unused variable `var'.
15001 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
15002 (simula-electric-keyword): Remove unused variable `null'.
15003 (simula-search-backward, simula-search-forward): Remove unused
15004 variables `begin' and `end'.
15006 * progmodes/vera-mode.el (vera-guess-basic-syntax):
15007 Remove unused variable `pos'.
15008 (vera-electric-tab, vera-comment-uncomment-region):
15009 Mark unused parameters.
15010 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
15012 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
15014 * emacs-lisp/package.el (package--builtins, package-alist)
15015 (package-load-descriptor, package-built-in-p, package-activate)
15016 (define-package, package-installed-p)
15017 (package-compute-transaction, package-buffer-info)
15018 (package--push): Doc fix. Distinguish more clearly between
15019 version strings and version lists.
15021 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
15023 Lexical-binding cleanup.
15025 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
15026 (5x5-make-mutate-best):
15027 * play/fortune.el (fortune-in-buffer):
15028 * play/gomoku.el (gomoku-init-display):
15029 * play/solitaire.el (solitaire, solitaire-do-check):
15030 * play/tetris.el (tetris-default-update-speed-function):
15031 Mark unused parameters.
15033 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
15034 (bubbles--shift): Remove unused variable `char-org'.
15035 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
15036 (bubbles--show-images): Remove unused variable `char'.
15038 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
15039 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
15040 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
15041 (decipher-analyze-buffer): Use ?\s.
15042 (decipher-make-checkpoint): Remove unused variable `mapping'.
15044 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
15046 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
15047 Remove unused variable `result'; use `let'.
15049 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
15050 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
15051 (gametree-children-shown-p, gametree-compute-reduced-score):
15052 Use `ignore-errors'.
15054 * play/handwrite.el (ps-lpr-switches): Declare.
15055 (handwrite): Remove unused variables `pmin' and `lastp'.
15057 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
15059 * play/landmark.el (landmark-init-display)
15060 (landmark-update-naught-weights): Mark unused parameters.
15061 (landmark-y): Remove unused variable `noise'. Simplify.
15062 (landmark-human-plays): Remove unused variable `score'.
15064 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
15065 (mpuz-try-proposal): Remove unused variable `game'.
15067 * play/zone.el (life-patterns): Declare.
15069 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
15071 * vc/vc.el (ediff-vc-internal): Declare function.
15073 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15075 * shell.el: Use lexical-binding and std completion UI.
15076 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
15077 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
15078 comint-preoutput-filter-functions rather than on
15079 comint-output-filter-functions.
15080 (shell-command-completion, shell--command-completion-data)
15081 (shell-filename-completion, shell-environment-variable-completion)
15082 (shell-c-a-p-replace-by-expanded-directory): New functions.
15083 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
15084 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
15085 (shell-dynamic-complete-environment-variable): Use them.
15086 (shell-dynamic-complete-as-environment-variable)
15087 (shell-dynamic-complete-as-command): Remove.
15088 (shell-match-partial-variable): Match past point.
15089 * comint.el: Clean up use of completion-at-point-functions.
15090 (comint-completion-at-point): New function.
15091 (comint-mode): Use it completion-at-point-functions.
15092 (comint-dynamic-complete): Make it obsolete.
15093 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
15094 (comint-c-a-p-replace-by-expanded-history): New function.
15095 (comint-dynamic-complete-functions)
15096 (comint-replace-by-expanded-history): Use it.
15097 * minibuffer.el (completion-table-with-terminator): Allow dynamic
15098 termination strings. Try harder to avoid second try-completion.
15099 (completion-in-region-mode-map): Disable bindings that don't work yet.
15101 * comint.el: Use lexical-binding. Require CL.
15102 (comint-dynamic-complete-functions): Use comint-filename-completion.
15103 (comint-completion-addsuffix): Tweak custom type.
15104 (comint-filename-completion, comint--common-suffix)
15105 (comint--common-quoted-suffix, comint--table-subvert)
15106 (comint--complete-file-name-data): New functions.
15107 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
15108 (comint-dynamic-list-filename-completions): Use them.
15109 (comint-dynamic-simple-complete): Make obsolete.
15111 * minibuffer.el (completion-in-region-mode):
15112 Keep completion-in-region-mode--predicate global.
15113 (completion-in-region--postch):
15114 Assume completion-in-region-mode--predicate is not null.
15116 * progmodes/flymake.el (flymake-start-syntax-check-process):
15117 Obey `dir'. Simplify.
15119 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
15120 we're in VC after all.
15122 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
15124 * vc/vc.el (vc-diff-build-argument-list-internal)
15125 (vc-version-ediff, vc-ediff): New commands.
15126 (vc-version-diff): Use vc-diff-build-argument-list-internal.
15128 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15130 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
15133 * obsolete/erc-hecomplete.el: Make obsolete.
15134 * obsolete/: Standardize obsolescence info in the header.
15136 2011-04-20 Glenn Morris <rgm@gnu.org>
15138 * calendar/solar.el (solar-horizontal-coordinates):
15139 Use the longitude argument rather than `calendar-longitude'.
15140 (solar-date-next-longitude): Remove unused locals.
15142 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15144 * whitespace.el: New version 13.2.1.
15146 2011-04-20 felix <EmacsWiki> (tiny change)
15148 * whitespace.el (global-whitespace-mode): Keep highlight when
15149 switching between major modes on a file.
15151 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15153 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
15154 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
15155 multi-line comments as well.
15157 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
15159 Lexical-binding cleanup.
15161 * arc-mode.el (archive-mode-revert):
15162 * cmuscheme.el (scheme-interactively-start-process):
15163 * custom.el (custom-initialize-delay):
15164 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
15165 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
15166 * emacs-lock.el (emacs-lock-clear-sentinel):
15167 * ezimage.el (defezimage):
15168 * follow.el (follow-avoid-tail-recenter):
15169 * fringe.el (set-fringe-mode-1):
15170 * generic-x.el (bat-generic-mode-compile):
15171 * help-mode.el (help-info-variable, help-do-xref)
15172 (help-mode-revert-buffer):
15173 * help.el (view-emacs-todo):
15174 * iswitchb.el (iswitchb-completion-help):
15175 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
15176 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
15177 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
15178 * locate.el (locate-update):
15179 * longlines.el (longlines-encode-region)
15180 (longlines-after-change-function):
15181 * outline.el (outline-isearch-open-invisible):
15182 * ps-def.el (declare-function, charset-dimension, char-width)
15184 * ps-mule.el (ps-mule-plot-string):
15185 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
15186 (recentf-edit-list-select, recentf-edit-list-validate)
15187 (recentf-open-files-action):
15188 * rect.el (delete-whitespace-rectangle-line)
15189 (rectangle-number-line-callback):
15190 * register.el (window-configuration-to-register)
15191 (frame-configuration-to-register):
15192 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
15193 * select.el (xselect-convert-to-string, xselect-convert-to-length)
15194 (xselect-convert-to-targets, xselect-convert-to-delete)
15195 (xselect-convert-to-filename, xselect-convert-to-charpos)
15196 (xselect-convert-to-lineno, xselect-convert-to-colno)
15197 (xselect-convert-to-os, xselect-convert-to-host)
15198 (xselect-convert-to-user, xselect-convert-to-class)
15199 (xselect-convert-to-name, xselect-convert-to-integer)
15200 (xselect-convert-to-atom, xselect-convert-to-identity):
15201 * subr.el (declare, ignore, process-kill-without-query)
15202 (text-clone-maintain):
15203 * terminal.el (te-get-char, te-tic-sentinel):
15204 * tool-bar.el (tool-bar-make-keymap):
15205 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
15206 * type-break.el (type-break-mode, type-break-noninteractive-query):
15207 * view.el (View-back-to-mark):
15208 * wid-browse.el (widget-browse-action, widget-browse-widget)
15209 (widget-browse-widgets, widget-browse-sexp):
15210 * widget.el (define-widget-keywords):
15211 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
15212 Mark unused parameters.
15214 * align.el (align-adjust-col-for-rule): Mark unused parameter.
15215 (align-areas): Remove unused variable `look'.
15216 (align-region): Remove unused variables `real-end' and `pos-list'.
15218 * apropos.el (apropos-score-doc): Remove unused variable `i'.
15220 * bindings.el (mode-line-modified, mode-line-remote):
15221 Mark unused parameters.
15222 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
15224 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
15225 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
15227 * comint.el (comint-history-isearch-pop-state)
15228 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
15229 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
15230 (comint-substitute-in-file-name): Doc fix.
15232 * completion.el (cmpl-statistics-block): Mark unused parameter.
15233 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
15234 (save-completions-to-file, load-completions-from-file):
15235 Remove unused local variable `e'.
15237 * composite.el (compose-chars): Remove unused variable `len'.
15238 (lgstring-insert-glyph): Remove unused variable `g'.
15239 (compose-glyph-string): Remove unused variables `ascent',
15240 `descent', `lbearing' and `rbearing'.
15241 (compose-glyph-string-relative): Remove unused variables
15242 `lbearing', `rbearing' and `wadjust'.
15243 (compose-gstring-for-graphic): Remove unused variables `header',
15244 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
15245 (compose-gstring-for-terminal): Remove unused variables `header'
15246 and `nchars'. Use `let', not `let*'.
15248 * cus-edit.el (Custom-set, Custom-save, custom-reset)
15249 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
15250 (Custom-buffer-done, custom-buffer-create-internal)
15251 (custom-browse-visibility-action, custom-browse-group-tag-action)
15252 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
15253 (widget-magic-mouse-down-action, custom-toggle-parent)
15254 (custom-add-parent-links, custom-toggle-hide-variable)
15255 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
15256 (custom-toggle-hide-face, face, hook, custom-group-link-action)
15257 (custom-face-menu-create, custom-variable-menu-create, get)
15258 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
15259 (custom-reset-standard-save-and-update): Remove unused variable `value'.
15260 (customize-apropos): Remove unused variable `tests'.
15261 (custom-group-value-create): Remove unused variable `hidden-p'.
15262 (sort-fold-case): Declare.
15264 * cus-theme.el (custom-reset-standard-faces-list)
15265 (custom-reset-standard-variables-list): Declare.
15266 (customize-create-theme, custom-theme-revert, custom-theme-write)
15267 (custom-theme-choose-mode, customize-themes, custom-theme-save):
15268 Mark unused parameters.
15270 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
15272 * delim-col.el (delimit-columns-max): Move defvar before first use.
15274 * descr-text.el (describe-char-categories): Don't quote `lambda'.
15275 (describe-char): Don't quote `lambda'. Mark unused parameter.
15277 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
15278 (auto-insert): Declare.
15279 (desktop-restore-file-buffer): Rename desktop-* parameters;
15281 (desktop-create-buffer): Rename desktop-* parameters and bind them.
15282 (desktop-buffer): Rename desktop-* parameters.
15284 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
15285 (dframe-reposition-frame-xemacs, dframe-help-echo)
15286 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
15287 Mark unused parameters.
15289 * dired-aux.el (backup-extract-version-start, overwrite-query)
15290 (overwrite-backup-query, rename-regexp-query)
15291 (rename-non-directory-query): Declare.
15292 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
15293 (dired-add-entry): Remove unused variable `orig-file-name'.
15294 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
15295 Use parameter PRESERVE-TIME instead of accessing dynamic variable
15296 `dired-copy-preserve-time' directly.
15297 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
15298 (dired-insert-subdir-newpos): Rename unused variable `pos'.
15300 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
15301 (dired-virtual-revert, dired-make-relative-symlink):
15302 Mark unused parameters.
15303 (manual-program): Declare.
15304 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
15305 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
15306 wrapped in `with-no-warnings' to avoid replacing one warning by another.
15308 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
15310 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
15312 * echistory.el (electric-history-in-progress, Helper-return-blurb):
15315 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
15317 * electric.el (Electric-command-loop): Rename parameter
15318 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
15320 * expand.el (expand-in-literal): Remove unused variable `here'.
15322 * facemenu.el (facemenu-add-new-color):
15323 Remove unused variable `docstring'.
15325 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
15326 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
15327 (face-attr-construct): Mark unused parameter. Doc fix.
15328 (read-color): Remove unused variable `hex-string'.
15330 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
15331 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
15332 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
15333 (display-buffer-other-frame): Remove unused variable `old-window'.
15334 (kill-buffer-hook): Declare.
15335 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
15336 Mark unused parameters.
15337 (after-find-file): Pass 1 to `auto-save-mode', not t.
15339 * files-x.el (auto-insert): Declare.
15340 (modify-file-local-variable-prop-line): Remove unused variable `val'.
15342 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
15343 variable `buf'. Mark unused parameter.
15344 (find-lisp-insert-directory): Mark unused parameter.
15346 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
15347 (format-encode-region): Remove unused variables `cur-buf' and `result'.
15348 (format-common-tail): Remove, unused.
15349 (format-deannotate-region): Remove unused variable `loc'.
15350 (format-annotate-region): Remove unused variable `p'.
15351 (format-annotate-single-property-change): Remove unused variables
15352 `default' and `tail'.
15354 * forms.el (read-file-filter): Declare.
15355 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
15357 * frame.el (frame-creation-function-alist): Mark unused parameter.
15358 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
15360 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
15361 Remove unused parameters.
15362 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
15363 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
15365 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
15366 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
15367 (hfy-prepare-tag-map): Mark unused parameters.
15368 (htmlfontify-buffer): Use `called-interactively-p'.
15370 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
15371 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
15372 (ibuffer-do-occur): Mark unused parameters.
15373 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
15374 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
15376 * ibuffer.el: Don't quote `lambda'.
15377 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
15378 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
15379 Mark unused parameters.
15381 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
15382 (ido-completing-read): Mark unused parameters.
15383 (ido-copy-current-word): Mark unused parameters;
15384 remove unused variable `name'.
15385 (ido-sort-merged-list): Remove unused parameter `dirs'.
15387 * ielm.el (ielm-input-sender): Mark unused parameter.
15388 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
15389 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
15390 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
15391 `ielm-string' as a dynamic variable accessible from the IELM prompt.
15392 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
15394 * image-dired.el (image-dired-display-thumbs): Remove unused
15395 variables `curr-file' and `count'.
15396 (image-dired-remove-tag): Remove unused variable `start'.
15397 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
15398 variable `curr-file'
15399 (image-dired-rotate-original): Remove unused variable `temp-file'.
15400 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
15401 Remove unused variable `file'.
15402 (image-dired-gallery-generate): Remove unused variable `curr'.
15403 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
15405 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
15407 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
15409 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
15411 * isearch.el (minibuffer-history-symbol): Declare.
15412 (isearch-edit-string): Remove unused variable `err'.
15413 (isearch-message-prefix, isearch-message-suffix):
15414 Mark unused parameters.
15416 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
15418 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
15420 * makesum.el (double-column): Remove unused variable `cnt'.
15422 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
15423 (ido-ignore-item-temp-list): Declare.
15425 * mouse-drag.el (mouse-drag-throw): Remove unused variables
15426 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
15427 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
15428 (mouse-drag-drag): Remove unused variables `mouse-delta' and
15431 * mouse-sel.el (mouse-extend-internal):
15432 Remove unused variable `orig-window-frame'.
15434 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
15435 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
15436 Move declarations before first use.
15437 (pcomplete-opt): Mark unused parameters; doc fix.
15439 * proced.el (proced-revert): Mark unused parameter.
15440 (proced-send-signal): Remove unused variable `err'.
15442 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
15443 Rename parameter PREFIX-ARG to ARG.
15444 (ps-basic-plot-string, ps-basic-plot-whitespace):
15445 Mark unused parameters.
15447 * replace.el (replace-count): Define.
15448 (occur-revert-function): Mark unused parameters.
15449 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
15450 (isearch-case-fold-search, isearch-string): Declare.
15451 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
15452 bind `case-fold-search'. Remove unused variables `beg' and `end',
15454 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
15455 COUNT and bind `replace-count'.
15456 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
15459 * savehist.el (print-readably, print-string-length): Declare.
15461 * shadowfile.el (shadow-expand-cluster-in-file-name):
15462 Remove unused variable `cluster'.
15463 (shadow-copy-file): Remove unused variable `i'.
15464 (shadow-noquery, shadow-clusters, shadow-site-cluster)
15465 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
15466 (shadow-define-literal-group, shadow-define-regexp-group)
15467 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
15469 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
15470 (shell): Use `called-interactively-p'.
15471 (shell-directory-tracker): Remove unused variable `chdir-failure'.
15473 * simple.el (compilation-context-lines, comint-file-name-quote-list)
15474 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
15475 (delete-backward-char): Remove unused variable `ocol'.
15476 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
15477 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
15478 (event-apply-hyper-modifier, event-apply-shift-modifier)
15479 (event-apply-control-modifier, event-apply-meta-modifier):
15480 Mark unused parameters.
15481 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
15482 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
15484 * speedbar.el (speedbar-ignored-directory-expressions)
15485 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
15486 (speedbar-find-file, speedbar-dir-follow)
15487 (speedbar-directory-buttons-follow, speedbar-tag-find)
15488 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
15489 (speedbar-buffers-line-directory, speedbar-buffer-click):
15490 Mark unused parameters.
15491 (speedbar-tag-file): Remove unused variable `mode'.
15492 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
15494 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
15496 * talk.el (talk): Remove unused variable `display'.
15498 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
15499 (tar-write-region-annotate): Mark unused parameter.
15501 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
15502 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
15503 Declare them, wrapped in `with-no-warnings' to avoid replacing one
15504 warning by another.
15506 * time-stamp.el (time-stamp-string-preprocess):
15507 Remove unused variable `require-padding'.
15509 * tree-widget.el (widget-glyph-enable): Declare.
15510 (tree-widget-action): Mark unused parameter.
15512 * w32-fns.el (x-get-selection): Mark unused parameter.
15513 (autoload-make-program, generated-autoload-file): Declare.
15515 * wdired.el (wdired-revert): Mark unused parameters.
15516 (wdired-xcase-word): Remove unused variable `err'.
15518 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
15519 (whitespace-help-scroll): Remove unused variable `data-help'.
15521 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
15522 (widget-image-insert, widget-after-change, default)
15523 (widget-default-format-handler, widget-default-notify)
15524 (widget-default-prompt-value, widget-info-link-action)
15525 (widget-url-link-action, widget-function-link-action)
15526 (widget-variable-link-action, widget-file-link-action)
15527 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
15528 (widget-field-prompt-internal, widget-field-action, widget-field-match)
15529 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
15530 (widget-insert-button-action, widget-delete-button-action, visibility)
15531 (widget-documentation-link-action, widget-documentation-string-action)
15532 (widget-const-prompt-value, widget-regexp-match, symbol)
15533 (widget-coding-system-prompt-value)
15534 (widget-key-sequence-value-to-external, sexp)
15535 (widget-sexp-value-to-internal, character, vector, cons)
15536 (widget-choice-prompt-value, widget-boolean-prompt-value)
15537 (widget-color--choose-action): Mark unused parameters.
15538 (widget-item-match-inline, widget-choice-match-inline)
15539 (widget-checklist-match, widget-checklist-match-inline)
15540 (widget-group-match): Rename parameter VALUES to VALS.
15541 (widget-field-value-set): Remove unused variable `size'.
15542 (widget-color-action): Remove unused variables `value' and `start'.
15544 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
15545 variable `dir'. Doc fix.
15546 (windmove-find-other-window): Don't pass it.
15548 * window.el (count-windows): Mark unused parameter.
15549 (bw-adjust-window): Remove unused variable `err'.
15551 * woman.el (woman-file-name): Remove unused variable `default'.
15552 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
15553 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
15554 (global-font-lock-mode): Declare.
15555 (woman-decode-region): Mark unused parameter.
15556 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
15558 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
15559 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
15560 (x-dnd-handle-moz-url): Remove unused variable `title'.
15561 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
15563 * xml.el (xml-parse-tag, xml-parse-attlist):
15564 Remove unused variable `pos'.
15566 2011-04-19 Glenn Morris <rgm@gnu.org>
15568 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
15569 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
15570 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
15571 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
15572 * calendar/cal-html.el (cal-html-insert-minical):
15573 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
15574 (calendar-mark-date-pattern):
15575 Prefix "unused" locals.
15577 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
15578 optional argument `style'.
15580 * calendar/appt.el (appt-make-list):
15581 * calendar/cal-china.el (calendar-chinese-date-string):
15582 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
15583 (diary-hebrew-yahrzeit):
15584 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
15585 * calendar/calendar.el (calendar-generate-window):
15586 * calendar/time-date.el (time-to-days):
15587 Remove unused local variables.
15589 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
15591 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
15592 glyphless-char-display table.
15593 (tabulated-list-glyphless-char-display): New var.
15595 2011-04-18 Sam Steingold <sds@gnu.org>
15597 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
15598 to acknowledgments.
15600 2011-04-17 Glenn Morris <rgm@gnu.org>
15602 * calendar/diary-lib.el (diary-sexp-entry):
15603 * calendar/holidays.el (holiday-sexp):
15604 Set debug-on-error rather than the removed stack-trace-on-error.
15606 2011-04-16 Glenn Morris <rgm@gnu.org>
15608 * progmodes/f90.el: Use lexical-binding.
15609 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
15611 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15613 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
15614 (mail-mode): Setup mailalias completion here instead.
15615 * mail/mailalias.el: Use lexical-binding.
15616 (pattern, mailalias-done): Declare dynamic.
15617 (mail-completion-at-point-function): New function, from mail-complete.
15618 (mail-complete): Use it.
15619 (mail-completion-expand): New function.
15620 (mail-get-names): Use it.
15621 (mail-directory, mail-directory-process, mail-directory-stream):
15622 Don't use `pattern' for lexically bound arg.
15624 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
15626 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
15627 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
15628 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
15630 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
15631 (byte-save-window-excursion, byte-temp-output-buffer-setup)
15632 (byte-interactive-p): Define them again, for use when inlining
15635 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
15637 * loadup.el: Use `string-to-number', not `string-to-int'.
15639 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15641 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
15642 gud-gdb-complete-command.
15643 (gud-gdb-completions): New function, from gud-gdb-complete-command.
15644 (gud-gdb-completion-at-point): New function.
15645 (gud-gdb-completions): Remove.
15647 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
15649 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
15650 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
15651 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
15652 whether `executable-find' is bound.
15654 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
15656 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
15658 * minibuffer.el (completion-in-region-mode-predicate)
15659 (completion-in-region-mode--predicate): New vars.
15660 (completion-in-region, completion-in-region--postch)
15661 (completion-in-region-mode): Use them.
15662 (completion--capf-wrapper): Also return the hook function.
15663 (completion-at-point, completion-help-at-point):
15664 Adjust and provide a predicate.
15666 Preserve arg names for advice of subr and lexical functions (bug#8457).
15667 * help-fns.el (help-function-arglist): Consolidate the subr and
15668 new-byte-code cases. Add argument `preserve-names' to extract names
15669 from the docstring when needed.
15670 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
15671 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
15672 (ad-arglist): Use help-function-arglist's new arg.
15673 (ad-definition-type): Use cond.
15675 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
15677 * autorevert.el (auto-revert-handler):
15678 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
15679 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
15680 Don't quote lambda.
15682 * image-mode.el (image-transform-set-scale):
15683 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
15685 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
15687 * net/network-stream.el (network-stream-open-starttls): Only do
15688 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
15689 Upgrades via gnutls-cli are too slow to be done opportunistically.
15691 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
15693 * dframe.el (dframe-current-frame): Remove spurious quote.
15695 2011-04-12 Glenn Morris <rgm@gnu.org>
15697 * calendar/cal-tex.el (cal-tex-end-document):
15698 Try to automatically use latin1 input if needed.
15700 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
15701 Don't try to cons a mark onto an empty element.
15703 2011-04-11 Leo Liu <sdl.web@gmail.com>
15705 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
15707 (ido-kill-buffer-at-head): Support killing virtual buffers.
15709 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
15711 * minibuffer.el (completion-show-inline-help): New var.
15712 (completion--do-completion, minibuffer-complete)
15713 (minibuffer-force-complete, minibuffer-complete-word):
15714 Inhibit minibuffer messages if completion-show-inline-help is nil.
15716 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
15717 to avoid interference from inline help (Bug#5849).
15719 2011-04-10 Leo Liu <sdl.web@gmail.com>
15721 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
15724 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
15726 * image-mode.el (image-toggle-display-image): Signal an error if
15728 (image-transform-mode, image-transform-resize)
15729 (image-transform-set-rotation): Doc fix.
15730 (image-transform-set-resize): Delete.
15731 (image-transform-set-scale, image-transform-fit-to-height)
15732 (image-transform-fit-to-width): Handle image-toggle-display-image
15733 and image-transform-resize directly.
15735 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
15737 * doc-view.el (doc-view-fit-width-to-window)
15738 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
15739 New functions for fitting the shown image to the Emacs window size.
15740 (doc-view-mode-map): Add bindings for the new functions.
15742 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
15744 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
15745 Fix typo in docstring.
15747 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15749 * files.el (file-size-human-readable): Produce one digit after
15750 decimal, like "ls -lh" does.
15752 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
15753 the file size representation.
15755 * simple.el (list-processes): If async subprocesses are not
15756 available, error out with a clear error message.
15758 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
15760 * help.el (help-form-show): New function, to be called from C.
15761 Put help-form output in a buffer named differently than *Help*.
15763 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15765 * files.el (file-size-human-readable): New function.
15767 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
15768 computing the representation inline. Don't require `cl'.
15770 2011-04-08 Glenn Morris <rgm@gnu.org>
15772 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
15774 * net/browse-url.el (browse-url-firefox):
15775 Test system-type, not system-configuration.
15777 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
15778 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
15779 Use log-edit-empty-buffer-p. (Bug#7598)
15781 * net/rlogin.el (rlogin-process-connection-type): Simplify.
15782 (rlogin-mode-map): Initialize in the defvar.
15783 (rlogin): Use ignore-errors.
15785 * replace.el (occur-mode-map): Some fixes for menu items.
15787 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15789 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
15791 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15793 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
15794 issuing unused warnings.
15796 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
15799 * simple.el: Lisp reimplement of list-processes. Based on an
15800 earlier reimplementation by Leo Liu, but using tabulated-list.el.
15801 (process-menu-mode): New major mode.
15802 (list-processes--refresh, list-processes):
15803 (process-menu-visit-buffer): New functions.
15805 * files.el (save-buffers-kill-emacs): Don't assume any return
15806 value of list-processes, which is undocumented anyway.
15808 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15810 * emacs-lisp/tabulated-list.el: New file.
15812 * emacs-lisp/package.el: Use Tabulated List mode.
15813 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
15814 (package-menu-mode): Derive from tabulated-list-mode. Set up the
15815 table format using Tabulated List mode variables.
15816 (package--push): New macro, replacing package-list-maybe-add.
15817 (package-menu--generate): Use package--push. Renamed from
15818 package--generate-package-list.
15819 (package-menu-refresh, list-packages): Use it.
15820 (package-menu--print-info): Rename from package-print-package.
15821 Return insertion data instead of inserting it directly.
15822 (package-menu-describe-package, package-menu-execute):
15823 Use tabulated-list-get-id.
15824 (package-menu-mark-delete, package-menu-mark-install)
15825 (package-menu-mark-unmark, package-menu-backup-unmark)
15826 (package-menu-mark-obsolete-for-deletion):
15827 Use tabulated-list-put-tag.
15828 (package--list-packages, package-menu-revert)
15829 (package-menu-get-package, package-menu-get-version)
15830 (package-menu-sort-by-column): Functions deleted.
15831 (package-menu-package-list, package-menu-sort-key): Vars deleted.
15832 (package-menu--status-predicate, package-menu--version-predicate)
15833 (package-menu--name-predicate)
15834 (package-menu--description-predicate): Handle arguments in the
15835 Tabulated List format.
15836 (package-list-packages-no-fetch): Call list-packages.
15838 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
15840 * files.el (after-find-file-from-revert-buffer): Remove variable.
15841 (after-find-file): Don't bind it.
15842 (revert-buffer-in-progress-p): New variable.
15843 (revert-buffer): Bind it.
15844 Pass nil for `after-find-file-from-revert-buffer'.
15846 * saveplace.el (save-place-find-file-hook): Use new variable
15847 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
15849 2011-04-06 Glenn Morris <rgm@gnu.org>
15851 * Makefile.in (AUTOGEN_VCS): New variable.
15852 (autoloads): Use $AUTOGEN_VCS.
15854 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
15855 * calendar/calendar.el (calendar-mode-map):
15856 Check for toolkit scroll bars. (Bug#8305)
15858 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15860 * minibuffer.el (completion-in-region--postch)
15861 (completion-in-region-mode): Remove unnecessary messages.
15863 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
15865 * font-lock.el (font-lock-refresh-defaults):
15866 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
15867 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
15869 * info.el (Info-directory-list, Info-read-node-name-2)
15870 (Info-split-parameter-string): Doc fixes.
15871 (Info-virtual-nodes): Reflow docstring.
15872 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
15873 (Info-apropos-toc-nodes, info-finder, Info-get-token)
15874 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
15875 Fix typos in docstrings.
15876 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
15877 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
15878 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
15879 (Info-restore-desktop-buffer): Mark unused parameters.
15880 (Info-directory-find-file, Info-directory-find-node)
15881 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
15882 (Info-virtual-index-find-node, Info-apropos-find-file)
15883 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
15884 Mark unused parameters; fix typos in docstrings.
15885 (Info-virtual-index): Remove unused local variable `nodename'.
15887 2011-04-05 Deniz Dogan <deniz@dogan.se>
15889 * net/rcirc.el: Update my e-mail address.
15890 (rcirc-mode-map): Remove M-o binding.
15892 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15894 * startup.el (command-line): Save the cursor's theme-face
15895 directly, instead of using face-override-spec.
15897 * custom.el (load-theme): Minor optimization in assigning faces.
15899 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15901 * help-fns.el (describe-variable): Complete all variables having
15902 documentation, including keywords.
15903 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
15905 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15907 Convert to lexical-binding.
15909 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
15910 (bs--get-marked-string, bs--get-modified-string)
15911 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
15912 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
15913 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
15915 * ehelp.el (electric-help-execute-extended)
15916 (electric-help-ctrl-x-prefix):
15917 * hexl.el (hexl-revert-buffer-function):
15918 * linum.el (linum-after-change, linum-after-scroll):
15919 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
15921 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
15923 2011-04-04 Daiki Ueno <ueno@unixuser.org>
15930 * epg.el: Use lexical binding.
15932 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
15934 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
15936 * textmodes/flyspell.el (flyspell-word): Recognize default
15937 dictionary case for flyspell-mark-duplications-exceptions.
15938 Use regexp matching for languages.
15939 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
15940 default dictionary (Bug#7926).
15942 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
15944 * emacs-lisp/package.el (package--with-work-buffer):
15945 Recognize https URLs.
15947 * net/network-stream.el: Move from gnus/proto-stream.el.
15948 Change prefix to network-stream throughout.
15949 (open-protocol-stream): Merge into open-network-stream, leaving
15950 open-protocol-stream as an alias. Handle nil BUFFER args.
15952 * subr.el (open-network-stream): Move to net/network-stream.el.
15954 2011-04-02 Glenn Morris <rgm@gnu.org>
15956 * find-dired.el (find-exec-terminator): New option.
15957 (find-ls-option): Test for -ls support.
15958 (find-ls-subdir-switches): Test for -b in find-ls-option.
15959 (find-dired, find-grep-dired): Doc fixes.
15960 (find-dired): Use find-exec-terminator.
15962 * find-dired.el (find-ls-option, find-ls-subdir-switches)
15963 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15964 (find-name-arg): Remove purecopy.
15966 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15967 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15968 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15969 accordingly. Don't add the null-device if not needed.
15971 * files.el (save-some-buffers): Doc fix.
15973 2011-04-02 Eli Zaretskii <eliz@gnu.org>
15975 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15977 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
15979 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15980 Use `dolist' rather than `mapcar'.
15982 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15984 Add lexical binding.
15986 * subr.el (apply-partially): Use new closures rather than CL.
15987 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15988 (dolist, dotimes): Use slightly different expansion for lexical code.
15989 (functionp): Move to C.
15990 (letrec): New macro.
15991 (with-wrapper-hook): Use it and apply-partially instead of CL.
15992 (eval-after-load): Preserve lexical-binding.
15993 (save-window-excursion, with-output-to-temp-buffer): Turn them
15996 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15998 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
16000 (help-add-fundoc-usage): Don't add `Not documented'.
16001 (help-function-arglist): Handle closures, subroutines, and new
16002 byte-code-functions.
16003 (help-make-usage): Remove leading underscores.
16004 (describe-function-1): Handle closures.
16005 (describe-variable): Use special-variable-p for completion.
16007 * files.el (lexical-binding): Declare safe.
16009 * emacs-lisp/pcase.el: Don't use destructuring-bind.
16010 (pcase--memoize): Rename from pcase-memoize. Change weakness.
16011 (pcase): Add `let' pattern.
16012 Change memoization so it actually works.
16013 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
16014 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
16017 * emacs-lisp/macroexp.el: Use lexical binding.
16018 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
16019 Don't convert ' to #' without checking that it's indeed quoting
16022 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
16023 Use eval-sexp-add-defvars.
16024 (eval-sexp-add-defvars): New fun.
16026 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
16028 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
16030 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
16031 than the internal `byte-compile-lambda'.
16032 (defmethod): Don't hide code under quotes.
16033 (eieio-defmethod): New `code' argument.
16035 * emacs-lisp/eieio-comp.el: Remove.
16037 * emacs-lisp/edebug.el (edebug-eval-defun)
16038 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
16039 (edebug-toggle): Avoid `eval'.
16041 * emacs-lisp/disass.el (disassemble-internal): Handle new
16043 (disassemble-1): Handle new byte codes.
16045 * emacs-lisp/cl.el (pushnew): Silence warning.
16047 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
16048 (cl-byte-compile-throw): Remove.
16049 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
16051 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
16054 * emacs-lisp/cconv.el: New file.
16056 * emacs-lisp/bytecomp.el: Use lexical binding instead of
16057 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
16058 (byte-compile-initial-macro-environment):
16059 Handle declare-function here.
16060 (byte-compile--lexical-environment): New var.
16061 (byte-stack-ref, byte-stack-set, byte-discardN)
16062 (byte-discardN-preserve-tos): New lap codes.
16063 (byte-interactive-p): Don't use any more.
16064 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
16066 (byte-compile-lapcode): Use them and handle new lap codes.
16067 (byte-compile-obsolete): Remove.
16068 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
16069 (byte-compile-arglist-warn): Check late def of inlinable funs.
16070 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
16071 since they should have been expanded by now.
16072 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
16073 (byte-compile-from-buffer): Remove unused second arg.
16074 (byte-compile-preprocess): New function.
16075 (byte-compile-toplevel-file-form): New function to distinguish
16076 file-form calls from outside from file-form calls from hunk-handlers.
16077 (byte-compile-file-form): Simplify.
16078 (byte-compile-file-form-defsubst): Remove.
16079 (byte-compile-file-form-defmumble): Simplify now that
16080 byte-compile-lambda always returns a byte-code-function.
16081 (byte-compile): Preprocess.
16082 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
16083 Remove, not used any more.
16084 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
16085 (byte-compile-make-args-desc): New funs.
16086 (byte-compile-lambda): Handle lexical functions. Always return
16087 a byte-code-function.
16088 (byte-compile-reserved-constants): New var, to make up room for
16089 closed-over variables.
16090 (byte-compile-constants-vector): Obey it.
16091 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
16092 (byte-compile-macroexpand-declare-function): New function.
16093 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
16094 byte-code-functions.
16095 (byte-compile-form): Check obsolescence here.
16096 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
16097 (byte-compile-variable-ref): Remove.
16098 (byte-compile-dynamic-variable-op): New fun.
16099 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
16100 (byte-compile-variable-set): New funs.
16101 (byte-compile-discard): Add 2 args.
16102 (byte-compile-stack-ref, byte-compile-stack-set)
16103 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
16104 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
16105 macroexpand-all instead.
16106 (byte-compile-quote-form): Remove.
16107 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
16108 (byte-compile-bind, byte-compile-unbind): New funs.
16109 (byte-compile-let): Handle let* and lexical binding.
16110 (byte-compile-let*): Remove.
16111 (byte-compile-catch, byte-compile-unwind-protect)
16112 (byte-compile-track-mouse, byte-compile-condition-case):
16113 Handle a new :fun-body form, used for lexical scoping.
16114 (byte-compile-save-window-excursion)
16115 (byte-compile-with-output-to-temp-buffer): Remove.
16116 (byte-compile-defun): Simplify.
16117 (byte-compile-stack-adjustment): New fun.
16118 (byte-compile-out): Use it.
16119 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
16121 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
16124 * emacs-lisp/byte-opt.el: Use lexical binding.
16125 (byte-inline-lapcode): Remove (to bytecomp).
16126 (byte-compile-inline-expand): Pay attention to inlining to/from
16127 lexically bound code.
16128 (byte-compile-unfold-lambda): Don't handle byte-code-functions
16130 (byte-optimize-form-code-walker): Don't handle save-window-excursion
16131 any more and don't call compiler-macros.
16132 (byte-compile-splice-in-already-compiled-code): Remove.
16133 (byte-code): Don't inline any more.
16134 (disassemble-offset): Receive `bytes' as argument rather than via
16136 (byte-compile-tag-number): Declare before first use.
16137 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
16138 `return' even if make-spliceable.
16139 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
16140 obsolete interactive-p.
16141 (byte-optimize-lapcode): Optimize new lap-codes.
16142 Don't trip up on new form of `byte-constant' lap code.
16144 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
16146 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
16148 * custom.el (custom-initialize-default, custom-declare-variable):
16151 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
16153 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
16154 (COMPILE_FIRST): Add macroexp and cconv.
16155 * makefile.w32-in: Mirror changes in Makefile.in.
16157 * vc/cvs-status.el:
16161 * vc/smerge-mode.el:
16162 * textmodes/bibtex-style.el:
16163 * textmodes/css-mode.el:
16171 * emacs-lisp/smie.el:
16174 * abbrev.el: Use lexical binding.
16176 2011-04-01 Eli Zaretskii <eliz@gnu.org>
16178 * info.el (info-display-manual): New function.
16180 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16182 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
16184 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
16186 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
16187 an entry for that server in rcirc-authinfo. (Bug#8385)
16189 2011-03-31 Glenn Morris <rgm@gnu.org>
16191 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
16193 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
16195 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
16197 * progmodes/python.el (python-default-interpreter)
16198 (python-python-command-args, python-jython-command-args)
16199 (python-which-shell, python-which-args, python-which-bufname)
16200 (python-file-queue, python-comint-output-filter-function)
16201 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
16202 variables and functions.
16204 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16206 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
16207 (completion-in-region-mode): New minor mode.
16208 (completion-in-region): Use it.
16209 (completion-in-region--data, completion-in-region-mode-map): New vars.
16210 (completion-in-region--postch): New function.
16211 (completion--capf-misbehave-funs, completion--capf-safe-funs):
16213 (completion--capf-wrapper): New function.
16214 (completion-at-point): Use it to track well-behavedness of
16216 (completion-help-at-point): New command.
16218 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
16220 * vc/add-log.el (add-change-log-entry): Don't use whitespace
16221 syntax class to search for whitespace on a single line
16222 (Message-ID: <4D938140.4030905@redhat.com>).
16224 2011-03-30 Leo Liu <sdl.web@gmail.com>
16226 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
16228 (edit-abbrevs-map): Bind them here.
16229 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
16231 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
16233 * allout.el (allout-hide-by-annotation, allout-flag-region):
16234 Reduce possibility of overlay leakage by making them volatile.
16236 * allout-widgets.el (allout-widgets-tally): Define as nil so the
16237 hash is not shared between buffers. Mode initialization is
16238 responsible for giving it a useful starting value.
16239 (allout-item-span): Reduce possibility of overlay leakage by
16240 making them volatile.
16241 (allout-widgets-count-buttons-in-region): Add diagnostic function
16242 for tracking down button overlay leaks.
16244 2011-03-29 Leo Liu <sdl.web@gmail.com>
16246 * ido.el (ido-read-internal): Use the default history var
16247 minibuffer-history if no HISTORY is specified.
16249 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
16251 * net/imap.el (imap-shell-open, imap-process-connection-type):
16252 Use imap-process-connection-type for 'shell' streams as well as
16253 Kerberos, SSL, other subprocesses.
16255 2011-03-28 Leo Liu <sdl.web@gmail.com>
16257 * abbrev.el (abbrev-table-empty-p): New function.
16258 (prepare-abbrev-list-buffer): Place empty abbrev tables after
16259 nonempty ones. (Bug#5937)
16261 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16263 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
16265 2011-03-27 Leo Liu <sdl.web@gmail.com>
16267 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
16268 for foreground and background colors.
16269 (ansi-color-make-color-map): Adapt.
16271 2011-03-25 Leo Liu <sdl.web@gmail.com>
16273 * midnight.el (midnight-time-float): Remove. Note it calculates
16274 the microsecond component incorrectly and seconds-to-time does the
16276 Remove redundant (require 'timer).
16278 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
16279 (ido-completions): Remove unused arguments. (Bug#8329)
16281 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16283 * minibuffer.el (completion--flush-all-sorted-completions):
16284 Remove itself from hook.
16285 (completion-at-point): Let the functions perform the completion
16286 immediately and return nil or t.
16287 * comint.el (comint-dynamic-complete-functions): Now identical to
16288 completion-at-point-functions.
16289 (comint-dynamic-list-input-ring): Remove unused var `index'.
16290 (comint--match-partial-filename, comint--unquote&expand-filename):
16291 New funs, split from comint-match-partial-filename.
16292 (comint-dynamic-complete): Use completion-at-point.
16293 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
16295 2011-03-24 Drew Adams <drew.adams@oracle.com>
16297 * thingatpt.el: Support `defun'.
16299 2011-03-23 Leo Liu <sdl.web@gmail.com>
16301 * abbrevlist.el: Move to obsolete/abbrevlist.el.
16303 * help-mode.el (help-mode-finish): Tweak regexp.
16305 2011-03-23 Glenn Morris <rgm@gnu.org>
16307 * eshell/esh-opt.el (eshell-eval-using-options):
16308 Do not bind unused local variable `eshell-option-stub'.
16310 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
16312 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16314 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
16315 keymap variable in `with-no-warnings' to avoid a warning when the
16316 keymap has been already `defconst'ed.
16318 2011-03-22 Leo Liu <sdl.web@gmail.com>
16320 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
16321 encode all chars in abbrevs; otherwise use emacs-mule or
16322 utf-8-emacs. (Bug#8308)
16324 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
16326 * simple.el (backward-delete-char-untabify):
16327 Avoid warning about using `delete-backward-char'.
16329 * image.el (image-type-file-name-regexps): Make it variable.
16330 `imagemagick-register-types' modifies it, and the user may want
16331 to add new extensions for known image types.
16332 (imagemagick-register-types): Throw error if not using ImageMagick.
16334 2011-03-22 Leo Liu <sdl.web@gmail.com>
16336 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
16337 located before rcirc-prompt-end-marker.
16338 (rcirc-complete): Error if point is not after rcirc prompt.
16339 Handle the case when table is nil.
16340 (rcirc-user-authenticated): Define to fix compiler warning.
16342 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
16344 * custom.el (custom--inhibit-theme-enable): Make it affect only
16345 custom-theme-set-variables and custom-theme-set-faces.
16346 (provide-theme): Ignore custom--inhibit-theme-enable.
16347 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
16348 (custom-enabling-themes): Delete variable.
16349 (enable-theme): Accept only loaded themes as arguments.
16350 Ignore the special custom-enabled-themes variable.
16351 (custom-enabled-themes): Forbid themes from setting this.
16352 Eliminate use of custom-enabling-themes.
16353 (custom-push-theme): Quote "changed" custom var entry.
16355 2011-03-21 Leo Liu <sdl.web@gmail.com>
16357 * ido.el (ido-read-internal): Add ido-selected to history instead
16360 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
16362 * subr.el (deferred-action-list, deferred-action-function):
16365 2011-03-21 Leo Liu <sdl.web@gmail.com>
16367 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
16368 change on 2011-02-13 (bug#8309).
16370 * minibuffer.el (read-file-name-function): Change default value.
16371 (read-file-name--defaults): Rename from read-file-name-defaults.
16372 (read-file-name-default): Rename from read-file-name.
16373 (read-file-name): Call read-file-name-function.
16375 2011-03-21 Glenn Morris <rgm@gnu.org>
16377 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
16380 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
16382 * cus-theme.el: Add missing provide statement.
16383 (customize-create-theme): Extract theme value correctly.
16384 (custom-theme-visit-theme): Autoload.
16385 (customize-create-theme): Prompt before inserting default faces.
16387 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
16389 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
16390 units and musical notes.
16392 2011-03-20 Leo Liu <sdl.web@gmail.com>
16394 * ido.el (ido-read-internal): Use completing-read-default.
16395 (ido-completing-read): Fix compatibility with completing-read.
16397 2011-03-20 Christian Ohler <ohler@gnu.org>
16399 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
16400 (ert-delete-all-tests): Use `called-interactively-p' rather than
16402 (ert--make-xrefs-region): Respect END.
16404 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
16406 * dired-aux.el (dired-create-directory): Signal an error if the
16407 directory already exists (Bug#8246).
16409 * facemenu.el (list-colors-display): Call list-faces-display
16410 inside with-help-window.
16411 (list-colors-print): Use display property to align the final
16412 column, instead of checking window-width.
16414 2011-03-19 Eli Zaretskii <eliz@gnu.org>
16416 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
16417 windows-nt systems.
16418 (emerge-protect-metachars): Quote correctly for ms-dos and
16419 windows-nt systems.
16421 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
16423 * info.el (info-initialize): Replace all uses of `:' with
16424 path-separator for compatibility with non-Unix systems.
16425 Cache quoting of path-separator. (Bug#8258)
16427 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
16429 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
16430 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
16431 (mouse-avoidance-mode): Fix typos in docstrings.
16433 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
16435 * startup.el (package-subdirectory-regexp): Move from package.el.
16436 Omit \\` and \\', and let callers add them.
16438 * emacs-lisp/package.el (package-strip-version)
16439 (package-load-all-descriptors): Add \\` and \\' to
16440 package-subdirectory-regexp before using it.
16441 (package-untar-buffer): New arg DIR; ensure that file untars only
16442 into this expected directory. Remove superfluous delete-region.
16443 (package-unpack): Caller changed.
16444 (package-tar-file-info): Use package-subdirectory-regexp.
16446 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
16448 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
16449 diff-mode-shared-map (bug#8284).
16450 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
16452 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16454 * calendar/time-date.el (format-seconds): Use assoc instead of
16455 assoc-string, since assoc-string doesn't exist in XEmacs.
16457 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
16459 * custom.el (custom-known-themes): Reflow docstring.
16460 (custom-theme-load-path): Fix typo in docstring.
16461 (load-theme): Fix typo in error message.
16462 (custom-available-themes, custom-variable-theme-value):
16463 Use `let', not `let*'.
16465 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16467 * calc/README: Mention inclusion of musical notes.
16469 * calc/calc-units.el (calc-lu-quant): Rename from
16470 `calc-logunits-quantity'.
16471 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
16472 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
16473 (calc-db): Rename from `calc-dblevel'.
16474 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
16475 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
16476 (calc-np): Rename from `calc-nplevel'.
16477 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
16478 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
16479 (calc-lu-plus): Rename from `calc-logunits-add'.
16480 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
16481 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
16482 (calc-lu-minus): Rename from `calc-logunits-sub'.
16483 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
16484 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
16485 (calc-lu-times): Rename from `calc-logunits-mul'.
16486 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
16487 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
16488 (calc-lu-divide): Rename from `calc-logunits-div'.
16489 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
16490 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
16492 * calc/calc-ext.el (calc-init-extensions): Update the names of the
16493 functions being autoloaded.
16495 * calc/calc.el (calc-lu-power-reference): Rename from
16496 `calc-logunits-power-reference'.
16497 (calc-lu-field-reference): Rename from
16498 `calc-logunits-field-reference'.
16500 * calc/calc-help.el (calc-l-prefix-help):
16501 Mention musical note functions.
16503 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
16505 * minibuffer.el (completion-all-sorted-completions):
16506 Use :completion-cycle-penalty text property if present.
16508 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
16510 * allout.el (allout-yank-processing): Adjust for new rebulleting
16511 regime so bullet being yanked is used without prompting the user
16514 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
16516 * startup.el (command-line): Warn the user that _emacs is deprecated.
16518 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
16520 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
16521 (delphi-verbose, delphi-comment-face, delphi-string-face)
16522 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
16523 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
16524 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
16525 (delphi-new-comment-line, delphi-font-lock-defaults)
16526 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
16527 Fix typos in docstrings.
16529 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
16531 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
16532 Invert the roles of character and string values for INSTEAD, so a
16533 string is used for the more common case of a defaulting prompt.
16535 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16537 * progmodes/ruby-mode.el (ruby-backward-sexp):
16538 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
16539 * play/gamegrid.el (gamegrid-make-face):
16540 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
16541 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
16542 * notifications.el (notifications-notify):
16543 * net/xesam.el (xesam-search-engines):
16544 * net/quickurl.el (quickurl-list-insert):
16545 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
16547 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
16549 * startup.el (command-line): Update package subdirectory regexp.
16551 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16553 * allout.el (allout-abbreviate-flattened-numbering)
16554 (allout-mode-deactivate-hook): Fix up obsolescence "date".
16556 * subr.el (read-char-choice): Only show the cursor after the prompt,
16557 not after the answer.
16559 2011-03-15 Kevin Ryde <user42@zip.com.au>
16561 * help-fns.el (variable-at-point): Skip leading quotes, if any
16564 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
16566 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
16569 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
16571 * shell.el (shell): When called interactively, offer to change the
16572 shell file name on remote hosts.
16574 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
16576 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
16577 integration for LDAP parameters. The host, base, user or binddn,
16578 and secret tokens can be specified in a netrc file, for instance.
16579 This is optional because an `auth-source' parameter must be
16580 specified in the search attributes.
16582 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
16584 * help.el (describe-mode): Link to the mode's definition (bug#8185).
16586 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16588 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
16589 into declaration. Remove redundant and harmful binding.
16591 2011-03-12 Eli Zaretskii <eliz@gnu.org>
16593 * files.el (file-ownership-preserved-p): Pass `integer' as an
16594 explicit 2nd argument to `file-attributes'. If the file's owner
16595 is the Administrators group on Windows, and the current user is
16596 Administrator, consider that a match.
16598 * server.el (server-ensure-safe-dir): Consider server directory
16599 safe on MS-Windows if its owner is the Administrators group while
16600 the current Emacs user is Administrator. Use `=' to compare
16601 numerical UIDs, since they could be integers or floats.
16603 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
16605 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
16607 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
16609 Sync with Tramp 2.2.1.
16611 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
16613 * net/trampver.el: Update release number.
16615 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
16617 * progmodes/compile.el (compilation--previous-directory): Fix up
16618 various nil/dead-marker mismatches (bug#8014).
16619 (compilation-directory-properties, compilation-error-properties):
16620 Don't call it at a position past the one we're about to change.
16622 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
16623 Disable obsolescence warnings in the file that declares it.
16625 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
16627 * allout-widgets.el (allout-widgets-tally):
16628 Initialize allout-widgets-tally as a hash table rather than nil to
16629 prevent mode-line redisplay warnings. Also, clarify the module
16630 description and fix a comment typo.
16632 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
16634 * help-fns.el (describe-variable): Don't complete keywords.
16635 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
16637 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
16639 * emacs-lisp/package.el (package-version-join): Impose a standard
16640 string representation for pre/alpha/beta version lists.
16641 (package-unpack-single): Standardize the directory name by passing
16642 it through package-version-join.
16643 (package-strip-rcs-id): Accept any version string that does not
16644 signal an error in version-to-list.
16646 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
16648 * simple.el (delete-trailing-whitespace): Return nil for the
16649 benefit of `write-file-functions'.
16651 2011-03-10 Glenn Morris <rgm@gnu.org>
16653 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
16655 * vc/vc-git.el (vc-git-program): New option.
16656 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
16657 (vc-git--call): Use it.
16659 * eshell/esh-util.el (eshell-condition-case): Doc fix.
16661 * cus-edit.el (Custom-newline): If no button at point, look
16662 for a subgroup button at start-of-line. (Bug#2298)
16664 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
16666 2011-03-10 Julien Danjou <julien@danjou.info>
16668 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
16669 `cursor-type' is nil.
16671 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
16673 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
16675 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
16677 * allout.el: Change so yank of distinctive-bullet items
16678 preserves the existing header prefix, rebulleting it if necessary,
16679 rather than replacing it. This is necessary for proper operation
16680 of cooperative addons like allout-widgets.
16681 (allout-make-topic-prefix, allout-rebullet-heading):
16682 Change SOLICIT arg to INSTEAD, and interpret additionally a string
16683 value as alternate bullet to be used, instead of prompting the user
16684 for a bullet character.
16686 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
16688 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
16689 Do not use `tramp-file-name-port', because this returns also
16690 `tramp-default-port'.
16692 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
16694 * net/rcirc.el (rcirc-handler-001): Remove useless
16695 with-rcirc-process-buffer.
16696 (rcirc-check-auth-status): Swap arguments to string-match.
16698 2011-03-09 Glenn Morris <rgm@gnu.org>
16700 * shell.el (shell-mode):
16701 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
16703 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
16704 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
16706 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16708 * emacs-lisp/package.el (package-refresh-contents)
16709 (package-menu-execute): Use condition-case-no-debug.
16711 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
16713 * simple.el (shell-command-to-string): Use `process-file'.
16715 * emacs-lisp/package.el (package-tar-file-info): Handle also
16718 * emacs-lisp/package-x.el (package-upload-buffer-internal):
16719 Use `equal' for upload base check.
16721 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
16723 * textmodes/texinfo.el (texinfo-environments):
16724 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
16726 2011-03-08 Glenn Morris <rgm@gnu.org>
16728 * cus-start.el (cursor-in-non-selected-windows):
16729 Fix :set quoting oddness. (Bug#8192)
16731 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
16732 in some setf expressions. (Bug#2159)
16734 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
16736 * custom.el (custom-available-themes): Return themes in
16737 alphabetical order.
16739 See ChangeLog.15 for earlier changes.
16741 ;; Local Variables:
16745 Copyright (C) 2011-2012 Free Software Foundation, Inc.
16747 This file is part of GNU Emacs.
16749 GNU Emacs is free software: you can redistribute it and/or modify
16750 it under the terms of the GNU General Public License as published by
16751 the Free Software Foundation, either version 3 of the License, or
16752 (at your option) any later version.
16754 GNU Emacs is distributed in the hope that it will be useful,
16755 but WITHOUT ANY WARRANTY; without even the implied warranty of
16756 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16757 GNU General Public License for more details.
16759 You should have received a copy of the GNU General Public License
16760 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.