Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
c395097f
AS
12012-08-07 Andreas Schwab <schwab@linux-m68k.org>
2
3 * progmodes/autoconf.el (font-lock-syntactic-keywords): Don't
4 declare.
5
5fb50dd3
CY
62012-08-07 Chong Yidong <cyd@gnu.org>
7
8 * simple.el (deactivate-mark): Preserve text properties when
9 saving the primary selection (Bug#8384).
10
54eea618
KR
112012-08-07 Kevin Ryde <user42@zip.com.au>
12
13 * woman.el (woman0-if): Quietly treat ".if v" as false (Bug#12109).
14 (woman-parse-numeric-value): On a bad .IP line, issue a warning
15 and continue processing (Bug#12110).
16
638eaeb9
SM
172012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
18
19 * progmodes/cperl-mode.el (cperl-mode): Yet another fix for
20 syntax-propertize-function (bug#10095).
21
ea376861
SM
222012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
23
f91b35be
SM
24 * help-fns.el (help-fns--key-bindings, help-fns--signature)
25 (help-fns--parent-mode, help-fns--obsolete): New funs, extracted from
26 describe-function-1.
27 (describe-function-1): Use them. Move compiler macro after sig.
28 (help-fns--compiler-macro): Use function-get. Assume we're already in
29 standard-output. Adjust layout to new call order.
30
ea376861
SM
31 * emacs-lisp/cl-macs.el (cl--sm-macroexpand): Fix handling of
32 re-binding a symbol that has a symbol-macro (bug#12119).
33
d5be7bd0
MB
342012-08-06 Mohsen BANAN <libre@mohsen.1.banan.byname.net>
35
36 * language/persian.el: New file. (Bug#11812)
37 * loadup.el: Add language/persian.el.
38
90749b53
CY
392012-08-06 Chong Yidong <cyd@gnu.org>
40
41 * window.el (window--maybe-raise-frame): New function.
42 (window--display-buffer): Split off from here.
43 (display-buffer-reuse-window, display-buffer-pop-up-frame)
44 (display-buffer-pop-up-window, display-buffer-use-some-window):
45 Obey an inhibit-switch-frame action alist entry.
46 (display-buffer): Update doc.
47
48 * replace.el (occur-after-change-function): Avoid losing focus by
49 using the inhibit-switch-frame display parameter (Bug#12139).
50
ba7b0154
FEG
512012-08-06 Fabián Ezequiel Gallina <fgallina@cuca>
52
53 Make internal shell process buffer names start with space.
54 * progmodes/python.el (python-shell-make-comint): Add optional
55 argument INTERNAL.
56 (run-python-internal): Use it.
57 (python-shell-internal-get-or-create-process): Check for new
58 internal buffer names.
59
5eaeacb5
GM
602012-08-06 Glenn Morris <rgm@gnu.org>
61
e296d94b 62 * eshell/esh-ext.el (eshell/addpath): Use dolist and mapconcat.
5eaeacb5
GM
63 Do less getting and setting of environment variables.
64
b7ccbdc2
CY
652012-08-05 Chong Yidong <cyd@gnu.org>
66
777fe95e
CY
67 * proced.el (proced): Add substitution string to docstring to
68 trigger autoloading of the proced library on C-h f (Bug#1768).
69
b7ccbdc2
CY
70 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
71 show defvars which have no second argument (Bug#8638).
72
73 * imenu.el (imenu-generic-expression): Move documentation here
74 from imenu--generic-function.
75 (imenu--generic-function): Refer to imenu-generic-expression.
76
9e3b7800 772012-08-05 Vegard Øye <vegard_oye@hotmail.com> (tiny change)
d5c31f1d
78
79 * emulation/viper-init.el (viper-deflocalvar): Add docstring and
80 indentation declaration.
81 (viper-loop): Add indentation declaration (Bug#7025).
82
e5d9c0d1
CY
832012-08-05 Chong Yidong <cyd@gnu.org>
84
f0422feb
CY
85 * help-fns.el (describe-variable): Add hyperlink for
86 directory-local variables files. Improve buffer-local and
87 permanent-local reporting; suggested by MON KEY (Bug#6644).
88
89 * help-mode.el (help-dir-local-var-def): New button type.
90
e5d9c0d1
CY
91 * files.el (kill-buffer-hook): Provide a defvar.
92
a4f2deaa
GM
932012-08-05 Glenn Morris <rgm@gnu.org>
94
95 * eshell/esh-ext.el (eshell/addpath):
96 Also update eshell-path-env. (Bug#12013)
97
a9dd5754
CY
982012-08-05 Chong Yidong <cyd@gnu.org>
99
a4f2deaa 100 * wdired.el (wdired-mode, wdired-change-to-wdired-mode): Doc fixes.
615b0bf0 101
d014c740
CY
102 * fringe.el (fringe-styles): Add docstring.
103 (fringe--check-mode): New function.
104 (set-fringe-mode, set-fringe-style): Use it.
105 (fringe-mode, set-fringe-style): Doc fixes (Bug#6480).
106
a9dd5754
CY
107 * files.el (set-auto-mode): Fix invalid setq call.
108
7c2dc8bd
SM
1092012-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
110
111 * isearch.el: Misc simplification; use defstruct.
112 (isearch-mode-map): Dense maps now work like sparse ones.
113 (isearch--state): New defstruct.
114 (isearch-string-state, isearch-message-state, isearch-point-state)
115 (isearch-success-state, isearch-forward-state)
116 (isearch-other-end-state, isearch-word-state, isearch-error-state)
117 (isearch-wrapped-state, isearch-barrier-state)
118 (isearch-case-fold-search-state, isearch-pop-fun-state): Remove,
119 replaced by defstruct's accessors.
120 (isearch--set-state): Rename from isearch-top-state and change
121 calling convention.
122 (isearch-push-state): Use new isearch--get-state.
123 (isearch-toggle-word): Disable regexp when enabling word.
124 (isearch-message-prefix): Remove unused arg _c-q-hack.
125 (isearch-message-suffix): Remove unused arg _ellipsis.
126
7fcc0070
AS
1272012-08-04 Andreas Schwab <schwab@linux-m68k.org>
128
129 * simple.el (list-processes--refresh): For a server use :host or
130 :local as the address.
97ad0769 131 (list-processes): Doc fix.
7fcc0070 132
00340faf
MN
1332012-08-04 Michal Nazarewicz <mina86@mina86.com> (tiny change)
134
135 * lisp/mpc.el: Support password in host argument.
136 (mpc--proc-connect): Parse and use new password element.
137 Set mpc-proc variable instead of returning process.
138 (mpc-proc): Adjust accordingly.
139
6dad7178
EZ
1402012-08-03 Eli Zaretskii <eliz@gnu.org>
141
18949c2f
EZ
142 * whitespace.el (whitespace-display-mappings): Use Unicode
143 codepoints, instead of emacs-mule codepoints. See
144 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-07/msg00366.html
145 for the details.
146
6dad7178
EZ
147 * files.el (file-truename): Don't skip symlink-chasing part on
148 windows-nt. Incorporate the resolution of 8+3 short aliases on
149 Windows into the loop that recursively chases symlinks. Compare
150 directory and its parent case-insensitively on MS-Windows and
151 MS-DOS.
152
385b0198
CY
1532012-08-03 Chong Yidong <cyd@gnu.org>
154
6200f3c4
CY
155 * menu-bar.el (menu-bar-tools-menu): Remove PCL-CVS.
156
385b0198
CY
157 * sort.el (sort-regexp-fields): Doc fix.
158
b9e74744
TH
1592012-08-03 Tassilo Horn <tsdh@gnu.org>
160
161 * textmodes/reftex.el (reftex-compile-variables): Make keyvals
162 labels regex position point at the expected place.
163
41013cb4
MK
1642012-08-03 MON KEY <monkey@sandpframing.com>
165
166 * net/imap.el (imap-interactive-login, imap-authenticate)
167 (imap-mailbox-lsub, imap-mailbox-list)
168 (imap-mailbox-status-asynch, imap-mailbox-acl-delete)
169 (imap-fetch, imap-message-flag-permanent-p, imap-envelope-from)
170 (imap-parse-response): Doc fix.
171
0ffee616
JT
1722012-08-03 João Távora <joaotavora@gmail.com>
173
174 * textmodes/tex-mode.el (latex-forward-sexp): Terminate the loop
175 if sexp scanning does not move point (Bug#5734).
176
cfcc9cc8
TH
1772012-08-02 Tassilo Horn <tsdh@gnu.org>
178
179 * textmodes/reftex-vars.el (reftex-default-label-alist-entries):
180 Add listings, minted, and ctable packages.
181 (reftex-label-alist-builtin): Move listings, minted, and ctable
182 entries before LaTeX.
a01bbb84 183 (reftex-label-alist): Docfix.
cfcc9cc8 184
66ec2442
BG
1852012-08-02 Bastien Guerry <bzg@gnu.org>
186
187 * replace.el (occur): Fix docstring (bug#12122).
188
837b365b
GM
1892012-08-02 Glenn Morris <rgm@gnu.org>
190
191 * emacs-lisp/authors.el (authors-renamed-files-alist): Add ms-w32.h.
192
e098de97
PE
1932012-08-02 Paul Eggert <eggert@cs.ucla.edu>
194
195 Obsolete alias inactivate-current-input-method-function (Bug#10150).
196 * international/mule-cmds.el: Create
197 inactivate-current-input-method-function as an obsolete alias for
198 deactivate-current-input-method-function. See Katsumi Yamaoka in
199 <http://bugs.gnu.org/10150#46>.
200
a0f95636
JB
2012012-08-01 Jay Belanger <jay.p.belanger@gmail.com>
202
203 * calc/calc-mode.el (calc-set-simplify-mode): Use `cond' instead
204 of nested `if's.
205
0d26d7c4
GM
2062012-08-01 Glenn Morris <rgm@gnu.org>
207
208 * progmodes/autoconf.el (autoconf-definition-regexp):
209 Add AH_TEMPLATE, adjust submatch numbering.
210 (autoconf-font-lock-keywords, autoconf-imenu-generic-expression)
211 (autoconf-current-defun-function): Update for above change.
212 (autoconf-current-defun-function): First skip to end of current word.
213
b686ba06
RS
2142012-08-01 Rupert Swarbrick <rswarbrick@gmail.com> (tiny change)
215
216 * calendar/cal-html.el (cal-html-insert-agenda-days):
217 Fix typo. (Bug#12018)
218
0d49da68
FEG
2192012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
220
221 Shell processes: enhancements to startup and CEDET compatibility.
222 * progmodes/python.el (python-shell-send-setup-max-wait): Delete var.
223 (python-shell-make-comint): accept-process-output at startup.
224 (run-python-internal): Set inferior-python-mode-hook to nil.
225 (python-shell-internal-get-or-create-process): call sit-for.
226 (python-preoutput-result): Add obsolete alias.
227 (python-shell-internal-send-string): Use it.
228 (python-shell-send-setup-code): Remove call to
229 accept-process-output.
230
f1a71c6e
AS
2312012-07-31 Andreas Schwab <schwab@linux-m68k.org>
232
233 * buff-menu.el (list-buffers-noselect): Use prefix-numeric-value.
234 (Bug#12108)
235
d2605269
JB
2362012-07-31 Jay Belanger <jay.p.belanger@gmail.com>
237
238 * calc-mode.el (calc-basic-simplification-mode): Rename from
239 `calc-limited-simplification-mode'.
240 (calc-alg-simplification-mode): New function.
d66060f8 241 (calc-set-simplify-mode): Adjust message.
f1a71c6e 242
d2605269
JB
243 * calc.el (calc-set-mode-line): Adjust mode line display for
244 basic simplification mode.
245
246 * calc-help.el (calc-m-prefix-help): Update help message.
247
248 * calc-ext.el (calc-init-extensions): Add bindings and autoloads
249 for `calc-basic-simplify-mode' and `calc-alg-simplify-mode'.
250
a3827a43
BG
2512012-07-31 Bastien Guerry <bzg@gnu.org>
252
253 * man.el (man): Fix comment. (bug#12101)
254
502e3f89
MR
2552012-07-31 Martin Rudalics <rudalics@gmx.at>
256
257 * window.el (switch-to-prev-buffer, switch-to-next-buffer):
258 Don't return a non-nil value when no suitable buffer was found.
259
d7714961
FEG
2602012-07-31 Fabián Ezequiel Gallina <fgallina@cuca>
261
262 * progmodes/python.el (run-python-internal): Disable font lock for
263 internal shells.
264
1f45e27e
SM
2652012-07-30 Stefan Merten <smerten@oekonux.de>
266
267 * rst.el: Silence `checkdoc-ispell'.
268 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
269 (rst-official-version, rst-official-cvs-rev)
270 (rst-package-emacs-version-alist): Update to upstream V1.3.1.
271 (rst-mode-map): New key binding.
272
0aee6912
PE
2732012-07-30 Paul Eggert <eggert@cs.ucla.edu>
274
275 Update .PHONY listings in makefiles.
276 * Makefile.in (.PHONY): Add all, doit, custom-deps, finder-data,
277 autoloads, update-subdirs, updates, bzr-update, update-authors,
278 compile-onefile, compile-calc, backup-compiled-files,
279 compile-after-backup, compile-one-process, mh-autoloads,
280 bootstrap-clean, distclean, maintainer-clean.
281
9052f9f0
JB
2822012-07-29 Jay Belanger <jay.p.belanger@gmail.com>
283
1823ac5a
JB
284 * calc/calc.el (calc-simplify-mode): Make 'alg the default value.
285 (calc-set-mode-line): Don't display "AlgSimp ".
286
287 * calc/calc-mode.el (calc-alg-simplify-mode): Remove function.
288 (calc-lim-simplify-mode): New function.
289 (calc-set-simplify-mode): Default to 'alg.
290 (calc-default-simplify-mode): Make algebraic simplifications
291 the default.
292
293 * calc/calc-ext.el (calc-init-extensions): Remove binding for
294 `calc-alg-simplify-mode'. Add binding for `calc-lim-simplify-mode'.
295
8d7c7eed 296 * calc/calc-help.el (calc-m-prefix-help): Change messages to
4b337409
JB
297 indicate new simplification modes.
298
1823ac5a
JB
299 * calc/README: Mention new default simplification mode.
300
9052f9f0
JB
301 * calc/calc.el (math-normalize-error): New variable.
302 (math-normalize): Set `math-normalize-error' to t
303 when there's an error.
304
305 * calc/calc-alg.el (math-simplify): Don't simplify when
306 `math-normalize' returns an error.
307
20ba0cb4
EZ
3082012-07-29 Eli Zaretskii <eliz@gnu.org>
309
310 * international/mule-cmds.el (set-locale-environment): Revert last
311 change, since display-graphic-p returns nil when this function is
312 called during startup. Instead...
313
314 * term/w32console.el (terminal-init-w32console): ...setup the
315 keyboard and terminal encoding for TTY sessions here. (Bug#12082)
316
a5dcc929
JL
3172012-07-29 Juri Linkov <juri@jurta.org>
318
319 * simple.el (goto-line): Don't display default line number in the
320 prompt because it should be displayed by `read-number' (bug#9952).
321 Add the current line number to the defaults of `goto-line' to
322 allow its easier modification by users with `M-n' (bug#9201).
323
324 * subr.el (read-number): Support multiple default values like in
325 other minibuffer reading functions. Replace `read' with
326 `string-to-number' for consistency with `number-to-string'.
327
72b255c7
PE
3282012-07-29 Paul Eggert <eggert@cs.ucla.edu>
329
330 deactive->inactive, inactivate->deactivate spelling fixes (Bug#10150)
331 * emulation/viper-init.el (viper-deactivate-input-method-action):
332 Rename from viper-inactivate-input-method-action.
333 (viper-deactivate-input-method):
334 Rename from viper-inactivate-input-method.
335 * follow.el (follow-inactive-menu): Rename from follow-deactive-menu.
336 * international/mule-cmds.el (deactivate-input-method):
337 Rename from inactivate-input-method.
338 Also run input-method-deactivate-hook.
339 (deactivate-current-input-method-function):
340 Rename from inactivate-current-input-method-function.
341 (input-method-deactivate-hook): New hook.
342 (input-method-inactivate-hook): Mark obsolete.
bb6eb9fc
PE
343 (inactivate-input-method): Mark obsolete.
344
72b255c7
PE
345 * international/quail.el (quail-activate):
346 Also run quail-deactivate-hook.
347 (quail-deactivate): Rename from quail-inactivate.
348 * international/robin.el (robin-activate):
349 Also run robin-deactivate-hook.
350 (robin-deactivate): Rename from robin-inactivate.
351
2549c068
CY
3522012-07-29 Chong Yidong <cyd@gnu.org>
353
354 * simple.el (indicate-copied-region): New function.
355 (kill-ring-save): Split off from here.
356
357 * rect.el (copy-rectangle-as-kill): Call indicate-copied-region.
358 (kill-rectangle): Set deactivate-mark to t on read-only error.
359
360 * register.el (copy-to-register, copy-rectangle-to-register):
361 Deactivate the mark, and use indicate-copied-region (Bug#10056).
362 (append-to-register, prepend-to-register): Call
363
17711ed9
JL
3642012-07-29 Juri Linkov <juri@jurta.org>
365
366 * simple.el (async-shell-command-buffer): New defcustom.
367 (shell-command): Use it. (Bug#4719)
368
01bd1b0d
EZ
3692012-07-28 Eli Zaretskii <eliz@gnu.org>
370
371 * international/mule-cmds.el (set-locale-environment): In a
372 console session on MS-Windows, set up keyboard and terminal
373 encoding from the OEM codepage, not the ANSI codepage.
374 (Bug#12055)
375
a55739d3
CY
3762012-07-28 Chong Yidong <cyd@gnu.org>
377
378 * progmodes/gdb-mi.el (gdb-place-breakpoints): Fix the call to
379 gdb-get-location.
380
9a0f8f2e
LL
3812012-07-25 Leo Liu <sdl.web@gmail.com>
382
383 * progmodes/cc-menus.el (cc-imenu-objc-function): Avoid leaving nil in
384 the alist (bug#12029).
385
20329d73
EZ
3862012-07-28 Eli Zaretskii <eliz@gnu.org>
387
388 * makefile.w32-in (custom-deps, finder-data, updates, compile)
389 (compile-always, compile-first)
390 ($(lisp)/calendar/cal-loaddefs.el)
391 ($(lisp)/calendar/diary-loaddefs.el)
392 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
393 ($(lisp)/net/tramp-loaddefs.el, bootstrap)
394 ($(lisp)/progmodes/cc-mode.elc): Depend on $(lisp)subdirs.el,
395 instead of on update-subdirs.
396 (bootstrap-clean): Delete $(lisp)/subdirs.el.
397
345a2258
CY
3982012-07-28 Chong Yidong <cyd@gnu.org>
399
1eee6341
CY
400 * vc/vc.el (vc-root-diff, vc-print-root-log): Prompt for a
401 directory if vc-deduce-backend returns nil (Bug#7350).
402
345a2258
CY
403 * simple.el (delete-trailing-lines): New option.
404 (delete-trailing-whitespace): Obey it (Bug#11879).
405
049a0936
DE
4062012-07-28 David Engster <deng@randomsample.de>
407
408 * xml.el (xml-node-name, xml-parse-file, xml-parse-region):
409 Explanation of new 'symbol-qnames feature in doc-strings.
410 (xml-maybe-do-ns): Return expanded names as plain symbols if
411 'symbol-qnames was provided in XML-NS argument (Bug#11916).
412 (xml-parse-tag-1): Deal with new definition of PARSE-NS argument.
413
aa81af71
FEG
4142012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
415
416 Consistent completion in inferior python with emacs -nw.
417 * progmodes/python.el (inferior-python-mode): replace "<tab>"
418 binding in inferior-python-mode-map with "\t".
419 (python-shell-completion-complete-at-point)
420 (python-completion-complete-at-point): Remove interactive spec.
421
e827b1eb
JB
4222012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
423
424 * calc/calccomp.el (math-compose-expr): Undo previous change.
425
a90dfb95
FEG
4262012-07-27 Fabián Ezequiel Gallina <fgallina@cuca>
427
428 * progmodes/python.el (python-mode-map): Added keybinding for
429 run-python.
430 (python-shell-make-comint): Fix pop-to-buffer call.
431 (run-python): Autoload. New arg SHOW.
432 (python-shell-get-or-create-process): Do not pop python process
433 buffer.
434
32770973 4352012-07-27 Michael Albinus <michael.albinus@gmx.de>
1c6ef030
MA
436
437 * notifications.el (notifications-on-action-signal)
438 (notifications-on-closed-signal): Use also the bus address for the map.
439 (notifications-notify, notifications-close-notification)
440 (notifications-get-capabilities): Add optional argument BUS.
441
86332df2
TH
4422012-07-27 Tassilo Horn <tsdh@gnu.org>
443
444 * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add
445 support for the lstlisting and minted environments, and for the
446 ctable macro.
447 * textmodes/reftex.el (reftex-compile-variables): Also recognize
448 labels written in keyvals syntax.
449
ca1302a4
JB
4502012-07-27 Jay Belanger <jay.p.belanger@gmail.com>
451
452 * calc/calccomp.el (math-compose-expr): Use parentheses when
453 there is a product in the denominator of a fraction.
454
f8b91036
EZ
4552012-07-26 Eli Zaretskii <eliz@gnu.org>
456
457 * makefile.w32-in ($(lisp)/calendar/cal-loaddefs.el)
458 ($(lisp)/calendar/diary-loaddefs.el)
459 ($(lisp)/calendar/hol-loaddefs.el, $(lisp)/mh-e/mh-loaddefs.el)
460 ($(lisp)/net/tramp-loaddefs.el): Depend on update-subdirs. Fixes
461 failures in parallel bootstrap because subdirs.el is being
462 rewritten while the autoload files are built at the same time,
463 which needs to load subdirs.el.
464
c8e5a42c
MR
4652012-07-26 Martin Rudalics <rudalics@gmx.at>
466
467 * mouse.el (popup-menu): Fix doc-string and re-indent code.
468 (mouse-drag-line): Don't exit tracking when a switch-frame or
469 switch-window event occurs (Bug#12006).
470
670d85ea
SM
4712012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
472
473 * mouse.el (popup-menu): Fix last change.
474
7abaf5cc
SM
4752012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
476
477 Autoload from Lisp with more care. Follow aliases when looking for
478 function properties.
479 * subr.el (autoloadp): New function.
480 (symbol-file): Use it.
481 (function-get): New function.
482 * emacs-lisp/macroexp.el (macroexp--expand-all): Use function-get and
483 autoload-do-load.
484 * emacs-lisp/lisp-mode.el (lisp-font-lock-syntactic-face-function)
485 (lisp-indent-function):
486 * emacs-lisp/gv.el (gv-get):
487 * emacs-lisp/edebug.el (get-edebug-spec, edebug-basic-spec):
488 * emacs-lisp/byte-opt.el (byte-optimize-form):
489 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
490 * emacs-lisp/autoload.el (make-autoload, autoload-print-form):
491 Use function-get.
492 * emacs-lisp/cl.el: Don't propagate function properties any more.
493
494 * speedbar.el (speedbar-add-localized-speedbar-support):
495 * emacs-lisp/disass.el (disassemble-internal):
496 * desktop.el (desktop-load-file):
497 * help-fns.el (help-function-arglist, find-lisp-object-file-name)
498 (describe-function-1):
499 * emacs-lisp/find-func.el (find-function-noselect):
500 * emacs-lisp/elp.el (elp-instrument-function):
501 * emacs-lisp/advice.el (ad-has-proper-definition):
502 * apropos.el (apropos-safe-documentation, apropos-macrop):
503 * emacs-lisp/debug.el (debug-on-entry):
504 * emacs-lisp/cl-macs.el (cl-compiler-macroexpand):
505 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
506 * calc/calc.el (name): Use autoloadp & autoload-do-load.
507
b1364986
AA
5082012-07-25 Alp Aker <alp.tekin.aker@gmail.com>
509
510 * international/mule-cmds.el (ucs-insert): Mark it as an obsolete
511 function, not an obsolete variable (Bug#12046).
512
67ada220
AS
5132012-07-25 Andreas Schwab <schwab@linux-m68k.org>
514
515 * faces.el (face-spec-reset-face): Fix last change. (Bug#12042)
516
f08088e3
CS
5172012-07-25 Christopher Schmidt <christopher@ch.ristopher.com>
518
519 * emacs-lisp/pp.el (pp-display-expression): Select old selected
520 window only if it is still live (Bug#12034).
521
8137e7b3
MR
5222012-07-25 Martin Rudalics <rudalics@gmx.at>
523
524 * subr.el (redirect-frame-focus): Add advertised calling
525 convention (Bug#12030).
526
09ae5da1
PE
5272012-07-25 Paul Eggert <eggert@cs.ucla.edu>
528
529 Prefer typical American spelling for "acknowledgment".
530 * vc/add-log.el (change-log-acknowledgment): Rename from
531 change-log-acknowledgement, with an alias for the old name.
532
3cc5a3a8
JB
5332012-07-25 Jay Belanger <jay.p.belanger@gmail.com>
534
535 * calc-alg.el (math-simplify-divide): Don't cross multiply
536 in an equation when the lhs is a variable.
537
b7af7f62
JD
5382012-07-24 Julien Danjou <julien@danjou.info>
539
540 * net/netrc.el (netrc-find-service-number, netrc-store-data):
541 Remove, unused.
542
ec1b09b1
EZ
5432012-07-23 Eli Zaretskii <eliz@gnu.org>
544
545 * startup.el (command-line): Don't display an empty user name in
546 the error message about non-existent home directory, when
547 init-file-user was set to an empty string. See
548 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00835.html
549 for the details and context.
550
b525fd8a
VB
5512012-07-22 Vincent Belaïche <vincentb1@users.sourceforge.net>
552
553 * ses.el (ses-cell-formula-aset): New macro.
554 (ses-cell-references-aset): New macro.
555 (ses-cell-p): New function.
556 (ses-rename-cell): Do no longer rely on complex operations like
557 ses-cell-set-formula or ses-set-cell to change the cell and handle
558 the undo at the same time, but rather use lower level new macros
559 `ses-cell-formula-aset' and `ses-cell-references-aset' and handle
560 the undo directly. Refresh the mode line.
561
2c73e345
LL
5622012-07-21 Leo Liu <sdl.web@gmail.com>
563
670d85ea
SM
564 * progmodes/cc-cmds.el (c-defun-name):
565 Use match-string-no-properties instead for consistency.
2c73e345 566
542dfbde
LL
5672012-07-20 Leo Liu <sdl.web@gmail.com>
568
3646bcd6
LL
569 * progmodes/cc-cmds.el (c-defun-name): Handle objc selectors properly.
570 (Bug#7879)
571
542dfbde
LL
572 * progmodes/cc-langs.el (c-symbol-start): Include char _ (bug#11986).
573
25721031
CY
5742012-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
575
576 * userlock.el, emacs-lisp/map-ynp.el: Declare part of `emacs' package.
577 * progmodes/bug-reference.el, misearch.el: Provide themselves
578 (bug#11915).
579
580 * progmodes/cperl-mode.el (cperl-unwind-to-safe): Don't inf-loop at end
581 of narrowed buffer (bug#11966).
582
316e68a7
VB
5832012-07-20 Vincent Belaïche <vincentb1@users.sourceforge.net>
584
585 * ses.el (ses-rename-cell): Set new name also in reference list of
586 cells of which the renamed cell depends.
587
bbf0e7d9
MY
5882012-07-20 Masatake YAMATO <yamato@redhat.com>
589
590 * term/x-win.el (x-menu-bar-open): Use `frame-parameter'
591 to check whether menu-bar is shown or not. If not shown,
592 show the menu-bar as a popup menu instead of using tmm.
593 * mouse.el (popup-menu): Accept `point' as `position' argument.
594
c28662a8
DG
5952012-07-20 Dmitry Gutov <dgutov@yandex.ru>
596
597 * progmodes/ruby-mode.el (ruby-parse-partial): No error when end
598 up inside string symbol literal (bug#11923).
599
87ab808f
EZ
6002012-07-20 Eli Zaretskii <eliz@gnu.org>
601
602 * startup.el (fancy-startup-text): Read the whole tutorial, not
603 just its first 256 bytes. Prevents gibberish in display of the
604 tutorial title.
605
89dea803
DA
6062012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
607
608 Drop idle buffer compaction due to an absence of the
609 proved efficiency.
610 * compact.el: Remove.
611
8a4e6db8
SS
6122012-07-19 Sam Steingold <sds@gnu.org>
613
614 * vc/vc-dispatcher.el (vc-compilation-mode): Add, based on
615 vc-bzr-pull & vc-bzr-merge-branch.
616 * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch): Use it.
617 (vc-bzr-error-regexp-alist): Rename from vc-bzr-error-regex-alist
618 for consistency with compilation-error-regexp-alist.
619 * vc/vc-git.el (vc-git-error-regexp-alist): Add.
620 (vc-git-pull, vc-git-merge-branch): Call vc-compilation-mode.
621 * vc/vc-hg.el (vc-hg-error-regexp-alist): Add.
622 (vc-hg-pull, vc-hg-merge-branch): Call vc-compilation-mode.
623
5db81e33
SM
6242012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
625
626 * emacs-lisp/chart.el: Use lexical-binding.
627 (chart-emacs-storage): Don't hardcode the list of entries.
628
5b835e1d
DA
6292012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
630
631 Next round of tweaks caused by Fgarbage_collect changes.
632 * emacs-lisp/chart.el (chart-emacs-storage): Adjust again.
633
9cd47b72
DA
6342012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
635
636 Compact buffers when idle.
637 * compact.el: New file.
638
1d6fc0df
SM
6392012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
640
641 * subr.el (eventp): Presume that if it looks vaguely like an event,
642 it's an event (bug#10190).
643
1d29cc7d
FEG
6442012-07-19 Fabián Ezequiel Gallina <fgallina@cuca>
645
646 Enhancements to ppss related code (thanks Stefan).
647 * progmodes/python.el (python-indent-context)
648 (python-indent-calculate-indentation, python-indent-dedent-line)
649 (python-indent-electric-colon, python-nav-forward-block)
650 (python-mode-abbrev-table)
1d6fc0df 651 (python-info-assignment-continuation-line-p): Simplify checks
1d29cc7d
FEG
652 for ppss context.
653 (python-info-continuation-line-p): Cleanup.
654 (python-info-ppss-context): Do not catch 'quote.
655 (python-info-ppss-context-type)
656 (python-info-ppss-comment-or-string-p): Simplify.
657
d583cbe6
FEG
6582012-07-18 Fabián Ezequiel Gallina <fgallina@cuca>
659
660 * progmodes/python.el: Enhancements to eldoc support.
661 (python-info-current-symbol): New function.
662 (python-eldoc-at-point): Use python-info-current-symbol.
663 (python-info-current-defun): Fix cornercase on first defun scan.
664 (python-eldoc--get-doc-at-point): Use python-info-current-symbol
665 and signal error when no inferior python process is available.
666
eceb6feb
DG
6672012-07-18 Dmitry Gutov <dgutov@yandex.ru>
668
669 * vc/vc-git.el (vc-git-state): Don't call `vc-git-registered',
670 assume it's always t.
671 (vc-git-registered): Remove caching, the function is only called
672 once.
673 (vc-git-branches): Use `vc-git--call' instead of `call-process'.
674
4c8ff0fe
CY
6752012-07-18 Chong Yidong <cyd@gnu.org>
676
19fb7186
CY
677 * subr.el (last-input-char, last-command-char): Remove (Bug#9195).
678
9587c688
CY
679 * simple.el (count-words): Report on narrowing (Bug#9959).
680
0fe776a1
CY
681 * bindings.el: Bind M-= to count-words.
682
4c8ff0fe
CY
683 * faces.el (face-spec-reset-face): Handle reverse video (Bug#4238).
684
7f5331cc
MY
6852012-07-18 Masatake YAMATO <yamato@redhat.com>
686
687 * progmodes/sh-script.el (sh-imenu-generic-expression):
688 Capture a function with `function' keyword and without parentheses
689 like "function FOO" (bug#11856).
690
2dc2a609
TH
6912012-07-18 Tassilo Horn <tassilo@member.fsf.org>
692
693 * window.el (split-window-sensibly): Make WINDOW argument
694 optional.
695
439f7677
CY
6962012-07-18 Chong Yidong <cyd@gnu.org>
697
9aeb25a6
CY
698 * subr.el (keyboard-translate): Doc fix (Bug#7261).
699
439f7677
CY
700 * isearch.el (isearch-mode-map): Handle C-x 8 key translations,
701 and make C-x 8 RET exit isearch (Bug#11439).
702
703 * international/iso-transl.el: Move isearch-mode-map key
704 definitions to isearch.el.
705
12999ea8
SM
7062012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
707
708 * emacs-lisp/eieio.el: Adapt further to gv.el (bug#11970).
709 (eieio-defclass): Use gv-define-setter when possible.
710
3ab6e069
DA
7112012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
712
713 Reflect recent changes in Fgarbage_collect.
714 * emacs-lisp/chart.el (chart-emacs-storage): Change to
715 reflect new format of data returned by Fgarbage_collect.
716
0a60bc10
FEG
7172012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
718
719 New utility functions + python-info-ppss-context fix (Bug#11910).
720 * progmodes/python.el (python-info-beginning-of-block-statement-p)
721 (python-info-ppss-comment-or-string-p): New functions.
722 (python-info-ppss-context): Small fix for string check.
723
6dafa0d5
JL
7242012-07-17 Juri Linkov <juri@jurta.org>
725
726 * dired-aux.el (dired-do-async-shell-command): Doc fix.
727 (dired-do-async-shell-command): Don't add `*' at the end of the
728 command (Bug#11815).
729 (dired-do-shell-command): Doc fix.
730 (dired-shell-stuff-it): Strip the trailing "&" and ";" if any.
731 Join the individual commands using either "&" or ";" as the
732 separator depending on the values of these trailing characters.
733 At the end re-add the trailing "&". (Bug#10598)
734
735 * simple.el (async-shell-command): Sync the interactive spec with
736 `shell-command'. Doc fix.
737 (shell-command): Doc fix.
738
b19dd9d1
JL
7392012-07-17 Juri Linkov <juri@jurta.org>
740
741 * descr-text.el (describe-char): Fix format args. (Bug#10129)
742
bcdc27d7 7432012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
7f5331cc 744
bcdc27d7 745 Final renames and doc fixes for movement commands (bug#11899).
7f5331cc
MY
746 * progmodes/python.el (python-nav-beginning-of-statement):
747 Rename from python-nav-statement-start.
bcdc27d7
FEG
748 (python-nav-end-of-statement): Rename from
749 python-nav-statement-end.
750 (python-nav-beginning-of-block): Rename from
751 python-nav-block-start.
752 (python-nav-end-of-block): Rename from python-nav-block-end.
753
191da00e
FEG
7542012-07-17 Fabián Ezequiel Gallina <fgallina@cuca>
755
7f5331cc
MY
756 * progmodes/python.el (python-shell-send-string-no-output):
757 Allow accept-process-output to quit, keeping shell process ready for
191da00e
FEG
758 future interactions (Bug#11868).
759
4dc7c8d5 7602012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
aa7aaf8f 761
88ecaf8f
SM
762 * emacs-lisp/cl-macs.el (cl-progv): Use a properly prefixed var name.
763
ef501ef0
SM
764 * emacs-lisp/elint.el (elint-find-args-in-code):
765 Use help-function-arglist, so as to handle lexical byte-code.
766
aa7aaf8f
SM
767 * progmodes/sh-script.el (sh-syntax-propertize-function): Fix last
768 change (bug#11826).
769
45fd731c
SM
7702012-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
771
2143fa32
SM
772 * progmodes/cc-engine.el (c-forward-sws, c-backward-sws):
773 Avoid spuriously marking the buffer as modified because of c-is-sws.
774
efc26dbe
SM
775 * progmodes/sh-script.el (sh-syntax-propertize-function): Mark "${#VAR"
776 as not-a-comment (bug#11946).
777
f5695c9a
SM
778 * emacs-lisp/macroexp.el (macroexp-let2): Use more informative names
779 for uninterned vars.
780
781 * xt-mouse.el (xterm-mouse-translate-1, xterm-mouse-event-read):
782 Use read-event since we don't really want to read chars but bytes.
783
45fd731c
SM
784 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Highlight not only
785 $$..$$ but also $..$ using regexps (bug#11953).
786 Use tex-verbatim for \url and \path.
787 (tex-font-lock-keywords): Define as defconst like the others.
788 (tex-common-initialization): Don't use font-lock-syntax-table any more.
789
ddfc8813
RK
7902012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
791
792 * international/mule-cmds.el (ucs-insert): Make it an obsolete
793 alias for insert-char.
794
758e556a
FEG
7952012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
796
797 * progmodes/python.el: Simplified imenu implementation.
798 (python-nav-jump-to-defun): Remove command.
799 (python-mode-map): Use `imenu' instead.
800 (python-nav-list-defun-positions-cache)
801 (python-imenu-include-defun-type, python-imenu-make-tree)
802 (python-imenu-subtree-root-label, python-imenu-index-alist):
803 Remove vars.
804 (python-nav-list-defun-positions, python-nav-read-defun)
805 (python-imenu-tree-assoc, python-imenu-make-element-tree)
45fd731c
SM
806 (python-imenu-make-tree, python-imenu-create-index):
807 Remove functions.
758e556a
FEG
808 (python-mode): Update to interact with imenu by setting
809 `imenu-extract-index-name-function' only.
810
032d23ab
FEG
8112012-07-16 Fabián Ezequiel Gallina <fgallina@cuca>
812
813 * progmodes/python.el: Enhancements to navigation commands.
814 (python-nav-backward-sentence)
815 (python-nav-forward-sentence): Remove.
816 (python-nav-backward-statement, python-nav-forward-statement)
817 (python-nav-statement-start, python-nav-statement-end)
818 (python-nav-backward-block, python-nav-forward-block)
819 (python-nav-block-start, python-nav-block-end)
820 (python-nav-forward-sexp-function)
821 (python-info-current-line-comment-p)
822 (python-info-current-line-empty-p): New functions.
823 (python-indent-context): Use `python-nav-statement-start'.
824
01795a1b
MA
8252012-07-16 Michael Albinus <michael.albinus@gmx.de>
826
9328d9aa
MA
827 * eshell/em-ls.el (eshell/ls): Use `apply'.
828
829 * eshell/em-unix.el (eshell/su, eshell/sudo): Apply Tramp's ad-hoc
830 multi-hops, instead of Tramp internals.
831
01795a1b
MA
832 * vc/ediff.el (ediff-directories): Add trailing space to prompts.
833
834 * vc/ediff-diff.el (ediff-same-file-contents): Handle the case,
835 when F1 and F2 are located on different hosts.
836
63408057
CY
8372012-07-14 Chong Yidong <cyd@gnu.org>
838
839 * xt-mouse.el: Implement extended mouse coordinates (Bug#10642).
840 (xterm-mouse-translate): Move code into xterm-mouse-translate-1.
841 (xterm-mouse-translate-extended, xterm-mouse-translate-1)
842 (xterm-mouse--read-event-sequence-1000)
843 (xterm-mouse--read-event-sequence-1006): New functions. For old
844 mouse protocol, handle M-mouse-X events correctly.
845 (xterm-mouse-event): New arg specifying mouse protocol.
846 (turn-on-xterm-mouse-tracking-on-terminal)
847 (turn-off-xterm-mouse-tracking-on-terminal): Send DEC 1006
45fd731c
SM
848 sequence to toggle extended coordinates on newer XTerms.
849 This appears to be harmless on terminals which do not support this.
63408057 850
cd276f6e
LL
8512012-07-14 Leo Liu <sdl.web@gmail.com>
852
28ca98ac
LL
853 Add fringe bitmap indicators for flymake. (Bug#11253)
854 * progmodes/flymake.el (flymake-highlight-line): Use fringe bitmaps.
855 (flymake-make-overlay): New arg BITMAP.
856 (flymake-error-bitmap, flymake-warning-bitmap)
857 (flymake-fringe-indicator-position): New user variables.
858
cd276f6e
LL
859 * fringe.el: New bitmap exclamation-mark.
860
04408072
JD
8612012-07-14 Jan Djärv <jan.h.d@swipnet.se>
862
863 * progmodes/cc-cmds.el (c-defun-name): Recognize Objective-C methods
864 also (Bug#7879).
865
b5cf7fc4
CY
8662012-07-14 Chong Yidong <cyd@gnu.org>
867
868 * electric.el (electric-pair-post-self-insert-function): Fix pair
869 insertion in empty-region case (Bug#11520).
870
be755c79
RT
8712012-07-14 Chong Yidong <cyd@gnu.org>
872
45fd731c
SM
873 * bindings.el: Consolidate ctl-x-r-map bindings.
874 Bind copy-rectangle-as-kill to C-x r w.
be755c79
RT
875
876 * rect.el, register.el: Move bindings to bindings.el.
877
8782012-07-14 Reuben Thomas <rrt@sc3d.org>
879
880 * rect.el (copy-rectangle-as-kill): New command (Bug#739).
881
7f5b3198
AS
8822012-07-13 Andreas Schwab <schwab@linux-m68k.org>
883
884 * emacs-lisp/cl.el (labels): Remove spurious quote. (Bug#11938)
885
97662200
JB
8862012-07-13 Juanma Barranquero <lekktu@gmail.com>
887
80185fed
JB
888 * bindings.el (top): Use `mapc' instead of `mapcar'.
889
97662200
JB
890 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
891
2bb1ae55
MA
8922012-07-13 Michael Albinus <michael.albinus@gmx.de>
893
894 * progmodes/sql.el (sql-comint): Suppress the check for program on
895 remote hosts. Reported by Francis Devereux <francis@devrx.org>.
896 (Bug#11908)
897
dea31bd3
CY
8982012-07-13 Chong Yidong <cyd@gnu.org>
899
900 * bindings.el: Assign a non-nil permanent-local property to
901 per-buffer variables which lack a default value (Bug#11930).
902
903 * help-fns.el (describe-variable): In the "automatically becomes
904 local" notice, take note of permanent-local variables.
905
b68b3337
CY
9062012-07-13 Chong Yidong <cyd@gnu.org>
907
908 * files.el (toggle-read-only): Doc fix and code cleanup. New arg
909 to allow printing the message when called from Lisp.
910
911 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
912 Remove toggle-read-only.
913
914 * bs.el (bs-toggle-readonly):
45fd731c
SM
915 * buff-menu.el (Buffer-menu-toggle-read-only):
916 Remove with-no-warnings around toggle-read-only.
b68b3337
CY
917
918 * ffap.el (ffap--toggle-read-only): Accept a list of buffers.
919 Remove with-no-warnings around toggle-read-only.
920 (ffap-read-only, ffap-read-only-other-window)
921 (ffap-read-only-other-frame): Callers changed.
922
923 * help-mode.el: Don't require view package.
924 (help-mode-finish): Set buffer-read-only instead of calling
925 toggle-read-only.
926
927 * bindings.el (mode-line-toggle-read-only):
928 * dired.el (dired-toggle-read-only):
929 * ibuffer.el (ibuffer-do-toggle-read-only): Call toggle-read-only
930 with non-nil second arg.
931
932 * emacs-lisp/eieio-custom.el (eieio-customize-object):
933 * vc/ediff.el (ediff-set-read-only-in-buf-A): Set buffer-read-only
934 directly.
935
56bc1586
EZ
9362012-07-12 Eli Zaretskii <eliz@gnu.org>
937
938 * emacs-lisp/bytecomp.el (byte-recompile-directory): Use cl-incf,
939 not incf.
940
a464a6c7
SM
9412012-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
942
943 More CL cleanups and reduction of use of cl.el.
944 * woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
945 * vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
946 * textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
947 * strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
948 * progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
949 * play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
950 * play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
951 * net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
952 * image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
953 * eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
954 * eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
955 * eshell/em-cmpl.el, eshell/em-banner.el:
956 * calendar/parse-time.el: Use cl-lib.
957 * wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
958 * vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
959 * textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
960 * term/ns-win.el, term.el, shell.el, ps-samp.el:
961 * progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
962 * progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
963 * play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
964 * net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
965 * net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
966 * mail/mailheader.el, mail/feedmail.el: Don't use CL.
967 * ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
968 * eshell/esh-opt.el (eshell-eval-using-options): Quote code with
969 `lambda' rather than with `quote'.
970 (eshell-do-opt): Adjust accordingly.
971 (eshell-process-option): Simplify.
972 * eshell/esh-var.el:
973 * eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
974 * emacs-lisp/pcase.el (pcase--dontcare-upats, pcase--let*)
975 (pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
976 to `pcase--dontcare'.
977 * emacs-lisp/cl.el (labels): Mark obsolete.
978 (cl--letf, letf): Move to cl-lib.
979 (cl--letf*, letf*): Remove.
980 * emacs-lisp/cl-lib.el (cl-nth-value): Use defalias.
981 * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
982 (cl-progv): Rewrite.
983 (cl--letf, cl-letf): Move from cl.el.
984 (cl-letf*): New macro.
985 * emacs-lisp/cl-extra.el (cl--progv-before, cl--progv-after): Remove.
986
7ad4afe1
MA
9872012-07-11 Michael Albinus <michael.albinus@gmx.de>
988
989 * net/ange-ftp.el (ange-ftp-cf1): Update the files cache.
990
9af57756
CY
9912012-07-11 Chong Yidong <cyd@gnu.org>
992
993 * vc/log-edit.el (log-edit-vc-backend): New variable.
994 (log-edit): Doc fix.
995
996 * vc/vc-dispatcher.el (vc-log-edit): New args. Use PARAMS
997 argument of log-edit to set up all local variables.
998 (vc-start-logentry): New optional arg specifying VC backend.
999
1000 * vc/vc.el (vc-checkin): Use it.
1001 (vc-deduce-fileset): Handle Log Edit buffers.
1002 (vc-diff): Make first argument optional too.
1003
1004 * vc/log-view.el (log-view-vc-fileset, log-view-vc-backend): Doc fix.
1005
8477cc7a
MA
10062012-07-10 Michael Albinus <michael.albinus@gmx.de>
1007
1008 * eshell/esh-ext.el (eshell-remote-command): Remove remote part of
1009 command, just in case. The function is not needed anymore.
1010 (eshell-external-command): Do not call `eshell-remote-command'.
1011
19faa8e8
SM
10122012-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
1013
f58e0fd5
SM
1014 Reduce use of (require 'cl).
1015 * vc/smerge-mode.el, vc/pcvs.el, vc/pcvs-util.el, vc/pcvs-info.el:
1016 * vc/diff-mode.el, vc/cvs-status.el, uniquify.el, scroll-bar.el:
1017 * register.el, progmodes/sh-script.el, net/gnutls.el, net/dbus.el:
1018 * msb.el, mpc.el, minibuffer.el, international/ucs-normalize.el:
1019 * international/quail.el, info-xref.el, imenu.el, image-mode.el:
1020 * font-lock.el, filesets.el, edmacro.el, doc-view.el, bookmark.el:
1021 * battery.el, avoid.el, abbrev.el: Use cl-lib.
1022 * vc/pcvs-parse.el, vc/pcvs-defs.el, vc/log-view.el, vc/log-edit.el:
1023 * vc/diff.el, simple.el, pcomplete.el, lpr.el, comint.el, loadhist.el:
1024 * jit-lock.el, international/iso-ascii.el, info.el, frame.el, bs.el:
1025 * emulation/crisp.el, electric.el, dired.el, cus-dep.el, composite.el:
1026 * calculator.el, autorevert.el, apropos.el: Don't require CL.
1027 * emacs-lisp/bytecomp.el (byte-recompile-directory, display-call-tree)
1028 (byte-compile-unfold-bcf, byte-compile-check-variable):
1029 * emacs-lisp/byte-opt.el (byte-compile-trueconstp)
1030 (byte-compile-nilconstp):
1031 * emacs-lisp/autoload.el (make-autoload): Use pcase.
1032 * face-remap.el (text-scale-adjust): Simplify pcase patterns.
1033
2519d43a
SM
1034 * emacs-lisp/gv.el (cond): Make it a valid place.
1035 (if): Simplify slightly.
1036
19faa8e8
SM
1037 * emacs-lisp/pcase.el (pcase): Accept self-quoting exps as "upatterns".
1038 (pcase--self-quoting-p): New function.
1039 (pcase--u1): Use it.
1040
c4907a5e
GM
10412012-07-10 Glenn Morris <rgm@gnu.org>
1042
1043 * emacs-lisp/authors.el (authors-fixed-entries):
1044 (authors-renamed-files-alist): Update for configure.in -> configure.ac.
1045
c4444d16
PE
10462012-07-09 Paul Eggert <eggert@cs.ucla.edu>
1047
1048 Rename configure.in to configure.ac (Bug#11603).
1049 * emacs-lisp/authors.el (authors-canonical-file-name):
1050 * progmodes/autoconf.el (autoconf-mode):
1051 Prefer configure.ac to configure.in.
1052
d75be97d
CY
10532012-07-08 Chong Yidong <cyd@gnu.org>
1054
01ac65bd
CY
1055 * mouse.el (mouse-drag-line): Rewrite the track-mouse loop.
1056 Implement the mouse-1-click-follows-link handling properly.
1057
1058 * info.el (Info-link-keymap): Use follow-link mechanism for
1059 header-line links (Bug#374).
1060
d75be97d
CY
1061 * simple.el (deactivate-mark): Do not set the primary selection
1062 if another program has acquired it (Bug#11772).
1063
87a92845 10642012-07-07 Kevin Ryde <user42@zip.com.au>
f0ecdfea
KR
1065
1066 * woman.el (woman-strings): Fix double-quote handling (Bug#1151).
1067 (woman-decode-region): Replace escaped-escapes without destroying
1068 bold or underline (Bug#11552).
87a92845 1069 (woman2-process-escapes): Handle nofill regions (Bug#11591).
f0ecdfea 1070
621b9d6c
CY
10712012-07-07 Chong Yidong <cyd@gnu.org>
1072
1073 * simple.el (yank-pop-change-selection): Doc fix (Bug#11361).
19faa8e8
SM
1074 (interprogram-cut-function, interprogram-paste-function):
1075 Mention that we typically mean the clipboard.
621b9d6c 1076
133a11fc
GM
10772012-07-06 Glenn Morris <rgm@gnu.org>
1078
0d27a45e
GM
1079 * kmacro.el (kmacro-call-macro): Restore repeat message. (Bug#11817)
1080
133a11fc
GM
1081 * files.el (toggle-read-only): Restrict message to interactive use.
1082
07b151f1
MA
10832012-07-06 Michael Albinus <michael.albinus@gmx.de>
1084
1085 * net/tramp.el (tramp-restricted-shell-hosts-alist): New defcustom.
1086
1087 * net/tramp-sh.el (tramp-maybe-open-connection): Handle it.
1088
211b896b
GM
10892012-07-06 Glenn Morris <rgm@gnu.org>
1090
50394322
GM
1091 * Makefile.in (compile-one-process): Rename from "recompile".
1092
211b896b
GM
1093 * Makefile.in (bzr-update): "compile" is the same as "recompile
1094 autoloads", but parallelizable, so use that instead.
1095
4737eec9
DG
10962012-07-06 Dmitry Gutov <dgutov@yandex.ru>
1097
1098 * window.el (quit-window): Always restore window height when
8137e7b3 1099 it's saved in quit-restore parameter (Bug#11810).
4737eec9 1100
226c3633 11012012-07-06 Glenn Morris <rgm@gnu.org>
cb442973
GM
1102
1103 * simple.el (kill-whole-line): Doc tweak.
1104
226c3633 11052012-07-06 Eli Zaretskii <eliz@gnu.org>
93842198
EZ
1106
1107 * files.el (file-relative-name): Compare file names
1108 case-insensitively if on MS-Windows or MS-DOS, or if
1109 read-file-name-completion-ignore-case is non-nil. Don't use
1110 case-fold-search for this purpose. (Bug#11827)
1111
4dc7c8d5
SM
11122012-07-17 Andreas Schwab <schwab@linux-m68k.org>
1113
1114 * calendar/cal-dst.el (calendar-current-time-zone):
1115 Return calendar-current-time-zone-cache if non-nil.
1116
11172012-07-17 Masatake YAMATO <yamato@redhat.com>
226c3633 11182012-07-06 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 1119
19faa8e8
SM
1120 * calendar/cal-dst.el (calendar-current-time-zone):
1121 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 1122
60198fc9
GM
11232012-07-06 Glenn Morris <rgm@gnu.org>
1124
1125 * Makefile.in (cvs-update): Remove old alias.
1126
957b3189
MA
11272012-07-05 Michael Albinus <michael.albinus@gmx.de>
1128
1129 Sync with Tramp 2.2.6-pre.
1130
1131 * net/tramp.el (tramp-drop-volume-letter): Provide an XEmacs
1132 compatible declaration.
1133
19faa8e8
SM
1134 * net/tramp-cmds.el (tramp-append-tramp-buffers):
1135 Protect `list-load-path-shadows' call.
957b3189
MA
1136
1137 * net/tramp-compat.el (top): Require packages, which aren't
1138 autoloaded anymore for XEmacs. Protect call of
1139 `tramp-file-name-handler' by `tramp-compat-funcall', pacifying the
1140 compiler. Do not require tramp-util.el and tramp-vc.el anymore,
1141 it hurts at least for SXEmacs.
1142 (tramp-compat-temporary-file-directory): In XEmacs, there is no
1143 standard-value for `temporary-file-directory'.
1144
1145 * net/tramp-sh.el (tramp-do-directory-files-and-attributes-with-stat):
1146 Redirect stderr to /dev/null.
1147 (tramp-sh-handle-write-region): uid and gid can be floats.
1148 Reported by Russell Sim <russell.sim@gmail.com>.
1149 (tramp-sh-handle-vc-registered): Hide errors.
1150 (tramp-vc-file-name-handler): Use dummy results for `process-file'
1151 and `start-file-process'.
1152 (tramp-maybe-open-connection): Check also whether `non-essential'
1153 is bound.
1154
566df3fc
CY
11552012-07-04 Chong Yidong <cyd@gnu.org>
1156
1157 * xml.el (xml--parse-buffer): Use xml-syntax-table.
1158 (xml-parse-tag): Likewise, and avoid changing entity tables.
1159 (xml-syntax-table): Define from scratch, making sure not to give
1160 x2000 and other Unicode spaces whitespace syntax, since those are
1161 not spaces in XML.
1162 (xml-parse-fragment): Delete unused function.
1163 (xml-name-start-char-re, xml-name-char-re, xml-name-re)
1164 (xml-names-re, xml-nmtoken-re, xml-nmtokens-re, xml-char-ref-re)
1165 (xml-entity-ref, xml-pe-reference-re)
1166 (xml-reference-re,xml-att-value-re, xml-tokenized-type-re)
1167 (xml-notation-type-re, xml-enumeration-re, xml-enumerated-type-re)
1168 (xml-att-type-re, xml-default-decl-re, xml-att-def-re)
1169 (xml-entity-value-re): Use syntax references in regexps where
1170 possible; no need to define inside a let-binding.
1171 (xml-parse-dtd): Use xml-pe-reference-re.
1172 (xml-entity-or-char-ref-re): New defconst.
1173 (xml-parse-string, xml-substitute-special): Use it.
1174
30eabd7a
SM
11752012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
1176
0781098a
SM
1177 * files.el (locate-dominating-file): Allow `name' to be a predicate.
1178 (find-file--read-only): New function.
1179 (find-file-read-only, find-file-read-only-other-window)
1180 (find-file-read-only-other-frame): Use it.
1181 (insert-file-contents-literally): Don't `fset'.
1182 (get-free-disk-space): Use locate-dominating-file.
1183
b5771c0d
SM
1184 * emacs-lisp/bytecomp.el (byte-compile): Don't signal an error if the
1185 function is already compiled.
1186
30eabd7a
SM
1187 * xml.el (xml-name-regexp): Remove, redundant. Use xml-name-re.
1188
b4886f6e
MA
11892012-07-03 Michael Albinus <michael.albinus@gmx.de>
1190
1191 * vc/ediff-diff.el (ediff-same-file-contents): Fix it for remote
1192 files on the same host.
1193
b9d82339
AS
11942012-07-03 Andreas Schwab <schwab@linux-m68k.org>
1195
1196 * help-fns.el (describe-function-1): Only call
1197 help-fns--autoloaded-p when we have a file name. (Bug#11848)
1198
a76e6535
CY
11992012-07-03 Chong Yidong <cyd@gnu.org>
1200
1201 * xml.el: Protect parser against XML bombs.
1202 (xml-entity-expansion-limit): New variable.
1203 (xml-parse-string, xml-substitute-special): Use it.
1204 (xml-parse-dtd): Avoid infloop if the DTD is not terminated.
1205
b544fef2
GM
12062012-07-03 Glenn Morris <rgm@gnu.org>
1207
1208 * progmodes/bug-reference.el (bug-reference-bug-regexp):
1209 Allow linking to specific messages in debbugs reports (eg 123#5).
1210
a7aef6f5
CY
12112012-07-02 Chong Yidong <cyd@gnu.org>
1212
1213 * xml.el: Fix entity and character reference expansion, allowing
1214 them to expand into markup as per XML spec.
1215 (xml-default-ns): New variable.
1216 (xml-entity-alist): Use XML spec definitions for lt and amp.
30eabd7a
SM
1217 (xml-parse-region): Make first two arguments optional.
1218 Discard text properties.
1219 (xml-parse-tag-1): New function, spun off from xml-parse-tag.
1220 All callers changed.
a7aef6f5
CY
1221 (xml-parse-tag): Call xml-parse-tag-1. For backward
1222 compatibility, this function should not modify buffer contents.
1223 (xml-parse-tag-1): Fix opening-tag regexp.
1224 (xml-parse-string): Rewrite, handling entity and character
1225 references properly.
1226 (xml--entity-replacement-text): Signal an error if a parameter
1227 entity is undefined.
1228
3df31c9f
SM
12292012-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
1230
2b5208f1
SM
1231 * comint.el (comint-output-filter): Filter out repeated prompts.
1232
3df31c9f
SM
1233 * net/ange-ftp.el (ange-ftp-expand-file-name): Use ange-ftp-ftp-name
1234 and file-name-absolute-p.
1235 (ange-ftp-file-exists-p): Use ange-ftp-file-exists-p for
1236 internal calls.
1237
e3ac1281
PE
12382012-07-02 Paul Eggert <eggert@cs.ucla.edu>
1239
1240 Spelling fixes.
1241 * emacs-lisp/bytecomp.el (byte-compile--reify-function):
1242 Rename from byte-compile--refiy-function. All uses changed.
1243
fbf2e7ad
CY
12442012-07-01 Chong Yidong <cyd@gnu.org>
1245
1246 * xml.el (xml--parse-buffer): New function. Move most of
1247 xml-parse-region here.
1248 (xml-parse-region): Copy region into a temporary buffer, since
1249 parameter entity substitution requires changing buffer contents.
1250 Use xml--parse-buffer.
1251 (xml-parse-file): Use xml--parse-buffer.
1252 (xml-parse-dtd): Make parameter entity substitution work right.
6fe566a7 1253 Use proper regexps for ELEMENT declarations (Bug#7172).
fbf2e7ad 1254
9bf0aa15
GM
12552012-06-30 Glenn Morris <rgm@gnu.org>
1256
bbce2853
GM
1257 * comint.el (follow-comint-scroll-to-bottom): Fix declaration.
1258
9bf0aa15
GM
1259 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
1260 Remove outdated and unnecessary dbus declarations.
1261
0d23c240
EZ
12622012-06-30 Eli Zaretskii <eliz@gnu.org>
1263
1264 * emacs-lisp/timer.el (timer-until): Subtract results of
1265 float-time, instead of taking float-time of the result of
1266 time-subtract, since float-time signals an error for negative time
1267 arguments.
1268
b3218de1
CY
12692012-06-30 Chong Yidong <cyd@gnu.org>
1270
1271 * xml.el (xml-*-re): Convert defvars into defconsts, and
1272 eval-and-compile them so eval-and-compile works on derivatives.
1273 (xml--entity-replacement-text): Use eval-and-comple.
1274
a40c87a0
MA
12752012-06-30 Michael Albinus <michael.albinus@gmx.de>
1276
1277 * vc/vc-git.el (vc-git-registered): Use cache property
1278 `git-registered'.
1279 (vc-git-mode-line-string): Call `vc-working-revision' instead of
1280 `vc-git-working-revision' in order to benefit from the cache.
2bb1ae55 1281 (vc-git-root): Use cache property `git-root'. (Bug#11757)
a40c87a0 1282
ac87de97
DG
12832012-06-30 Dmitry Gutov <dgutov@yandex.ru>
1284
1285 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
2bb1ae55 1286 removed (likely outside Emacs). (Bug#11757)
ac87de97 1287
ac10fe06
SM
12882012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1289
3df31c9f 1290 * emacs-lisp/cl-lib.el: Require macroexp.
ac10fe06 1291
7f3fbd5d
CY
12922012-06-30 Chong Yidong <cyd@gnu.org>
1293
1294 * xml.el: Implement XML parameter entities.
1295 (xml-parameter-entity-alist): New variable.
1296 (xml-parse-region, xml-parse-fragment): Preserve previous values
1297 of xml-entity-alist and xml-parameter-entity-alist, so that
1298 repeated calls on different documents do not change them.
1299 (xml-parse-tag): Fix doctype regexp.
1300 (xml--entity-replacement-text): New function.
1301 (xml-parse-dtd): Use it. Don't handle system entities; doing that
1302 properly requires url retrieval which is unimplemented.
1303 (xml-escape-string): Doc fix.
1304
3cfbebba
SM
13052012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
1306
1307 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
1308
2af3565e
DA
13092012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
1310
1311 * fringe.el (fringe-mode): Doc fix.
1312
929df0e7
MA
13132012-06-29 Michael Albinus <michael.albinus@gmx.de>
1314
1315 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
1316 is non-nil.
1317 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
1318 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
1319
c8d3a25c 13202012-06-29 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 1321
c8d3a25c
GM
1322 * calendar/cal-dst.el (calendar-current-time-zone):
1323 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 1324
c8d3a25c 13252012-06-29 Masatake YAMATO <yamato@redhat.com>
26e8548e
MY
1326
1327 * progmodes/which-func.el (which-func-format):
1328 Add mouse-face. (Bug#11698)
1329
c8d3a25c
GM
13302012-06-29 Leo Liu <sdl.web@gmail.com>
1331
1332 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
1333
13342012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1335
1336 * minibuffer.el (minibuffer-confirm-exit-commands):
1337 Add completion-at-point (bug#11725).
1338
13392012-06-29 Glenn Morris <rgm@gnu.org>
1340
1341 * progmodes/f90.el (f90-font-lock-keywords-2):
1342 Add some preprocessor elements. (Bug#10499)
1343
13442012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
1345
1346 * progmodes/cperl-mode.el (cperl-update-syntaxification):
1347 Use syntax-propertize (bug#11739).
1348
2badeec4
JB
13492012-06-28 Juanma Barranquero <lekktu@gmail.com>
1350
1351 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
1352
ae4969c2
JD
13532012-06-28 Julien Danjou <julien@danjou.info>
1354
1355 * term.el (term-handle-colors-array): Use a set of new faces to
1356 color the terminal. Also uses :inverse-video property.
1357 (term-default-fg-color): Set to nil by default, deprecate in favor
1358 of `term-face'.
1359 (term-default-bg-color): Set to nil by default, deprecate in favor
1360 of `term-face'.
1361 (term-current-face): Use `term-face' by default.
1362 (term-bold-attribute): Variable deleted.
1363
1c9bd870
GM
13642012-06-28 Glenn Morris <rgm@gnu.org>
1365
1366 * simple.el (completion-list-mode-finish):
1367 Don't use toggle-read-only. (Since completion-list-mode has
1368 a special mode-class, it wasn't doing anything extra anyway.)
1369
c207708c
SM
13702012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
1371
1372 Make inlining of other-mode interpreted functions work (bug#11799).
1373 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
1374 (byte-compile): Use it to fix compilation of lexical-binding closures.
1375 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
1376 function, if needed.
1377
3fd56834
SM
13782012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
1379
04901786
SM
1380 * help-mode.el (help-make-xrefs): Don't just withstand
1381 cyclic-variable-indirection but any error in documentation-property.
1382
1ec4b7b2
SM
1383 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
1384 memory use.
1385 * bindings.el (bindings--define-key): New function.
1386 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
1387 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
1388 * bindings.el: Use it to purecopy define-key bindings.
1389
e309e2a5
SM
1390 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
1391
d5c6faf9
SM
1392 * emacs-lisp/cl.el (flet): Mark obsolete.
1393 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
1394 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
1395 * progmodes/js.el (js-c-fill-paragraph):
1396 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
1397 (ebrowse-switch-member-buffer-to-derived-class):
1398 * play/5x5.el (5x5-solver): Use cl-flet.
1399
6e9590e2
SM
1400 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
1401 (cl--symbol-function): New macro.
1402 (cl--letf, cl--letf*): Use it.
1403
3fd56834
SM
1404 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
1405 Strip "toggle-" if any.
1406
35ff222c
GM
14072012-06-27 Glenn Morris <rgm@gnu.org>
1408
1ba6038a
GM
1409 * info.el (Info-default-directory-list): Move here from paths.el.
1410 * paths.el: Remove file, which is now empty.
1411 * loadup.el: No longer load "paths".
1412
0ea0e51b
GM
1413 * custom.el (custom-initialize-delay): Doc fix.
1414
35ff222c
GM
1415 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
1416 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
1417 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
1418 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
1419 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
1420 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
1421 * eshell/eshell.el (eshell-defgroup): Remove alias.
1422
c89926a5
CY
14232012-06-27 Chong Yidong <cyd@gnu.org>
1424
1425 * help.el (help-enable-auto-load): New variable.
1426
1427 * help-fns.el (help-fns--autoloaded-p): New function.
1428 (describe-function-1): Refer to a function as "autoloaded" if it
1429 was autoloaded at any time in the past. Perform autoloading if
1430 help-enable-auto-load is non-nil.
1431
cc06e7e7
EZ
14322012-06-26 Eli Zaretskii <eliz@gnu.org>
1433
1434 * makefile.w32-in (compile, compile-always): Depend on
1435 update-subdirs, not on subdirs.el. Otherwise, several different
1436 sub-targets of 'bootstrap' running in parallel could
1437 simultaneously write to subdirs.el, producing a garbled file.
1438
d2c32364
SS
14392012-06-26 Sam Steingold <sds@gnu.org>
1440
1441 * files.el (file-name-base): New convenience function.
0d14cc21
GM
1442 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
1443 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
1444 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
1445 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
1446 * textmodes/ispell.el, textmodes/reftex-ref.el:
d2c32364
SS
1447 * textmodes/tex-mode.el: Use it.
1448 Did not touch cedet and org because they are maintained elsewhere.
1449
5cf983b2
MR
14502012-06-26 Martin Rudalics <rudalics@gmx.at>
1451
1452 * calendar/calendar.el (calendar-exit): Don't try to delete or
1453 iconify last frame. See:
1454 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
1455
8c4f2952
JD
14562012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
1457
1458 * server.el (server-process-filter): Remember dir in the
1459 process's `server-client-directory' properties.
1460
772b2e2c
CY
14612012-06-24 Chong Yidong <cyd@gnu.org>
1462
1463 * xml.el (xml-parse-tag): Correctly handle comment embedded in
1464 non-tag text.
1465
711b11e1
JB
14662012-06-23 Juanma Barranquero <lekktu@gmail.com>
1467
1468 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
1469
dc5d230c
SM
14702012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1471
1472 * help-fns.el (describe-variable): Don't croak when doc is not found.
1473 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
1474 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
1475 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
1476 * emacs-lisp/smie.el (smie-next-sexp): CSE.
1477 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
1478 ((lambda ..) ..).
1479 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
1480
136e1c1d
CY
14812012-06-23 Chong Yidong <cyd@gnu.org>
1482
e8c1cabf
CY
1483 * info.el (Info-mouse-follow-link): Accept symbol values of
1484 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
136e1c1d
CY
1485 (Info-fontify-node): Use Info-link-keymap for all navigation
1486 buttons, with link-args property to perform the desired action.
1487 (Info-link-keymap): Doc fix.
1488 (Info-next-link-keymap, Info-prev-link-keymap)
1489 (Info-up-link-keymap): Delete now-unused keymaps.
1490
0e9e6c6a
CY
14912012-06-23 Chong Yidong <cyd@gnu.org>
1492
05e89fea
CY
1493 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
1494
0e9e6c6a
CY
1495 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
1496 system abbrevs.
1497
1498 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
1499
e33c6771
SM
15002012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
1501
b68581e2
SM
1502 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
1503 (bug#11719).
1504
e33c6771
SM
1505 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
1506 the requote function doesn't work properly (bug#11714).
1507
7117e105
GM
15082012-06-23 Glenn Morris <rgm@gnu.org>
1509
1510 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
1511
36cec983
SM
15122012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1513
1514 Further GV/CL cleanups.
1515 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
1516 gv-expander.
1517 (gv--defun-declaration): New function.
1518 (defun-declarations-alist): Use it.
1519 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
1520 (gv-place): Autoload.
1521 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
1522 original definition of dotimes and dolist.
1523 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
1524 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
1525 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
1526 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
1527 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
1528 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
1529 to the function's definition.
1530 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
1531 * window.el:
1532 * files.el:
1533 * faces.el:
1534 * env.el: Don't use CL.
1535
d35af63c
PE
15362012-06-22 Paul Eggert <eggert@cs.ucla.edu>
1537
1538 Support higher-resolution time stamps (Bug#9000).
1539
1540 * calendar/time-date.el (with-decoded-time-value): New arg
1541 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
1542 (encode-time-value): New optional arg PICO. New type 3.
1543 (time-to-seconds) [!float-time]: Support the new picoseconds
1544 component if it's used.
1545 (seconds-to-time, time-subtract, time-add):
1546 Support ps-resolution time stamps as well.
1547
1548 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
1549 (timerp): Timer vectors now have length 9, not 8.
1550 (timer--time): Support new-style (4-part) time stamps.
1551 (timer-next-integral-multiple-of-time): Time stamps now have
1552 picosecond resolution, so take a bit more care about rounding.
1553 (timer-relative-time, timer-inc-time): New optional arg psecs.
1554 (timer-set-time-with-usecs): Set psecs to 0.
1555 (timer--activate): Check psecs component, too.
1556
1557 * proced.el (proced-time-lessp): Support ps-resolution stamps.
1558
ac77b21a
SM
15592012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1560
f143bfe3
SM
1561 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
1562 Move the non-essential binding to the post/pre-command-hook where it is
1563 more obviously correct.
1564
ac77b21a
SM
1565 * subr.el (read-passwd): Don't use a history at all.
1566 * savehist.el (savehist-save): Remove password saved accidentally
1567 because of the above bug.
1568
76386c5a
BG
15692012-06-22 Bastien Guerry <bzg@gnu.org>
1570
1571 * files.el (toggle-read-only): Display a message telling whether
1572 the buffer is read-only or not (bug#11726).
1573
2ee3d7f0
SM
15742012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
1575
1576 * emacs-lisp/gv.el: New file.
1577 * subr.el (push, pop): Extend to generalized variables.
1578 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
1579 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
1580 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
1581 gv-define-simple-setter, and gv-define-expander.
1582 Remove setf-methods defined in gv. Rename cl-setf -> setf.
1583 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
1584 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
1585 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
1586 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
1587 gv-letplace.
1588 (cl-defstruct): Don't define setf-method any more.
1589 * emacs-lisp/cl.el (flet): Don't autoload.
1590 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
1591 (define-setf-expander, defsetf, define-modify-macro)
1592 (cl-struct-setf-expander): Move from cl-lib.el.
1593 * emacs-lisp/syntax.el:
1594 * emacs-lisp/ewoc.el:
1595 * emacs-lisp/smie.el:
1596 * emacs-lisp/cconv.el:
1597 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
1598 (timer--time): Use gv-define-simple-setter.
1599 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
1600 to avoid coding-system problems in subr.el. Adjust all users.
1601 (macroexp--maxsize, macroexp-small-p): New functions.
1602 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
1603 * scroll-bar.el (scroll-bar-mode):
1604 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
1605 (normal-erase-is-backspace-mode): Don't use the `eq' place.
1606 * winner.el (winner-configuration, winner-make-point-alist)
1607 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
1608 * files.el (locate-file-completion-table): Avoid list*.
1609
c5695d1d
CY
16102012-06-22 Chong Yidong <cyd@gnu.org>
1611
1612 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
1613 (dired-create-files): Doc fix (Bug#11329).
1614 (dired-do-copy): Doc fix (Bug#11334).
1615 (dired-mark-read-string): Doc fix (Bug#11553).
1616
2ee3d7f0
SM
1617 * dired.el (dired-recursive-copies, dired-recursive-deletes):
1618 Doc fix (Bug#11326).
c5695d1d
CY
1619 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
1620 (dired-dwim-target): Doc fix.
1621
1622 * wdired.el (wdired-mode): Doc fix.
1623
89b5595a
GM
16242012-06-22 Glenn Morris <rgm@gnu.org>
1625
575db3f1
GM
1626 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
1627 (pcmpl-rpm-cache-stamp-file): New constant.
1628 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
1629 (pcmpl-rpm-packages): Optionally cache list of packages.
1630
a4c8dd51
GM
1631 * pcmpl-rpm.el (pcmpl-rpm): New group.
1632 (pcmpl-rpm-query-options): New option.
1633 (pcmpl-rpm-packages): No need to inline it.
1634 Use pcmpl-rpm-query-options.
1635
89b5595a
GM
1636 * calendar/calendar.el (calendar-in-read-only-buffer):
1637 Avoid some needless mode changes.
1638
e76f0800
CY
16392012-06-21 Chong Yidong <cyd@gnu.org>
1640
1641 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
1642 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 1643 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 1644
297a8f1d
CY
16452012-06-20 Chong Yidong <cyd@gnu.org>
1646
1647 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
1648
d34c18b1
DR
16492012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
1650
1651 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
1652 (bug#11201).
1653
32f7f28e
CY
16542012-06-20 Chong Yidong <cyd@gnu.org>
1655
1656 * term.el (term-window-width): Handle the case of a missing right
1657 fringe (Bug#8837).
1658 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
1659 (term-mode): Use define-derived-mode. Minor cleanups.
1660 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
1661 (term-move-columns, term-insert-char, term-emulate-terminal)
1662 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 1663
493c6688
MA
16642012-06-20 Michael Albinus <michael.albinus@gmx.de>
1665
d34c18b1
DR
1666 * net/ange-ftp.el (ange-ftp-get-passwd):
1667 Bind `enable-recursive-minibuffers'.
493c6688
MA
1668 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
1669
3f06ecf4
DR
16702012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
1671
1672 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
1673
68f12411
GM
16742012-06-19 Glenn Morris <rgm@gnu.org>
1675
1676 * progmodes/python.el (python-mode): Derive from prog-mode.
1677
b3820318
KG
16782012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
1679
1680 * emulation/edt.el (edt-default-menu-bar-update-buffers)
1681 (edt-user-menu-bar-update-buffers): New functions.
1682 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
1683
c6bf3022
CY
16842012-06-19 Chong Yidong <cyd@gnu.org>
1685
1686 * subr.el (with-selected-window): Preserve the selected window's
1687 terminal's top-frame (Bug#4702).
1688
1689 * window.el (save-selected-window): Likewise.
1690
25f09295
SM
16912012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1692
1693 * progmodes/python.el (python-rx-constituents): Move backquote.
1694 (python-skeleton-define, python-define-auxiliary-skeleton):
1695 Use `declare'.
1696
6b11952a
MA
16972012-06-18 Michael Albinus <michael.albinus@gmx.de>
1698
1699 * minibuffer.el (read-file-name-default): Revert the patch from
1700 2012-06-17.
1701
ee4b1330
SM
17022012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
1703
1704 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
1705 (pcase--u1, pcase--q1): Don't use apply-partially.
1706
35647f79
GM
17072012-06-18 Glenn Morris <rgm@gnu.org>
1708
1709 * progmodes/python.el (python-proc, python-buffer)
1710 (python-send-receive, python-send-string): Fix obsolete versions.
1711
24b0cff0
MR
17122012-06-18 Martin Rudalics <rudalics@gmx.at>
1713
1714 * window.el (special-display-p): Completely remove stringp
1715 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
1716
29855149
MA
17172012-06-17 Michael Albinus <michael.albinus@gmx.de>
1718
1719 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
1720
1721 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
1722
1723 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
1724 * net/tramp-sh.el (tramp-maybe-open-connection):
1725 Throw if `non-essential' is non-nil.
1726
07463363
MR
17272012-06-17 Martin Rudalics <rudalics@gmx.at>
1728
1729 * window.el (special-display-p): Signal an error if BUFFER-NAME
1730 is not a string (Bug#11713).
1731
48d1354e
PE
17322012-06-17 Paul Eggert <eggert@cs.ucla.edu>
1733
1734 * progmodes/python.el (python-info-beginning-of-backslash):
1735 Rename from python-info-beginning-of-backlash, as a spelling fix.
1736
eb4a8a9a
CY
17372012-06-17 Chong Yidong <cyd@gnu.org>
1738
1739 * term.el (term-emulate-terminal): If term-check-size is called,
1740 move point to the process mark without resetting point (Bug#4635).
1741
ddfbf826 17422012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
1743
1744 * international/mule-cmds.el (mule-menu-keymap)
1745 (set-language-environment, set-locale-environment): Doc tweaks.
1746
9b0e3eba
AA
17472012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
1748
1749 * cus-face.el (custom-face-attributes): Add wave-style underline
1750 attribute.
1751 * faces.el (set-face-attribute): Update docstring to describe
1752 wave-style underline attribute.
1753
771e3eae
CY
17542012-06-16 Chong Yidong <cyd@gnu.org>
1755
1756 * term/xterm.el (terminal-init-xterm): Discard input before
1757 querying background mode (Bug#10959).
1758
7ae2ea10
SM
17592012-06-16 Stefan Merten <smerten@oekonux.de>
1760
1761 * textmodes/rst.el: Added and corrected some comments.
1762 (rst-re-alist-def): Improve symbol syntax.
1763 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
1764 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
1765 (rst-official-version, rst-official-cvs-rev): Update version
1766 information.
7ae2ea10 1767
b6974efa
JB
17682012-06-15 Juanma Barranquero <lekktu@gmail.com>
1769
1770 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
1771 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
1772
8826d473
GM
17732012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
1774
1775 * progmodes/python.el: New python.el merge.
1776 (python-guess-indent): Obsolete var.
1777 (python-indent-guess-indent-offset): New defcustom.
1778 (python-indent): Obsolete var.
1779 (python-indent-offset): New defcustom.
1780 (python-python-command, python-jython-command): Delete var.
1781 (python-shell-interpreter): New defcustom.
1782 (python-pdbtrack-do-tracking-p): Delete var.
1783 (python-pdbtrack-activate): New defcustom.
1784 (python-use-skeletons): Obsolete var.
1785 (python-skeleton-autoinsert): New defcustom.
1786 (inferior-python-filter-regexp, python-continuation-offset)
1787 (python-honour-comment-indentation, python-indent-string-contents)
1788 (python-jython-packages, python-mode-hook)
1789 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
1790 (python-shell-prompt-alist)
1791 (python-source-modes): Delete defcustoms.
1792 (python-check-buffer-name, python-eldoc-setup-code)
1793 (python-eldoc-string-code, python-ffap-setup-code)
1794 (python-ffap-string-code, python-fill-comment-function)
1795 (python-fill-decorator-function, python-fill-paren-function)
1796 (python-fill-string-function, python-imenu-include-defun-type)
1797 (python-imenu-make-tree, python-imenu-subtree-root-label)
1798 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
1799 (python-shell-compilation-regexp-alist)
1800 (python-shell-completion-module-string-code)
1801 (python-shell-completion-pdb-string-code)
1802 (python-shell-completion-setup-code)
1803 (python-shell-completion-string-code)
1804 (python-shell-enable-font-lock, python-shell-exec-path)
1805 (python-shell-extra-pythonpaths)
1806 (python-shell-internal-buffer-name, python-shell-interpreter-args)
1807 (python-shell-process-environment)
1808 (python-shell-prompt-block-regexp)
1809 (python-shell-prompt-output-regexp)
1810 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
1811 (python-shell-send-setup-max-wait, python-shell-setup-codes)
1812 (python-shell-virtualenv-path): New defcustoms.
1813 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
1814 (inferior-python-mode-syntax-table, python--prompt-regexp)
1815 (python-buffer, python-command python-python-command)
1816 (python-default-template, python-imports, python-indent-index)
1817 (python-indent-list, python-indent-list-length)
1818 (python-mode-running, python-pdbtrack-is-tracking-p)
1819 (python-preoutput-continuation, python-preoutput-leftover)
1820 (python-preoutput-result, python-preoutput-skip-next-prompt)
1821 (python-prev-dir/file, python-recursing)
1822 (python-saved-check-command, python-version-checked)
1823 (python-which-func-length-limit)
1824 (view-return-to-alist): Delete vars.
1825 (python-check-custom-command, python-dotty-syntax-table)
1826 (python-imenu-index-alist, python-indent-current-level)
1827 (python-indent-dedenters, python-indent-levels)
1828 (python-nav-beginning-of-defun-regexp)
1829 (python-nav-list-defun-positions-cache)
1830 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
1831 (python-shell-internal-buffer)
1832 (python-skeleton-available): New vars.
1833 (def-python-skeleton): Delete macro.
1834 (python-skeleton-define): New macro.
1835 (python-define-auxiliary-skeleton, python-rx): New macros.
1836 (python-insert-class): Delete command.
1837 (python-skeleton-class): New command.
1838 (python-insert-def): Delete command.
1839 (python-skeleton-def): New command.
1840 (python-insert-for): Delete command.
1841 (python-skeleton-for): New command.
1842 (python-insert-if): Delete command.
1843 (python-skeleton-if): New command.
1844 (python-insert-try/except, python-insert-try/finally): Delete commands.
1845 (python-skeleton-try): New command.
1846 (python-insert-while): Delete command.
1847 (python-skeleton-while): New command.
1848 (python-backspace): Delete command.
1849 (python-indent-dedent-line-backspace): New command.
1850 (python-electric-colon): Delete command.
1851 (python-indent-electric-colon): New command.
1852 (python-guess-indent): Delete command.
1853 (python-indent-guess-indent-offset): New command.
1854 (python-shift-left): Delete command.
1855 (python-indent-shift-left): New command.
1856 (python-shift-right): Delete command.
1857 (python-indent-shift-right): New command.
1858 (python-find-function): Delete command.
1859 (python-nav-jump-to-defun): New command.
1860 (python-next-statement): Delete command.
1861 (python-nav-forward-sentence): New command.
1862 (python-previous-statement): Delete command.
1863 (python-nav-backward-sentence): New command.
1864 (python-fill-paragraph): Delete command.
1865 (python-fill-paragraph-function): New command.
1866 (python-send-buffer): Delete command.
1867 (python-shell-send-buffer): New command.
1868 (python-send-defun): Delete command.
1869 (python-shell-send-defun): New command.
1870 (python-send-region, python-send-region-and-go): Delete commands.
1871 (python-shell-send-region)
1872 (python-shell-switch-to-shell): New commands.
1873 (python-send-string): Delete command.
1874 (python-shell-send-string): New command.
1875 (python-switch-to-python): Delete command.
1876 (python-shell-switch-to-shell): New command.
1877 (python-describe-symbol): Delete command.
1878 (python-eldoc-at-point): New command.
1879 (python--set-prompt-regexp, python-args-to-list)
1880 (python-after-info-look, python-check-version)
1881 (python-check-comint-prompt, python-find-imports)
1882 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
1883 (python-unload-function, python-expand-template)
1884 (python-maybe-jython, python-preoutput-filter)
1885 (python-pdbtrack-get-source-buffer)
1886 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
1887 (python-pdbtrack-toggle-stack-tracking)
1888 (python-pdbtrack-track-stack-file, python-initial-text)
1889 (python-first-word, python-comment-line-p, python-send-command)
1890 (python-setup-brm, python-sentinel, python-set-proc)
1891 (python-skip-out, python-input-filter, python-outdent-p)
1892 (python-outline-level, python-backslash-continuation-line-p)
1893 (python-end-of-block, python-end-of-statement, python-mark-block)
1894 (python-beginning-of-block, python-beginning-of-statement)
1895 (python-blank-line-p, python-beginning-of-string)
1896 (python-open-block-statement-p): Delete functions.
1897 (python-indent-line, python-indent-line-1): Delete functions.
1898 (python-indent-line): New function.
1899 (python-indentation-levels): Delete function.
1900 (python-indent-calculate-levels): New function.
1901 (python-proc): Delete function.
1902 (python-shell-get-process): New function.
1903 (python-send-receive): Delete function.
1904 (python-shell-send-string-no-output): New function.
1905 (python-module-path): Delete function.
1906 (python-ffap-module-path): New function.
1907 (python-completion-at-point)
1908 (python-symbol-completions): Delete functions.
1909 (python-completion-complete-at-point): New function.
1910 (python-load-file): Delete function.
1911 (python-shell-send-file): New function.
1912 (python-calculate-indentation): Delete function.
1913 (python-indent-calculate-indentation): New function.
1914 (python-skip-comments/blanks): Delete function.
1915 (python-util-forward-comment): New function.
1916 (python-continuation-line-p): Delete function.
1917 (python-info-continuation-line-p): New function.
1918 (python-which-func, python-current-defun): Delete function.
1919 (python-info-current-defun): New function.
1920 (python-beginning-of-defun): Delete function.
1921 (python-nav-beginning-of-defun): New function.
1922 (python-close-block-statement-p)
1923 (python-block-end-p): Delete function.
1924 (python-info-closing-block): New function.
1925 (python-comint-output-filter-function)
1926 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
1927 (python-fill-comment, python-fill-decorator, python-fill-paren)
1928 (python-fill-string, python-imenu-make-element-tree)
1929 (python-imenu-make-tree, python-imenu-tree-assoc)
1930 (python-indent-context, python-indent-dedent-line)
1931 (python-indent-line-function)
1932 (python-indent-post-self-insert-function)
1933 (python-indent-toggle-levels)
1934 (python-info-assignment-continuation-line-p)
1935 (python-info-beginning-of-backlash)
1936 (python-info-block-continuation-line-p)
1937 (python-info-closing-block-message)
1938 (python-info-line-ends-backslash-p)
1939 (python-info-looking-at-beginning-of-defun)
1940 (python-info-ppss-context, python-info-ppss-context-type)
1941 (python-nav-list-defun-positions, python-nav-read-defun)
1942 (python-nav-sentence-end, python-nav-sentence-start)
1943 (python-pdbtrack-comint-output-filter-function)
1944 (python-pdbtrack-set-tracked-buffer)
1945 (python-shell-calculate-exec-path)
1946 (python-shell-calculate-process-environment)
1947 (python-shell-completion--do-completion-at-point)
1948 (python-shell-completion--get-completions)
1949 (python-shell-completion-complete-at-point)
1950 (python-shell-completion-complete-or-indent)
1951 (python-shell-get-or-create-process)
1952 (python-shell-get-process-name)
1953 (python-shell-internal-get-or-create-process)
1954 (python-shell-internal-get-process-name)
1955 (python-shell-internal-send-string, python-shell-make-comint)
1956 (python-shell-parse-command, python-shell-send-setup-code)
1957 (python-skeleton-add-menu-items)
1958 (python-util-clone-local-variables, python-util-position)
1959 (run-python-internal, python-indentation-levels)
1960 (python-nav-beginning-of-defun)
1961 (python-completion-complete-at-point): New functions.
1962 (run-python): Change arguments. New API requirements.
1963
4302f5ba
SM
19642012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
1965
f38ea36d
SM
1966 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
1967 (bug#11649).
1968
1969 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
1970 (macroexp--expand-all): Use it.
1971
4302f5ba
SM
1972 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
1973 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
1974 Use `cl-function' instead.
1975
33377562
JB
19762012-06-14 Juanma Barranquero <lekktu@gmail.com>
1977
1978 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
1979 Suggested by Stefan Monnier while discussing bug#11657.
1980
54c5ba1a
SS
19812012-06-14 Sam Steingold <sds@gnu.org>
1982
1983 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
1984
f9f1b1fe
AS
19852012-06-14 Andreas Schwab <schwab@linux-m68k.org>
1986
1987 * play/doctor.el (doctor-doc): Remove parameter and use
1988 doctor-sent instead of sent.
1989 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
1990
a81068ba
SM
19912012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
1992
5a315f9c
SM
1993 * files.el: Require cl-lib.
1994 (file-name-non-special): Replace case -> cl-case.
1995
1996 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
1997
a81068ba
SM
1998 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
1999 mapping from #' to function*.
2000
8cca9703
CY
20012012-06-13 Chong Yidong <cyd@gnu.org>
2002
2003 * mouse.el (mouse-drag-track): Do not set the mark if the user
2004 releases the mouse without selecting anything (Bug#11588).
2005
a12ac9d7
SM
20062012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
2007
ccf1dc18
SM
2008 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
2009 as well (bug#11646).
2010
ef62b23d
SM
2011 * loadup.el: Count byte-code functions as well.
2012
c4c8444a
SM
2013 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
2014 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
2015
a12ac9d7
SM
2016 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
2017 (bug#11649). Add cl-defun and cl-defmacro.
2018
87e6e64f
DA
20192012-06-13 Drew Adams <drew.adams@oracle.com>
2020
2021 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2022 Fix last change.
2023
682cefaf
MA
20242012-06-13 Michael Albinus <michael.albinus@gmx.de>
2025
2026 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
2027 Otherwise, it blocks in batch mode.
2028
773e1f08
JB
20292012-06-13 Juanma Barranquero <lekktu@gmail.com>
2030
2031 * help-mode.el (bookmark-make-record-default): Declare.
2032
60057926
CY
20332012-06-13 Chong Yidong <cyd@gnu.org>
2034
2035 * emacs-lisp/package.el (list-packages): Compute a list of
2036 packages that are newly-available since the last list-packages
2037 invocation.
2038 (package-menu--new-package-list): New var.
2039 (package-menu--generate, package-menu--print-info)
2040 (package-menu--status-predicate, package-menu-mark-install):
2041 Handle new status label "new".
2042
ad4d226c
SM
20432012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
2044
2045 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
2046 conversion to backquotes.
2047
f1a4e679
CY
20482012-06-12 Chong Yidong <cyd@gnu.org>
2049
2050 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
2051 Rename from gud-inhibit-global-bindings.
2052
2053 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
2054
2055 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
2056 hook from nxml-glyph-set-hook.
2057
2058 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
2059 declaration.
2060
2061 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
2062
2063 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
2064 Convert to defcustom.
2065
0c9e42b5
DA
20662012-06-12 Drew Adams <drew.adams@oracle.com>
2067
2068 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
2069 New functions.
2070 (help-mode): Use them.
2071
09e06855
GM
20722012-06-11 Glenn Morris <rgm@gnu.org>
2073
2074 * progmodes/fortran.el (fortran-font-lock-keywords-3):
2075 Use preprocessor face for directives.
2076 (fortran-directive-re): Doc fix.
2077
71adb94b
SM
20782012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2079
2eb87922
SM
2080 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
2081 conversion to backquotes (bug#11652).
2082
71adb94b
SM
2083 Fix compiler-expansion of CL's cXXr functions (bug#11673).
2084 * emacs-lisp/cl-lib.el (cl--defalias): New function.
2085 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
2086 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
2087 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
2088 (cl-ninth, cl-tenth): Mark them as inlinable.
2089 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
2090 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
2091 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
2092 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
2093 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
2094 (cl-list*, cl-adjoin): Don't put an autoload manually.
2095 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
2096 (cl--compiler-macro-list*): Add autoload cookie.
2097 (cl--compiler-macro-cXXr): New function.
2eb87922 2098
71adb94b
SM
2099 * help-fns.el (help-fns--compiler-macro): New function extracted from
2100 describe-function-1; follow aliases and use `compiler-macro' property.
2101 (describe-function-1): Use it.
2102
a6674402
CY
21032012-06-11 Chong Yidong <cyd@gnu.org>
2104
2105 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
2106 is uninstalled, if imagemagick is installed.
2107
bb3faf5b
SM
21082012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2109
2110 * emacs-lisp/cl-lib.el: Use lexical-binding.
2111 (cl-map-extents, cl-maclisp-member): Remove.
2112 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
2113 (cl--set-substring, cl--block-wrapper, cl--block-throw)
2114 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
2115 * emacs-lisp/cl-extra.el: Use lexical-binding.
2116 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
2117 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
2118 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
2119 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
2120 * emacs-lisp/cl-seq.el: Use lexical-binding.
2121 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
2122 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
2123 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
2124 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
2125 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
2126 CL's internals.
2127
2fe4b125
MA
21282012-06-11 Michael Albinus <michael.albinus@gmx.de>
2129
2130 Sync with Tramp 2.2.6-pre.
2131
2132 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
2133 `print-length' and `print-level' to nil, in order to avoid
2134 truncation. Reported by Christopher Schmidt
2135 <christopher@ristopher.com>.
2136
2137 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
2138
2139 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
2140 New defmacro.
2141 (tramp-compat-copy-directory): Add optional argument
2142 COPY-CONTENTS. It is not handled yet.
2143
2144 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
2145 (tramp-ftp-file-name-p): Simplify.
2146
2147 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
2148 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
2149 connection vector.
2150
2151 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
2152 (tramp-methods): Do not use `tramp-password-end-of-line'.
2153 (tramp-completion-function-alist-putty): Handle UNIX case.
2154 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
2155 (tramp-do-file-attributes-with-stat)
2156 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
2157 gid as real numbers. They could run out of integer range on cygwin.
2158 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
2159 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
2160 (tramp-open-connection-setup-interactive-shell):
2161 Use `tramp-cleanup'. Move check for busyboxes ...
2162 (tramp-find-shell): ... here. Simplify implementation.
2163 Set "remote-shell" property also for alternative shells.
2164 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
2165 If failing, a regular file would be written otherwise.
2166 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
2167 (tramp-find-inline-encoding): Cache the coding commands in the
2168 process cache. Apply test command on the remote side, if defined.
2169 (tramp-find-inline-compress): Cache the compress commands in the
2170 process cache.
2171 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
2172 when requested. Handle hops.
2173 (tramp-current-connection): New defvar.
87e6e64f
DA
2174 (tramp-maybe-open-connection): Use `tramp-cleanup'.
2175 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 2176 Handle user interrupt. (Bug#10187)
87e6e64f
DA
2177 (tramp-get-inline-compress, tramp-get-inline-coding):
2178 Read connection properties from the process cache.
2fe4b125
MA
2179
2180 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
2181 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
2182 New defconsts.
2fe4b125
MA
2183 (tramp-smb-prompt): Extend for powershell prompt.
2184 (tramp-smb-file-name-handler-alist): Add handlers for
2185 `process-file', `shell-command' and `start-file-process'.
2186 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
2187 (tramp-smb-winexe-shell-command-switch): New defcustoms.
2188 (tramp-smb-file-name-p): Simplify.
2189 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
2190 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
2191 (tramp-smb-shell-quote-argument): New defuns.
2192 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
2193 Implement using "tar". By this, time-stamps are preserved.
2194 (tramp-smb-handle-copy-file): Handle also the case of directories.
2195 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
2196 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
2197 Use `tramp-get-connection-buffer').
2fe4b125
MA
2198 (tramp-smb-handle-rename-file): Use "rename", when source and
2199 target are on the same share.
87e6e64f
DA
2200 (tramp-smb-maybe-open-connection): Handle wrong passwords.
2201 Use `tramp-smb-server-version'.
2fe4b125
MA
2202 (tramp-smb-wait-for-output): Remove prompt.
2203
2204 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
2205 (tramp-methods, tramp-rsh-end-of-line):
2206 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
2207 (tramp-save-ad-hoc-proxies): New defcustom.
2208 (tramp-completion-function-alist): Adapt docstring.
2209 (tramp-default-password-end-of-line): Remove defcustom.
2210 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
2211 (tramp-user-regexp, tramp-file-name-regexp-unified)
2212 (tramp-file-name-regexp-url): Extend regexp by hop separator.
2213 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
2214 (tramp-remote-file-name-spec-regexp): New defconst.
2215 (tramp-file-name-structure): Extend structure for hops.
2216 (tramp-get-method-parameter): Move up.
2217 (tramp-file-name-p, tramp-dissect-file-name)
2218 (with-parsed-tramp-file-name): Handle hops.
2219 (tramp-file-name-hop): New defun.
2220 (tramp-make-tramp-file-name): New optional arg HOP.
2221 (tramp-message-show-progress-reporter-message): New defvar.
2222 (tramp-with-progress-reporter): Use it. We cannot use
2223 `tramp-message-show-message' here, because this suppresses also
2224 error buffers.
2225 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
2226 `tramp-message-show-message' is nil.
2227 Use `tramp-get-connection-buffer'.
2fe4b125
MA
2228 (tramp-cleanup): New defun.
2229 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
2230 (tramp-file-name-handler): If `debug-on-error' is set, propagate
2231 an error unchanged.
2232 (tramp-completion-handle-file-name-all-completions): Handle hops.
2233 Fix an error when called from ido.
2234 (tramp-completion-dissect-file-name): Use better local variable
2235 name. Add hop to the vector.
2236 (tramp-handle-insert-file-contents): Use progress-reporter for the
2237 whole scenario.
2238 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
2239 to `t'.
2240 (tramp-check-for-regexp): Simplify search.
2241 (tramp-enter-password): Remove it. Move implementation ...
2242 (tramp-action-password): ... here.
2243 (tramp-mode-string-to-int, tramp-local-host-p)
2244 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
2245 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
2246 Set tramp-autoload cookie.
2fe4b125
MA
2247
2248 * net/trampver.el: Update release number.
2249
22502012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
2251 Michael Albinus <michael.albinus@gmx.de>
2252
2253 * net/tramp.el (tramp-set-completion-function): Fix docstring.
2254 (tramp-parse-group, tramp-parse-file)
2255 (tramp-parse-shostkeys-sknownhosts): New defuns.
2256 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
2257 (tramp-parse-shosts-group, tramp-parse-sconfig)
2258 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
2259 (tramp-parse-sknownhosts, tramp-parse-hosts)
2260 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
2261 Use them.
2262 (tramp-parse-passwd-group, tramp-parse-netrc-group)
2263 (tramp-parse-putty-group): Don't narrow.
2264 (tramp-parse-putty): Make a loop.
2265 (tramp-file-name-handler): Catch the `suppress' signal.
2266
72834e10
CY
22672012-06-11 Chong Yidong <cyd@gnu.org>
2268
2269 * image.el (imagemagick-register-types): Put the ImageMagick entry
2270 at the end of image-type-file-name-regexps.
2271
a4712e11
JB
22722012-06-11 Johan Bockgård <bojohan@gnu.org>
2273
2274 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
2275 (pcase, pcase-let*, pcase-dolist): Use them.
2276
82ad98e3
SM
22772012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
2278
2279 * emacs-lisp/pcase.el (pcase--let*): New function.
2280 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
2281 (pcase--expand): Use macroexp-let².
2282
f80efb86
SM
22832012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
2284
2285 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
2286 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
2287 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
2288 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
2289 * emacs-lisp/derived.el: Use pcase instead of `cl'.
2290 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
2291
31ca4639 22922012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 2293
31ca4639
CY
2294 * mail/rmail.el (rmail-yank-current-message): Leave point at
2295 correct position. (Bug#11660)
94f0aa34 2296
31ca4639 22972012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 2298
31ca4639 2299 * allout-widgets.el: Fix code header.
9e1b8ec4 2300
31ca4639 23012012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 2302
f80efb86
SM
2303 * cus-edit.el (customize-changed-options-previous-release):
2304 Bump to 24.1.
31ca4639 2305
642b6d30
AS
23062012-06-09 Andreas Schwab <schwab@linux-m68k.org>
2307
2308 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
2309
4f5d2ba1
CY
23102012-06-09 Chong Yidong <cyd@gnu.org>
2311
2312 * ebuff-menu.el (electric-buffer-list): Preserve header line.
2313
e75852fd
MR
23142012-06-09 Martin Rudalics <rudalics@gmx.at>
2315
2316 * window.el (special-display-popup-frame): Don't use
2317 window--display-buffer (Bug#11651).
2318
1e48e282
EZ
23192012-06-09 Eli Zaretskii <eliz@gnu.org>
2320
8a26b487
EZ
2321 Fix parallel builds: make sure loaddefs.el is not being written
2322 while Lisp files are compiled.
2323 (compile): Don't depend on 'mh-autoloads'.
2324 (compile-CMD, compile-SH): Depend on 'autoloads'.
2325 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
2326
1e48e282
EZ
2327 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
2328
6175e34b
CY
23292012-06-09 Chong Yidong <cyd@gnu.org>
2330
2331 * face-remap.el (face-remap-add-relative, face-remap-set-base)
2332 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
2333 Doc fixes (Bug#11225).
2334
d9857e53
SM
23352012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
2336
2337 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
2338 a function if there's a clear indication that it has a compiler-macro.
2339 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
2340 (macro-declarations-alist): Add arglist to declaration functions.
2341 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
2342 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
2343 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
2344 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
2345 Also add autoload to find the compiler macro.
2346 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
2347 (cl--compiler-macro-member, cl--compiler-macro-assoc)
2348 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
2349 (cl--compiler-macro-get): New functions, replacing calls to
2350 cl-define-compiler-macro.
2351 (cl-typep) [compiler-macro]: Use macroexp-let².
2352
f81298f8 23532012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
2354
2355 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
2356 string properly, fixes Bug#11473.
2357
4b56d0fe
CY
23582012-06-08 Chong Yidong <cyd@gnu.org>
2359
2360 * faces.el (set-face-attribute): Doc fix.
2361 (modify-face): Don't use :bold and :italic.
2362 (error, warning, success): Tweak definitions.
2363
2364 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
2365 (custom-modified, custom-set, custom-changed, custom-themed)
2366 (custom-saved, custom-button, custom-button-mouse)
2367 (custom-button-pressed, custom-state, custom-comment-tag)
2368 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
2369 (custom-group-subtitle): Use new-style face specs.
2370 (custom-invalid-face, custom-rogue-face, custom-modified-face)
2371 (custom-set-face, custom-changed-face, custom-saved-face)
2372 (custom-button-face, custom-button-pressed-face)
2373 (custom-documentation-face, custom-state-face)
2374 (custom-comment-face, custom-comment-tag-face)
2375 (custom-variable-tag-face, custom-variable-button-face)
2376 (custom-face-tag-face, custom-group-tag-face-1)
2377 (custom-group-tag-face): Remove obsolete face alias.
2378
2379 * epa.el (epa-validity-high, epa-validity-medium)
2380 (epa-validity-low, epa-mark, epa-field-name, epa-string)
2381 (epa-field-name, epa-field-body):
2382 * font-lock.el (font-lock-comment-face, font-lock-string-face)
2383 (font-lock-keyword-face, font-lock-builtin-face)
2384 (font-lock-function-name-face, font-lock-variable-name-face)
2385 (font-lock-type-face, font-lock-constant-face):
2386 * ido.el (ido-first-match, ido-only-match, ido-subdir)
2387 (ido-virtual, ido-indicator, ido-incomplete-regexp):
2388 * speedbar.el (speedbar-button-face, speedbar-file-face)
2389 (speedbar-directory-face, speedbar-tag-face)
2390 (speedbar-selected-face, speedbar-highlight-face)
2391 (speedbar-separator-face):
2392 * whitespace.el (whitespace-newline, whitespace-space)
2393 (whitespace-hspace, whitespace-tab, whitespace-trailing)
2394 (whitespace-line, whitespace-space-before-tab)
2395 (whitespace-space-after-tab, whitespace-indentation)
2396 (whitespace-empty):
2397 * emulation/cua-base.el (cua-global-mark):
2398 * eshell/em-prompt.el (eshell-prompt):
2399 * net/newst-plainview.el (newsticker-new-item-face)
2400 (newsticker-old-item-face, newsticker-immortal-item-face)
2401 (newsticker-obsolete-item-face, newsticker-date-face)
2402 (newsticker-statistics-face, newsticker-default-face):
2403 * net/newst-reader.el (newsticker-feed-face)
2404 (newsticker-extra-face, newsticker-enclosure-face):
2405 * net/newst-treeview.el (newsticker-treeview-face)
2406 (newsticker-treeview-new-face, newsticker-treeview-old-face)
2407 (newsticker-treeview-immortal-face)
2408 (newsticker-treeview-obsolete-face)
2409 (newsticker-treeview-selection-face):
2410 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
2411 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
2412 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
2413 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
2414 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
2415 (nxml-outline-active-indicator, nxml-outline-ellipsis):
2416 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
2417 (mpuz-text):
2418 * progmodes/vera-mode.el (vera-font-lock-number)
2419 (vera-font-lock-function, vera-font-lock-interface):
2420 * textmodes/table.el (table-cell): Use new-style face specs, and
2421 don't use the old :bold and :italic attributes.
2422
2423 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
2424 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
2425 (ebrowse-member-class, ebrowse-progress): Likewise.
2426 (ebrowse-tree-mark-face, ebrowse-root-class-face)
2427 (ebrowse-file-name-face, ebrowse-default-face)
2428 (ebrowse-member-attribute-face, ebrowse-member-class-face)
2429 (ebrowse-progress-face): Remove obsolete faces.
2430
2431 * progmodes/flymake.el (flymake-errline, flymake-warnline):
2432 Inherit from error and warning faces respectively.
2433
2434 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
2435 Likewise.
f80efb86
SM
2436 (flyspell-incorrect-face, flyspell-duplicate-face):
2437 Remove obsolete aliases.
4b56d0fe 2438
03310646
MA
24392012-06-08 Michael Albinus <michael.albinus@gmx.de>
2440
2441 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2442 Avoid infloop.
2443
513749ee
SM
24442012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2445
2446 * startup.el (argv, argi): Make lexically scoped.
2447 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
2448 * emacs-lisp/cl-macs.el: Use lexical-binding.
2449 Rename cl-bind-* to cl--bind-*.
2450 * files.el: Don't require `cl' since it doesn't use it.
2451 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
2452
595ef4ad
JB
24532012-06-08 Juanma Barranquero <lekktu@gmail.com>
2454
2455 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
2456 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
2457 instead of calling external sort utility.
2458 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
2459
e9f66fcb
EZ
24602012-06-08 Eli Zaretskii <eliz@gnu.org>
2461
2462 * descr-text.el (describe-char): Mention how to insert the
2463 character, if the current input method doesn't support it.
2464 See the discussion in this thread for the details:
2465 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
2466
3d10db47
SS
24672012-06-08 Sam Steingold <sds@gnu.org>
2468
2469 * bindings.el (global-map): Bind XF86Forward to next-buffer and
2470 XF86Back to previous-buffer.
2471 (minibuffer-local-map): Bind them to next-history-element and
2472 previous-history-element respectively.
2473 * help-mode.el (help-mode-map): Bind them to help-go-forward and
2474 help-go-back respectively.
2475 * info.el (Info-mode-map): Bind them to Info-history-forward and
2476 Info-history-back respectively.
2477 These are the keys next to Up on the ThinkPad keyboard.
2478
de7e2b36
SM
24792012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
2480
2481 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
2482 * emacs-lisp/cl-macs.el: Provide itself.
2483 (cl--labels-convert-cache): New var.
2484 (cl--labels-convert): New function.
2485 (cl-flet, cl-labels): New implementation with new semantics, relying on
2486 lexical-binding.
2487 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
2488 (cl-closure-vars, cl--function-convert-cache)
2489 (cl--function-convert): Move from cl-macs.el.
2490 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
2491 rename by removing the "cl-" prefix.
2492 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
2493
6fa6c4ae
SM
24942012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2495
2496 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
2497 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
2498 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
2499 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
2500 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
2501 (cl-hash-table-count): Add old compatibility aliases.
2502
2503 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
2504 Use macroexpand-all-environment instead.
2505 (cl--old-macroexpand): New var.
2506 (cl--sm-macroexpand): New function.
2507 (cl-symbol-macrolet): Use it during macro expansion.
2508 (cl--function-convert-cache): New var.
2509 (cl--function-convert): New function, extracted from
2510 cl-macroexpand-all.
2511 (cl-lexical-let): Use it.
2512
2513 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
2514 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
2515 (cl-member): Remove old alias.
2516
2517 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
2518 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
2519 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
2520 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
2521 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
2522 (cl-macroexpand-cmacs): Remove var.
2523 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
2524 Use macroexpand-all instead.
2525
4dd1c416
SM
25262012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2527
2528 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
2529 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
2530 (macroexp-copyable-p): New functions and macros.
2531 * emacs-lisp/edebug.el (edebug-unwrap):
2532 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
2533 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
2534 (pcase--let*): Remove.
2535 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
2536 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
2537 macroexp-const-p instead.
2538 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
2539
2540 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
2541 instead of "cl-" for internal definitions. Use macroexp-const-p.
2542 (cl-old-bc-file-form): Remove var.
2543 (cl-const-exprs-p): Remove fun.
2544 (cl-labels, cl-macrolet): Use backquote.
2545 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
2546 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
2547 (cl-define-setf-expander): Rename from cl-define-setf-method.
2548 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
2549
2550 * international/mule-cmds.el: Don't require CL.
2551 (view-hello-file): Don't use `letf'.
2552
ed8bd4d7
SM
25532012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
2554
7287f2f3
SM
2555 * tmm.el (tmm-prompt): Use string-prefix-p.
2556 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
2557 (tmm-add-prompt): Use minibuffer-completion-help.
2558 (tmm-delete-map): Remove.
2559
ed8bd4d7
SM
2560 * subr.el (kbd): Make it its own function.
2561
7b4cdbf4
SM
25622012-06-07 Stefan Merten <smerten@oekonux.de>
2563
2564 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
2565 Silence compiler warnings. Fix versions.
ed8bd4d7 2566 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 2567 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 2568 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
2569 (rst-package-emacs-version-alist): Correct Emacs version to
2570 represent major merge with upstream.
ed8bd4d7 2571 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 2572
2b48d721
GM
25732012-06-06 Glenn Morris <rgm@gnu.org>
2574
2575 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
2576 Only print environment variables if set.
2577
fa779ab0
SM
25782012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2579
2580 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
2581 (macroexp--cons): Rename from maybe-cons.
2582 (macroexp--accumulate): Rename from macroexp-accumulate.
2583 (macroexp--all-forms): Rename from macroexpand-all-forms.
2584 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
2585 (macroexp--expand-all): Rename from macroexpand-all-1.
2586
628299e0
SS
25872012-06-06 Sam Steingold <sds@gnu.org>
2588
2589 * calendar/calendar.el (calendar-in-read-only-buffer):
2590 Call `special-mode' to enable the standard read-only keybindings.
2591
b7bb5838
SM
25922012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2593
2594 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
2595 with "loading" messages (bug#11635).
2596
dfb308ba
MA
25972012-06-06 Michael Albinus <michael.albinus@gmx.de>
2598
2599 * files.el (enable-remote-dir-locals): New option.
2600 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
2601
0372ee92
MA
2602 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
2603 Ensure, that the temp directory is local.
2604
2605 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
2606 `temporary-file-directory'.
2607
eed0bb91
MA
2608 * progmodes/python.el (python-send-region): Ensure, that the
2609 temporary file is created also in the remote case.
2610
7a58f64d
GM
26112012-06-06 Glenn Morris <rgm@gnu.org>
2612
f7dd4e98
GM
2613 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
2614 (vc-rcs-update-changelog): Use it.
2615
090bd7cb 2616 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff.
276d5f5d 2617
7a58f64d
GM
2618 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
2619 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
2620 (vc-sccs-diff): Replace use of the external vcdiff script.
2621
daed4003
GM
26222012-06-05 Glenn Morris <rgm@gnu.org>
2623
2624 * ledit.el: Move to obsolete/.
2625
48c455c7
SS
26262012-06-05 Sam Steingold <sds@gnu.org>
2627
ed9265fc 2628 * calendar/calendar.el (calendar-exit): Reinstate the 2012-03-28
48c455c7
SS
2629 patch (Bug#11140).
2630
57a7d507
SM
26312012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
2632
090bd7cb 2633 * emacs-lisp/cust-print.el: Move to obsolete.
d32926ff 2634
53aacf21
SM
2635 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
2636 compiler-macro expansion.
2637
57a7d507
SM
2638 Add native compiler-macro support.
2639 * emacs-lisp/macroexp.el (macroexpand-all-1):
2640 Support compiler-macros directly. Properly follow aliases and apply
2641 the compiler macros more thoroughly.
2642 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
2643 macroexpand now properly follows aliases.
2644 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
2645 (cl-compiler-macroexpand): Use new prop.
2646 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
2647
2648 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
2649
51a5f9d8
MR
26502012-06-05 Martin Rudalics <rudalics@gmx.at>
2651
2652 * window.el (get-lru-window, get-mru-window, get-largest-window):
2653 New argument NOT-SELECTED to avoid picking the selected window.
2654 (window--display-buffer-1, window--display-buffer-2): Replace by
2655 new function window--display-buffer
2656 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
2657 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
2658 Use window--display-buffer.
51a5f9d8
MR
2659 (display-buffer-use-some-window): Remove temporary dedication
2660 hack by calling get-lru-window and get-largest-window with
2661 NOT-SELECTED argument non-nil. Call window--display-buffer.
2662
08f9f738
GM
26632012-06-05 Glenn Morris <rgm@gnu.org>
2664
2665 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
2666 Replace external vcdiff script.
2667
e364a2b7
SM
26682012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2669
2670 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
2671
041df390
CY
26722012-06-04 Chong Yidong <cyd@gnu.org>
2673
e364a2b7
SM
2674 * image.el (imagemagick-types-inhibit): Revert last change.
2675 Add INFO and M.
47b36b94 2676 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 2677
7c1898a7
SM
26782012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2679
2680 * emacs-lisp/cl-lib.el: Rename from cl.el.
2681 * emacs-lisp/cl.el: New compatibility file.
2682 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
2683 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
2684 to obey the "cl-" prefix.
2685 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
2686
0c3461de
GM
26872012-06-03 Glenn Morris <rgm@gnu.org>
2688
1e266c88
GM
2689 * emacs-lisp/authors.el (authors-aliases): Addition.
2690
0c3461de
GM
2691 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
2692 Fix :version.
2693
d8a52e15
SM
26942012-06-03 Stefan Merten <smerten@oekonux.de>
2695
2696 * textmodes/rst.el: Add comments.
2697 (rst-transition, rst-adornment): New faces.
2698 (rst-adornment-faces-alist): Make default safe to reevaluate.
2699 Fixes
2700 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
2701 Improve customization tags.
2702 (rst-define-level-faces): Clarify meaning.
2703
5205d6f6
CY
27042012-06-03 Chong Yidong <cyd@gnu.org>
2705
2706 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
2707 (compilation-mode-line-run, compilation-mode-line-exit):
2708 New faces.
5205d6f6
CY
2709 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
2710
757ee657
JD
27112012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
2712
7c1898a7
SM
2713 * progmodes/which-func.el (which-func-update-ediff-windows):
2714 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 2715
5f2c76c6
CY
27162012-06-03 Chong Yidong <cyd@gnu.org>
2717
2718 * bindings.el: Remove explicit help text from format-mode-line.
2719 It is now supplied by mode-line-default-help-echo.
2720 (mode-line-front-space, mode-line-end-spaces)
2721 (mode-line-misc-info): New variables.
2722 (mode-line-modes, mode-line-position): Move the default value to
2723 the variable definition.
2724 (mode-line-default-help-echo): New defcustom.
383f7350
CY
2725 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
2726 (mode-line-modified-help-echo): New functions.
2727 (mode-line-mule-info, mode-line-modified): Use them.
2728 (mode-line-eol-desc, propertized-buffer-identification):
2729 Consistency fixes for help text.
cbe46e5f
CY
2730 (mode-line-coding-system-map): Allow using mouse-3 to invoke
2731 set-buffer-file-coding-system (Bug#289).
2732 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 2733
f2d6a3df
SM
27342012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
2735
2736 * simple.el (execute-extended-command): Set real-this-command
2737 (bug#11506).
2738
37269466
CY
27392012-06-02 Chong Yidong <cyd@gnu.org>
2740
2741 Remove incorrect uses of "modeline" in comments, docstrings, and
2742 function/variable names (Bug#10329).
2743
2744 * cus-edit.el (mode-line):
2745 * dframe.el (dframe-mouse-hscroll):
2746 * emacs-lisp/re-builder.el:
2747 * emacs-lisp/easy-mmode.el (define-minor-mode):
2748 * frame.el (set-frame-name):
2749 * help.el (lookup-minor-mode-from-indicator):
2750 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
2751 * progmodes/cc-cmds.el (c-toggle-auto-newline)
2752 (c-toggle-hungry-state):
2753 * progmodes/antlr-mode.el (antlr-language-alist):
2754 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
2755 * progmodes/vhdl-mode.el (vhdl-mode):
2756 * progmodes/which-func.el (which-func, which-func-cleanup-function):
2757 * term/ns-win.el (ns-face-at-pos):
2758 * term/sup-mouse.el (sup-mouse-report):
2759 * textmodes/flyspell.el (flyspell-mode-line-string):
2760 * textmodes/ispell.el (ispell-highlight-face):
2761 * textmodes/reftex-global.el:
2762 * vc/vc-arch.el (vc-arch-mode-line-string):
2763 * vc/vc-cvs.el (vc-cvs-mode-line-string):
2764 * vc/vc-git.el (vc-git-mode-line-string):
2765 * vc/vc-hooks.el (vc-display-status)
2766 (vc-default-mode-line-string):
2767 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
2768
2769 * ansi-color.el (ansi-color-faces-vector): Change default faces.
2770
2771 * dired.el (dired-sort-set-mode-line): Rename from
2772 dired-sort-set-modeline. All callers changed.
2773
2774 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
2775 eshell-status-in-modeline.
2776
2777 * foldout.el (foldout-mode-line-string): Rename from
2778 foldout-modeline-string. All callers changed.
2779 (foldout-update-mode-line): Rename from foldout-update-modeline.
2780
2781 * subr.el (redraw-modeline): Make into obsolete alias.
2782
2783 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
2784 timeclock-modeline-display. Make old name an alias.
2785 (timeclock-update-mode-line): Likewise. All callers changed.
2786 (timeclock-mode-line-display): No need to check before using
2787 add-hook.
2788 (timeclock-relative, timeclock-day-over-hook)
2789 (timeclock-use-elapsed, timeclock-mode-string)
2790 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
2791
2792 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
2793 crisp-mode-modeline-string.
2794
2795 * play/solitaire.el (solitaire-build-mode-line): Rename from
2796 solitaire-build-modeline. All callers changed.
2797
2798 * play/zone.el (zone-hiding-mode-line): Rename from
2799 zone-hiding-modeline. All callers changed.
2800 (zone): Remove unusued `modeline-hidden-level' property.
2801
2802 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
2803 xscheme-modeline-initialize. All callers changed.
2804
2805 * strokes.el (strokes-lighter): Rename from
2806 strokes-modeline-string.
2807
2808 * textmodes/sgml-mode.el (html-face-tag-alist)
2809 (html-tag-face-alist): Use mode-line face instead of obsolete
2810 alias modeline.
2811
42152ee4
SM
28122012-06-02 Stefan Merten <smerten@oekonux.de>
2813
2814 * textmodes/rst.el: Always require `cl'.
4cf9b38d 2815 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 2816
95f520b5
CY
28172012-06-02 Chong Yidong <cyd@gnu.org>
2818
2819 * image.el (imagemagick-enabled-types): Rename from
2820 imagemagick-types-enable. Add many more types.
2821 (imagemagick-types-inhibit): Change default to nil.
2822 (imagemagick-filter-types): Caller changed.
2823
4a5f187a
SM
28242012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
2825
03fef3e6
SM
2826 * emacs-lisp/cl-macs.el: Use backquotes.
2827 (cl-transform-function-property): Use eval-and-compile rather than
2828 abusing `require'.
2829 (defstruct): Use declare-function instead of with-no-warnings.
2830
4a5f187a
SM
2831 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
2832 (byte-compile-output-docform): Re-add the print-circle bindings.
2833 (byte-compile-fix-header): Use #$ just because it's shorter.
2834 (byte-compile-output-file-form): Remove defun/defmacro.
2835
bd56924f
MR
28362012-06-01 Martin Rudalics <rudalics@gmx.at>
2837
2838 * simple.el (choose-completion): Remove now obsolete binding for
2839 owindow.
2840
046e38ce
MA
28412012-06-01 Michael Albinus <michael.albinus@gmx.de>
2842
2843 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
2844 in order to avoid "Stack overflow in regexp matcher".
2845
32d72c2f
GM
28462012-05-31 Glenn Morris <rgm@gnu.org>
2847
2848 * image.el: For clarity, call imagemagick-register-types at
2849 top-level, rather than relying on a custom :initialize.
2850 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
2851 (imagemagick-filter-types): New function. (Bug#7406)
2852 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
2853 If disabling support, remove elements altogether rather
2854 than using an impossible regexp.
2855 (imagemagick-types-inhibit): Give it the default init function.
2856
dd41169b
SM
28572012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2858
4a5f187a
SM
2859 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
2860 Handle arbitrary file name lengths (Bug#11585).
dd41169b 2861
efc00ab1 28622012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
2863
2864 * desktop.el (desktop-read): Clear previous and next buffers for
2865 all windows and bury *Messages* buffer (bug#11556).
2866
500fcedc
SM
28672012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
2868
2869 Add `declare' for `defun'. Align `defmacro's with it.
2870 * emacs-lisp/easy-mmode.el (define-minor-mode)
2871 (define-globalized-minor-mode): Don't autoload the var definitions.
2872 * emacs-lisp/byte-run.el: Use lexical-binding.
2873 (defun-declarations-alist, macro-declarations-alist): New vars.
2874 (defmacro, defun): Use them.
2875 (make-obsolete, define-obsolete-function-alias)
2876 (make-obsolete-variable, define-obsolete-variable-alias):
2877 Use `declare'.
2878 (macro-declaration-function): Mark obsolete.
2879 * emacs-lisp/autoload.el: Use lexical-binding.
2880 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
2881
6e8a1786
AM
28822012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2883
2884 * textmodes/ispell.el (ispell-with-no-warnings):
2885 Define as a macro.
500fcedc
SM
2886 (ispell-kill-ispell, ispell-change-dictionary):
2887 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
2888 `interactive-p'.
2889
61b108cc
SM
28902012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
2891
2892 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
2893 (macro-declaration-function): Move var from C code.
2894 (macro-declaration-function): Define function with defalias.
2895 * emacs-lisp/macroexp.el (macroexpand-all-1):
2896 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
2897 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
2898 defun/defmacro any more.
2899 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
2900 Provide fallback for unknown arglist.
2901 (byte-compile-arglist-warn): Change calling convention.
2902 (byte-compile-output-file-form): Move print-vars binding.
2903 (byte-compile-output-docform): Simplify accordingly.
2904 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
2905 (byte-compile-defmacro-declaration): Remove.
2906 (byte-compile-file-form-defmumble): Generalize to defalias.
2907 (byte-compile-output-as-comment): Return byte-positions.
2908 Simplify callers accordingly.
2909 (byte-compile-lambda): Use `assert'.
2910 (byte-compile-defun, byte-compile-defmacro): Remove.
2911 (byte-compile-file-form-defalias):
2912 Use byte-compile-file-form-defmumble.
2913 (byte-compile-defalias-warn): Remove.
2914
6d3f7c2f
SM
29152012-05-29 Stefan Merten <smerten@oekonux.de>
2916
2917 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 2918 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
2919
2920 (rst-mode-abbrev-table): Merge definition.
2921 (rst-mode): Make sure `font-lock-defaults' is buffer local.
2922 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
2923
6dbaa1c7
UJ
29242012-05-29 Ulf Jasper <ulf.jasper@web.de>
2925
2926 * calendar/icalendar.el
2927 (icalendar-export-region): Export UID properly.
2928
d209e2fb 29292012-05-29 Leo Liu <sdl.web@gmail.com>
61b108cc
SM
2930 * calendar/icalendar.el (icalendar-import-format):
2931 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
2932 (icalendar-import-format-uid): New.
2933 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
2934 Export UID.
2935
6876a58d
SM
29362012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
2937
2938 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
2939 different alternative patterns.
2940 (pcase-codegen): Be more careful to preserve identity.
2941 (pcase--u1): Don't forget to mark vars as used.
2942
2943 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
2944 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
2945 (byte-compile-from-buffer): ...rather than here.
2946
2947 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
2948 functions from byte-compile-function-environment.
2949
46b7967e
TN
29502012-05-29 Troels Nielsen <bn.troels@gmail.com>
2951
2952 * window.el (window-deletable-p): Avoid deleting the root window
2953 of a frame with an active minibuffer.
2954
69d565e2
MR
29552012-05-29 Martin Rudalics <rudalics@gmx.at>
2956
2957 * simple.el (choose-completion): Use quit-window (Bug#11567).
2958
a149fa51
CY
29592012-05-29 Chong Yidong <cyd@gnu.org>
2960
2961 * whitespace.el (whitespace-cleanup): Fix usage of
2962 whitespace-empty-at-bob-regexp (Bug#11492).
2963
2b311310
AH
29642012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2965
2966 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
2967 revert (Bug#11488).
2968
b9cb2387
JL
29692012-05-29 Juri Linkov <juri@jurta.org>
2970
2971 * isearch.el (isearch-mode-map): Bind `M-s _' to
2972 `isearch-toggle-symbol'. Bind `M-s c' to
2973 `isearch-toggle-case-fold'.
2974 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
2975 (isearch-forward): Add `M-s _' to the docstring.
2976 (isearch-forward-symbol, isearch-toggle-case-fold)
2977 (isearch-symbol-regexp): New functions. (Bug#11381)
2978
d5e61c1c
JL
29792012-05-29 Juri Linkov <juri@jurta.org>
2980
2981 * isearch.el (isearch-word): Add docstring. (Bug#11381)
2982 (isearch-occur, isearch-search-and-update): If `isearch-word' is
2983 a function, call it to get the regexp.
2984 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
2985 property `isearch-message-prefix' instead of the string "word ".
2986 (isearch-search-fun-default): For the case of `isearch-word',
2987 return a lambda that calls re-search-forward/re-search-backward
2988 with a regexp returned by `word-search-regexp' or by the function
2989 in `isearch-word'.
2990
8cbd80f7
JL
29912012-05-29 Juri Linkov <juri@jurta.org>
2992
2993 * isearch.el (isearch-search-fun-default): New function.
2994 (isearch-search-fun): Move default part to the new function
2995 `isearch-search-fun-default'.
2996 (isearch-search-fun-function): Set the default value to
2997 `isearch-search-fun-default'. (Bug#11381)
2998
2999 * comint.el (comint-history-isearch-end):
3000 Use `isearch-search-fun-default'.
3001 (comint-history-isearch-search): Use `isearch-search-fun-default'
3002 and remove spacial case for `isearch-word'.
3003 (comint-history-isearch-wrap): Remove spacial case for
3004 `isearch-word'.
3005
3006 * hexl.el (hexl-isearch-search-function):
3007 Use `isearch-search-fun-default'.
3008
3009 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
3010 Use `word-search-regexp' for `isearch-word'.
3011
3012 * misearch.el (multi-isearch-search-fun):
3013 Use `isearch-search-fun-default'.
3014
3015 * simple.el (minibuffer-history-isearch-search):
3016 Use `isearch-search-fun-default' and remove spacial case for
3017 `isearch-word'.
3018 (minibuffer-history-isearch-wrap): Remove spacial case for
3019 `isearch-word'.
3020
3021 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
3022 Remove spacial case for `isearch-word'.
3023 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
3024
85c8c5b6
AM
30252012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3026
3027 Decrease XEmacs incompatibilities.
3028 * textmodes/flyspell.el (flyspell-check-pre-word-p):
3029 Use `string-match'.
3030 (flyspell-delete-region-overlays): Use alternative definition for
3031 XEmacs.
3032 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
3033 (flyspell-word): Use `process-kill-without-query' if XEmacs.
3034 (flyspell-mode-on): Use `interactive-p' if XEmacs.
3035 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
3036 `define-obsolete-face-alias' under XEmacs, but old method.
3037
3038 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
3039 `with-no-warnings' definition or Emacs alias.
3040 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
3041 (ispell-word): Do not use `region-p' if XEmacs.
3042
8cab9efc
AM
30432012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3044
3045 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
3046 Check for `ispell-dictionary-base-alist' instead of full
3047 `ispell-dictionary-alist'.
3048 (ispell-init-process): Show spellchecker when starting new Ispell
3049 process.
3050
fda91268
RZ
30512012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3052
3053 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
3054 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
3055
694ea8e3
JB
30562012-05-27 Juanma Barranquero <lekktu@gmail.com>
3057
3058 * version.el (motif-version-string, gtk-version-string)
3059 (ns-version-string): Declare.
3060
e4d4f539
JL
30612012-05-27 Juri Linkov <juri@jurta.org>
3062
3063 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
3064 after the `eval-defun-1' specialcaseing
3065 like in `edebug-eval-defun' (bug#10181).
3066
3067 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
3068 like in `eval-defun-1'.
3069
33017faf 30702012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 3071
fda91268
RZ
3072 * mail/sendmail.el (mail-yank-region):
3073 Recognize rmail-yank-current-message in addition to insert-buffer.
3074 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
3075 a *mail* buffer created through rmail-start-mail with sendmail as
3076 mail-user-agent.
3077
33017faf
GM
30782012-05-27 Chong Yidong <cyd@gnu.org>
3079
3080 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
3081 Default to 256 (Bug#11267).
3082
3083 * help.el (describe-mode): Doc fix.
3084
04188bb9
GM
30852012-05-26 Glenn Morris <rgm@gnu.org>
3086
38264cc9
GM
3087 * w32-fns.el (w32-init-info): Remove.
3088 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
3089
eb7afdad
GM
3090 * info.el (info-initialize): For self-contained NS builds, put the
3091 included info/ directory at the front. (Bug#2791)
3092
04188bb9
GM
3093 * paths.el (Info-default-directory-list): Make it a defcustom,
3094 mainly so that we can use custom-initialize-delay.
3095
a179e3f7
SM
30962012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
3097
43416392
SM
3098 * subr.el (buffer-has-markers-at): Mark obsolete.
3099
a179e3f7 3100 * subr.el (lambda): Use declare.
43416392 3101
a179e3f7
SM
3102 * emacs-lisp/lisp-mode.el (lambda):
3103 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
3104
34a008d9
AH
31052012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3106
3107 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
3108
0a3b289f
GM
31092012-05-26 Glenn Morris <rgm@gnu.org>
3110
3111 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
3112
758c81e8
GM
31132012-05-25 Glenn Morris <rgm@gnu.org>
3114
f9f334f0
GM
3115 * paths.el: Remove no-byte-compile.
3116 * loadup.el: No need to load paths.el uncompiled.
3117
87eb79c2
GM
3118 * image.el (imagemagick-types-inhibit): Doc fix.
3119
758c81e8
GM
3120 * version.el: Remove no-byte-compile and associated formatting.
3121 * loadup.el: No need to load version.el uncompiled. AFAICS, this
3122 is ancient code from when there was an "inc-vers.el".
3123
e7e85dc0
SM
31242012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
3125
3126 * progmodes/gdb-mi.el: Minor style changes.
3127 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
3128 Turn into minor modes.
3129 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
3130 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
3131 (gdb-shell): Remove unneeded let-binding.
3132 (gdb-get-many-fields): Eliminate O(n²) behavior.
3133
f31237a4
EZ
31342012-05-25 Eli Zaretskii <eliz@gnu.org>
3135
3136 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
3137 platforms that don't link in fontset.c.
3138
bc1b21bb
JL
31392012-05-25 Juri Linkov <juri@jurta.org>
3140
3141 Use the same diff color scheme as in modern VCSes (bug#10181).
3142
3143 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
3144 to avoid confusion with `diff-added' that now uses green colors.
3145 (diff-removed): Use shades of red.
3146 (diff-added): Use shades of green.
3147 (diff-changed): Leave just the yellow color.
3148 (diff-use-changed-face): New variable.
3149 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
3150 how to highlight context diff changes.
3151 (diff-refine-change): Use shades of yellow.
3152 (diff-refine-removed): New face that uses shades of red.
3153 (diff-refine-added): New face that uses shades of green.
3154 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
3155 `diff-refine-removed' in the call to `smerge-refine-subst'
3156 depending on the value of `diff-use-changed-face'.
3157
3158 * vc/smerge-mode.el (smerge-mine): Use shades of red.
3159 (smerge-other): Use shades of green.
3160 (smerge-base): Use shades of yellow.
3161 (smerge-refined-change): Empty face.
3162 (smerge-refined-removed): New face that uses shades of red.
3163 (smerge-refined-added): New face that uses shades of green.
3164 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
3165 args `props-r' and `props-a', and use them. Doc fix.
3166 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
3167 on its value use different faces `smerge-refined-change',
3168 `smerge-refined-removed', `smerge-refined-added' in the call to
3169 `smerge-refine-subst'.
3170
3171 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
3172 Add face condition `min-colors 88' with shades of red.
3173 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
3174 `min-colors 88' with shades of green.
3175 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
3176 `min-colors 88' with shades of yellow.
3177
6df9112c
GM
31782012-05-24 Glenn Morris <rgm@gnu.org>
3179
ead5edc0
GM
3180 * paths.el (prune-directory-list, remote-shell-program): Move to...
3181 * files.el (prune-directory-list, remote-shell-program): ...here.
3182 For the latter, delay initialization, prefer ssh, just search PATH.
3183
f18b81e6
GM
3184 * paths.el (term-file-prefix): Move to faces.el (the only user).
3185 * faces.el (term-file-prefix): Move here, make it a defcustom.
3186
ee2f89a6
GM
3187 * paths.el (news-directory, news-path, news-inews-program):
3188 Move to gnus/nnspool.el.
61a583ca 3189
f8815e4c
GM
3190 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
3191
c8f3b42c
GM
3192 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
3193 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
3194 Make the latter a defcustom, with a delayed initialization.
3195
6df9112c
GM
3196 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
3197 These were deleted from Gnus itself late 2010.
3198
5dadff36
JB
31992012-05-22 Juanma Barranquero <lekktu@gmail.com>
3200
9e1701c6
JB
3201 * progmodes/which-func.el (which-func-ff-hook):
3202 Check against user-error, not error.
3203
bd7239f5 3204 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
3205 cl-specs.el, which no longer exists.
3206
3290526d
GM
32072012-05-22 Glenn Morris <rgm@gnu.org>
3208
3209 * info.el (info-emacs-bug): New command.
3210 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
3211 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
3212
ff0c3cfb
GM
32132012-05-21 Glenn Morris <rgm@gnu.org>
3214
3215 * makefile.w32-in (update-subdirs-SH):
3216 * Makefile.in (update-subdirs): Update for moved update-subdirs.
3217
5814f126
SM
32182012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
3219
a52c0aa0
SM
3220 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
3221
5814f126
SM
3222 * progmodes/compile.el (compilation-error-regexp-alist-alist):
3223 Simplify Maven regexp, and make sure the file can't start with a space
3224 (bug#11517).
3225
b847032c
GM
32262012-05-21 Glenn Morris <rgm@gnu.org>
3227
3228 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
3229 Scrap superfluous subshells.
3230
3858bfe7
SM
32312012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3232
3233 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
3234 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
3235
d14b0029
JB
32362012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
3237
3238 * calc/calc.el (calc-ensure-consistent-units): New variable.
3239
a52c0aa0
SM
3240 * calc/calc-units.el (math-consistent-units-p)
3241 (math-check-unit-consistency): New functions.
3242 (calc-quick-units, calc-convert-units):
3243 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
3244 is non-nil.
d14b0029
JB
3245 (calc-extract-units): Fix typo.
3246
60c4db3a
SM
32472012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3248
77f3b62e
SM
3249 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
3250
60c4db3a
SM
3251 * textmodes/flyspell.el: Commenting style, plus code simplifications.
3252 (flyspell-default-deplacement-commands): Don't spell check after
3253 repeated window/frame switches (e.g. triggered by mouse-movement).
3254 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
3255 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
3256 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
3257 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
3258 Remove unused vars.
3259 (flyspell-get-casechars, flyspell-get-not-casechars):
3260 Simplify; Don't bother removing a ] just to add it back.
3261 * textmodes/ispell.el (ispell-program-name): Use executable-find.
3262
d209e2fb 32632012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
b1a10716
RS
3264
3265 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
3266 New functions.
bd7239f5 3267 (math-function-table): Add support for more C functions.
b1a10716 3268
3f1b25b5
AM
32692012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3270
090bd7cb
JB
3271 * textmodes/flyspell.el (flyspell-check-pre-word-p)
3272 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
3273 Protect delay handling for otherchars against empty otherchars.
3f1b25b5 3274
b581bb5c
SM
32752012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
3276
3277 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
3278 their respective macro declarations.
3279 * skeleton.el (define-skeleton):
3280 * progmodes/compile.el (define-compilation-mode):
3281 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
3282 (define-ibuffer-filter):
3283 * emacs-lisp/generic.el (define-generic-mode):
3284 * emacs-lisp/easy-mmode.el (define-minor-mode)
3285 (define-globalized-minor-mode):
3286 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
3287 * emacs-lisp/byte-run.el (defsubst):
3288 * custom.el (deftheme): Add doc-string metadata.
3289
70b8ef8f
SM
32902012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3291
3292 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
3293
b1198e17
SM
32942012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3295
9abdc45d
SM
3296 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
3297
b1198e17
SM
3298 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
3299 * emacs-lisp/cl-macs.el: Idem.
3300 * emacs-lisp/cl-specs.el: Remove.
3301
4735906a
SM
33022012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3303
3304 Minor renaming of internal CL functions and variables.
3305 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
3306 (cl--position): Rename from cl-position.
3307 (cl--delete-duplicates): Rename from cl-delete-duplicates.
3308 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
3309 (cl--random-state): Rename from *random-state*.
3310
ac348012
SM
33112012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
3312
3313 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
3314 parens around the arg list (bug#11499).
3315
a0a79cde
JL
33162012-05-17 Juri Linkov <juri@jurta.org>
3317
3318 * isearch.el (word-search-regexp, word-search-backward)
3319 (word-search-forward, word-search-backward-lax)
3320 (word-search-forward-lax): Move functions from search.c
3321 (bug#10145, bug#11381).
3322
65034a51
AM
33232012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3324
090bd7cb
JB
3325 * textmodes/flyspell.el (flyspell-check-pre-word-p)
3326 (flyspell-check-word-p, flyspell-debug-signal-word-checked):
3327 Delay for otherchars as for normal word components.
65034a51 3328
1a72a195
SM
33292012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
3330
3331 * minibuffer.el (completion--sifn-requote): Fix last change.
3332 (minibuffer-local-must-match-filename-map):
3333 Move define-obsolete-variable-alias before its var.
3334
fdb058c2
SM
33352012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
3336
c41045e6
SM
3337 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
3338
036dfb8b
SM
3339 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
3340 behavior.
3341 (completion--string-equal-p): New function.
3342 (completion--twq-all): Use it to get better assertion failure data.
3343
2473256d
SM
3344 Only handle ".." and '..' quoting in shell-mode (bug#11466).
3345 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
3346 (shell--requote-argument): New functions.
3347 (shell-completion-vars): Use them.
3348 (shell--parse-pcomplete-arguments): Rename from
3349 shell-parse-pcomplete-arguments.
3350 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
3351 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
3352 Obey comint-file-name-quote-list.
3353
fdb058c2
SM
3354 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
3355 (smie-indent-keyword): Use it.
3356
51fa99f1
SM
33572012-05-14 Stefan Merten <smerten@oekonux.de>
3358
3359 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
3360
e18afed7 33612012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
3362
3363 * net/rlogin.el (rlogin-mode-map): Fix last change.
3364
e18afed7 33652012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
3366
3367 * mail/smtpmail.el (smtpmail-send-command): Send the command and
3368 the following \r\n using a single `process-send-string', since the
3369 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 3370 with two `process-send-string's (Bug#11444).
8633b1f4 3371
e18afed7 33722012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 3373
fdb058c2
SM
3374 * shell.el (shell-parse-pcomplete-arguments):
3375 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 3376
2d21d7f6
WJ
33772012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3378
e18afed7 3379 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
3380 (image-transform-scale, image-transform-right-angle-fudge): New vars.
3381 (image-transform-width, image-transform-fit-width): New functions.
3382 (image-transform-properties): Use them.
3383 (image-transform-check-size): New function.
3384 (image-toggle-display-image): Use it (for testing).
3385 (image-transform-set-rotation): Reduce angle mod 360.
3386 Delete obsolete comment.
3387
7102e6d0
WJ
33882012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
3389
3390 * image-mode.el: Fix scaling (bug#11399).
3391 (image-transform-resize): Doc fix.
3392 (image-transform-properties): Default scale is 1 and height should
3393 be an integer.
3394
06bc5e6e
SM
33952012-05-13 Johan Bockgård <bojohan@gnu.org>
3396
3397 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
3398 than hard-coding `car', to fix misbehavior when moving forward.
3399
0ae03b6a
CY
34002012-05-13 Chong Yidong <cyd@gnu.org>
3401
3402 * emacs-lisp/tabulated-list.el (tabulated-list-format)
3403 (tabulated-list-entries, tabulated-list-padding)
3404 (tabulated-list-sort-key): Make permanent-local.
3405
3406 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
3407 (electric-buffer-list): Put electric buffer menu
3408 command descriptions in this docstring, instead of the docstring
3409 of electric-buffer-menu-mode. Code cleanups.
3410 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
3411 Electric-buffer-menu-mode.
3412 (electric-buffer-update-highlight): Minor code cleanup.
3413
205a7391
MA
34142012-05-13 Michael Albinus <michael.albinus@gmx.de>
3415
3416 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
3417 (Bug#11447)
3418
e5bd0a28
SM
34192012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
3420
3421 Move define-obsolete-variable-alias before the var's definition.
3422 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
3423 * tooltip.el (tooltip-hook):
3424 * textmodes/reftex-toc.el (reftex-toc-map):
3425 * textmodes/reftex-sel.el (reftex-select-label-map)
3426 (reftex-select-bib-map):
3427 * textmodes/reftex-index.el (reftex-index-map)
3428 (reftex-index-phrases-map):
3429 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
3430 * progmodes/meta-mode.el (meta-mode-map):
3431 * novice.el (disabled-command-hook):
3432 * loadhist.el (unload-hook-features-list):
3433 * frame.el (blink-cursor):
3434 * files.el (find-file-not-found-hooks, write-file-hooks)
3435 (write-contents-hooks):
3436 * emulation/tpu-edt.el (GOLD-map):
3437 * emacs-lock.el (emacs-lock-from-exiting):
3438 * emacs-lisp/generic.el (generic-font-lock-defaults):
3439 * emacs-lisp/chart.el (chart-map):
3440 * dos-fns.el (register-name-alist):
3441 * dired-x.el (dired-omit-files-p):
3442 * desktop.el (desktop-enable):
3443 * cus-edit.el (custom-mode-hook):
3444 * buff-menu.el (buffer-menu-mode-hook):
3445 * bookmark.el (bookmark-read-annotation-text-func)
3446 (bookmark-exit-hooks):
3447 * allout.el (allout-mode-deactivate-hook)
3448 (allout-exposure-change-hook, allout-structure-added-hook)
3449 (allout-structure-deleted-hook, allout-structure-shifted-hook):
3450 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
3451 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
3452 comes before the corresponding variable's definition.
3453
ac59c2f6
CY
34542012-05-12 Chong Yidong <cyd@gnu.org>
3455
3456 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
3457 (Buffer-menu-mouse-select): Restore function (Bug#11459).
3458 (Buffer-menu-mode-map): Bind it.
3459 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 3460
dee6c9a3
SM
34612012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
3462
2171cea5
SM
3463 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
3464 (prolog-upper-case-string, prolog-lower-case-string)
3465 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
3466 (prolog-use-smie, prolog-smie-grammar): New vars.
3467 (prolog-smie-forward-token, prolog-smie-backward-token)
3468 (prolog-smie-rules): New funs.
3469 (prolog-comment-indent): Remove.
3470 (prolog-mode-variables): Use default comment indentation instead.
3471 Setup SMIE.
3472 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
3473 (prolog-mode): Don't call them any more.
3474 (prolog-electric-colon, prolog-electric-dash)
3475 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
3476
aa0382bd
SM
3477 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
3478
dbacb4bd
SM
3479 * minibuffer.el (completion--twq-all): Again, allow case differences.
3480
13bdd94c
SM
3481 * term.el: Move keymap initialization code to be more idiomatic.
3482 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
3483 (term-terminal-menu): Move initialization into declaration.
3484 (term-escape-char): Let the user set it in her .emacs.
3485
ff46c759
SM
3486 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
3487 Provide SMIE-based indentation (not enabled by default yet).
3488 (sh-mode-map): Don't bind electric keys.
3489 Use electric-pair-mode instead of skeleton-pair.
3490 (sh-assignment-regexp): Fit within 80 columns.
3491 (sh-indent-supported): Specify actual shell name instead of boolean.
3492 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
3493 (sh-maybe-here-document): Use it. Make obsolete.
3494 (sh-electric-here-document-mode) New minor mode.
3495 (sh-mode): Use it. Don't set sh-indent-supported-here here.
3496 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
3497 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
3498 (sh-smie-rc-grammar, sh-use-smie): New vars.
3499 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
3500 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
3501 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
3502 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
3503 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
3504 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
3505 (sh-set-shell): Use smie-setup if requested.
3506
dee6c9a3
SM
3507 * term.el (term-set-escape-char): Properly set term-escape-char.
3508 See http://stackoverflow.com/questions/10524656.
3509
9f9aa044
CY
35102012-05-10 Chong Yidong <cyd@gnu.org>
3511
3512 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
3513 Use url-generic-parse-url, and handle host names and Windows
3514 filenames properly.
3515 (ffap-url-unwrap-remote): Use url-generic-parse-url.
3516 (ffap-url-unwrap-remote): Accept list values, specifying a list of
3517 URL schemes to work on.
3518 (ffap--toggle-read-only): New function.
3519 (ffap-read-only, ffap-read-only-other-window)
3520 (ffap-read-only-other-frame): Use it.
3521 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
3522 necessary for ffap-url-unwrap-remote.
3523
836d29b3
DA
35242012-05-10 Dave Abrahams <dave@boostpro.com>
3525
3526 * cus-start.el (create-lockfiles): Add it.
3527
00fd78ed
CY
35282012-05-09 Chong Yidong <cyd@gnu.org>
3529
3530 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
3531 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
3532
666b903b 35332012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
3534
3535 * shell.el (shell-completion-vars): Fix last change (bug#11348).
3536
666b903b 35372012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
3538
3539 * ansi-color.el (ansi-color-process-output): Check for validity of
3540 comint-last-output-start before using it. This avoids a bad
3541 interaction with gdb-mi's input/output buffer.
3542
666b903b 35432012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
3544
3545 * files.el (dir-locals-read-from-file):
3546 Mention dir-locals in any error message.
3547
666b903b 35482012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
3549
3550 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
3551 package (Bug#11410).
3552
f677562b
CY
3553 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
3554 variables into description.
3555
666b903b 35562012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
3557
3558 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
3559 shell-delimiter-argument-list (bug#11348).
3560 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
3561
b499d8d0
JB
35622012-05-09 Juanma Barranquero <lekktu@gmail.com>
3563
8f6b6da8
JB
3564 * textmodes/rst.el: Silence byte-compiler warnings.
3565 (rst-re-alist, rst-reset-section-caches): Move around.
3566 (rst-re): Use `characterp', not `char-valid-p'.
3567 (font-lock-beg, font-lock-end): Declare.
3568
4824146a
JB
3569 * progmodes/idlw-shell.el (specs): Remove reference to deleted
3570 variable `idlwave-shell-activate-alt-keybindings' and simplify.
3571
b499d8d0
JB
3572 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
3573
ad89bb83
GM
35742012-05-08 Glenn Morris <rgm@gnu.org>
3575
3576 * files.el (auto-mode-alist): Treat ".make" like ".mk".
3577
8bba5a75
SM
35782012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
3579
49ed9c8e
SM
3580 * vc/log-edit.el: Add GNU coding standards highlighting.
3581 (log-edit-font-lock-gnu-style)
3582 (log-edit-font-lock-gnu-keywords): New vars.
3583 (log-edit-font-lock-keywords): New fun.
3584 (log-edit-mode): Don't fold case in font-lock.
3585 (log-edit-font-lock-keywords): Do not assume case-folding.
3586
07d00b56
SM
3587 * imenu.el: Misc cleanup. Make docstrings out of comments.
3588 Use lexical-binding.
3589 (imenu--index-alist, imenu--last-menubar-index-alist)
3590 (imenu-menubar-modified-tick): Use defvar-local.
3591 (imenu--split-menu): Remove unused var.
3592 (imenu--cleanup-seen): Declare as global.
3593 (imenu--cleanup): Use dolist.
3594
8bba5a75
SM
3595 * subr.el (defvar-local): Add debug spec and doc-string position.
3596
5075bdb5
GM
35972012-05-08 Glenn Morris <rgm@gnu.org>
3598
090bd7cb 3599 * language/burmese.el, language/cham.el, language/czech.el:
c052c904
GM
3600 * language/english.el, language/georgian.el, language/greek.el:
3601 * language/japanese.el, language/khmer.el, language/korean.el:
3602 * language/lao.el, language/misc-lang.el, language/romanian.el:
3603 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
3604 * language/thai.el, language/utf-8-lang.el:
3605 Remove no-byte-compile setting.
3606
5075bdb5
GM
3607 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
3608
06f679a7
AH
36092012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
3610
3611 * progmodes/make-mode.el (makefile-browse):
3612 Remove unnecessary interactive. (Bug#11324)
3613
03794570
GM
36142012-05-07 Glenn Morris <rgm@gnu.org>
3615
af8630f4
GM
3616 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
3617
03794570
GM
3618 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
3619
f0809a9d
SM
36202012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
3621
28be5ce7
SM
3622 * loadup.el: Preload newcomment.el.
3623 * newcomment.el: Move autoload-only code to toplevel.
3624
f0809a9d
SM
3625 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
3626 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
3627 Handle new :right-align column property.
3628 (tabulated-list-print-col): Idem, plus use `display' text-property to
3629 try and preserve alignment for variable pitch fonts.
3630
1241b724
CY
36312012-05-07 Chong Yidong <cyd@gnu.org>
3632
3633 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
3634 (tabulated-list-use-header-line): New var.
3635 (tabulated-list-init-header): Use it.
3636 (tabulated-list-print-fake-header): New function.
3637 (tabulated-list-print): Use it.
3638 (tabulated-list-sort-button-map): Add non-header-line commands.
3639 (tabulated-list-init-header): Add column name property to basic
3640 labels as well.
3641 (tabulated-list-col-sort): Handle non-header-line button case.
3642 (tabulated-list--sort-by-column-name): Fix a corner case.
3643
f0809a9d
SM
3644 * buff-menu.el (list-buffers--refresh):
3645 Handle Buffer-menu-use-header-line.
1241b724 3646
e5f9458f
CY
36472012-05-06 Chong Yidong <cyd@gnu.org>
3648
3649 * buff-menu.el: Convert to Tabulated List mode.
3650 (Buffer-menu-buffer+size-width): Make obsolete.
3651 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
3652 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
3653 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
3654 documentation into docstring of buffer-menu.
3655 (Buffer-menu-toggle-files-only): Add an informative message.
3656 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
3657 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
3658 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
3659 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
3660 (Buffer-menu-execute, Buffer-menu-select)
3661 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
3662 (Buffer-menu-bury): Use Tabulated List machinery.
3663 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
3664 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 3665 Delete.
e5f9458f
CY
3666 (list-buffers--refresh): New function.
3667 (list-buffers-noselect): Use it.
3668 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
3669 (Buffer-menu--pretty-file-name): New helper functions.
3670
3671 * loadup.el: Preload tabulated-list.
3672
3673 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
3674 tabulated-list-sort-column.
3675 (tabulated-list-init-header): Add the initial aligning space even
3676 if tabulated-list-padding is zero.
3677
e129292c
CS
36782012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
3679
3680 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
3681 whose cdr is not a cons cell correctly (bug#11038).
3682
6632d361
CY
36832012-05-06 Chong Yidong <cyd@gnu.org>
3684
e129292c
CS
3685 * emacs-lisp/tabulated-list.el (tabulated-list-format):
3686 Accept additional plist in column descriptors.
6632d361
CY
3687 (tabulated-list-init-header): Obey it.
3688 (tabulated-list-get-entry): New function.
3689 (tabulated-list-put-tag): Use it. Use string-width instead of
3690 length.
3691 (tabulated-list--column-number): New function.
3692 (tabulated-list-print): Use it.
e129292c
CS
3693 (tabulated-list-print-col): New function.
3694 Set `tabulated-list-column-name' property on each column's text.
6632d361 3695 (tabulated-list-print-entry): Use it.
e129292c
CS
3696 (tabulated-list-delete-entry, tabulated-list-set-col):
3697 New functions.
6632d361
CY
3698 (tabulated-list-sort-column): New command (Bug#11337).
3699
3cc99f68
CY
3700 * buff-menu.el (list-buffers): Move C-x C-b binding from
3701 buff-menu.el to bindings.el.
3702
3703 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
3704 :advertised-binding feature.
3705
52b61776
TN
37062012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
3707
3708 * progmodes/compile.el (compilation-internal-error-properties):
3709 Calculate start position correctly when end-col is set but
3710 end-line is not (Bug#11382).
3711
ebfe2597
WJ
37122012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
3713
3714 * man.el (Man-unindent): Use text-property-default-nonsticky to
3715 prevent untabify from inheriting face properties (Bug#11408).
3716
6d3f7c2f
SM
37172012-05-05 Stefan Merten <smerten@oekonux.de>
3718
3719 * textmodes/rst.el: Major merge with upstream development up to
3720 Docutils SVN r7399 / rst.el V1.2.1.
3721
3722 Clarify maintainership and authors.
3723
3724 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
3725 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
3726 (rst-official-version, rst-official-cvs-rev, rst-version)
3727 (rst-package-emacs-version-alist): New functions and variables
3728 for version information.
3729
3730 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
3731 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
3732 (rst-mode-syntax-table, rst-mode): New and corrected functions
3733 and variables representing reStructuredText features.
3734
3735 (rst-re): New function for reStructuredText regexes. Use in
3736 many places.
3737
3738 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
3739 (rst-mode-map): Rebind keys.
3740
3741 (rst-mode-lazy, rst-font-lock-keywords)
3742 (rst-font-lock-extend-region)
3743 (rst-font-lock-extend-region-internal)
3744 (rst-font-lock-extend-region-extend)
3745 (rst-font-lock-find-unindented-line-limit)
3746 (rst-font-lock-find-unindented-line-match)
3747 (rst-adornment-level, rst-font-lock-adornment-level)
3748 (rst-font-lock-adornment-match)
3749 (rst-font-lock-handle-adornment-pre-match-form)
3750 (rst-font-lock-handle-adornment-matcher): Major revision of
3751 font-locking. Integrate with other code. Use `jit-lock-mode'.
3752
3753 (rst-preferred-adornments, rst-adjust-hook)
3754 (rst-new-adornment-down, rst-preferred-bullets)
3755 (rst-preferred-bullets, rst-indent, rst-indent-width)
3756 (rst-indent-field, rst-indent-literal-normal)
3757 (rst-indent-literal-minimized, rst-indent-comment): Change,
3758 extend and improve customization.
3759
3760 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
3761 (rst-normalize-cursor-position, rst-get-decoration)
3762 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
3763 (rst-rstrip, rst-toc-insert-find-delete-contents)
3764 (rst-shift-fill-region, rst-compute-bullet-tabs)
3765 (rst-debug-print-tabs, rst-debug-mark-found)
3766 (rst-shift-region-guts, rst-shift-region-right)
3767 (rst-shift-region-left, rst-use-char-classes)
3768 (rst-font-lock-keywords-function)
3769 (rst-font-lock-indentation-point)
3770 (rst-font-lock-find-unindented-line-begin)
3771 (rst-font-lock-find-unindented-line-end)
3772 (rst-font-lock-find-unindented-line)
3773 (rst-font-lock-adornment-point, rst-font-lock-level)
3774 (rst-adornment-level-alist): Remove functions and variables.
3775
3776 (rst-compare-adornments, rst-get-adornment-match)
3777 (rst-suggest-new-adornment, rst-get-adornments-around)
3778 (rst-adornment-complete-p, rst-get-next-adornment)
3779 (rst-adjust-adornment, rst-display-adornments-hierarchy)
3780 (rst-straighten-adornments): Standardize function names to
3781 use "adornment" instead of "decoration". Correct callers.
3782 Similar standardizing in many places.
3783
3784 (rst-update-section, rst-adjust, rst-promote-region)
3785 (rst-enumerate-region, rst-bullet-list-region)
3786 (rst-repeat-last-character): Correct use of `interactive'.
3787
3788 (rst-classify-adornment, rst-find-all-adornments)
3789 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
3790 (rst-find-leftmost-column, rst-repeat-last-character):
3791 Refactor functions.
3792
3793 (rst-find-title-line, rst-reset-section-caches)
3794 (rst-get-adornments-around, rst-adjust-adornment-work)
3795 (rst-arabic-to-roman, rst-roman-to-arabic)
3796 (rst-insert-list-pos, rst-insert-list-new-item)
3797 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
3798 New functions.
3799
3800 (rst-all-sections, rst-section-hierarchy)
3801 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
3802 New variables.
3803
3804 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
3805 configuration instead of only buffer. Change where necessary.
3806
3807 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
3808 (rst-shift-region, rst-adaptive-fill): New functions for
3809 indentation and filling.
3810
3811 (rst-comment-line-break, rst-comment-indent)
3812 (rst-comment-insert-comment, rst-comment-region)
3813 (rst-uncomment-region): New functions for handling comments.
3814
3815 (rst-compile): Quote shell arguments.
3816
3817 (rst-compile-pdf-preview, rst-compile-slides-preview):
3818 Delete temporary files after use.
3819
a43f98b3
GM
38202012-05-05 Glenn Morris <rgm@gnu.org>
3821
48176e8b
GM
3822 * calendar/cal-html.el: Optionally include holidays in the output.
3823 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
3824 (cal-html-holidays): New option.
3825 (cal-html-css-default): Add holiday entry.
3826 (holiday-in-range): Autoload it.
3827 (cal-html-htmlify-entry): Add optional class argument.
3828 (cal-html-htmlify-list): Add optional holidays argument.
3829 (cal-html-insert-agenda-days): Include holidays in the output.
3830 (cal-html-one-month): Maybe include holidays.
3831
a43f98b3
GM
3832 * calendar/holidays.el (holiday-in-range):
3833 Move here from cal-tex-list-holidays.
3834 * calendar/cal-tex.el (cal-tex-list-holidays):
3835 Make it an obsolete alias for holiday-in-range. Update all callers.
3836
fef9d149 38372012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
3838
3839 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
3840 Nextstep.
3841
248da2f4
RW
38422012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
3843
3844 * files.el (file-auto-mode-skip): New var.
3845 (set-auto-mode-1): Use it.
3846
f95e9344
SM
38472012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
3848
df96ab1e
SM
3849 * repeat.el: Use lexical-binding.
3850 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
3851 (repeat-undo-count): Remove.
3852 (repeat):
3853 * progmodes/octave-mod.el (octave-abbrev-start):
3854 * progmodes/f90.el (f90-abbrev-start):
3855 * face-remap.el (text-scale-adjust):
3856 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
3857
5342bb06
SM
3858 * emacs-lisp/pcase.el (pcase--let*): New function.
3859 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
3860 a bit more.
3861 (pcase--split-pred): Be more clever about ruling out overlap between
3862 a predicate and some constant pattern.
3863 (pcase--q1): Use `null' instead of (eq foo nil).
3864
f95e9344
SM
3865 * subr.el (setq-local, defvar-local): New macros.
3866 (kbd): Redefine as an alias.
3867 (with-selected-window): Leave unrelated frames alone.
3868 (set-temporary-overlay-map): New function.
3869
71873e2b
SM
38702012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3871
3872 * subr.el (user-error): New function.
3873 * window.el (switch-to-buffer):
3874 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
3875 (smerge-match-conflict):
3876 * simple.el (previous-matching-history-element)
3877 (next-matching-history-element, goto-history-element, undo-more)
3878 (undo-start):
3879 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
3880 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
3881 (next-file, tags-loop-scan, list-tags, complete-tag):
3882 * progmodes/compile.el (compilation-loop):
3883 * mouse.el (mouse-minibuffer-check):
3884 * man.el (Man-bgproc-sentinel, Man-goto-page):
3885 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
3886 (Info-history-forward, Info-follow-reference, Info-menu)
3887 (Info-extract-menu-item, Info-extract-menu-counting)
3888 (Info-forward-node, Info-backward-node, Info-next-menu-item)
3889 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
3890 (Info-next-reference, Info-prev-reference, Info-index)
3891 (Info-index-next, Info-follow-nearest-node)
3892 (Info-copy-current-node-name):
3893 * imenu.el (imenu--make-index-alist)
3894 (imenu-default-create-index-function, imenu-add-to-menubar):
3895 * files.el (basic-save-buffer, recover-file):
3896 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
3897 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
3898 (checkdoc-message-text, checkdoc-defun):
3899 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
3900 * cus-edit.el (customize-changed-options, customize-rogue)
3901 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
3902 (custom-variable-mark-to-reset-standard)
3903 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
3904 (custom-file):
3905 * completion.el (check-completion-length):
3906 * comint.el (comint-search-arg)
3907 (comint-previous-matching-input-string-position)
3908 (comint-previous-matching-input)
3909 (comint-replace-by-expanded-history-before-point, comint-send-input)
3910 (comint-copy-old-input, comint-backward-matching-input)
3911 (comint-goto-process-mark, comint-set-process-mark):
3912 * calendar/calendar.el (calendar-cursor-to-date): Use it.
3913 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
3914
8a61ee22
SM
39152012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3916
66408d1e
SM
3917 * dabbrev.el (dabbrev--ignore-case-p): New function.
3918 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
3919 Use it.
3920
8a61ee22
SM
3921 * files.el (automount-dir-prefix): Mark as obsolete.
3922
3c74813a
GM
39232012-05-04 Glenn Morris <rgm@gnu.org>
3924
3925 * patcomp.el, play/bruce.el: Move to obsolete/.
3926
0bfcf5c5
PE
39272012-05-04 Paul Eggert <eggert@cs.ucla.edu>
3928
3929 Fix minor Y10k bugs.
3930 * arc-mode.el (archive-unixdate):
3931 * autoinsert.el (auto-insert-alist):
3932 * calc/calc-forms.el (math-this-year):
3933 * emacs-lisp/copyright.el (copyright-current-year)
3934 (copyright-update-year, copyright):
3935 * tar-mode.el (tar-clip-time-string):
3936 * time.el (display-time-update):
3937 Don't assume years have 4 digits.
3938
78f3273a
CY
39392012-05-04 Chong Yidong <cyd@gnu.org>
3940
3941 * dos-w32.el (file-name-buffer-file-type-alist)
3942 (direct-print-region-use-command-dot-com):
3943 * ffap.el (ffap-menu-regexp):
3944 * find-file.el (ff-special-constructs):
3945 * follow.el (follow-debug):
3946 * forms.el (forms--debug):
3947 * iswitchb.el (iswitchb-all-frames):
3948 * ido.el (ido-all-frames):
3949 * emacs-lisp/timer.el (timer-max-repeats):
3950 * mail/feedmail.el (feedmail-mail-send-hook)
3951 (feedmail-mail-send-hook-queued):
3952 * mail/footnote.el (footnote-signature-separator):
3953 * mail/mailabbrev.el (mail-alias-separator-string)
3954 (mail-abbrev-mode-regexp):
3955 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
3956 * progmodes/idlwave.el (idlwave-libinfo-file)
3957 (idlwave-default-completion-case-is-down)
3958 (idlwave-library-routines): Convert defvars to defcustoms.
3959
3960 * mail/rmail.el (rmail-decode-mime-charset):
3961 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
3962 (idlwave-shell-fix-inserted-breaks)
3963 (idlwave-shell-activate-alt-keybindings)
3964 (idlwave-shell-use-breakpoint-glyph):
3965 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
3966
f7ae6719
SM
39672012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
3968
3969 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
3970
47086495
WS
39712012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
3972
3973 * progmodes/verilog-mode.el (font-lock-keywords):
3974 Fix mis-highligting auto. Reported by Craig Barner.
3975 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
3976 defines from global name space. Reported by Dan Dever.
3977 (verilog-auto-reset, verilog-auto-reset-widths)
3978 (verilog-auto-tieoff): Support using unbased numbers for
3979 AUTORESET and AUTOTIEOFF.
3980 (verilog-submit-bug-report): Update variable list.
3981 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
3982 parenthesis from not matching. Reported by Michael Rytting.
3983 (verilog-auto-template-lint): Fix hash error when linting modules
3984 with no used templates.
3985 (verilog-warn, verilog-warn-error)
3986 (verilog-warn-fatal): When non-interactive report multiple
3987 warnings before exiting. Suggested by Brad Dobbie.
3988 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
3989 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
3990 to report unused template errors. Reported by Brad Dobbie.
3991 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
3992 nets, bug438. Reported by Vns Blore.
3993 (verilog-auto-inout-module, verilog-auto-reg)
3994 (verilog-read-decls, verilog-read-sub-decls-sig)
3995 (verilog-signals-edit-wire-reg, verilog-signals-with):
3996 Fix passing of Verilog data types in ANSI input/output ports
3997 such as "output logic" into the AUTOs. Special case "wire" and
3998 "reg" for backwards compatibility presuming Verilog 2001.
3999 (verilog-auto-ascii-enum): Add "auto enum" as alias.
4000 (verilog-preprocess): Fix replication of preprocess output.
4001 Reported by Brad Dobbie.
4002 (verilog-auto-inst-interfaced-ports):
4003 Create verilog-auto-inst-interfaced-ports, bug429.
4004 Reported by Julian Gorfajn.
4005 (verilog-after-save-font-hook)
4006 (verilog-before-save-font-hook): New variable.
4007 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
4008 (verilog-save-font-mods): Wrap disabling fontification, reported
4009 by David Rogoff.
4010 (verilog-do-indent, verilog-pretty-declarations-auto)
4011 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
4012 Reported by Pierre-David Pfister.
4013 (verilog-set-auto-endcomments): Fix endtask auto comments outside
4014 of class declarations, bug292. Reported by Kevin Heilman.
4015 (verilog-read-decls): Fix 'parameter type' not appearing in
4016 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
4017 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
4018 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
4019 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
4020 Reported by David Kravitz.
4021
40222012-05-03 Michael McNamara <mac@mail.brushroad.com>
4023
4024 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
4025 assignment with tests in ifs and for loops.
4026 (verilog-extended-complete-re, verilog-complete-reg): Change so
4027 that DPI inport functions don't look like fuction declarations.
4028 (verilog-pretty-expr): Don't line up assignment
4029 operations to the test and increment in if and for loops
4030 (verilog-extended-complete-re, verilog-complete-reg): Change so
090bd7cb 4031 that DPI inport functions don't look like fuction declarations.
47086495 4032
2e51d4b5
KH
40332012-05-03 Kenichi Handa <handa@m17n.org>
4034
4035 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 4036 decoding, and show a warning message without signaling an error
2e51d4b5
KH
4037 (Bug#11282).
4038
2bd785a2
SM
40392012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
4040
4041 * emacs-lisp/bytecomp.el
4042 (byte-compile-file-form-custom-declare-variable): Compile all elements,
4043 since cconv.el might have introduced :fun-body, internal-make-closure,
4044 and friends for bytecomp to handle (bug#11391).
4045 * custom.el (defcustom): Avoid ((λ ..) ..).
4046
99d27583
SM
40472012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
4048
4049 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
4050
55a71479
JB
40512012-05-02 Juanma Barranquero <lekktu@gmail.com>
4052
4053 * notifications.el (dbus-debug):
4054 * term/linux.el (gpm-mouse-enable):
4055 * term/screen.el (xterm-register-default-colors): Declare.
4056
7b97c764
CY
40572012-05-02 Chong Yidong <cyd@gnu.org>
4058
2bc356d7
CY
4059 * cus-start.el (gc-cons-percentage, exec-suffixes)
4060 (dos-display-scancodes, dos-hyper-key, dos-super-key)
4061 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
4062 (make-cursor-line-fully-visible, void-text-area-pointer)
4063 (font-list-limit): Add customization data.
4064
7b97c764
CY
4065 * allout.el (allout-exposure-change-functions)
4066 (allout-structure-added-functions)
4067 (allout-structure-deleted-functions)
4068 (allout-structure-shifted-functions): Rename abnormal hooks from
4069 *-hook, and convert to defcustoms.
5d3385a0
JB
4070 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
4071 Convert to defcustoms.
7b97c764
CY
4072 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
4073
4074 * allout-widgets.el: Hook callers changed.
4075
90207a15 40762012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
4077
4078 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
4079 the yanked message in preference to the default value of
4080 buffer-file-coding-system.
4081
90207a15 40822012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 4083
5d3385a0
JB
4084 * window.el (display-buffer--action-function-custom-type):
4085 Fix entry.
d9558cad 4086
90207a15 40872012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
4088
4089 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
4090
d80ac57b
GM
40912012-05-01 Glenn Morris <rgm@gnu.org>
4092
976f7668
GM
4093 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
4094
beb83b5a
GM
4095 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
4096
d80ac57b
GM
4097 * cus-edit.el (custom-variable-documentation): Simplify with format.
4098
b593d6a9 40992012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
f1a71c6e 4100 Stefan Monnier <monnier@iro.umontreal.ca>
b593d6a9
AH
4101
4102 * simple.el (suggest-key-bindings, execute-extended-command):
4103 Move from keyboard.c.
4104
782fbf2a
CY
41052012-05-01 Chong Yidong <cyd@gnu.org>
4106
4107 * follow.el: Eliminate advice.
4108 (set-process-filter, process-filter, sit-for): Advice deleted.
4109 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
4110 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
4111 Vars deleted.
782fbf2a
CY
4112 (follow-auto): Use a :set function.
4113 (follow-mode): Rewritten. Don't advise process filters.
4114 (follow-switch-to-current-buffer-all, follow-scroll-up)
4115 (follow-scroll-down): Assume follow-mode is bound.
4116 (follow-comint-scroll-to-bottom)
4117 (follow-align-compilation-windows): New functions.
4118 (follow--window-sorter): New function.
4119 (follow-all-followers): Use it to explicitly sort windows by their
4120 positions; don't make assumptions about next-window order.
4121 (follow-windows-start-end, follow-delete-other-windows-and-split)
4122 (follow-calc-win-start): Doc fix.
4123 (follow-windows-aligned-p, follow-select-if-visible): Don't call
4124 vertical-motion unnecessarily.
4125 (follow-adjust-window): New function.
4126 (follow-post-command-hook): Use it.
4127 (follow-call-set-process-filter, follow-call-process-filter)
4128 (follow-intercept-process-output, follow-tidy-process-filter-alist)
4129 (follow-stop-intercept-process-output, follow-generic-filter):
4130 Functions deleted.
4131 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
4132 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
4133 New functions, replacing advice on scroll-bar-* commands.
87233a14 4134 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
4135
4136 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
4137 (comint-postoutput-scroll-to-bottom): Use it.
4138 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 4139
290af740
GM
41402012-05-01 Glenn Morris <rgm@gnu.org>
4141
4142 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
4143 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
4144 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
4145 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
4146 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
4147 Remove no-byte-compile setting.
4148
6eac8dc9
SM
41492012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4150
4151 * minibuffer.el (completion-table-with-quoting): Fix compatibility
4152 all-completions code to not return a number in the last cdr.
4153
9cc7819c
LL
41542012-04-30 Leo Liu <sdl.web@gmail.com>
4155
4156 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
4157 read-only error.
4158
c93b886f
CY
41592012-04-29 Chong Yidong <cyd@gnu.org>
4160
4161 * follow.el (follow-calc-win-end): Rewrite to handle partial
4162 screen lines correctly (Bug#8390).
4163 (follow-avoid-tail-recenter): Minor cleanup.
4164
8b6c19f4
SM
41652012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
4166
4167 Avoid the obsolete `assoc' package.
4168 * speedbar.el (speedbar-refresh): Avoid adelete.
4169 (speedbar-file-lists): Simplify and avoid aput.
4170 * man.el (Man--sections, Man--refpages): New vars, replacing
4171 Man-sections-alist and Man-refpages-alist.
4172 (Man-build-section-alist, Man-build-references-alist):
4173 Use them; avoid aput.
4174 (Man--last-section, Man--last-refpage): New vars.
4175 (Man-follow-manual-reference): Use them.
4176 Use the `default' arg of completing-read.
4177 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
4178
c5bb7569
CY
41792012-04-27 Chong Yidong <cyd@gnu.org>
4180
d1d2e2e8
CY
4181 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
4182
15cd8efd
CY
4183 * startup.el (x-apply-session-resources): New function.
4184
4185 * term/ns-win.el (ns-initialize-window-system):
4186 * term/w32-win.el (w32-initialize-window-system):
4187 * term/x-win.el (x-initialize-window-system): Use it to properly
4188 set menu-bar-mode and other vars from X resources, even if the
4189 initial frame is not a window-system frame (Bug#2299).
4190
c5bb7569
CY
4191 * subr.el (read-key): Avoid running filter function when setting
4192 up temporary tool bar entries (Bug#9922).
4193
a8e7d6d7 41942012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
4195
4196 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
4197 (Bug#11344)
4198
a8e7d6d7 41992012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
4200
4201 * select.el (xselect--encode-string): New function, split from
4202 xselect-convert-to-string.
4203 (xselect-convert-to-string): Use it.
4204 (xselect-convert-to-filename, xselect-convert-to-os)
4205 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
4206 returned strings are properly encoded (Bug#11315).
4207
a8e7d6d7 42082012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
4209
4210 * simple.el (delete-active-region): Move to killing custom group.
4211
a8e7d6d7 42122012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
4213
4214 * progmodes/which-func.el (which-func-current): Quote %
4215 characters for mode-line processing.
4216
578c1d4b 42172012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
4218
4219 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
4220 reaching eob (Bug#11286).
4221
a8e7d6d7 42222012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
4223
4224 * progmodes/gdb-mi.el (gdb-control-level): New variable.
4225 (gdb): Make it buffer-local and init to zero.
4226 (gdb-control-commands-regexp): New variable.
4227 (gdb-send): Don't wrap in "-interpreter-exec console" if
4228 gdb-control-level is positive. Increment gdb-control-level
4229 whenever the command matches gdb-control-commands-regexp, and
4230 decrement it each time the command is "end". (Bug#11279)
4231
a8e7d6d7 42322012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
4233
4234 * window.el (adjust-window-trailing-edge, enlarge-window)
4235 (shrink-window, window-resize):
4236 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
4237 windows (Bug#11276).
4238
b3608390
CY
42392012-04-27 Chong Yidong <cyd@gnu.org>
4240
4241 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 4242 fix "missing prefix" warning. All callers changed.
b3608390 4243
797e6e88
SM
42442012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
4245
4246 * emacs-lisp/assoc.el: Move to obsolete/.
4247
e95a67dc
SM
42482012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4249
657c21e4 4250 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
4251
4252 * term/ns-win.el (ns-define-service):
4253 * progmodes/pascal.el (pascal-goto-defun):
4254 * progmodes/js.el (js--read-tab):
4255 * progmodes/etags.el (tags-lazy-completion-table):
4256 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
4257 * emacs-lisp/ewoc.el (ewoc--wrap):
4258 * emacs-lisp/assoc.el (aput, adelete, amake):
4259 * doc-view.el (doc-view-convert-current-doc):
4260 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
4261
cb3e7ae0
CY
42622012-04-26 Chong Yidong <cyd@gnu.org>
4263
dce04f7f
CY
4264 * image.el (image-type-from-buffer): Only return supported image
4265 type (Bug#9045).
4266
cb3e7ae0
CY
4267 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
4268 value, for symmetry with diff-end-of-hunk.
4269 (diff-split-hunk, diff-find-source-location)
4270 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
4271 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
4272 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
4273 compute the relevant hunk or file properly (Bug#6005).
4274 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
4275
0d42eb3e
SM
42762012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
4277
4278 * vc/vc-mtn.el:
4279 * vc/vc-hg.el:
4280 * vc/vc-git.el:
4281 * vc/vc-dir.el:
4282 * vc/vc-cvs.el:
4283 * vc/vc-bzr.el:
4284 * vc/vc-arch.el:
4285 * vc/vc.el: Replace lexical-let by lexical-binding.
4286 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
4287 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
4288 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
4289
f08ae1c9
CY
42902012-04-26 Chong Yidong <cyd@gnu.org>
4291
8b71081d
CY
4292 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
4293 (diff-mode-shared-map): Bind it to / and [remap undo].
4294
f08ae1c9
CY
4295 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
4296 (ediff-window-setup-function): Use it as the default, to set up
4297 windows based on whether the current frame is graphical (Bug#2138).
4298 (ediff-choose-window-setup-function-automatically): Make obsolete.
4299
4300 * vc/ediff-init.el: Always define ediff-pixel-width/height.
4301
ef24141c
SM
43022012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
4303
cc356a5d
SM
4304 * ffap.el: Remove old code for obsolete package.
4305 (ffap-complete-as-file-p): Remove.
4306
b4ff4f1f
SM
4307 Use completion-table-with-quoting for comint and pcomplete.
4308 * comint.el (comint--unquote&requote-argument)
4309 (comint--unquote-argument, comint--requote-argument): New functions.
4310 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
4311 (comint-quote-filename): Use regexp-opt-charset.
4312 (comint--common-suffix, comint--common-quoted-suffix)
4313 (comint--table-subvert): Remove.
4314 (comint-unquote-function, comint-requote-function): New vars.
4315 (comint--complete-file-name-data): Use them with
4316 completion-table-with-quoting.
4317 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
4318 * pcomplete.el (pcomplete-arg-quote-list)
4319 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
4320 (pcomplete-unquote-argument-function): Default to non-nil.
4321 (pcomplete-unquote-argument): Simplify.
4322 (pcomplete--common-quoted-suffix): Remove.
4323 (pcomplete-requote-argument-function): New var.
4324 (pcomplete--common-suffix): New function.
4325 (pcomplete-completions-at-point): Use completion-table-with-quoting
4326 and completion-table-subvert.
4327
79c4eeb4
SM
4328 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
4329 (minibuffer--double-dollars): Preserve properties.
4330 (completion--sifn-requote): New function.
4331 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
4332
ef24141c
SM
4333 * minibuffer.el: Add support for completion of quoted/escaped data.
4334 (completion-table-with-quoting, completion-table-subvert): New funs.
4335 (completion--twq-try, completion--twq-all): New functions.
4336 (completion--nth-completion): New function.
4337 (completion-try-completion, completion-all-completions): Use it.
4338
784e7d6e
LL
43392012-04-25 Leo Liu <sdl.web@gmail.com>
4340
dd2ac746
SM
4341 * progmodes/python.el (python-pdbtrack-get-source-buffer):
4342 Use compilation-message if available to find real filename.
784e7d6e 4343
07875ee7
CY
43442012-04-25 Chong Yidong <cyd@gnu.org>
4345
4346 * vc/diff-mode.el (diff-setup-whitespace): New function.
4347 (diff-mode): Use it.
4348
4349 * vc/diff.el (diff-sentinel):
4350 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
4351 Whitespace mode variables based on diff style (Bug#8612).
4352
5055880d
LL
43532012-04-25 Leo Liu <sdl.web@gmail.com>
4354
daf75653
LL
4355 * progmodes/python.el (python-send-region): Add suffix .py to the
4356 temp file.
4357
5055880d
LL
4358 * files.el (auto-mode-alist): Use javascript-mode instead.
4359
db9b177b
AH
43602012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
4361
ef24141c 4362 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b 4363
090bd7cb 4364 * net/soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 4365 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 4366 references, see Bug#9.
ef24141c 4367 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 4368 when receiving a fault reply.
ef24141c 4369 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b 4370
090bd7cb 4371 * net/soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 4372 (soap-inspect-simple-type): New function.
db9b177b 4373
090bd7cb 4374 * net/soap-client.el (soap-simple-type): New struct.
db9b177b 4375 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
4376 (soap-decode-basic-type, soap-encode-basic-type):
4377 support unsignedInt and double basic types.
db9b177b 4378 (soap-resolve-references-for-simple-type)
ef24141c
SM
4379 (soap-parse-simple-type, soap-encode-simple-type): New function.
4380 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b 4381
090bd7cb 4382 * net/soap-client.el (soap-default-xsd-types)
ef24141c
SM
4383 (soap-default-soapenc-types): Add integer, byte and anyURI types.
4384 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
4385 the local name of "soapenc:Array".
4386 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
4387 decoding integer, byte and anyURI xsd types.
4388
1fc6097b
CY
43892012-04-25 Chong Yidong <cyd@gnu.org>
4390
4391 * cus-edit.el (custom-buffer-create-internal): Update header text.
4392
afc6df87
EZ
43932012-04-25 Eli Zaretskii <eliz@gnu.org>
4394
4395 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
4396 settings on 'system-type', not on 'window-system'. On MS-Windows,
4397 set interactive-mode on in GDB.
4398
dfbd787f
SM
43992012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4400
4401 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
4402 (ruby-syntax-propertize-regexp): Remove.
4403 (ruby-syntax-propertize-function): Split regexp into chunks.
4404 Match following code directly.
4405
85222d44
DG
44062012-04-24 Dmitry Gutov <dgutov@yandex.ru>
4407
51a8ea2a
DG
4408 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
4409 (ruby-syntax-propertize-regexp): New function.
4410 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
4411 by a special keyword.
4412
85222d44
DG
4413 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
4414 (ruby-syntax-general-delimiters-goto-beg)
4415 (ruby-syntax-propertize-general-delimiters): New functions.
4416 (ruby-syntax-propertize-function): Use them to handle GDL.
4417 (ruby-font-lock-keywords): Move old handling of GDL...
4418 (ruby-font-lock-syntactic-keywords): .. to here.
4419 (ruby-calculate-indent): Adjust indentation for GDL.
4420
b613912b
MA
44212012-04-24 Michael Albinus <michael.albinus@gmx.de>
4422
b5380639
MA
4423 * notifications.el (top): Remove unneeded declarations.
4424 (notifications-specification-version): Change to "1.2".
e43042fe 4425 (notifications-interface, notifications-notify-method)
b613912b
MA
4426 (notifications-close-notification-method): Fix docstring.
4427 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
4428 (notifications-notify): Add :action-items, :resident and
4429 :transient hints. Change "image_data" to "image-data" and
4430 "image_path" to "image-path".
b613912b
MA
4431 (notifications-get-capabilities): New defun.
4432
257440aa
LL
44332012-04-24 Leo Liu <sdl.web@gmail.com>
4434
4435 * progmodes/python.el: Move hideshow setup to the end.
4436
b1bac16e
MR
44372012-04-24 Martin Rudalics <rudalics@gmx.at>
4438
4439 * window.el (handle-select-window): Clear echo area since this is
4440 no more done by read_char (Bug#11304).
4441
d81bd059
SM
44422012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
4443
4444 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
4445 and `/ M' to filter-derived-mode.
4446 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
4447 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
4448 (ibuffer-mark-by-mode): Use default rather than initial-input.
4449 (ibuffer-filter-by-derived-mode): Autoload and require-match.
4450
c4cf6d91
IA
44512012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
4452
4453 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
4454 (ibuffer-filter-by-derived-mode): New filter.
4455 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
4456
7511ded8
CY
44572012-04-23 Andreas Politz <politza@fh-trier.de>
4458
4459 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
4460
775c916b
CY
44612012-04-23 Chong Yidong <cyd@gnu.org>
4462
4463 * cus-edit.el (customize-apropos, customize-apropos-options):
4464 Disable matching of non-option variables (Bug#11176).
4465 (customize-option, customize-option-other-window)
4466 (customize-changed-options): Doc fix.
4467 (customize-apropos-options, customize-apropos-faces)
4468 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
4469
4470 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 4471 Fix word list splitting (Bug#11132).
46c71e23
CY
4472 (apropos-symbol, apropos-keybinding, apropos-label)
4473 (apropos-property, apropos-function-button)
4474 (apropos-variable-button, apropos-misc-button): New faces.
4475 (apropos-symbol-face, apropos-keybinding-face)
4476 (apropos-label-face, apropos-property-face, apropos-match-face):
4477 Variables removed (Bug#8396).
4478 (apropos-library-button, apropos-format-plist, apropos-print)
4479 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 4480
2df41f9c
MA
44812012-04-23 Michael Albinus <michael.albinus@gmx.de>
4482
4483 * net/xesam.el (xesam-mode-map): Use let-bound map in
4484 initialization. (Bug#11292)
4485
da00640a
AM
44862012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4487
4488 Preserve ispell session localwords when switching back to
4489 original buffer.
4490
090bd7cb
JB
4491 * textmodes/ispell.el (ispell-buffer-session-localwords):
4492 New buffer-local variable to hold buffer session localwords.
ed9265fc 4493 (ispell-kill-ispell): Add option 'clear to delete session
da00640a
AM
4494 localwords.
4495 (ispell-command-loop, ispell-change-dictionary)
4496 (ispell-buffer-local-words): Preserve session localwords when
4497 needed.
4498
090bd7cb
JB
4499 * textmodes/flyspell.el (flyspell-process-localwords)
4500 (flyspell-do-correct): Preserve session localwords when needed.
da00640a 4501
f621ccf5
AM
45022012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4503
090bd7cb
JB
4504 * textmodes/ispell.el (ispell-insert-word) Remove unneeded function
4505 using obsolete `translation-table-for-input'.
ef24141c
SM
4506 (ispell-word, ispell-process-line, ispell-complete-word):
4507 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 4508
c2d1019e
CY
45092012-04-22 Chong Yidong <cyd@gnu.org>
4510
4511 * cus-edit.el (custom-variable-menu)
4512 (custom-variable-reset-saved, custom-face-menu)
4513 (custom-face-reset-saved): If there is no saved value, make the
4514 "reset-saved" operation bring back the default (Bug#9509).
4515 (custom-face-state): Properly detect themed faces.
4516
eeddc531
CY
4517 * faces.el (face-spec-set): Stop supporting deprecated form of
4518 third arg.
4519
dcbf5805
MA
45202012-04-22 Michael Albinus <michael.albinus@gmx.de>
4521
4522 Move functions from C to Lisp. Make non-blocking method calls
4523 the default. Implement further D-Bus standard interfaces.
4524
ef24141c
SM
4525 * net/dbus.el (dbus-message-internal): Declare function.
4526 Remove unneeded function declarations.
dcbf5805
MA
4527 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
4528 (dbus-message-type-method-return, dbus-message-type-error)
4529 (dbus-message-type-signal): Declare variables. Remove local
4530 definitions.
4531 (dbus-interface-dbus, dbus-interface-peer)
4532 (dbus-interface-introspectable, dbus-interface-properties)
4533 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
4534 Adapt docstring.
4535 (dbus-interface-objectmanager): New defconst.
4536 (dbus-call-method, dbus-call-method-asynchronously)
4537 (dbus-send-signal, dbus-method-return-internal)
4538 (dbus-method-error-internal, dbus-register-service)
4539 (dbus-register-signal, dbus-register-method): New defuns, moved
4540 from dbusbind.c
4541 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
4542 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
4543 New defuns.
dcbf5805
MA
4544 (dbus-call-method-non-blocking): Make it an obsolete function.
4545 (dbus-unregister-object, dbus-unregister-service)
4546 (dbus-handle-event, dbus-register-property)
4547 (dbus-property-handler): Obey the new structure of
4548 `bus-registered-objects'.
4549 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
4550 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
4551 Use `dbus-call-method'.
4552
cf20dee0
CY
45532012-04-22 Chong Yidong <cyd@gnu.org>
4554
4555 * cus-edit.el (custom-commands, custom-reset-menu)
4556 (Custom-reset-standard): Tweak labels.
4557 (custom-reset-button-menu): Change default to t.
4558 (custom-buffer-create-internal): For the custom-reset-button-menu
4559 case, put the revert button first.
4560 (custom-group-subtitle): New face.
4561 (custom-group-value-create): Align docstring to a specific column.
4562
4563 * wid-edit.el (widget-documentation-link-add): Don't handle
4564 indentation in this function.
4565 (widget-documentation-string-indent-to): New function.
4566 (widget-documentation-string-value-create): Use it.
4567
4568 * autorevert.el (auto-revert):
4569 * epg-config.el (epg):
4570 * ibuffer.el (ibuffer):
4571 * mpc.el (mpc):
4572 * ses.el (ses):
4573 * eshell/eshell.el (eshell):
4574 * net/ange-ftp.el (ange-ftp):
4575 * progmodes/ebnf2ps.el (postscript):
4576 * progmodes/flymake.el (flymake):
4577 * progmodes/prolog.el (prolog):
4578 * progmodes/verilog-mode.el (verilog-mode):
4579 * progmodes/which-func.el (which-func):
4580 * term/xterm.el (xterm):
4581 * textmodes/picture.el (picture):
4582 * textmodes/tildify.el (tildify):
4583 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
4584 customization buffers.
4585
583e23bd
AM
45862012-04-22 Alan Mackenzie <acm@muc.de>
4587
4588 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
4589 Adding a ) can hide the resulting (..) from searches. Fix it.
4590 Bound the backward search to the position of the existing (.
4591
7dd51bf1
JB
45922012-04-21 Juanma Barranquero <lekktu@gmail.com>
4593
4594 * progmodes/verilog-mode.el (verilog-mode): Check whether
4595 which-func-modes is t before adding verilog-mode.
4596 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4597
d64a438f
LL
45982012-04-21 Leo Liu <sdl.web@gmail.com>
4599
7dd51bf1 4600 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 4601
081e8d65
MV
46022012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
4603
4604 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
4605 filling of the last column of a table (Bug#5635).
4606 (woman-find-next-control-line): New arg, specifying an additional
4607 regexp component for the control line.
4608 (woman2-roff-buffer): Use it.
4609 (woman-break-table): New function.
4610 (woman2-TS): Use it.
4611
46122012-04-21 Chong Yidong <cyd@gnu.org>
4613
4614 * woman.el (woman-set-buffer-display-table, woman-decode-region)
4615 (woman-horizontal-escapes, woman-negative-vertical-space)
4616 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
4617 (WoMan-warn-ignored): Use ?\s instead of ?\ .
4618
ed571ccb
SM
46192012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4620
4621 * minibuffer.el (completion-file-name-table): Complete user names.
4622
39773899
LL
46232012-04-20 Leo Liu <sdl.web@gmail.com>
4624
4625 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
4626 and pcase-let*.
4627
de6ff46d
CY
46282012-04-20 Chong Yidong <cyd@gnu.org>
4629
4630 * server.el (server-execute): Respect initial-buffer-choice if it
4631 is a string and there are no files to open (Bug#2825).
4632 (server-create-window-system-frame, server-create-tty-frame):
4633 Don't switch buffers here.
2d0e8e61
CY
4634 (server-process-filter): Only try to open a window system frame if
4635 compiled with graphical support (Bug#8314).
de6ff46d 4636
54071013
DN
46372012-04-20 Dan Nicolaescu <dann@gnu.org>
4638
4639 * battery.el (battery-echo-area-format): Display remaining time
4640 for sysfs backend too (Bug#11269).
4641 (battery-linux-sysfs): Fix conditional for the charge.
4642
f30d612a
CY
46432012-04-20 Chong Yidong <cyd@gnu.org>
4644
c07a4c0b 4645 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
4646 (gdb-inferior-io--init-proc): New function.
4647 (gdb-init-1): Use it.
4648 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
4649 responsible for allocating a new pty and hooking it to gdb when
4650 the old pty gets an EIO due to process exit.
4651 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
4652 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
4653 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
4654
2116e93c
EZ
46552012-04-20 Eli Zaretskii <eliz@gnu.org>
4656
4657 * window.el (window-min-size, window-sizable, window-min-delta)
4658 (window-max-delta, window--resizable, window-resizable)
4659 (window-total-size, window-full-height-p, window-full-width-p)
4660 (window-in-direction, window--resize-mini-window, window-resize)
4661 (window--resize-child-windows-normal)
4662 (window--resize-child-windows, window--resize-siblings)
4663 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 4664 (enlarge-window, shrink-window): Doc fixes.
2116e93c 4665
c07a4c0b 46662012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 4667
ef24141c
SM
4668 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
4669 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
4670 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
4671 pty process (Bug#11273).
4672 (gdb-update): New arg to suppress talking to the gdb process.
4673 (gdb-done-or-error): Use it.
4674 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
4675 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
4676 sentinel not being called.
4677
4678 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
4679
d02766ab
CY
4680 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
4681
c07a4c0b 46822012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
4683
4684 * net/network-stream.el (open-network-stream): Doc fix.
4685
c07a4c0b 46862012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
4687
4688 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
4689
c07a4c0b 46902012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
4691
4692 Ensure searching for keywords is case sensitive.
4693
4694 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
4695 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
4696 (c-defun-name, c-mark-function, c-cpp-define-name)
4697 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 4698 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 4699
ef24141c
SM
4700 * progmodes/cc-mode.el (c-font-lock-fontify-region):
4701 Bind case-fold-search to nil.
f0f6bc35 4702
c07a4c0b 47032012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
4704
4705 * mail/sendmail.el (mail-bury): Call return action with the right
4706 Rmail buffer (Bug#11242).
4707
9a864fa2
CY
4708 * server.el (server-process-filter): Handle corner case where both
4709 tty and nowait options are present (Bug#11102).
4710
539aa513
EZ
47112012-04-20 Eli Zaretskii <eliz@gnu.org>
4712
4713 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
4714 (top level): Put into the executable the ident-style '$Id:' tag on
4715 windows-nt as well.
539aa513 4716
cfc7d5da
SM
47172012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
4718
4719 * electric.el (electric-indent-post-self-insert-function): Check that
4720 electric-indent-mode is enabled in current buffer.
4721
5b01685c
JB
47222012-04-19 Juanma Barranquero <lekktu@gmail.com>
4723
4724 * imenu.el (imenu-progress-message): Restore; it is "used" in
4725 erc/erc-imenu.el and net/snmp-mode.el.
4726
4d6769e1
JB
47272012-04-19 Juanma Barranquero <lekktu@gmail.com>
4728
4729 * avoid.el (mouse-avoidance-mode): Mark unused arg.
4730 (mouse-avoidance-nudge-mouse): Remove unused binding.
4731
4732 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
4733
4734 * descr-text.el (describe-char):
4735 * progmodes/python.el (python-describe-symbol):
4736 Don't call `toggle-read-only', set `buffer-read-only'.
4737
4738 * imenu.el (imenu-default-goto-function): Mark unused args.
4739 (imenu-progress-message): Remove obsolete macro; all callers changed.
4740
4741 * subr.el (keymap-canonicalize): Remove unused binding.
4742 (read-passwd): Mark unused arg.
4743
4744 * tutorial.el (tutorial--display-changes): Remove unused binding.
4745 (tutorial--save-tutorial-to): Remove unused variable.
4746
4747 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
4748 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
4749 (package-generate-autoloads, package-menu--generate)
4750 (package-menu--find-upgrades): Remove unused bindings.
4751
4752 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
4753 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
4754 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
4755 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
4756 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
4757 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
4758 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
4759 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
4760 (cua-delete-char-rectangle): Mark unused args.
4761 (cua-align-rectangle): Remove unused binding.
4762
4763 * mail/rmail.el (compilation--message->loc)
4764 (epa--find-coding-system-for-mime-charset): Declare.
4765
4766 * net/dbus.el (dbus-register-service): Declare.
4767 (dbus-name-owner-changed-handler): Remove unused binding.
4768
4769 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
4770 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
4771 (nxml-scan-backward-within): Mark unused arg.
4772 (nxml-dynamic-markup-word): Remove unused binding.
4773
4774 * mouse.el (mouse-menu-major-mode-map):
4775 * emacs-lisp/authors.el (authors-scan-change-log)
4776 (authors-add-to-author-list):
4777 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
4778 * emacs-lisp/smie.el (smie-auto-fill):
4779 * mail/sendmail.el (mail-bury):
4780 * mail/unrmail.el (unrmail):
4781 * net/tls.el (open-tls-stream):
4782 * textmodes/picture.el (picture-mouse-set-point):
4783 Remove unused bindings.
4784
8c8fc5df
MA
47852012-04-19 Michael Albinus <michael.albinus@gmx.de>
4786
4787 * net/tramp.el (tramp-action-password): Let-bind
4788 `enable-recursive-minibuffers' to t.
4789
a77b0ac9
SS
47902012-04-18 Sam Steingold <sds@gnu.org>
4791
4792 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
4793 instead of 'string to accommodate values like [f11].
4794 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
4795 * progmodes/gdb-mi.el: Likewise.
4796
12a106a9
LL
47972012-04-18 Leo Liu <sdl.web@gmail.com>
4798
4799 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
4800 current buffer.
4801 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
4802 LOCAL is nil.
4803
bc6494ef
CY
48042012-04-18 Chong Yidong <cyd@gnu.org>
4805
4806 * simple.el (line-move): Use forward-line if in batch mode
4807 (Bug#11053).
4808
c09c46b2
CS
48092012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
4810
4811 * files.el (after-find-file): Do not try to add a final newline if
4812 the buffer is read-only (Bug#11156).
4813
5f6530ea
RS
48142012-04-17 Richard Stallman <rms@gnu.org>
4815
4816 * mail/rmail.el (rmail-start-mail):
4817 Pass (rmail-mail-return...) for the return-action.
4818 Pass (rmail-yank-current-message...) for the yank-action.
4819 (rmail-yank-current-message): New function.
4820 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
4821 (rmail-reply): Likewise.
4822 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
4823
4824 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 4825 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
4826 buffer, not newbuf.
4827
197b6f3c
JB
48282012-04-17 Juanma Barranquero <lekktu@gmail.com>
4829
4830 * server.el (server-ensure-safe-dir): Simplify.
4831
2311d8e5 48322012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 4833
2311d8e5
GM
4834 * emacs-lisp/smie.el: Provide smarter auto-filling.
4835 (smie-auto-fill): New function.
4836 (smie-setup): Use it.
98fb480e 4837
2311d8e5
GM
4838 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
4839
48402012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
4841
4842 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
4843 (comment-indent): Use it.
4844
2311d8e5 48452012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
4846
4847 * ses.el: The overall change is to add cell renaming, that is
4848 setting fancy names for cell symbols other than name matching
4849 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 4850 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 4851 (ses-create-cell-variable): New defun.
2311d8e5 4852 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
4853 (ses-relocate-formula): Relocate formulas only for cells the
4854 symbols of which are not renamed, i.e. symbols whose names do not
4855 match regexp "\\`[A-Z]+[0-9]+\\'".
4856 (ses-relocate-all): Relocate values only for cells the symbols of
4857 which are not renamed.
4858 (ses-load): Create cells variables as the (ses-cell ...) are read,
4859 in order to check row col consistency with cell symbol name only
4860 for cells that are not renamed.
4861 (ses-replace-name-in-formula): New defun.
4862 (ses-rename-cell): New defun.
4bdf2ad2 4863
fc72b15c
PO
48642012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
4865
4866 * progmodes/perl-mode.el (perl-indent-parens-as-block):
4867 New option (bug#11118).
4868 (perl-calculate-indent): Respect it.
4869
12e10e61
GM
48702012-04-17 Glenn Morris <rgm@gnu.org>
4871
4872 * dired-aux.el (dired-mark-read-string): Doc fix.
4873
30009afd
DA
48742012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
4875
4876 * dired-aux.el (dired-mark-read-string): Offer optional completion.
4877 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
4878
41f03f4d
GM
48792012-04-17 Glenn Morris <rgm@gnu.org>
4880
4881 * mouse.el (mouse-drag-track):
4882 * speedbar.el (speedbar-frame-mode):
4883 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
4884
f45f90f3
LL
48852012-04-16 Leo Liu <sdl.web@gmail.com>
4886
4887 * progmodes/python.el: Trivial cleanup.
4888
94ee8db5
GM
48892012-04-16 Glenn Morris <rgm@gnu.org>
4890
121b8917
GM
4891 * vc/vc.el (vc-string-prefix-p):
4892 * vc/pcvs-util.el (cvs-string-prefix-p):
4893 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
4894 * mpc.el (mpc-string-prefix-p):
4895 Make all of these into obsolete aliases for string-prefix-p.
4896 Update callers.
4897 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
4898
1197ecfa
GM
4899 * textmodes/two-column.el: Move custom options to the start.
4900 (frame-width): Remove compat definition.
4901 (2C-associate-buffer, 2C-dissociate):
4902 Use with-current-buffer rather than save-excursion.
4903 (2C-dissociate): Force a mode-line update.
4904 (2C-autoscroll): Use ignore-errors.
4905
099e7202
GM
4906 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
4907 Autoload trivia.
4908
bf350d6a
GM
4909 * emacs-lisp/cl-extra.el (*random-state*):
4910 Remove unnecessary declaration.
4911
0e829eab
GM
4912 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
4913
e3ad7552
GM
4914 * play/cookie1.el (cookie-snarf):
4915 Give an explicit error if input file cannot be read.
4916
68892d27
GM
4917 * play/yow.el (yow-file): Use expand-file-name rather than concat.
4918
20f0c46d
GM
4919 * progmodes/perl-mode.el (c-macro-expand):
4920 Remove unnecessary autoload (it is in loaddefs.el).
4921
5a0978ce
GM
4922 * textmodes/picture.el (picture-desired-column)
4923 (picture-update-desired-column): Convert comments to doc-strings.
4924 (picture-substitute): Remove function.
4925 (picture-mode-map): Initialize in the defvar.
4926
6b955486
GM
4927 * woman.el: Remove eval-after-load for tar-mode.
4928 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
4929 (woman-tar-extract-file): Autoload it.
4930
94ee8db5
GM
4931 * frame.el (automatic-hscrolling): Make this alias obsolete.
4932
177eca34
AM
49332012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4934
090bd7cb 4935 * textmodes/ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 4936 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
4937 (ispell-dictionary-base-alist): Revert to original XEmacs
4938 friendly version for default. [:alpha:] will be added in
090bd7cb 4939 `ispell-set-spellchecker-params' if needed.
177eca34 4940
c505aaeb
CY
49412012-04-16 Chong Yidong <cyd@gnu.org>
4942
b19dd9d1 4943 * image.el (imagemagick--file-regexp): New variable.
c505aaeb
CY
4944 (imagemagick-register-types): Use it.
4945 (imagemagick-types-inhibit): Add :set function. Allow new value
4946 of t to inhibit all types.
4947
4948 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
4949 so we can preload it.
4950
4951 * loadup.el (fboundp): Preload regexp-opt, needed by
4952 imagemagick-register-types.
4953
60efac0f
CY
49542012-04-15 Chong Yidong <cyd@gnu.org>
4955
4956 * frame.el (scrolling): Remove nearly unused customization group.
4957
4958 * scroll-all.el (scroll-all-mode): Move to windows group.
4959
5dd1713e
CY
49602012-04-15 Chong Yidong <cyd@gnu.org>
4961
4962 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
4963
e6fd457e
CY
49642012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4965
4966 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 4967 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 4968
e153c136
GM
49692012-04-15 Glenn Morris <rgm@gnu.org>
4970
4971 * simple.el (process-file-side-effects): Doc fix.
4972
e6fd457e 49732012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
4974
4975 * international/mule-cmds.el (set-language-environment): Doc fix.
4976
3603c3b1
JB
49772012-04-14 Juanma Barranquero <lekktu@gmail.com>
4978
4979 * server.el (server-auth-key, server-generate-key): Doc fixes.
4980 (server-get-auth-key): Doc fix. Use `string-match-p'.
4981 (server-start): Reflow docstring.
4982
e6de100c
LI
49832012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
4984
4985 * server.el (server-generate-key): `called-interactively-p'
4986 requires a parameter.
4987
29734c21
MN
49882012-04-14 Michal Nazarewicz <mina86@mina86.com>
4989
4990 * server.el (server-auth-key): New variable.
75f1671a 4991 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
4992 (server-start): Use the new variable and functions to allow
4993 setting a permanent server key (bug#9423).
4994
d65c9521
LL
49952012-04-14 Leo Liu <sdl.web@gmail.com>
4996
4997 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
4998
5ae255c7
PE
49992012-04-14 Paul Eggert <eggert@cs.ucla.edu>
5000
5001 Spelling fixes.
5002 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
5003 Emacs uses American spelling.
5004
d5e6342e
JB
50052012-04-14 Juanma Barranquero <lekktu@gmail.com>
5006
5007 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
5008 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
5009 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
5010 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
5011
ab036cd7
SM
50122012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
5013
5014 * progmodes/which-func.el (which-func-modes): Change default.
5015
35dc09a1 50162012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
5017
5018 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
5019 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
5020
35dc09a1 50212012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
5022
5023 * custom.el (custom-theme-set-variables): Doc fix.
5024
35dc09a1 50252012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
5026
5027 * international/mule.el (set-auto-coding-for-load): Doc fix.
5028
35dc09a1 50292012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 5030
35dc09a1
GM
5031 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
5032 imenu work again for Objective C Mode. Correct the *-index values,
5033 these having been disturbed by a previous change in 2011-08.
57f845ee 5034
0de3da9f
AM
5035 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
5036 Correct two search limits.
5037
35dc09a1 50382012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
5039
5040 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
5041
35dc09a1 50422012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
5043
5044 * international/characters.el: Fix sorting.
5045
35dc09a1 50462012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
5047
5048 * international/characters.el: Add more missing Latin case pairs.
5049
35dc09a1 50502012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
5051
5052 * files.el (dir-locals-set-class-variables): Doc fix.
5053
35dc09a1 50542012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 5055
3f1b5bf8
EZ
5056 * international/characters.el: Add set-case-syntax-pair call for
5057 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
5058 counterpart. (Bug#11209)
5059
9f847f41
EZ
5060 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
5061
35dc09a1 50622012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
5063
5064 * calendar/holidays.el (calendar-check-holidays): Doc fix.
5065
35dc09a1 50662012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 5067
35dc09a1
GM
5068 * textmodes/ispell.el (ispell-dictionary-base-alist):
5069 Add data for Hebrew.
e2627d21 5070
35dc09a1 50712012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 5072
35dc09a1
GM
5073 * net/rcirc.el (rcirc-cmd-quit):
5074 Revert 2012-03-18 change (Bug#11192).
5c14e333 5075
35dc09a1 50762012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
5077
5078 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
5079
35dc09a1 50802012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 5081
4517fe3a
SM
5082 * minibuffer.el (completion-in-region-mode-map):
5083 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 5084
b472a594
VD
50852012-04-13 Vivek Dasmohapatra <vivek@etla.org>
5086
5087 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
5088
09b95ce3
MY
50892012-04-13 Masatake YAMATO <yamato@redhat.com>
5090
5091 * minibuffer.el (minibuffer-local-filename-syntax): New variable
5092 to allow `C-M-f' and `C-M-b' to move to the nearest path
5093 separator (bug#9511).
5094
4b63a9ca
LI
50952012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
5096
5097 * avoid.el: Require cl when compiling. And also move the
5098 `provide' to the end.
5099
7b55b8bf
TV
51002012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5101
5102 * avoid.el (mouse-avoidance-banish-position): New variable.
5103 (mouse-avoidance-banish-destination): Use it (bug#10165).
5104
adedaa1f
LL
51052012-04-13 Leo Liu <sdl.web@gmail.com>
5106
5107 * progmodes/which-func.el (which-func-modes): Add objc-mode.
5108
70e74021
KB
51092012-04-13 Ken Brown <kbrown@cornell.edu>
5110
5111 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 5112 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
5113 (browse-url-filename-alist): For the same reason, don't modify
5114 file:// URLs on Cygwin.
5115
e75e89ba
SM
51162012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
5117
5118 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
5119 the region on shift if the binding is already shifted (bug#11221).
5120
82f289a4
GM
51212012-04-12 Glenn Morris <rgm@gnu.org>
5122
5123 * mail/mailpost.el: Move to obsolete/.
5124
d333dc4c
DA
51252012-04-12 Drew Adams <drew.adams@oracle.com>
5126
5127 * imenu.el (imenu--generic-function): Ignore invisible definitions
5128 (bug#10123).
5129
0d15b5ba
VD
51302012-04-12 Vivek Dasmohapatra <vivek@etla.org>
5131
5132 * hexl.el (hexl-bits): New variable.
5133 (hexl-options): Mention the variable in the doc string.
75f1671a 5134 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 5135 (hexl-mode): Mention the new variable.
75f1671a
JB
5136 (hexl-mode, hexl-current-address, hexl-current-address):
5137 Use the displen.
0d15b5ba
VD
5138 (hexl-ascii-start-column): New function.
5139 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
5140 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
5141
64a440db
AM
51422012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5143
5144 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
5145 '("-i" ENCODING), in 2 separate command-line arguments, to specify
5146 the encoding, as expected by hunspell.
5147
6decb6c2
SM
51482012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
5149
5150 * battery.el (battery--linux-sysfs-regexp): New const.
5151 (battery-status-function): Use it. Remove yeeloong special case.
5152 (battery-yeeloong-sysfs): Remove.
5153 (battery-echo-area-format): Remove yeeloong special case.
5154
088be6fb
SM
51552012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5156
6622e416
SM
5157 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
5158 Reported by Noah Friedman.
5159
088be6fb
SM
5160 * subr.el (read-passwd): Use read-string.
5161
b49f886e
LMI
51622012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
5163
5164 * vcursor.el (vcursor-move): Increase the priority of the overlay
5165 (bug#9663).
5166
a63067fc
DD
51672012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
5168
5169 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
5170 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
5171
ac3cf14a
WS
51722012-04-11 William Stevenson <yhvh2000@gmail.com>
5173
5174 * textmodes/artist.el (artist-mode): Convert artist-mode to use
5175 define-minor-mode (bug#10760).
5176
c4fc691b 51772012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 5178
4d6769e1 5179 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
5180 that directories matching `grep-find-ignored-files' won't be
5181 pruned (bug#10351).
5182
af23e2e5
CY
51832012-04-11 Chong Yidong <cyd@gnu.org>
5184
5185 * startup.el (command-line): Remove support for long-obsolete
5186 variable font-lock-face-attributes.
5187
ab7ce8c1
GM
51882012-04-11 Glenn Morris <rgm@gnu.org>
5189
5190 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
5191
de8c03dc
SM
51922012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5193
5194 * window.el (window--state-get-1): Obey window-point-insertion-type.
5195
050cc68b
LB
51962012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
5197
5198 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
5199 to previous function when point is on the first character of a
75f1671a 5200 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 5201
a38c310c
GM
52022012-04-11 Glenn Morris <rgm@gnu.org>
5203
effed0c2
GM
5204 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
5205 not just file-errors.
5206
a38c310c
GM
5207 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
5208 (vc-bzr-sha1): Use internal sha1.
5209
0221e323
SM
52102012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
5211
5212 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
5213
43956923
SG
52142012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
5215
5216 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
5217 that start in the middle of the line (bug#10496).
5218
6a8c9eaf
DN
52192012-04-10 Dan Nicolaescu <dann@gnu.org>
5220
5221 * battery.el (battery-linux-proc-acpi): Only one battery is
5222 discharged at a time, but that seems to confuse battery.el when
5223 computing `rate-type' for the battery not being discharged
5224 (bug#10332).
5225
1930bf5d
SM
52262012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
5227
2a718f6f
SM
5228 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
5229
599430d0
SM
5230 * international/quail.el: Use dolist and simplify.
5231 (quail-define-package, quail-update-keyboard-layout)
5232 (quail-define-rules): Use dolist.
5233 (quail-insert-kbd-layout, quail-get-translation): CSE.
5234
a2754b6c
SM
5235 * tmm.el: Use dolist, remove left over hook.
5236 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
5237 Use dolist.
5238 (calendar-load-hook): Don't mess with it.
5239
1930bf5d
SM
5240 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
5241 Use derived-mode-p. Run the diff asynchronously.
5242
9f67961c
LMI
52432012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5244
5245 * obsolete/mouse-sel.el: Add an Obsolete-since header.
5246
2a8ce227
JB
52472012-04-10 Juanma Barranquero <lekktu@gmail.com>
5248
5249 * misc.el: Display absolute path of loaded DLLs (bug#10424).
5250 (list-dynamic-libraries--loaded): New function.
5251 (list-dynamic-libraries--refresh): Use it.
5252
8f33b5f8
NW
52532012-04-10 Nathan Weizenbaum <nweiz@google.com>
5254
1930bf5d
SM
5255 * progmodes/python.el (python-fill-paragraph):
5256 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
5257 disabled (bug#7018).
5258
b12f0439
L
52592012-04-10 Laimonas Vėbra <laimonas.vebra@gmail.com> (tiny change)
5260
1930bf5d 5261 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
5262 DOS/MS Windows for the Baltic languages. There are still plenty
5263 of texts written in this encoding/codepage (bug#6519).
b12f0439 5264
57c3bd01
GM
52652012-04-10 Glenn Morris <rgm@gnu.org>
5266
5267 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
5268 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
5269
6c3eab30
FA
52702012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
5271
1930bf5d 5272 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
5273 next-line "n" and previous-line "p" in order to make recentf more
5274 consistent with ibuffer, dired or org-mode (bug#9387).
5275
24d78a88
LMI
52762012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
5277
bc72b5d9
LMI
5278 * image.el (put-image): Return the overlay created instead of the
5279 optional input string (bug#7834). Note that this may break code
5280 that is (for some reason or other) depending on `put-image'
5281 returning the string.
5282
bd2dba5a
LMI
5283 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
5284
74beb59f
LMI
5285 * simple.el (zap-to-char): Allow zapping using input methods
5286 (bug#1580).
5287
24d78a88
LMI
5288 * textmodes/fill.el (fill-region): Leave point and mark where they
5289 were before filling (bug#5399).
5290
263f20cd
GM
52912012-04-09 Glenn Morris <rgm@gnu.org>
5292
5293 * version.el (emacs-bzr-get-version):
5294 Handle lightweight checkouts of local branches.
5295
58d1f797
AS
52962012-04-09 Andreas Schwab <schwab@linux-m68k.org>
5297
263f20cd 5298 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 5299
b4d3bc10
CY
53002012-04-09 Chong Yidong <cyd@gnu.org>
5301
5302 * custom.el (custom-variable-p): Return nil for non-symbol
5303 arguments instead of signaling an error.
5304 (user-variable-p): Obsolete alias for custom-variable-p.
5305
5306 * apropos.el (apropos-variable):
5307 * files-x.el (read-file-local-variable):
5308 * simple.el (set-variable):
5309 * woman.el (woman-mini-help):
5310 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
5311
fd06db5d
GM
53122012-04-09 Glenn Morris <rgm@gnu.org>
5313
e5fcdb5e
GM
5314 * startup.el (normal-top-level): Don't look for leim-list.el
5315 in places where it will not be found. (Bug#910)
5316
fd06db5d
GM
5317 * international/mule-cmds.el (set-default-coding-systems):
5318 * files.el (normal-mode):
5319 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
5320 This function was removed with ucs-tables.el in 2008.
5321
b39bb7e1
EZ
53222012-04-08 Eli Zaretskii <eliz@gnu.org>
5323
5324 * textmodes/ispell.el (ispell-check-version): For hunspell, set
5325 ispell-encoding8-command to "-i", without a trailing space.
5326 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
5327 separate command-line arguments, to specify the encoding, since
5328 that's how hunspell expects it.
5329
5c5b8e23
GM
53302012-04-08 Glenn Morris <rgm@gnu.org>
5331
5332 * loadup.el: Load bindings before cus-start.
5333 This reduces somewhat the number of "rogue" settings in emacs -Q.
5334
a1ed8b05
GM
53352012-04-07 Glenn Morris <rgm@gnu.org>
5336
5337 * version.el (emacs-bzr-get-version): New function.
dfae128a 5338 (emacs-bzr-version): New variable.
a1ed8b05
GM
5339 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
5340 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
5341
b142f158
EZ
53422012-04-07 Eli Zaretskii <eliz@gnu.org>
5343
dfae128a
GM
5344 * international/uni-bidi.el, international/uni-category.el:
5345 * international/uni-combining.el, international/uni-decimal.el:
5346 * international/uni-decomposition.el, international/uni-digit.el:
5347 * international/uni-lowercase.el, international/uni-mirrored.el:
5348 * international/uni-name.el, international/uni-numeric.el:
5349 * international/uni-titlecase.el, international/uni-uppercase.el:
5350 Update for Unicode 6.1.
b142f158 5351
9078ead6
EZ
53522012-04-07 Eli Zaretskii <eliz@gnu.org>
5353
5354 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
5355
f23d2c7d
LMI
53562012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
5357
5358 * window.el (shrink-window): Mention the `window-min-height'
5359 variable in the doc string.
5360
0a0a3573
BG
53612012-04-05 Bastien Guerry <bzg@altern.org>
5362
5363 * color.el (color-lighten-name): Fix typo.
5364
e5248ac9
SM
53652012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5366
5367 * server.el (server--on-display-p): New function.
5368 (server--on-display-p): Use it.
5369
b4243e22
GV
53702012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
5371
5372 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
5373 (bug#11145).
5374
305d9f44
SM
53752012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
5376
5377 * comint.el (comint--common-quoted-suffix): Check string boundary
5378 before comparing (bug#11158).
5379 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
5380
3d439cd1
CY
53812012-04-04 Chong Yidong <cyd@gnu.org>
5382
321cc491
CY
5383 * minibuffer.el (completion-extra-properties): Doc fix.
5384
3d439cd1
CY
5385 * subr.el (delayed-warnings-hook): Doc fix.
5386
2d562c0f
DU
53872012-04-04 Daiki Ueno <ueno@unixuser.org>
5388
5389 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
5390 selection (Bug#11159).
5391 (epa-insert-keys): Inform that the default public key will be
5392 exported if no key is selected.
5393
4443f204
RS
53942012-04-04 Richard Stallman <rms@gnu.org>
5395
5396 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
5397
529c06b6
CY
53982012-04-03 Chong Yidong <cyd@gnu.org>
5399
5400 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
5401 mail-insert-file, not its obsolete alias mail-attach-file.
5402
66b907dc
MA
54032012-04-03 Michael Albinus <michael.albinus@gmx.de>
5404
5405 * notifications.el (notifications-notify): Fix docstring.
5406
c0ea195d
GM
54072012-04-02 Glenn Morris <rgm@gnu.org>
5408
5409 * emacs-lisp/authors.el (authors-aliases): Another addition.
5410
5ca64e00
MA
54112012-04-02 Michael Albinus <michael.albinus@gmx.de>
5412
5413 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
5414 `tramp-compat-call-process' instead of `tramp-local-call-process'.
5415 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
5416
42ee526b
CY
54172012-04-01 Chong Yidong <cyd@gnu.org>
5418
5419 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
5420 Handle root directory properly.
5421 (copy-directory): Caller changed.
5422
5423 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5424 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
5425
0b021094
GM
54262012-03-31 Glenn Morris <rgm@gnu.org>
5427
40f86458
GM
5428 * term/xterm.el (xterm-extra-capabilities): Doc fix.
5429
7019c177
GM
5430 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
5431
a1daddd6
GM
5432 * calendar/calendar.el (calendar-window-list)
5433 (calendar-hide-window): Restore. (Bug#11140)
5434 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
5435
0b021094
GM
5436 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
5437
40311efc
TV
54382012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
5439
5440 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
5441 Check if file is a symlink (Bug#10489).
5442
5443 * files.el (copy-directory): Likewise.
5444
5319014e
CY
54452012-03-30 Chong Yidong <cyd@gnu.org>
5446
5447 * image.el (imagemagick-types-inhibit)
5448 (imagemagick-register-types): Doc fix.
5449
935d1290
AM
54502012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
5451
090bd7cb 5452 * textmodes/ispell.el (ispell-get-extended-character-mode):
ef24141c 5453 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 5454 and treats ~word as ordinary words in pipe mode.
935d1290 5455
61c6e8fd
GM
54562012-03-30 Glenn Morris <rgm@gnu.org>
5457
5458 * tutorial.el (help-with-tutorial): Ensure local variables don't
5459 happen to make the buffer read-only. (Bug#11127)
5460
81fdff00
SM
54612012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
5462
5463 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
5464 (perl-calculate-indent): Return `noindent' in strings.
5465
6e7a6ec0
SS
54662012-03-28 Sam Steingold <sds@gnu.org>
5467
5468 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
5469 instead of the broken adhockery which does not prevent calendar
5470 buffers from being displayed at random after exit.
5471 (calendar-window-list, calendar-hide-window): Remove the broken
5472 adhockery.
5473
fee88ca0
GM
54742012-03-28 Glenn Morris <rgm@gnu.org>
5475
5476 * replace.el (query-replace-map): Doc fix.
5477
38de3354
AS
54782012-03-28 Andreas Schwab <schwab@linux-m68k.org>
5479
5480 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
5481 contents. (Bug#11109)
5482
b973155e
SM
54832012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
5484
5485 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
5486 (bug#11077).
5487 (avl-tree--check, avl-tree--check-node): New funs.
5488
dcb6e7b3
MR
54892012-03-27 Martin Rudalics <rudalics@gmx.at>
5490
5491 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
5492 (switch-to-prev-buffer, switch-to-next-buffer):
5493 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
5494 showing a buffer already is done on the same frame.
5495
b4fa35fa
GM
54962012-03-27 Glenn Morris <rgm@gnu.org>
5497
5498 * startup.el (mail-host-address): Doc fix.
5499
f9210e18
SM
55002012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
5501
5502 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
5503 than 197 variables.
5504
c0bf7753
AF
55052012-03-26 Ami Fischman <ami@fischman.org>
5506
5507 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
5508
33da7b16
GM
55092012-03-26 Glenn Morris <rgm@gnu.org>
5510
02243d9d
GM
5511 * files.el (save-buffers-kill-emacs): Doc fix.
5512
33da7b16
GM
5513 * startup.el (normal-top-level, command-line, command-line-1):
5514 Give them doc strings.
5515
e5a69fd0
EZ
55162012-03-25 Eli Zaretskii <eliz@gnu.org>
5517
5518 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 5519 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 5520
9a69676a
CY
55212012-03-25 Chong Yidong <cyd@gnu.org>
5522
4125cb8b
CY
5523 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
5524 theme if it was previously enabled before (Bug#11031).
5525
dd470960
CY
5526 * cus-theme.el (custom-theme-write-faces): Retrieve current face
5527 spec with custom-face-get-current-spec if its :shown-value is not
5528 determined yet (Bug#9337).
4125cb8b 5529 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 5530
9a69676a
CY
5531 * button.el (button-at): Minor addition to docstring.
5532
6e7e90fa
SL
55332012-03-24 Simon Leinen <simon.leinen@gmail.com>
5534
5535 * vc/vc.el (vc-merge): Fix a prompt.
5536
f06e2758
CY
55372012-03-24 Chong Yidong <cyd@gnu.org>
5538
5539 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
5540 point (Bug#9623).
5541
6e7e90fa
SL
5542 * button.el (button-at): Minor addition to docstring.
5543
b9d0879b
SM
55442012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
5545
5546 * newcomment.el (comment-choose-indent): No space after BOL.
5547
e71cebb3
SS
55482012-03-22 Sam Steingold <sds@gnu.org>
5549
5550 * window.el (switch-to-prev-buffer): Revert last patch because the
5551 bug turned out to be an advertised feature (Elisp manual 28.14).
5552
335aff35
GM
55532012-03-22 Glenn Morris <rgm@gnu.org>
5554
5555 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
5556 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
5557
c676576a
LMI
55582012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
5559
5560 * net/network-stream.el (network-stream-open-starttls): Make error
5561 message under Windows be less misleading.
5562
126f3d39
LW
55632012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
5564
5565 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
5566 understands (bug#9942).
5567
64fee311
CY
55682012-03-22 Chong Yidong <cyd@gnu.org>
5569
5570 * simple.el (end-of-visible-line): Handle return value of
5571 next-single-property-change properly (Bug#9371).
5572
a640d29a
KH
55732012-03-22 Kenichi Handa <handa@m17n.org>
5574
5575 * international/quail.el (quail-insert-kbd-layout): Fix previous
5576 change. To avoid unwanted bidi reordering, use
5577 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
5578
39675016
DG
55792012-03-21 Dmitry Gutov <dgutov@yandex.ru>
5580
5581 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
5582 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
5583 (ruby-beginning-of-indent): Be more careful with the difference
5584 between word-boundary and symbol boundary.
5585 (ruby-mode-syntax-table): Make : a symbol constituent.
5586
0a6934fc 55872012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 5588
3d008e4f
SM
5589 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
5590
0a6934fc
SM
55912012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5592
af67c9d7
SM
5593 * progmodes/etags.el (tags-completion-at-point-function):
5594 Improve last fix.
5595
1acad97c
SM
5596 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
5597
e298b5da
SS
55982012-03-21 Sam Steingold <sds@gnu.org>
5599
5600 * progmodes/etags.el (tags-completion-at-point-function):
5601 Avoid the error when point is inside the pattern.
5602
91d82a70
JY
56032012-03-21 John Yates <john@yates-sheets.org> (tiny change)
5604
5605 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
5606 line (Bug#10855).
5607
69188b79
CY
56082012-03-21 Drew Adams <drew.adams@oracle.com>
5609
5610 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
5611
99fc91fe
AK
56122012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
5613
5614 * ido.el (ido-set-current-directory, ido-read-internal)
5615 (ido-choose-completion-string, ido-completion-help): Handle nil
5616 value of ido-completion-buffer (Bug#11008).
5617
087bbb4c
SS
56182012-03-21 Sam Steingold <sds@gnu.org>
5619
5620 * window.el (switch-to-prev-buffer): Do not switch to a visible
5621 window previous buffer, just like with the frame previous buffers.
5622
fb5b8aca
CY
56232012-03-21 Chong Yidong <cyd@gnu.org>
5624
5625 * faces.el (make-face, make-empty-face, copy-face):
5626 * face-remap.el (face-remap-add-relative, face-remap-set-base):
5627 Doc fixes.
5628
dc9924b8
SM
56292012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
5630
5631 * wid-edit.el (widget-complete-field): Remove (bug#11051).
5632 (widget-complete): Remove broken use of it.
5633
f0bcceb9
CY
56342012-03-20 Chong Yidong <cyd@gnu.org>
5635
dc9924b8
SM
5636 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
5637 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
5638 characters.
5639
ee52ebf3
TH
56402012-03-20 Tassilo Horn <tassilo@member.fsf.org>
5641
5642 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
5643 to draw rectangles, not squares. (Regression introduced by revno
5644 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
5645
4c5779ab
CY
56462012-03-18 Chong Yidong <cyd@gnu.org>
5647
5648 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
5649 it is not yet defined (for temacs).
5650
15360934
LL
56512012-03-18 Leo Liu <sdl.web@gmail.com>
5652
dc9924b8 5653 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 5654
d9a8eb66
EZ
56552012-03-17 Eli Zaretskii <eliz@gnu.org>
5656
5657 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
5658 (ispell-choices-win-default-height, ispell-silently-savep)
5659 (ispell-dictionary-alist, ispell-encoding8-command)
5660 (ispell-check-version, ispell-aspell-find-dictionary)
5661 (ispell-valid-dictionary-list, ispell-words-keyword)
5662 (ispell-get-word, ispell-internal-change-dictionary)
5663 (ispell-region, ispell-skip-region-list)
5664 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
5665 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
5666 (ispell-message-text-end, ispell-message)
5667 (ispell-buffer-local-parsing): Doc fix.
5668
f02ff80d
J
56692012-03-13 Jambunathan K <kjambunathan@gmail.com>
5670
5671 * htmlfontify.el: Add support for code block fontification for ODT
5672 export (Bug #9914).
5673 (hfy-optimisations): Define new option
5674 `body-text-only'
5675 (hfy-fontify-buffer): Honor above setting.
5676 (hfy-begin-span, hfy-end-span): New routines factored out form
5677 `hfy-fontify-buffer'.
5678 (hfy-begin-span-handler, hfy-end-span-handler): New variables
5679 that permit insertion of custom tags.
5680 (hfy-fontify-buffer): Use above handlers.
5681 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
5682 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 5683 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 5684 over multiple runs. This is made possible by having the caller let
f02ff80d
J
5685 bind a special variable `hfy-user-sheet-assoc'.
5686 (htmlfontify-string): New defun.
5687 (hfy-compile-face-map): Make sure that the last char in the
5688 buffer is correctly fontified.
5689 (hfy-face-resolve-face): Whitespace only change.
5690
9ac7a13f
EZ
56912012-03-17 Eli Zaretskii <eliz@gnu.org>
5692
5693 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
5694 message more clear.
5695
e2b5bdd7
LL
56962012-03-16 Leo Liu <sdl.web@gmail.com>
5697
5698 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
5699
2e492df3
AM
57002012-03-16 Alan Mackenzie <acm@muc.de>
5701
5702 Further optimise the handling of large macros.
5703
5704 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
5705 limit to a call of `c-literal-limits'.
5706 (c-determine-+ve-limit): New function.
dc9924b8
SM
5707 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
5708 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
5709 In CASE 5B, restrict a search limit to 500.
5710 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
5711
5712 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
5713 Restrict macro bounds to +-500 from after-change's BEG END.
5714
50e94f0c
LL
57152012-03-16 Leo Liu <sdl.web@gmail.com>
5716
5717 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
5718
6f09f6ed
AH
57192012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
5720
5721 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 5722 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 5723
c7e73d51
GM
57242012-03-16 Glenn Morris <rgm@gnu.org>
5725
da986230
GM
5726 * view.el (view-buffer, view-buffer-other-window)
5727 (view-buffer-other-frame): Doc fixes re special mode-class.
5728
0835f01e
GM
5729 * subr.el (eval-after-load): If named feature is provided not from
5730 a file, run after-load forms. (Bug#10946)
5731
c7e73d51
GM
5732 * calendar/calendar.el (calendar-insert-at-column):
5733 Handle non-unit-width characters a bit better. (Bug#10978)
5734
3f2eafd1
CY
57352012-03-15 Chong Yidong <cyd@gnu.org>
5736
5737 * emacs-lisp/ring.el (ring-extend): New function.
5738 (ring-insert+extend): Extend the ring correctly (Bug#11019).
5739
5740 * comint.el (comint-read-input-ring)
5741 (comint-add-to-input-history): Grow comint-input-ring lazily.
5742
103af3fe
SM
57432012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
5744
663b1677
SM
5745 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
5746 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
5747
103af3fe
SM
5748 * imenu.el: Fix multiple inheritance breakage (bug#9199).
5749 (imenu-add-to-menubar): Don't add a redundant index.
5750 (imenu-update-menubar): Handle a dynamically composed keymap.
5751
899cb7cb
KY
57522012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
5753
5754 * mail/sendmail.el (mail-encode-header):
5755 Bind rfc2047-encode-encoded-words to nil.
5756
3809f91d
GM
57572012-03-13 Glenn Morris <rgm@gnu.org>
5758
5759 * calendar/calendar.el (calendar-string-spread):
5760 Handle non-unit-width characters a bit better. (Bug#10978)
5761
9e345a01
LL
57622012-03-13 Leo Liu <sdl.web@gmail.com>
5763
5764 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
5765 directory and file as argument (Bug#10822).
5766
4a07df36
KS
57672012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5768
5769 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
5770 For dynamically generated code, follow $PC.
5771 (gdb-disassembly-handler-custom): Handle no function name case.
5772
4aaa9356
TL
57732012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
5774
5775 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
5776 * emulation/ws-mode.el (ws-query-replace):
5777 * sort.el (sort-regexp-fields):
5778 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
5779
225979da
SM
57802012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5781
5782 * dabbrev.el: Fix cycle completion order (bug#10963).
5783 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
5784 (dabbrev-completion): Don't use an obarray; provide
5785 a cycle-sort-function.
5786
e2f1fdab
LL
57872012-03-12 Leo Liu <sdl.web@gmail.com>
5788
dc9924b8 5789 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
5790 (kill-do-not-save-duplicates): Doc fix.
5791
b19490ed
SM
57922012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5793
5794 * dabbrev.el: Fix cycle completion (bug#10963).
5795 Use lexical binding and wrap to 80 columns.
5796 (dabbrev-completion): Delay computing the list of completions.
5797
4b05d722
KH
57982012-03-12 Kenichi Handa <handa@m17n.org>
5799
5800 * international/quail.el (quail-insert-kbd-layout): Surround each
5801 row by LRO and PDF instead of inserting many LRMs. Pad the left
5802 and right of each non-spacing marks. Insert invisible space
5803 between lower and upper characters to prevent composition.
5804
dbbc2e69
SM
58052012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
5806
5807 * minibuffer.el (minibuffer-complete): Don't get confused when the
5808 function is run twice via different commands (bug#10958).
5809 (complete-with-action): Fix docstring.
5810
292112ed
CY
58112012-03-12 Chong Yidong <cyd@gnu.org>
5812
5d1ac394
CY
5813 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
5814 (nxml-completion-at-point-function): New function.
5815 (nxml-mode): Use it.
5816 (nxml-bind-meta-tab-to-complete-flag): Default to t.
5817
292112ed
CY
5818 * emacs-lisp/package.el (package-unpack, package-unpack-single):
5819 Load generated autoloads file before byte compiling (Bug#10970).
5820 (package--make-autoloads-and-compile): New helper fun.
5821
4098f8f7
CS
58222012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
5823
5824 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
5825
8f754691
MA
58262012-03-11 Michael Albinus <michael.albinus@gmx.de>
5827
5828 * autorevert.el (auto-revert-handler): Ensure, that
5829 file-readable-p is applied only for local files or in
5830 auto-revert-tail-mode.
5831
e29ab36b
AS
58322012-03-11 Andreas Schwab <schwab@linux-m68k.org>
5833
dbbc2e69
SM
5834 * server.el (server-eval-at): Handle non-tcp connections.
5835 Decode result string.
ad0bf5b6 5836
e29ab36b
AS
5837 * server.el (server-msg-size): New constant.
5838 (server-reply-print): New function.
5839 (server-eval-and-print): Use it.
5840 (server-eval-at): Use server-quote-arg and server-unquote-arg.
5841 Handle -print-nonl.
5842
de5939ba
CS
58432012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
5844
5845 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
5846 (Bug#10987).
5847
0c93eabf
CY
58482012-03-11 Chong Yidong <cyd@gnu.org>
5849
397a688f
CY
5850 * simple.el (goto-line): Doc fix (Bug#9938).
5851
2cc775f9
CY
5852 * subr.el (save-window-excursion): Doc fix (Bug#9979).
5853
0c93eabf
CY
5854 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
5855 when finished (Bug#10963).
5856
c491fa41
MR
58572012-03-11 Martin Rudalics <rudalics@gmx.at>
5858
5859 * window.el (split-window-below): Fix bug in case where
5860 split-window-keep-point is nil (Bug#10971).
5861
300e8fa5
JL
58622012-03-11 Juri Linkov <juri@jurta.org>
5863
5864 * replace.el (replace-highlight): Set isearch-word to nil
5865 unconditionally. (Bug#10887)
5866
dbf6c5a1
EZ
58672012-03-10 Eli Zaretskii <eliz@gnu.org>
5868
5869 * net/mairix.el (mairix-replace-invalid-chars): Rename from
5870 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 5871 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
5872 (mairix-widget-create-query): Add usage information about mairix
5873 search forms: negating words, searching for substrings, etc.
5874
b9e501de
JP
58752012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
5876
5877 * international/fontset.el (font-encoding-alist): Add an entry for
5878 ksx1001 (Bug#5667).
5879
92795c91
RS
58802012-03-10 Richard Stallman <rms@gnu.org>
5881
1694e6c1
RS
5882 * mail/sendmail.el (mail-encode-header):
5883 Set rfc2047-encode-encoded-words.
5884
607e8555
RS
5885 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
5886
de3bc99a
RS
5887 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
5888 view buffer means not swapped.
5889 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
5890 (rmail-write-region-annotate): Error if real text has disappeared.
5891
92795c91
RS
5892 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
5893
699bd04e
CY
58942012-03-10 Chong Yidong <cyd@gnu.org>
5895
5896 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
5897 * emulation/cua-base.el (cua--init-keymaps):
5898 Add delete-forward-char to remappings (Bug#9666).
699bd04e 5899
570a1714
MR
59002012-03-10 Martin Rudalics <rudalics@gmx.at>
5901
dbbc2e69
SM
5902 * speedbar.el (speedbar-unhighlight-one-tag-line):
5903 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 5904
82dcf4e4
CY
59052012-03-10 Chong Yidong <cyd@gnu.org>
5906
7a2c7ca7
CY
5907 * minibuffer.el (completion-in-region, completion-help-at-point):
5908 Give the completion field overlay a high priority (Bug#6830).
5909
82dcf4e4
CY
5910 * dired.el (dired-goto-file): Recognize absolute file name
5911 listings (Bug#7126).
5912 (dired-goto-file-1): New helper function.
5913 (dired-toggle-read-only): Inhibit warnings.
5914
052e28ac
MA
59152012-03-09 Michael Albinus <michael.albinus@gmx.de>
5916
75f1671a 5917 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
5918 there are no properties.
5919
95d5e396
LL
59202012-03-09 Leo Liu <sdl.web@gmail.com>
5921
5922 * savehist.el (savehist-printable): Stricter check for string
5923 value (Bug#10937).
5924
3f018d6d
EZ
59252012-03-09 Eli Zaretskii <eliz@gnu.org>
5926
dbbc2e69
SM
5927 * mail/smtpmail.el (smtpmail-send-it):
5928 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
5929 valid mbox format.
5930
f7fd3d79
GM
59312012-03-09 Glenn Morris <rgm@gnu.org>
5932
5933 * files.el (dir-locals-find-file):
5934 Don't check result is regular, readable.
5935 (dir-locals-read-from-file): Demote errors.
5936
6ff6e72f
EZ
59372012-03-08 Eli Zaretskii <eliz@gnu.org>
5938
dbbc2e69
SM
5939 * international/quail.el (quail-insert-kbd-layout):
5940 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
5941 layout cell, to prevent their reordering by bidi display engine.
5942 For details, see the discussion in
5943 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
5944
9cec7834
AM
59452012-03-08 Alan Mackenzie <acm@muc.de>
5946
5947 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
5948 the starting position; make it extend the marked region when
5949 invoked repeatedly - all under appropriate circumstances.
5950 Fixes bugs #5525, #10906.
5951
9a40b8d4
GM
59522012-03-08 Glenn Morris <rgm@gnu.org>
5953
5954 * files.el (locate-dominating-file, dir-locals-find-file):
5955 Undo 2012-03-06 change.
5956
7a08ed35
EZ
59572012-03-07 Eli Zaretskii <eliz@gnu.org>
5958
dbbc2e69
SM
5959 * international/quail.el (quail-help):
5960 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
5961 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
5962 for the reason.
5963
5aca4f71 59642012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
5965
5966 Avoid superfluous registering of signals. (Bug#10807)
5967
5968 * notifications.el (notifications-on-action-object)
5969 (notifications-on-close-object): New defvars.
5970 (notifications-on-action-signal, notifications-on-closed-signal):
5971 Unregister the signal if not needed any longer.
5972 (notifications-notify): Register `notifications-action-signal' or
5973 `notifications-closed-signal', if :on-action or :on-close has been
5974 passed as argument.
5975
78e8b10a
CY
59762012-03-07 Chong Yidong <cyd@gnu.org>
5977
5978 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
5979 non-X platforms.
5980
69481eb8
GM
59812012-03-06 Glenn Morris <rgm@gnu.org>
5982
5983 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5984 (x-disown-selection-internal, x-get-selection-internal):
5985 Doc fix (add arglist signatures). (Bug#10783)
5986
133b8e11
KS
59872012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
5988
5989 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
5990 Handle breakpoints with no "type".
5991
99a83064
GM
59922012-03-06 Glenn Morris <rgm@gnu.org>
5993
5994 * files.el (locate-dominating-file): Add optional predicate argument.
5995 (dir-locals-find-file): Make use of above change.
5996
17798e78
TTN
59972012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
5998
5999 * info.el (Info-insert-dir): Also try "dir.gz".
6000
eb182446
GM
60012012-03-06 Glenn Morris <rgm@gnu.org>
6002
8f2114ee
GM
6003 * files.el (dir-locals-find-file):
6004 Ignore non-readable or non-regular files. (Bug#10928)
6005
eb182446
GM
6006 * files.el (locate-dominating-file): Doc fix.
6007
24679323
AS
60082012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
6009
6010 * calendar/calendar.el (calendar-set-mode-line):
6011 `getenv' returns a string. (Bug#10951)
6012
01d972a9
LL
60132012-03-05 Leo Liu <sdl.web@gmail.com>
6014
109aa8a9
LL
6015 * simple.el (backward-delete-char-untabify): Constrain point to
6016 field (Bug#10939).
6017
01d972a9
LL
6018 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
6019
10607bea
CY
60202012-03-05 Chong Yidong <cyd@gnu.org>
6021
6022 * simple.el (count-words): If called from Lisp, return the word
6023 count, for symmetry with `count-lines'. Arglist changed.
6024 (count-words--message): Args changed. Consolidate counting code
6025 from count-words and count-words-region.
6026 (count-words-region): Caller changed.
6027 (count-lines-region): Make it an obsolete alias.
6028
5dd11cfe
TH
60292012-03-04 Tassilo Horn <tassilo@member.fsf.org>
6030
6031 * saveplace.el (save-place-to-alist)
6032 (save-place-ignore-files-regexp): Allow value nil to disable this
6033 feature.
6034
c349f4e6
CY
60352012-03-04 Chong Yidong <cyd@gnu.org>
6036
6037 * faces.el (face-spec-reset-face): For the default face, reset the
6038 attributes to default values (Bug#10748).
6039
e627be4c
LMI
60402012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
6041
6042 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
6043 previous patch: Check `message-send-mail-function', and not the
6044 default function (bug#10897).
6045
ebeabff4
MA
60462012-03-04 Michael Albinus <michael.albinus@gmx.de>
6047
a41a6cf4
MA
6048 * notifications.el (notifications-on-action-signal)
6049 (notifications-on-closed-signal): Check for unique service name of
6050 incoming event. Fix error in removing entry.
ebeabff4 6051 (top): Register for signals with wildcard service name.
a41a6cf4 6052 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 6053
c1ca42b4
CY
60542012-03-04 Chong Yidong <cyd@gnu.org>
6055
dc9924b8 6056 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 6057
ea16568d
GM
60582012-03-04 Glenn Morris <rgm@gnu.org>
6059
6060 * abbrev.el (copy-abbrev-table, abbrev-table-p)
6061 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
6062 (expand-abbrev, define-abbrev-table): Doc fixes.
6063
fbae4637
LMI
60642012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6065
6066 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
6067 `message-default-send-mail-function' and not `send-mail-function'
6068 when doing the prompting for `sendmail-query-once' before sending
6069 in Message buffers (bug#10897).
6070
a1e7225c
LMI
6071 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
6072 This is inconsistent with all the other stream functions, which leave
6073 the setting up to the higher levels (if so wanted) (bug#10931).
6074
56d093a9
AM
60752012-03-02 Alan Mackenzie <acm@muc.de>
6076
6077 Depessimize the handling of very large macros.
6078
6079 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
6080 (c-macro-cache-syntactic): New variables to implement a one
6081 element macro cache.
6082 (c-invalidate-macro-cache): New function.
6083 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
6084 Adapt to use the new cache.
6085 (c-state-safe-place): Use better the cache of safe positions.
6086 (c-state-semi-nonlit-pos-cache)
6087 (c-state-semi-nonlit-pos-cache-limit):
6088 New variables for...
6089 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
6090 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
6091 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
6092 Use c-state-semi-safe-place.
56d093a9 6093
dbbc2e69
SM
6094 * progmodes/cc-langs.el (c-get-state-before-change-functions):
6095 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 6096
817e5c3d
MA
60972012-03-02 Michael Albinus <michael.albinus@gmx.de>
6098
dbbc2e69
SM
6099 * jka-compr.el (jka-compr-call-process):
6100 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
6101 not remote.
6102
a032a702
MA
61032012-03-01 Michael Albinus <michael.albinus@gmx.de>
6104
6105 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
6106 access of FILE2, if FILE1 does not exist.
6107
99a54f21
MA
6108 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
6109 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
6110
6111 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
6112 Add "PAGER=" to `process-environment'.
6113
f6561e1f
MM
61142012-03-01 Michael R. Mauger <mmaug@yahoo.com>
6115
6116 * progmodes/sql.el: Bug fix
6117 (sql-get-login-ext): Save login values in globals.
6118 (sql-get-login): Use new version of `sql-get-login-ext'.
6119 (sql-interactive-mode): Set global `sql-connection' to nil.
6120 (sql-connect): Set global values for connection.
6121 (sql-product-interactive): Save global values as buffer local.
6122
2d44d9cc
LL
61232012-02-29 Leo Liu <sdl.web@gmail.com>
6124
6125 * abbrev.el (define-abbrevs): Reset sys to nil.
6126
96b49301 61272012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6128
bf7f9bc5
JB
6129 * files.el (file-equal-p): Rename from `files-equal-p'.
6130 Return nil when one or both files don't exist.
96b49301 6131 (file-subdir-of-p): Now only top directory must exists,
6132 return nil if it doesn't.
bf7f9bc5
JB
6133 (copy-directory): No need to test with `file-subdir-of-p' after
6134 creating dir.
6135 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
6136 to `file-equal-p'.
96b49301 6137
44e97401
GM
61382012-02-28 Glenn Morris <rgm@gnu.org>
6139
6140 * shell.el (shell-mode):
6141 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
6142 * play/landmark.el (landmark-font-lock-face-O):
6143 * play/handwrite.el (handwrite):
6144 * play/gomoku.el (gomoku-O):
6145 * net/browse-url.el (browse-url-browser-display):
6146 * international/mule.el (define-charset):
6147 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
6148 * filesets.el (filesets-find-file-delay):
6149 * eshell/em-xtra.el (eshell-xtra):
6150 * eshell/em-unix.el (eshell-grep):
6151 * emulation/viper.el (viper-mode):
6152 * emacs-lisp/regexp-opt.el (regexp-opt-group):
6153 * emacs-lisp/easymenu.el (easy-menu-define):
6154 * calendar/timeclock.el (timeclock-use-display-time):
6155 * bs.el (bs-mode):
6156 * bookmark.el (bookmark-save-flag):
6157 Doc fix (standardize possessive apostrophe usage).
6158
c98c6276
CY
61592012-02-27 Chong Yidong <cyd@gnu.org>
6160
bf7f9bc5
JB
6161 * emulation/viper-cmd.el (viper-intercept-ESC-key):
6162 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 6163
c98c6276
CY
6164 * font-lock.el (font-lock-specified-p): Rename from
6165 font-lock-spec-present. Callers changed.
6166
9c62cd04 61672012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 6168
bf7f9bc5
JB
6169 * emacs-lisp/package.el (package-compute-transaction):
6170 Handle holding a package version to t in package-load-list.
8ac9e529 6171
530739c9
MA
61722012-02-26 Michael Albinus <michael.albinus@gmx.de>
6173
6174 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
6175 (tramp-get-inode, tramp-get-device): Use cached values.
6176
487915d7
AM
61772012-02-26 Alan Mackenzie <acm@muc.de>
6178
6179 Check there is a font-lock specification before doing initial
6180 fontification.
6181
6182 * font-core.el (font-lock-mode): Move the conditional from
6183 :after-hook to font-lock-initial-fontify.
6184 (font-lock-default-function): Move the check for a specification
6185 to font-lock-spec-present.
6186
dc9924b8 6187 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
6188 (font-lock-spec-present): New function.
6189
4fd96557
JB
61902012-02-26 Jim Blandy <jimb@red-bean.com>
6191
6192 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
6193 (gdb-send): Apply it to the operand of the '-interpreter-exec
6194 console' command, so that we can pass arguments with (say) quotes
6195 in them. Store exact string sent in gdb-debug-log (Bug#10765).
6196
9a4888c0
CY
61972012-02-26 Chong Yidong <cyd@gnu.org>
6198
07498861
CY
6199 * help-fns.el (describe-function-1): Clarify description of
6200 remapping (Bug#10844).
6201
9a4888c0
CY
6202 * files.el (files-equal-p): Doc fix.
6203 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
6204 and quit the loop once a mismatch is found.
6205
ea8fb88d
JB
62062012-02-25 Juanma Barranquero <lekktu@gmail.com>
6207
6208 * bs.el (bs--show-with-configuration): Don't throw an error
6209 if the window cannot be split; otherwise, subsequent calls to
6210 bs-show fail, restoring a stale window config. (Bug#10882)
6211
525795c1
JD
62122012-02-25 Jan Djärv <jan.h.d@swipnet.se>
6213
6214 * term/ns-win.el (global-map): Bind ns-drag-file to
6215 ns-find-file (Bug#5855, Bug#10050).
6216
f008086f
AS
62172012-02-25 Andreas Schwab <schwab@linux-m68k.org>
6218
6219 * calendar/parse-time.el (parse-time-string): Allow extractor to
6220 return nil.
6221
a3fcfa99
MA
62222012-02-25 Michael Albinus <michael.albinus@gmx.de>
6223
91027d08
JB
6224 * net/tramp.el (tramp-file-name-for-operation):
6225 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
6226
6227 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
6228 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
6229 Add COPY-CONTENTS argument.
a3fcfa99 6230
67b0de11
CY
62312012-02-25 Chong Yidong <cyd@gnu.org>
6232
6233 Add custom groups for VC backends, for consistency with vc-bzr.
6234
6235 * vc/vc-arch.el (vc-arch):
6236 * vc/vc-cvs.el (vc-cvs):
6237 * vc/vc-git.el (vc-git):
6238 * vc/vc-hg.el (vc-hg):
6239 * vc/vc-mtn.el (vc-mtn):
6240 * vc/vc-rcs.el (vc-rcs):
6241 * vc/vc-sccs.el (vc-sccs):
6242 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
6243 All relevant defcustoms reassigned.
6244
3c9dfce6
CY
62452012-02-25 Chong Yidong <cyd@gnu.org>
6246
1339bf43
CY
6247 * newcomment.el (comment-styles): Add autoload (Bug#10868).
6248
3c9dfce6
CY
6249 * term/x-win.el (x-initialize-window-system): Reduce default for
6250 x-selection-timeout to 5 seconds (Bug#8869).
6251
25b2e303 62522012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
6253
ec70a47d
GM
6254 * files.el (files-equal-p, file-subdir-of-p): New functions.
6255 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 6256 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
6257 * dired-aux.el (dired-copy-file-recursive): Same.
6258 (dired-create-files): Modify destination when source is equal to
6259 dest when copying files.
53a46cd0 6260 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 6261
914260cd
MA
62622012-02-24 Michael Albinus <michael.albinus@gmx.de>
6263
6264 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
6265 (Bug#10874)
6266
2cb228f7
AM
62672012-02-23 Alan Mackenzie <acm@muc.de>
6268
6269 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
6270 parameter "after-hook:" to allow the expansion to run code after
6271 the execution of the mode hooks.
6272
6273 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 6274 from font-lock-mode-internal.
2cb228f7 6275
91027d08 6276 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
6277 :after-hook.
6278
8f0fde21
SM
62792012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6280
3e88618b
SM
6281 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
6282 (completion--cache-all-sorted-completions): New function.
6283 (completion-all-sorted-completions): Use it.
6284 (completion--do-completion, minibuffer-force-complete):
6285 Use it to re-instate the flush hook.
6286
8f0fde21
SM
6287 * icomplete.el (icomplete-completions): Replace last fix with a better
6288 one (bug#10850).
6289
8e911f6f
DG
62902012-02-23 Dmitry Gutov <dgutov@yandex.ru>
6291
6292 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
6293 when it might call us back infinitely (bug#10797).
6294
49fe4321
GM
62952012-02-23 Glenn Morris <rgm@gnu.org>
6296
6297 * minibuffer.el (completion-category-overrides): Doc fix.
6298
b291b572
SM
62992012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
6300
6301 * minibuffer.el (completion-table-with-context): Fix inf-loop.
6302 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
6303
31a9ef2e
GM
63042012-02-23 Glenn Morris <rgm@gnu.org>
6305
5e6e6794 6306 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
6307 (authors-obsolete-files-regexps, authors-ignored-files)
6308 (authors-ambiguous-files, authors-renamed-files-alist):
6309 Add more entries.
6310
0bd1e074
JL
63112012-02-23 Juri Linkov <juri@jurta.org>
6312
6313 * isearch.el (isearch-occur): Sync interactive spec with occur's
6314 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
6315
b617673c
JL
6316 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
6317
19e9789e
JL
63182012-02-22 Juri Linkov <juri@jurta.org>
6319
6320 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
6321 (ucs-insert): Doc fix. Check for hex digits in the string.
6322 Don't display `nil' in the error message. (Bug#10857)
6323
f41ce09d
AM
63242012-02-22 Alan Mackenzie <acm@muc.de>
6325
7a71b18d 6326 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 6327
ac2eceee
GM
63282012-02-22 Glenn Morris <rgm@gnu.org>
6329
6330 * ffap.el (ffap-c-path):
6331 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
6332
abd1f678
CY
63332012-02-22 Chong Yidong <cyd@gnu.org>
6334
6335 * custom.el (load-theme): Doc fix.
6336
f25aef2e
GM
63372012-02-22 Glenn Morris <rgm@gnu.org>
6338
6339 * dired-x.el (dired-guess-shell-alist-default):
6340 Remove escape sequences from nroff output. (Bug#172)
6341
5f8dc2ca
GM
63422012-02-21 Glenn Morris <rgm@gnu.org>
6343
6ff86ec4
GM
6344 * vc/emerge.el (emerge-defvar-local):
6345 Set `permanent-local' property rather than unused `preserved'.
6346
be3223a3 6347 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
6348 (picture-mode-map): Use it. (Bug#10860)
6349 (picture-mode): Doc fix.
6350
3fe58f4f
JB
63512012-02-21 Juanma Barranquero <lekktu@gmail.com>
6352
6353 * newcomment.el (uncomment-region-default): Remove unused binding.
6354
f9a998c3
GM
63552012-02-21 Glenn Morris <rgm@gnu.org>
6356
6357 * textmodes/picture.el (picture-motion, picture-motion-reverse)
6358 (picture-self-insert, picture-tab-chars): Doc fix.
6359 (picture-mode-map): Fix C-a, C-e.
6360
c6029348
GM
63612012-02-20 Glenn Morris <rgm@gnu.org>
6362
6363 * emacs-lisp/authors.el (authors-aliases): Add another entry.
6364
ab1ce9d7
LL
63652012-02-20 Leo Liu <sdl.web@gmail.com>
6366
6367 * icomplete.el (icomplete-completions): Check FROM arg before
6368 passing to substring (Bug#10850).
6369
0fd40f89
CY
63702012-02-19 Chong Yidong <cyd@gnu.org>
6371
6372 * comint.el: Require ansi-color.
6373 (comint-output-filter-functions): Add ansi-color-process-output.
6374
6375 * ansi-color.el: Don't set comint-output-filter-functions; it is
6376 now in the initial value defined in comint.el.
6377 (ansi-color-apply-face-function): New variable.
6378 (ansi-color-apply-on-region): Use it.
6379 (ansi-color-apply-overlay-face): New function.
6380
6381 * shell.el (shell): No need to require ansi-color.
6382 (shell-mode): Use ansi-color-apply-face-function to highlight
6383 color escapes using font-lock-face property (Bug#10835).
6384
20af2394
CY
63852012-02-19 Chong Yidong <cyd@gnu.org>
6386
6387 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
6388 mode-line formats (Bug#10839).
6389
e23a3fbe
GM
63902012-02-18 Glenn Morris <rgm@gnu.org>
6391
b474519e
GM
6392 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
6393
6394 * mail/undigest.el (unforward-rmail-message): Doc fix.
6395
e23a3fbe
GM
6396 * saveplace.el (save-place-ignore-files-regexp): Add :version.
6397
57939ff4
EZ
63982012-02-18 Eli Zaretskii <eliz@gnu.org>
6399
6400 * international/characters.el (script-list): Sync with the latest
6401 Unicode Character Database.
6402
0c23686e
AS
64032012-02-18 Andreas Schwab <schwab@linux-m68k.org>
6404
6405 * international/titdic-cnv.el: Remove duplicate coding tag.
6406 * language/cham.el: Likewise.
6407 * language/tai-viet.el: Likewise.
6408
6818b449
GM
64092012-02-18 Glenn Morris <rgm@gnu.org>
6410
6411 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
6412 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
6413 (calendar-bahai-all-holidays-flag, calendar-other-dates):
6414 * calendar/diary-lib.el (diary-abbreviated-year-flag):
6415 * calendar/holidays.el (holiday-bahai-holidays)
6416 (calendar-holidays, list-holidays):
6417 Use utf-8 Bahá'í in doc-strings, menus, etc.
6418
0311a3fc
TH
64192012-02-17 Tassilo Horn <tassilo@member.fsf.org>
6420
6421 * saveplace.el (save-place-ignore-files-regexp): New variable
6422 allowing for excluding files from saving their location of point.
6423 The default value matches the temporary commit message editing
6424 files from Git, SVN, Bazaar, and Mercurial.
6425 (save-place-to-alist): Use it.
6426
d209e2fb 64272012-02-17 Lawrence Mitchell <wence@gmx.li>
f1a71c6e 6428 Stefan Monnier <monnier@iro.umontreal.ca>
eb864a71
LM
6429
6430 * newcomment.el (uncomment-region-default): Don't leave extra space
6431 when an arg is provided (bug#8150).
6432
ee0ce425
TZ
64332012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
6434
eb864a71 6435 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 6436
95ddf442
GM
64372012-02-17 Glenn Morris <rgm@gnu.org>
6438
6439 * net/socks.el: Require network-stream. (Bug#10599)
6440
48dd1e39 64412012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
6442
6443 * international/charprop.el:
6444 * international/uni-name.el:
6445 * international/uni-old-name.el:
6446 * international/uni-comment.el: Regenerate.
6447
d68cd087
GM
64482012-02-16 Glenn Morris <rgm@gnu.org>
6449
6450 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
6451 Interactively in calendar buffer, give an error if not on a date.
6452
13932042
GM
64532012-02-15 Glenn Morris <rgm@gnu.org>
6454
6455 * shell.el (shell-delimiter-argument-list):
6456 Revert 2011-02-17 change. (Bug#8027)
6457
c3a70e2b
CY
64582012-02-15 Chong Yidong <cyd@gnu.org>
6459
60236b0d
CY
6460 * minibuffer.el (completion-at-point-functions): Doc fix.
6461
c3a70e2b
CY
6462 * custom.el (defcustom): Doc fix; note use of defvar.
6463
9f26dc24
GM
64642012-02-15 Glenn Morris <rgm@gnu.org>
6465
6466 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
6467 Doc fixes.
6468
6546b134
GM
64692012-02-14 Glenn Morris <rgm@gnu.org>
6470
6471 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
6472
d29b2b4c
LI
64732012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
6474
6475 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
6476 way the ports list is computed.
835bdcba
LI
6477 (smtpmail-query-smtp-server): Prompt the user for a port number if
6478 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 6479
08dcdbc9
TZ
64802012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
6481
6482 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
6483
2605051a
GM
64842012-02-13 Glenn Morris <rgm@gnu.org>
6485
6486 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
6487
7ee99f32
TZ
64882012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
6489
6490 * net/gnutls.el (gnutls-trustfiles): New variable.
6491 (gnutls-negotiate): Use it.
6492
5f0af64f
LI
64932012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
6494
6495 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
6496 does its stuff if Gnus is running.
6497
c14fcc95
AM
64982012-02-13 Alan Mackenzie <acm@muc.de>
6499
6500 Fix a loop in c-set-fl-decl-start.
6501
7a71b18d 6502 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
6503 c-backward-syntactic-ws actually moves backwards.
6504
142b4d90
LL
65052012-02-13 Leo Liu <sdl.web@gmail.com>
6506
6507 * net/rcirc.el (rcirc-markup-attributes): Move point to the
6508 beginning so that all \C-o chars are removed.
6509
fa9958a6
TZ
65102012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
6511
dc9924b8 6512 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 6513
0bc5886a
AM
65142012-02-12 Alan Mackenzie <acm@muc.de>
6515
6516 Fix infinite loop with long macros.
4d6769e1 6517 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 6518
d4bd55e7
CY
65192012-02-12 Chong Yidong <cyd@gnu.org>
6520
6521 * window.el (display-buffer): Doc fix (Bug#10785).
6522
66f3fe22
GM
65232012-02-12 Glenn Morris <rgm@gnu.org>
6524
bd7da63e
GM
6525 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
6526 (x-disown-selection-internal, x-get-selection-internal):
6527 Sync docs with the xselect.c versions.
6528
66f3fe22
GM
6529 * allout-widgets.el: Add missing license notice.
6530
3e0d2fa7
GM
65312012-02-11 Glenn Morris <rgm@gnu.org>
6532
cfecdf09
GM
6533 * select.el (x-get-selection-internal, x-own-selection-internal)
6534 (x-disown-selection-internal):
6535 * x-dnd.el (x-get-selection-internal): Update declarations.
6536
6d216d7f
GM
6537 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
6538
2bed3f04
GM
6539 * window.el (window-sides-slots):
6540 * tool-bar.el (tool-bar-position):
6541 * term/xterm.el (xterm-extra-capabilities):
6542 * ses.el (ses-self-reference-early-detection):
6543 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
6544 (verilog-auto-wire-type)
6545 (verilog-auto-delete-trailing-whitespace)
6546 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
6547 (verilog-auto-tieoff-declaration):
6548 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
6549 (sql-oracle-statement-starters, sql-oracle-scan-on):
6550 * progmodes/prolog.el (prolog-align-comments-flag)
6551 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
6552 (prolog-left-indent-regexp, prolog-paren-indent-p)
6553 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
6554 (prolog-types, prolog-mode-specificators)
6555 (prolog-determinism-specificators, prolog-directives)
6556 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
6557 (prolog-electric-dot-flag)
6558 (prolog-electric-dot-full-predicate-template)
6559 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
6560 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
6561 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
6562 (prolog-program-switches, prolog-prompt-regexp)
6563 (prolog-debug-on-string, prolog-debug-off-string)
6564 (prolog-trace-on-string, prolog-trace-off-string)
6565 (prolog-zip-on-string, prolog-zip-off-string)
6566 (prolog-use-standard-consult-compile-method-flag)
6567 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
6568 (prolog-imenu-max-lines, prolog-info-predicate-index)
6569 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
6570 (prolog-char-quote-workaround):
6571 * progmodes/cc-vars.el (c-defun-tactic):
6572 * net/tramp.el (tramp-encoding-command-interactive)
6573 (tramp-local-end-of-line):
6574 * net/soap-client.el (soap-client):
6575 * net/netrc.el (netrc-file):
6576 * net/gnutls.el (gnutls):
6577 * minibuffer.el (completion-category-overrides)
6578 (completion-cycle-threshold)
6579 (completion-pcm-complete-word-inserts-delimiters):
6580 * man.el (Man-name-local-regexp):
6581 * mail/feedmail.el (feedmail-display-full-frame):
6582 * international/characters.el (glyphless-char-display-control):
6583 * eshell/em-ls.el (eshell-ls-date-format):
6584 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
6585 (lisp-lambda-list-keyword-parameter-indentation)
6586 (lisp-lambda-list-keyword-parameter-alignment):
6587 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
6588 * dired-x.el (dired-omit-verbose):
6589 * cus-theme.el (custom-theme-allow-multiple-selections):
6590 * calc/calc.el (calc-highlight-selections-with-faces)
6591 (calc-lu-field-reference, calc-lu-power-reference)
6592 (calc-note-threshold):
6593 * battery.el (battery-mode-line-limit):
6594 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
6595 (archive-7z-update):
6596 * allout.el (allout-prefixed-keybindings)
6597 (allout-unprefixed-keybindings)
6598 (allout-inhibit-auto-fill-on-headline)
6599 (allout-flattened-numbering-abbreviation):
6600 * allout-widgets.el (allout-widgets-auto-activation)
6601 (allout-widgets-icons-dark-subdir)
6602 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
6603 (allout-widgets-theme-dark-background)
6604 (allout-widgets-theme-light-background)
6605 (allout-widgets-item-image-properties-emacs)
6606 (allout-widgets-item-image-properties-xemacs)
6607 (allout-widgets-run-unit-tests-on-load)
6608 (allout-widgets-time-decoration-activity)
6609 (allout-widgets-hook-error-post-time)
6610 (allout-widgets-track-decoration):
6611 Add missing :version tags to new defcustoms and defgroups.
6612
5fec1b8e
GM
6613 * progmodes/sql.el (sql-ansi-statement-starters)
6614 (sql-oracle-statement-starters): Add custom type.
6615
3e0d2fa7
GM
6616 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
6617 (prolog-system-version): Give it a type.
6618
90b671e2
EZ
66192012-02-11 Eli Zaretskii <eliz@gnu.org>
6620
6621 * term/pc-win.el (x-select-text, x-selection-owner-p)
6622 (x-own-selection-internal, x-disown-selection-internal)
6623 (x-get-selection-internal): Sync doc strings and argument lists
6624 with xselect.c, common-win.el and x-win.el. (Bug#10783)
6625
5eac0c02
LL
66262012-02-11 Leo Liu <sdl.web@gmail.com>
6627
6628 * progmodes/python.el (python-end-of-statement): Fix infinite
6629 loop. (Bug#10788)
6630
f82cb659
GM
66312012-02-10 Glenn Morris <rgm@gnu.org>
6632
6633 * international/mule-cmds.el (unify-8859-on-encoding-mode)
6634 (unify-8859-on-decoding-mode): Properly mark as obsolete.
6635
cc26d239
LI
66362012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
6637
6638 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
6639 about SMTP before checking the From header.
6640
91027d08 6641 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
6642 into own function for reuse by emacsbug.el.
6643
1be3ca5a
LL
66442012-02-10 Leo Liu <sdl.web@gmail.com>
6645
6646 * subr.el (condition-case-unless-debug): Rename from
6647 condition-case-no-debug. All callers changed.
6648 (with-demoted-errors): Fix caller.
6649
6650 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
6651 * nxml/rng-valid.el (rng-do-some-validation):
6652 * emacs-lisp/package.el (package-refresh-contents)
6653 (package-menu-execute):
6654 * desktop.el (desktop-create-buffer):
91027d08 6655 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 6656
b011fbfe
GM
66572012-02-10 Glenn Morris <rgm@gnu.org>
6658
b2096d72
GM
6659 * textmodes/bibtex.el:
6660 Add missing :version tags for new/changed defcustoms.
6661
b011fbfe
GM
6662 * files.el (remote-file-name-inhibit-cache): Doc fixes.
6663
4c7e65bf
LI
66642012-02-09 Lars Ingebrigtsen <larsi@rusty>
6665
6666 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
6667 (smtpmail-via-smtp): Use it, or fall back on the From address.
6668 (smtpmail-send-it): Ditto.
6669
f3934f6f
SM
66702012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
6671
6672 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
6673 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
6674 (byte-compile-tmp-var): New const.
6675 (byte-compile-defvar): Use it to minimize .elc size.
6676 Just use `defvar' rather than simulate it (bug#10761).
6677
a075a2c5
GM
66782012-02-09 Glenn Morris <rgm@gnu.org>
6679
cf3aa21b
GM
6680 * files.el (rename-uniquely): Doc fix. (Bug#3806)
6681
354998cd
GM
6682 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
6683 Add :version tags.
6684
dc9924b8
SM
6685 * progmodes/compile.el (compilation-error-screen-columns)
6686 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 6687
dab3703d
GM
6688 * vc/log-view.el (log-view-toggle-entry-display):
6689 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
6690
3f88cd72
GM
6691 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
6692 (report-emacs-bug-can-use-xdg-email):
6693 (report-emacs-bug-insert-to-mailer): Doc fixes.
6694 (report-emacs-bug): Message fix.
6695
d95b247d
GM
6696 * net/browse-url.el (browse-url-can-use-xdg-open)
6697 (browse-url-xdg-open): Doc fixes.
6698
a075a2c5
GM
6699 * electric.el (electric-indent-mode, electric-pair-mode)
6700 (electric-layout-rules, electric-layout-mode): Doc fixes.
6701 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
6702
ffb6157e
MR
67032012-02-08 Martin Rudalics <rudalics@gmx.at>
6704
6705 * server.el (server-unselect-display): Don't inadvertently kill
6706 the current buffer. (Bug#10729)
6707
e1ac4066
GM
67082012-02-08 Glenn Morris <rgm@gnu.org>
6709
34e8a2da
GM
6710 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
6711 (sql-list-table): Doc fixes.
6712
b4ac6e8c
GM
6713 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
6714 Comment out (does nothing).
6715
e1ac4066
GM
6716 * completion.el (dynamic-completion-mode):
6717 * dirtrack.el (dirtrack-debug-mode):
6718 * electric.el (electric-layout-mode):
6719 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
6720 * face-remap.el (text-scale-mode, buffer-face-mode):
6721 * iimage.el (iimage-mode):
6722 * image-mode.el (image-transform-mode):
6723 * minibuffer.el (completion-in-region-mode):
6724 * scroll-lock.el (scroll-lock-mode):
6725 * simple.el (next-error-follow-minor-mode):
6726 * tar-mode.el (tar-subfile-mode):
6727 * tooltip.el (tooltip-mode):
6728 * vcursor.el (vcursor-use-vcursor-map):
6729 * wid-browse.el (widget-minor-mode):
6730 * emulation/tpu-edt.el (tpu-edt-mode):
6731 * emulation/tpu-extras.el (tpu-cursor-free-mode):
6732 * international/iso-ascii.el (iso-ascii-mode):
6733 * language/thai-util.el (thai-word-mode):
6734 * mail/supercite.el (sc-minor-mode):
6735 * net/goto-addr.el (goto-address-mode):
6736 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
6737 * progmodes/cwarn.el (cwarn-mode):
6738 * progmodes/flymake.el (flymake-mode):
6739 * progmodes/glasses.el (glasses-mode):
6740 * progmodes/hideshow.el (hs-minor-mode):
6741 * progmodes/pascal.el (pascal-outline-mode):
6742 * textmodes/enriched.el (enriched-mode):
6743 * vc/smerge-mode.el (smerge-mode):
6744 Doc fixes (minor mode argument).
6745
5e0d957f
EZ
67462012-02-07 Eli Zaretskii <eliz@gnu.org>
6747
6748 * ls-lisp.el (ls-lisp-sanitize): New function.
6749 (ls-lisp-insert-directory): Use it to fix or remove any elements
6750 in file-alist with missing attributes. (Bug#4673)
6751
98d7371e
AM
67522012-02-07 Alan Mackenzie <acm@muc.de>
6753
6754 Fix spurious recognition of c-in-knr-argdecl.
6755
6756 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
6757 putative K&R region.
6758
667ced3a
AM
67592012-02-07 Alan Mackenzie <acm@muc.de>
6760
eb864a71
LM
6761 * progmodes/cc-engine.el (c-forward-objc-directive):
6762 Prevent looping in "#pragma mark @implementation".
667ced3a 6763
5b77774d
MA
67642012-02-07 Michael Albinus <michael.albinus@gmx.de>
6765
6766 * notifications.el (notifications-on-closed-signal): Make `reason'
6767 optional. (Bug#10744)
6768
af008560
GM
67692012-02-07 Glenn Morris <rgm@gnu.org>
6770
60d47423
GM
6771 * emacs-lisp/easy-mmode.el (define-minor-mode):
6772 Doc fixes for the macro and the mode it defines.
6773
dd605cc4
GM
6774 * image.el (imagemagick-types-inhibit): Doc fix.
6775
af008560
GM
6776 * cus-start.el (imagemagick-render-type): Add it.
6777
5cc59a37
LI
67782012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
6779
4d6769e1
JB
6780 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
6781 Set the default at load time, too, so that `font-lock-fontify-buffer'
6782 can be called without setting up the entire mode first. This fixes
6783 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 6784
9a6dd747
CY
67852012-02-06 Chong Yidong <cyd@gnu.org>
6786
2d16b285
CY
6787 * simple.el (list-processes--refresh): Delete exited processes
6788 (Bug#8094).
6789
171e9b6e
CY
6790 * comint.el (comint-next-prompt): next-single-char-property-change
6791 and prev-single-char-property-change never return nil (Bug#8657).
6792
9a6dd747
CY
6793 * custom.el (defcustom): Doc fix (Bug#9711).
6794
aa4589a7
CY
67952012-02-05 Chong Yidong <cyd@gnu.org>
6796
5c2a252f
CY
6797 * cus-edit.el (custom-variable-reset-backup): Quote the value
6798 before storing it in the customized-value property (Bug#6712).
4aab9006 6799 (custom-display): Add a customization type tag.
983b9602 6800 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 6801
aa4589a7
CY
6802 * wid-edit.el (widget-field-value-get): New optional arg to
6803 suppress trailing whitespace truncation.
6804 (character): Use it (Bug#2689).
6805
1ff980ae
AS
68062012-02-05 Andreas Schwab <schwab@linux-m68k.org>
6807
6808 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
6809 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
6810
03988c98
CY
68112012-02-05 Chong Yidong <cyd@gnu.org>
6812
eeb6cc88
CY
6813 * cus-edit.el (custom-variable-value-create): For mismatched
6814 types, show the current value (Bug#7600).
6815
03988c98
CY
6816 * custom.el (defcustom): Doc fix.
6817
f8cdeef0
GM
68182012-02-05 Glenn Morris <rgm@gnu.org>
6819
6820 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
6821
0696d255
JB
68222012-02-05 Juanma Barranquero <lekktu@gmail.com>
6823
6824 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
6825 (pp-buffer): Use `ignore-errors', `looking-at-p'.
6826 (pp-last-sexp): Use `looking-at-p'.
6827
34c99998
GM
68282012-02-04 Glenn Morris <rgm@gnu.org>
6829
8f05da42
GM
6830 * files.el (revert-buffer):
6831 Doc fix (mention revert-buffer-in-progress-p).
6832
f160676e
GM
6833 * emacs-lisp/ert-x.el (ert-simulate-command):
6834 Check deferred-action-list (which is obsolete) is bound.
6835
c7291ad9
GM
6836 * subr.el (with-wrapper-hook): Doc fixes.
6837
34c99998
GM
6838 * simple.el (filter-buffer-substring-functions)
6839 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
6840
6283a7d3
LL
68412012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
6842
6843 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
6844 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
6845
e96e3013
LL
68462012-02-04 Leo Liu <sdl.web@gmail.com>
6847
6848 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
6849
8ded50f2
GM
68502012-02-04 Glenn Morris <rgm@gnu.org>
6851
82ff1d13
GM
6852 * image.el (image-extension-data): Add obsolete alias.
6853
987a0a16
GM
6854 * isearch.el (isearch-update): Doc fix.
6855
ea32ef46
GM
6856 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
6857
8ded50f2
GM
6858 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
6859
eea14f31
GM
68602012-02-03 Glenn Morris <rgm@gnu.org>
6861
6862 * image.el (image-animated-p): Doc fix. Use image-animated-types.
6863 (image-animate-timeout): Doc fix.
6864
6865 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
6866
12f381b7
GM
68672012-02-02 Glenn Morris <rgm@gnu.org>
6868
953cebf5
GM
6869 * server.el (server-auth-dir): Doc fix.
6870 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
6871
12f381b7
GM
6872 * subr.el (run-mode-hooks): Doc fix.
6873
953a8c3b
JL
68742012-02-02 Juri Linkov <juri@jurta.org>
6875
6876 * image-mode.el (image-toggle-display-image): Remove tautological
6877 `major-mode' from the `derived-mode-p' test.
6878
c5d3843c
KH
68792012-02-02 Kenichi Handa <handa@m17n.org>
6880
9f6e692e 6881 * composite.el (compose-region): Cancel previous change.
c5d3843c 6882
159462d4 68832012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
6884
6885 * composite.el (compose-region, compose-string): Signal error for
6886 a null string component (Bug#6988).
6887
9f562668
CY
68882012-02-01 Chong Yidong <cyd@gnu.org>
6889
e2cef717
CY
6890 * view.el (view-buffer-other-window, view-buffer-other-frame):
6891 Handle special modes like view-buffer (Bug#10650).
6892 (view-buffer): Simplify.
6893
9f562668
CY
6894 * frame.el (set-frame-font): Tweak meaning of third argument.
6895
9f6e692e
JB
6896 * dynamic-setting.el (font-setting-change-default-font):
6897 Use set-frame-font (Bug#9982).
9f562668 6898
781acb9f
GM
68992012-02-01 Glenn Morris <rgm@gnu.org>
6900
6035be52
GM
6901 * progmodes/compile.el (compilation-internal-error-properties):
6902 Respect compilation-first-column in the "*compilation*" buffer.
6903
781acb9f
GM
6904 * emacs-lisp/easy-mmode.el (define-minor-mode):
6905 Relax :variable's test for a named function.
6906
abbceb00
AM
69072012-01-31 Alan Mackenzie <acm@muc.de>
6908
6909 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
6910 off by one error.
6911
fce3fdeb
CY
69122012-01-31 Chong Yidong <cyd@gnu.org>
6913
6914 * frame.el (set-frame-font): New arg ALL-FRAMES.
6915
6916 * menu-bar.el (menu-set-font): Use set-frame-font.
6917
6918 * faces.el (face-spec-reset-face): Don't apply unspecified
6919 attribute values to the default face.
6920
47893581
JB
69212012-01-31 Juanma Barranquero <lekktu@gmail.com>
6922
6923 * progmodes/cwarn.el (cwarn): Remove dead link.
6924 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
6925 Remove * from defcustom docstrings.
6926 (turn-on-cwarn-mode): Make obsolete.
6927 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
6928 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
6929
e58e988a
GM
69302012-01-31 Glenn Morris <rgm@gnu.org>
6931
60dc2671 6932 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 6933 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 6934 Allow named functions to be used as the cdr of :variable.
e58e988a 6935
7a3f511d
GM
69362012-01-30 Glenn Morris <rgm@gnu.org>
6937
6938 * emacs-lisp/authors.el (authors-fixed-entries):
6939 Remove reference to deleted file rnewspost.el.
6940
cb882333
JB
69412012-01-29 Juanma Barranquero <lekktu@gmail.com>
6942
6943 * window.el (window-with-parameter): Remove unused variable `windows'.
6944 (window--side-check): Remove unused variable `code'.
6945 (window--resize-siblings): Remove unused variable `first'.
6946 (adjust-window-trailing-edge): Remove unused variable `failed'.
6947 (window-deletable-p, window--delete): Remove unused variable `buffer'.
6948 Use `let', not `let*'.
6949 (balance-windows-2): Remove unused variable `found'.
6950 (window--state-put-2): Remove unused variable `splits'.
6951 (window-state-put): Remove unused variable `selected'.
6952 (same-window-p): Use `string-match-p'.
6953 (display-buffer-assq-regexp): Remove unused variable `value'.
6954 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
6955 Mark argument ALIST as ignored.
6956 (pop-to-buffer): Remove unused variable `old-window'.
6957
907201af
EZ
69582012-01-29 Eli Zaretskii <eliz@gnu.org>
6959
6960 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
6961 and .lzma compressed files.
6962
ea162670
CY
69632012-01-29 Chong Yidong <cyd@gnu.org>
6964
5b95ee8a
CY
6965 * frame.el (window-system-default-frame-alist): Doc fix.
6966
ea162670
CY
6967 * dynamic-setting.el (font-setting-change-default-font): Don't
6968 change the default face if SET-FONT argument is non-nil (Bug#9982).
6969
d6e6f4b1
SB
69702012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
6971
6972 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
6973
0f29fa41 69742012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
6975
6976 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
6977 breakpoints in files outside current directory (Bug#6098).
6978
db174434
CY
69792012-01-29 Chong Yidong <cyd@gnu.org>
6980
6b25e4e2
SE
6981 * progmodes/python.el: Require ansi-color at top-level.
6982
6df6ae42
JB
6983 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
6984 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
6985 (lisp-mode-abbrev-table): Add doc.
6986 (lisp-mode-variables): Don't set local-abbrev-table.
6987 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
6988
e70ee681
RW
69892012-01-28 Roland Winkler <winkler@gnu.org>
6990
6991 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
6992
ace88aa2
RW
69932012-01-28 Roland Winkler <winkler@gnu.org>
6994
6995 * textmodes/bibtex.el (bibtex-entry-alist): New function.
6996 (bibtex-set-dialect): Use it. Either set global values of
6997 dialect-dependent variables or bind these variables buffer-locally
6998 (Bug#10254).
6999 (bibtex-mode): Call bibtex-set-dialect via
7000 hack-local-variables-hook.
eb864a71
LM
7001 (bibtex-dialect): Update docstring.
7002 Add safe-local-variable predicate.
ace88aa2
RW
7003 (bibtex-entry-alist, bibtex-field-alist): Initialize via
7004 bibtex-set-dialect.
7005 (bibtex-mode-map): Define menu for each dialect.
7006 (bibtex-entry): Fix docstring.
7007
93376c5b
CY
70082012-01-28 Chong Yidong <cyd@gnu.org>
7009
7010 * eshell/esh-arg.el (eshell-quote-argument): New function.
7011
7012 * eshell/esh-ext.el (eshell-invoke-batch-file):
7013 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
7014 first arg to eshell-parse-command (Bug#10523).
7015
4372494f
DA
70162012-01-28 Drew Adams <drew.adams@oracle.com>
7017
7018 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
7019 `default-directory' is non-nil.
7020
4d4ec1f8
EZ
70212012-01-28 Eli Zaretskii <eliz@gnu.org>
7022
7023 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
7024 line that displays system-configuration-options. (Bug#9924)
7025
7c188927
DA
70262012-01-28 Drew Adams <drew.adams@oracle.com>
7027
7028 * descr-text.el (describe-char): Show information about POS, in
7029 addition to information about the character at POS. Improve and
7030 update the doc string. Change "code point" to "code point in
7031 charset", to avoid confusion with the character's Unicode code
7032 point shown above that. (Bug#10129)
7033
e0da685a
EZ
70342012-01-28 Eli Zaretskii <eliz@gnu.org>
7035
7036 * descr-text.el (describe-char): Show the raw character, not only
7037 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
7038 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
7039 for the reasons.
7040
70550acf
PH
70412012-01-28 Phil Hagelberg <phil@hagelb.org>
7042
eb864a71
LM
7043 * emacs-lisp/package.el (package-install):
7044 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 7045
0ce8e868
CY
70462012-01-28 Chong Yidong <cyd@gnu.org>
7047
cb882333
JB
7048 * emacs-lisp/package.el (package-maybe-load-descriptor):
7049 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
7050 (package-maybe-load-descriptor): Use it.
7051 (package-download-transaction): Fully load required packages
7052 inside the loop, so that `require' calls work (Bug#10593).
7053 (package-install): No need to call package-initialize now.
7054
2e7f3bea
CY
70552012-01-28 Chong Yidong <cyd@gnu.org>
7056
6e9bad14
CY
7057 * simple.el (deactivate-mark): Doc fix (Bug#8614).
7058
f823b8ca
CY
7059 * tooltip.el (tooltip-mode): Doc fix.
7060 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
7061
2680c309
CY
7062 * frame.el (set-cursor-color): Doc fix (Bug#352).
7063
d7a9e63b
CY
7064 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
7065 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
7066
2e7f3bea
CY
7067 * cus-edit.el (custom-buffer-create-internal): Fix search button
7068 action (Bug#10542).
2ae01800 7069 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 7070
fc4f7a23
EW
70712012-01-27 Eduard Wiebe <usenet@pusto.de>
7072
7073 * dired.el (dired-mark-files-regexp):
7074 Include any subdirectory components. (Bug#10445)
7075
7dd37071
ML
70762012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
7077
7078 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
7079 Handle [host]:port syntax. (Bug#10533)
7080
a268160b
AH
70812012-01-27 Alex Harsanyi <harsanyi@mac.com>
7082
7083 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
7084
e43273ef
GM
70852012-01-26 Glenn Morris <rgm@gnu.org>
7086
7087 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
7088 * term.el (term-raw-escape-map): Use Control-X-prefix.
7089 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
7090
1edf595d
MR
70912012-01-25 Martin Rudalics <rudalics@gmx.at>
7092
7093 * window.el (window-state-get, window--state-get-1): Don't deal
7094 with fixed-sizeness of windows. Simplify code.
7095
fa8eafef
JC
70962012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
7097
6df6ae42
JB
7098 * window.el (window--state-get-1, window--state-put-2):
7099 Don't save and restore the mark.
fa8eafef 7100
0b21c100
CY
71012012-01-25 Chong Yidong <cyd@gnu.org>
7102
7103 * custom.el (custom-variable-p): Doc fix.
7104
5ae1a6c8
GM
71052012-01-25 Glenn Morris <rgm@gnu.org>
7106
40047858
GM
7107 * dired.el (dired-goto-file): Handle some of the more common
7108 characters that `ls -b' escapes. (Bug#10596)
7109
5ddce96c
GM
7110 * progmodes/compile.el (compilation-next-error-function):
7111 Respect compilation-first-column in the "*compilation*" buffer.
7112 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
7113
5ae1a6c8
GM
7114 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
7115
b559f1a9
GM
71162012-01-24 Glenn Morris <rgm@gnu.org>
7117
7118 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
7119
6725d21a
JD
71202012-01-24 Julien Danjou <julien@danjou.info>
7121
7122 * color.el (color-rgb-to-hsl): Fix value computing.
7123 (color-hue-to-rgb): New function.
7124 (color-hsl-to-rgb): New function.
7125 (color-clamp, color-saturate-hsl, color-saturate-name)
7126 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
7127 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
7128
70df4bbe
GM
71292012-01-24 Glenn Morris <rgm@gnu.org>
7130
7131 * vc/vc-rcs.el (vc-rcs-create-tag):
7132 * vc/vc-sccs.el (vc-sccs-create-tag):
7133 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
7134
802a2ae2
ML
71352012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
7136
7137 * eshell/esh-util.el (eshell-read-hosts-file):
7138 Skip comment lines. (Bug#10549)
7139
d7128bb1
ML
7140 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
7141
d1a5c3b4
JB
71422012-01-23 Juanma Barranquero <lekktu@gmail.com>
7143
2724d9c7
JB
7144 * subr.el (display-delayed-warnings): Doc fix.
7145 (collapse-delayed-warnings): New function to collapse identical
7146 adjacent warnings.
7147 (delayed-warnings-hook): Add it.
d1a5c3b4 7148
a5509865
MA
71492012-01-22 Michael Albinus <michael.albinus@gmx.de>
7150
7151 * net/tramp.el (tramp-action-login): Set connection property "login-as".
7152
a5509865
MA
7153 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
7154 (tramp-default-user-alist): Don't add "pscp".
7155 (tramp-do-copy-or-rename-file-out-of-band): Use connection
7156 property "login-as", if set. (Bug#10530)
7157
cc6d5805
MA
71582012-01-21 Michael Albinus <michael.albinus@gmx.de>
7159
7160 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
7161 "plink1" and "psftp". (Bug#10530)
7162
71632012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
7164
7165 * international/mule-cmds.el (prefer-coding-system): Show a
7166 warning message if the default value of file-name-coding-system
7167 was not changed.
7168
f0960428
JC
71692012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7170
cb882333
JB
7171 * windmove.el (windmove-reference-loc):
7172 Fix windmove-reference-loc miscalculation.
f0960428 7173
dd6f2a63
JB
71742012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
7175
7176 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
7177 default unit.
7178
7b447e9b
GM
71792012-01-21 Glenn Morris <rgm@gnu.org>
7180
117a9ea1
GM
7181 * international/mule.el (auto-coding-alist): Add .tbz.
7182
7b447e9b
GM
7183 * files.el (local-enable-local-variables): Doc fix.
7184 (inhibit-local-variables-regexps): Rename from
7185 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
7186 Doc fix. Add some extensions from auto-coding-alist.
7187 (inhibit-local-variables-suffixes):
7188 Rename from inhibit-first-line-modes-suffixes. Doc fix.
7189 (inhibit-local-variables-p):
7190 New function, extracted from set-auto-mode-1.
7191 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
7192 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
7193 (hack-local-variables): Doc fix. Make the mode-only case
7194 respect enable-local-variables and friends.
7195 Respect inhibit-local-variables-regexps for file-locals, but
7196 not for directory-locals.
7197 (set-visited-file-name):
7198 Take account of inhibit-local-variables-regexps.
7199 Whether it applies may change as the file name is changed.
7200 * jka-cmpr-hook.el (jka-compr-install):
7201 * jka-compr.el (jka-compr-uninstall):
7202 Update for inhibit-first-line-modes-suffixes name change.
7203
dd6e3cdd
MR
72042012-01-20 Martin Rudalics <rudalics@gmx.at>
7205
7206 * help-macro.el (make-help-screen): Temporarily restore original
7207 binding for minor-mode-map-alist (Bug#10454).
7208
0d0deb38
JD
72092012-01-19 Julien Danjou <julien@danjou.info>
7210
7211 * color.el (color-name-to-rgb): Use the white color to find the max
7212 color component value and return correctly computed values.
7213 (color-name-to-rgb): Add missing float conversion for max value.
7214
34a02f46
MR
72152012-01-19 Martin Rudalics <rudalics@gmx.at>
7216
7217 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
7218 special state value for window-persistent-parameters.
7219 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
7220 (window--state-put-2): Reset all window parameters to nil before
7221 assigning values of persistent parameters.
7222
606c44c4
AM
72232012-01-18 Alan Mackenzie <acm@muc.de>
7224
7225 Eliminate sluggishness and hangs in fontification of "semicolon
7226 deserts".
7227
cb882333
JB
7228 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
7229 Change value 10000 -> 3000.
606c44c4
AM
7230 (c-state-safe-place): Reformulate so it doesn't stack up an
7231 infinite number of wrong entries in c-state-nonlit-pos-cache.
7232 (c-determine-limit-get-base, c-determine-limit): New functions to
7233 determine backward search limits disregarding literals.
7234 (c-find-decl-spots): Amend commenting.
7235 (c-cheap-inside-bracelist-p): New function which detects "={".
7236
7237 * progmodes/cc-fonts.el
7238 (c-make-font-lock-BO-decl-search-function): Give a limit to a
7239 backward search.
7240 (c-font-lock-declarations): Fix an occurrence of point being
7241 undefined. Check additionally for point being in a bracelist or
7242 near a macro invocation without a semicolon so as to avoid a
7243 fruitless time consuming search for a declarator. Give a more
7244 precise search limit for declarators using the new
7245 c-determine-limit.
7246
f3860cea
GM
72472012-01-18 Glenn Morris <rgm@gnu.org>
7248
7249 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
7250 (set-auto-mode): Doc fixes.
7251
1db03b16
GM
72522012-01-17 Glenn Morris <rgm@gnu.org>
7253
0e6038be
GM
7254 * isearch.el (search-nonincremental-instead): Fix doc typo.
7255
1db03b16
GM
7256 * dired.el (dired-insert-directory): Handle newlines in directory name.
7257 (dired-build-subdir-alist): Unescape newlines in directory name.
7258
4cb0aa75
MA
72592012-01-17 Michael Albinus <michael.albinus@gmx.de>
7260
7261 * net/tramp.el (tramp-local-end-of-line): New defcustom.
7262 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
7263 (tramp-action-terminal): Use it. (Bug#10530)
7264
1d00653d
SM
72652012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
7266
7267 * minibuffer.el (completion--replace): Strip properties (bug#10062).
7268
6a6ee00d
MR
72692012-01-16 Martin Rudalics <rudalics@gmx.at>
7270
7271 * window.el (window-state-ignored-parameters): Remove variable.
7272 (window--state-get-1): Rename argument MARKERS to IGNORE.
7273 Handle persistent window parameters. Make copy of clone-of
7274 parameter only if requested. (Bug#10348)
7275 (window--state-put-2): Install a window parameter only if it has
7276 a non-nil value or an existing parameter shall be overwritten.
7277
97912def
MA
72782012-01-15 Michael Albinus <michael.albinus@gmx.de>
7279
7280 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
7281
688070a5
EZ
72822012-01-14 Eli Zaretskii <eliz@gnu.org>
7283
7284 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
7285 don't pass the (nil) value of `upnode' to string-match.
7286
301afadc
CY
72872012-01-14 Chong Yidong <cyd@gnu.org>
7288
7289 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 7290 Fix values recognized by the cursorBlink resource.
301afadc 7291
9e5788aa
PE
72922012-01-14 Paul Eggert <eggert@cs.ucla.edu>
7293
7294 * epg.el (epg--make-temp-file): Avoid permission race condition
7295 when running on old Emacs versions (bug#10403).
7296
3cdb7f5a
GM
72972012-01-14 Glenn Morris <rgm@gnu.org>
7298
7299 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
7300
8c82b1b4
AM
73012012-01-13 Alan Mackenzie <acm@muc.de>
7302
7303 Fix filling for when filladapt mode is enabled.
7304
7305 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
7306 c-mask-paragraph, pass in `fill-paragraph' rather than
7307 `fill-region-as-paragraph'. (This is a reversion of a previous
7308 change.)
eb864a71
LM
7309 * progmodes/cc-mode.el (c-basic-common-init):
7310 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 7311
e517eda4
GM
73122012-01-13 Glenn Morris <rgm@gnu.org>
7313
1498536e
GM
7314 * dired.el (dired-switches-escape-p): New function.
7315 (dired-insert-directory): Use dired-switches-escape-p.
7316 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
7317
e517eda4
GM
7318 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
7319
328f984d
GM
73202012-01-12 Glenn Morris <rgm@gnu.org>
7321
7322 * mail/sendmail.el (mail-mode): Update paragraph-separate for
7323 changes in adaptive-fill-regexp. (Bug#10276)
7324
2cc769a8
AM
73252012-01-11 Alan Mackenzie <acm@muc.de>
7326
7327 Fix Emacs bug #10463 - put `widen's around the critical spots.
7328
1d00653d 7329 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
7330 widen around each invocation of c-state-pp-to-literal. Remove an
7331 unused let variable.
7332
e52c37fa
GM
73332012-01-11 Glenn Morris <rgm@gnu.org>
7334
7335 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 7336 Doc fix.
e52c37fa 7337
96f8741e
CY
73382012-01-10 Chong Yidong <cyd@gnu.org>
7339
1d00653d
SM
7340 * net/network-stream.el (network-stream-open-starttls):
7341 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
7342 response to the capability command.
7343
b09a806e
GM
73442012-01-10 Glenn Morris <rgm@gnu.org>
7345
7346 * mail/unrmail.el (unrmail): Tweak previous change.
7347
7655cb66
CY
73482012-01-09 Chong Yidong <cyd@gnu.org>
7349
7350 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
7351
9d5a8f0b
AM
73522012-01-08 Alan Mackenzie <acm@muc.de>
7353
7354 Optimise font locking in long enum definitions.
7355
7356 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
7357 arm to a cond form to handle enums.
7358 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
7359 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
7360
9a0115ab 73612012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
7362
7363 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 7364 (Bug#10401)
6bb72cbd 7365
f186bb95
LMI
73662012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
7367
29232a68
LMI
7368 * faces.el (set-face-attribute): Clarify the meaning of the nil
7369 frame (bug#10294).
7370
4e5d086d
LMI
7371 * subr.el (with-selected-frame): Mention that the selected frame
7372 is restored (bug#9980).
7373
8e66aebe
LMI
7374 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
7375 (bug#9759).
7376
cd394be1 7377 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
7378 (password-read): Don't autoload unused function.
7379
adf4e762
JB
73802012-01-07 Juanma Barranquero <lekktu@gmail.com>
7381
7382 * progmodes/which-func.el (which-func-mode): Turn into a
7383 non-interactive function and mark as obsolete (bug#10428).
7384
89bd9ccd
CY
73852012-01-06 Chong Yidong <cyd@gnu.org>
7386
7387 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
7388 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
7389 functions, along with 1 and -1.
7390
4afee9d5
EZ
73912012-01-06 Eli Zaretskii <eliz@gnu.org>
7392
7393 * time.el (display-time-load-average)
7394 (display-time-default-load-average): Doc fixes. See the thread
7395 starting at
7396 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
7397 for the details.
7398
536aea70
GM
73992012-01-06 Glenn Morris <rgm@gnu.org>
7400
665ae865
GM
7401 * mail/unrmail.el (unrmail): Give an explicit error if the input file
7402 has no messages. (Bug#10377)
7403
c869783d
GM
7404 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
7405 than Info-edit. (Bug#10385)
7406
2bb4227e
GM
7407 * time.el (display-time-load-average, display-time-next-load-average):
7408 Doc fixes.
7409
7d5944b9
GM
7410 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
7411 local setting of buffer-read-only to the input buffer. (Bug#10419)
7412
536aea70
GM
7413 * calendar/calendar.el (calendar-mode):
7414 Locally set scroll-margin to 0. (Bug#10379)
7415
7dccca16
UM
74162012-01-06 Ulrich Mueller <ulm@gentoo.org>
7417
7418 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
7419
afbb7930
GM
74202012-01-05 Glenn Morris <rgm@gnu.org>
7421
7422 * eshell/em-unix.el (diff-no-select): Autoload it.
7423 (eshell/diff): Use diff-no-select. (Bug#10420)
7424
04482335
CY
74252012-01-05 Chong Yidong <cyd@gnu.org>
7426
7baca3bc
CY
7427 * shell.el (shell-dynamic-complete-functions): Revert last change.
7428 (shell-command-completion-function): New function.
7429 (shell-completion-vars): Use it to implement
7430 shell-completion-execonly (Bug#10417).
7431
04482335
CY
7432 * custom.el (enable-theme): Don't set custom-safe-themes.
7433
1d00653d
SM
7434 * cus-theme.el (custom-theme-merge-theme):
7435 Ignore custom-enabled-themes and custom-safe-themes.
04482335 7436
bb5aa5d6
MM
74372012-01-05 Michael R. Mauger <mmaug@yahoo.com>
7438
7439 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
7440 first prompt in `sql-interacive-mode'.
7441 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 7442 keywords.
6df6ae42 7443 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
7444 (sql-product-interactive): Bug fix: Set `sql-buffer' in
7445 context of original buffer. Invoke `sql-login-hook'.
7446
a7183d7c
EZ
74472012-01-04 Eli Zaretskii <eliz@gnu.org>
7448
7449 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
7450 letters in cite-prefix.
7451
a1eacd1e
LMI
74522012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
7453
7454 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
7455
787cdb34
CY
74562012-01-03 Chong Yidong <cyd@gnu.org>
7457
1d00653d
SM
7458 * shell.el (shell-dynamic-complete-functions):
7459 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
7460 comint-filename-completion first (Bug#10417).
7461
30710442
RS
74622012-01-02 Richard Stallman <rms@gnu.org>
7463
7464 * battery.el (battery-status-function):
7465 Detect when to use battery-yeeloong-sysfs.
7466 (battery-echo-area-format): Add string for Yeeloong.
7467 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
7468 (battery-yeeloong-sysfs): New function.
7469
f75bfc33
CY
74702012-01-02 Chong Yidong <cyd@gnu.org>
7471
7472 * dirtrack.el (dirtrack-list): Eliminate unused third element.
7473 (dirtrack): Merge code for handling relative filenames in prompt
7474 from shell-dir-cookie-watcher.
7475 (dirtrack-debug-message): New arg to avoid excess format calls.
7476
7477 * shell.el (shell-dir-cookie-re): Variable deleted.
7478 (shell-dir-cookie-watcher): Function deleted.
7479 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
7480 with dirtrack-mode.
7481
651e947e
EZ
74822012-01-01 Eli Zaretskii <eliz@gnu.org>
7483
1d00653d
SM
7484 * term/w32-win.el (dynamic-library-alist) <gnutls>:
7485 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
7486 libgnutls-26.dll.
7487
94d4c7dc
AS
74882011-12-31 Andreas Schwab <schwab@linux-m68k.org>
7489
7490 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
7491
8d43f3cd
EZ
74922011-12-31 Eli Zaretskii <eliz@gnu.org>
7493
7494 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
7495 headers of non-MIME messages, when rmail-enable-mime is non-nil.
7496
98c8795a
MA
74972011-12-29 Michael Albinus <michael.albinus@gmx.de>
7498
7499 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
7500 also for alternative shells.
7501 (tramp-open-connection-setup-interactive-shell): Check, whether
7502 the shell is a busybox.
7503 (tramp-send-command): Don't suppress multiple prompts for
7504 busyboxes, it hurts.
7505
51281b32
CY
75062011-12-28 Chong Yidong <cyd@gnu.org>
7507
7508 * progmodes/gdb-mi.el (gdb-get-source-file-list)
7509 (gdb-get-source-file): Move mode line update to
7510 gdb-get-source-file (Bug#10087).
7511
2170cb53
CY
75122011-12-25 Chong Yidong <cyd@gnu.org>
7513
7514 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
7515 gud-gdb-marker-filter without taking it as an argument.
7516 (gud-gdb-run-command-fetch-lines): Caller changed.
7517 (gud-gdb-completion-function): New variable.
7518 (gud-gdb-completion-at-point): Use it.
7519 (gud-gdb-completions-1): Split from gud-gdb-completions.
7520
7521 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
7522 function as separate arguments.
7523 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
7524 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
7525 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
7526 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
7527 (gdb-stopped, def-gdb-auto-update-trigger)
7528 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
7529 (gdb-get-changed-registers, gdb-get-main-selected-frame):
7530 Callers changed.
2170cb53
CY
7531 (gud-gdbmi-completions): New function.
7532 (gdb): Use it for generating the completion table.
7533
be8b11bb
AM
75342011-12-24 Alan Mackenzie <acm@muc.de>
7535
7536 Introduce a mechanism to widen the region used in context font
1d00653d 7537 locking. Use this to protect declarations from losing their contexts.
be8b11bb 7538
1d00653d
SM
7539 * progmodes/cc-langs.el (c-before-font-lock-functions):
7540 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 7541 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
7542 functions to be run just before context (etc.) font locking.
7543
7544 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 7545 New, functionality extracted from
be8b11bb 7546 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 7547 (c-in-after-change-fontification): New variable.
be8b11bb
AM
7548 (c-after-change): Set c-in-after-change-fontification.
7549 (c-set-fl-decl-start): Rejig its interface, so it can be called
7550 from both after-change and context fontifying.
b81d40f0
JB
7551 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
7552 New functions.
7553 (c-standard-font-lock-fontify-region-function): New variable.
7554 (c-font-lock-fontify-region): New function.
be8b11bb 7555
341cf6ac
JL
75562011-12-24 Juri Linkov <juri@jurta.org>
7557
7558 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
7559 (Bug#10348)
7560
bffcee0a
MA
75612011-12-23 Michael Albinus <michael.albinus@gmx.de>
7562
7563 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
7564 existence of source file. (Bug#10325)
7565
cb5e207c
AM
75662011-12-23 Alan Mackenzie <acm@muc.de>
7567
7568 Fix unstable fontification inside templates.
7569
b81d40f0
JB
7570 * progmodes/cc-langs.el (c-before-font-lock-functions):
7571 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
7572 additionally has c-set-fl-decl-start. The other languages (apart
7573 from AWK) have that as a single entry.
7574
b81d40f0
JB
7575 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
7576 The functionality for "local" declarations has been extracted to
cb5e207c
AM
7577 c-set-fl-decl-start.
7578
b81d40f0
JB
7579 * progmodes/cc-mode.el (c-common-init, c-after-change):
7580 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
7581 (c-set-fl-decl-start): New function, extracted from
7582 c-font-lock-enclosing-decls and enhanced.
7583
60ff536c
JB
75842011-12-23 Juanma Barranquero <lekktu@gmail.com>
7585
7586 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
7587
1c4757d6
JL
75882011-12-22 Juri Linkov <juri@jurta.org>
7589
7590 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
7591
d031f2c7
CY
75922011-12-22 Chong Yidong <cyd@gnu.org>
7593
7594 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
7595
bace743a
DA
75962011-12-21 Drew Adams <drew.adams@oracle.com>
7597
7598 * files.el (file-remote-p): Fix docstring. (Bug#10319)
7599
728a1f2b
JC
76002011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
7601
7602 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
7603
0d373f73
TZ
76042011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
7605
fec0aaa4
TZ
7606 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
7607 highlighting and support. Fix up comments for capitalization.
7608 (cfengine-mode-debug): New var.
7609 (cfengine3-mode): Change the modeline indicator to "CFE3".
7610 (cfengine3-font-lock-keywords): Improve defun highlighting.
7611 (cfengine2-actions): Rename from `cfengine-actions'.
7612 (cfengine2-font-lock-keywords): Rename from
7613 `cfengine-font-lock-keywords'.
7614 (cfengine2-imenu-expression): Rename from
7615 `cfengine-imenu-expression'.
7616 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
7617 (cfengine2-beginning-of-defun): Rename from
7618 `cfengine-beginning-of-defun'.
7619 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
7620 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
7621 (cfengine2-mode): Rename from `cfengine-mode'. Change the
7622 modeline indicator to "CFE2".
7623 (cfengine-mode): Defalias to `cfengine-auto-mode'.
7624 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 7625
bc86f573
CY
76262011-12-21 Chong Yidong <cyd@gnu.org>
7627
7628 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
7629 filename argument.
7630
d45ba96b
MR
76312011-12-20 Martin Rudalics <rudalics@gmx.at>
7632
7633 * window.el (window-normalize-buffer-to-display): Remove.
7634 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
7635
a6198c90
CY
76362011-12-19 Chong Yidong <cyd@gnu.org>
7637
7638 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
7639 Don't signal an error in a predicate function; return non-nil.
7640 (vc-dir-mark-file): Move the error here.
7641 (vc-dir-mark-unmark): If acting on the region, keep going if one
7642 of the entries cannot be marked/unmarked.
7643 (vc-dir-mark-all-files): If current entry is a directory, mark
7644 only child files, as documented.
7645
34c5fb55
VB
76462011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
7647
7648 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
7649 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
7650 addition.
7651
c803b2b7
JD
76522011-12-18 Jan Djärv <jan.h.d@swipnet.se>
7653
7654 * term/ns-win.el (ns-get-selection-internal)
7655 (ns-store-selection-internal): Declare.
1154d12e
JB
7656 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
7657 Declare as obsolete.
7658 (ns-get-pasteboard, ns-paste-secondary):
7659 Use ns-get-selection-internal.
7660 (ns-set-pasteboard, ns-copy-including-secondary):
7661 Use ns-store-selection-internal.
c803b2b7 7662
9cff91f8 76632011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
7664
7665 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 7666 (vc-deduce-fileset): Doc fix.
99a289d9 7667
f16c898a
AS
76682011-12-16 Andreas Schwab <schwab@linux-m68k.org>
7669
7670 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
7671
763237c4
SS
76722011-12-13 Sam Steingold <sds@gnu.org>
7673
7674 * man.el (Man-getpage-in-background): When running under a
7675 window-system, ignore $MANWIDTH and $COLUMNS.
7676
5fc1c122
KH
76772011-12-15 Kenichi Handa <handa@m17n.org>
7678
7679 * language/ethio-util.el: Change coding tag to utf-8-emacs.
7680 (setup-ethiopic-environment-internal): Comment out key-binding for
7681 ethio-toggle-punctuation.
7682
13d49cbb
AM
76832011-12-13 Alan Mackenzie <acm@muc.de>
7684
898169a2
AM
7685 Add the switch statement to AWK Mode.
7686
7a71b18d 7687 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
7688 "default" to the keywords regexp.
7689
7a71b18d 7690 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 7691 expression as the rest.
1d00653d
SM
7692 (c-nonlabel-token-key): Allow string literals for AWK.
7693 Refactor for the other modes.
898169a2 7694
13d49cbb 7695 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 7696 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
7697 routines. Limit backward searching in c-font-lock-enclosing.decl.
7698
7699 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
7700 pp-state and literal type in addition to the limits.
1d00653d 7701 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 7702 (c-state-literal-at): Use the above new defun.
1d00653d
SM
7703 (c-slow-in-literal, c-fast-in-literal): Remove.
7704 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
7705
7706 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
7707 being in a literal. Add a limit for backward searching.
7708
7709 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
7710 c-slow-in-literal.
7711
15e0efc7
SM
77122011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
7713
7714 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
7715
454592a6
MR
77162011-12-13 Martin Rudalics <rudalics@gmx.at>
7717
7718 * window.el (delete-other-windows): Use correct frame in call to
7719 window-with-parameter.
7720
87393f26
DP
77212011-12-12 Daniel Pfeiffer <occitan@t-online.de>
7722
7723 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
7724 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
7725 (makefile-gmake-statements, makefile-makepp-statements):
7726 Use it and add new makepp keywords.
7727 (makefile-makepp-font-lock-keywords): Add new patterns.
7728 (makefile-match-function-end): Match new [...] and [[...]].
7729
11636b22
JB
77302011-12-11 Juanma Barranquero <lekktu@gmail.com>
7731
7732 * ses.el (ses-call-printer-return, ses-cell-property-get)
7733 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
7734 (ses-create-cell-variable, ses-reset-header-string)
7735 (ses-cell-set-formula, ses-repair-cell-reference-all)
7736 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
7737 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
7738 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
7739 (ses-aset-with-undo, ses-load, ses-truncate-cell)
7740 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
7741 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
7742 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
7743 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
7744 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
7745 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
7746 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
7747 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
7748
cf018193
VB
77492011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
7750
7751 * ses.el: The overall change is to add cell renaming, that is
7752 setting fancy names for cell symbols other than name matching
7753 "\\`[A-Z]+[0-9]+\\'" regexp .
7754 (ses-create-cell-variable): New defun.
7755 (ses-relocate-formula): Relocate formulas only for cells the
7756 symbols of which are not renamed, i.e. symbols whose names do not
7757 match regexp "\\`[A-Z]+[0-9]+\\'".
7758 (ses-relocate-all): Relocate values only for cells the symbols of
7759 which are not renamed.
7760 (ses-load): Create cells variables as the (ses-cell ...) are read,
7761 in order to check row col consistency with cell symbol name only
7762 for cells that are not renamed.
7763 (ses-replace-name-in-formula): New defun.
7764 (ses-rename-cell): New defun.
7765
ee957461
CY
77662011-12-11 Chong Yidong <cyd@gnu.org>
7767
7768 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
7769 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
7770
9a9e9ef0
MR
77712011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
7772
7773 * window.el (other-window): Fix docstring.
7774
92a8eba5
EZ
77752011-12-10 Eli Zaretskii <eliz@gnu.org>
7776
7777 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
7778 `from' or `to' address before taking its substring.
7779 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
7780 encoded name is chopped in the middle of the encoded string, and
7781 thus displayed encoded.
7782
e152e577
JB
77832011-12-10 Juanma Barranquero <lekktu@gmail.com>
7784
7785 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
7786
e5d84bfe
EZ
77872011-12-10 Eli Zaretskii <eliz@gnu.org>
7788
7789 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
7790 to use texinfo-update-node and commands that call it if the
7791 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 7792 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
7793 (texinfo-all-menus-update, texinfo-master-menu)
7794 (texinfo-update-node, texinfo-every-node-update)
7795 (texinfo-multiple-files-update): Doc fix. Warn against updating
7796 all the @node lines.
7797 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
7798 argument is numeric. Explain better in the doc string what the
7799 function really does.
7800 (texinfo-insert-master-menu-list): Improve the error message
7801 displayed if there's no menu in the Top node.
7802 (Bug#2975) See also this thread:
e5d84bfe
EZ
7803 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
7804
1d84e9bb
MG
78052011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
7806
7807 * speedbar.el (speedbar-supported-extension-expressions):
7808 Add .adb and .ads, commonly used for Ada source code (bug#10256).
7809
382c953b
JB
78102011-12-09 Juanma Barranquero <lekktu@gmail.com>
7811
7812 * printing.el (pr-mode-alist):
7813 * simple.el (filter-buffer-substring-functions)
7814 (completion-list-insert-choice-function):
7815 * window.el (window-with-parameter, window-atom-root)
7816 (window-sides-slots, window-size-fixed, window-min-delta)
7817 (window-max-delta, window--resize-mini-window)
7818 (window--resize-child-windows-normal, window-tree)
7819 (delete-other-windows, quit-window, split-window)
7820 (display-buffer-record-window, special-display-buffer-names)
7821 (special-display-regexps, special-display-popup-frame)
7822 (same-window-p, split-window-sensibly)
7823 (display-buffer-overriding-action, display-buffer-alist)
7824 (display-buffer-base-action, display-buffer, switch-to-buffer)
7825 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
7826 (fit-window-to-buffer, recenter-positions)
7827 (mouse-autoselect-window-state, mouse-autoselect-window-select):
7828 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
7829 and remove unneeded backslashes in docstrings.
7830
39c9faef
SM
78312011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
7832
98449af8
SM
7833 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
7834
39c9faef
SM
7835 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
7836 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
7837 end in ".mk".
7838 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
7839 when reading the makefile (bug#10116).
7840
86ed9fdc
SM
78412011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
7842
7843 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
7844 (bug#10116).
7845
5580f89d
GM
78462011-12-06 Glenn Morris <rgm@gnu.org>
7847
7848 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
7849
28d3917c
CY
78502011-12-06 Chong Yidong <cyd@gnu.org>
7851
7852 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
7853
a98edce9
JB
78542011-12-06 Juanma Barranquero <lekktu@gmail.com>
7855
7856 * textmodes/table.el (table-shorten-cell): Fix typo.
7857
e65adfac
CG
78582011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
7859
7860 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
7861
71cc0b74
EZ
78622011-12-05 Eli Zaretskii <eliz@gnu.org>
7863
7864 * descr-text.el (describe-char): Fix display of strong
7865 right-to-left characters and directional embeddings and overrides.
7866
7867 * simple.el (what-cursor-position): Fix display of codepoints of
7868 strong right-to-left characters.
7869
315bc30d
CY
78702011-12-05 Chong Yidong <cyd@gnu.org>
7871
7872 * faces.el (read-color): Doc fix.
7873
58a70b94
GM
78742011-12-05 Glenn Morris <rgm@gnu.org>
7875
7876 * align.el (align--set-marker): Add doc-string.
7877 Don't try to move something that is not a marker. (Bug#10216)
7878
5158face
GM
78792011-12-04 Glenn Morris <rgm@gnu.org>
7880
7881 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
7882 overly zealous deletion of trailing whitespace.
7883
520fca41
JB
78842011-12-04 Juanma Barranquero <lekktu@gmail.com>
7885
7886 * server.el (server-delete-client): On Windows, do not try to delete
7887 the only terminal.
7888 (server-process-filter): On Windows, treat requests for a tty frame as
7889 if they were for a GUI frame if the running server is in GUI mode.
7890
5e605a2e
GM
78912011-12-03 Glenn Morris <rgm@gnu.org>
7892
7893 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
7894
5c3fe83f
SM
78952011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
7896
6f5e57e7
SM
7897 * electric.el: Streamline electric-indent's hook.
7898 (electric-indent-chars): Revert to simple list.
7899 (electric-indent-functions): New var.
7900 (electric-indent-post-self-insert-function): Use it.
7901
5c3fe83f
SM
7902 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
7903 there's no inferior buffer (bug#10196).
7904 (prolog-consult-compile): Don't use toggle-read-only.
7905
6bdac736
MA
79062011-12-02 Michael Albinus <michael.albinus@gmx.de>
7907
7908 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
7909 interrupt. (Bug#10187)
7910
6131ba7f
SM
79112011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
7912
99c79fee
SM
7913 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
7914 (bug#9160).
7915
6131ba7f
SM
7916 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
7917 (bug#10191).
7918
cb0a02ea
JL
79192011-12-02 Juri Linkov <juri@jurta.org>
7920
7921 * info.el (Info-search): Display "end of manual" when Isearch
7922 reaches the end of single-file Info manual. (Bug#9918)
7923
66e0570c
EZ
79242011-12-02 Eli Zaretskii <eliz@gnu.org>
7925
7926 * isearch.el (isearch-message-prefix): Run the input method part
7927 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
7928
02b16839
JL
79292011-12-02 Juri Linkov <juri@jurta.org>
7930
7931 * isearch.el (isearch-occur): Use `word-search-regexp' for
7932 `isearch-word'.
7933 (isearch-search-and-update): Add condition for `isearch-word' and
7934 call `word-search-regexp'. (Bug#10145)
7935
0b950688
GM
79362011-12-01 Glenn Morris <rgm@gnu.org>
7937
7938 * eshell/em-hist.el (eshell-hist-initialize):
7939 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 7940 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 7941
9505c3c7
SM
79422011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
7943
7944 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
7945
1bbe96b2 79462011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 7947
a1beca85
SM
7948 * progmodes/verilog-mode.el (verilog-pretty-expr):
7949 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
7950 verilog, such as += *= and the like.
7951 (verilog-assignment-operator-re): Regular expression to find the
7952 assigment operator in a verilog assignment.
7953 (verilog-assignment-operation-re): Regular expression to find an
7954 assignment statement for pretty-expr.
7955 (verilog-in-attribute-p): Query returns true if point is in an
7956 attribute context; used to skip these for expression line up from
7957 pretty-expr.
7958 (verilog-in-parameter-p): Query returns true if point is in an
7959 parameter definition context; used to skip these for expression
7960 line up from pretty-expr.
7961 (verilog-in-parenthesis-p): Query returns true if point is in a
7962 parenthetical expression, specifically ( ) but not [ ] or { };
7963 used by pretty-expr.
7964 (verilog-just-one-space): If there is no space, don't add one.
7965 (verilog-get-lineup-indent-2): Specifically skip just attribute
7966 contexts for expression lineup, rather than skipping all
7967 parenthetical expressions.
7968 (verilog-calculate-indent): Fix comment, and fix indent.
7969 (verilog-do-indent): Indent declarations in lists (suggested by
7970 Joachim Lechner).
7971 (verilog-mode-abbrev-table): Populate abbrev mode with the various
7972 skeleton items.
7973 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
7974 by Alain Mellan).
7975
1bbe96b2 79762011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
7977
7978 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
7979 parameters with embedded comments. Reported by Ray Stevens.
7980 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
7981 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
7982 Reported by Tim Holt.
7983 (verilog-auto): Fix AUTOing a upper module then AUTOing module
7984 instantiated by upper module causing wrong expansion until AUTOed a
7985 second time. Reported by K C Buckenmaier.
7986 (verilog-diff-auto): Fix showing .* as a difference when
7987 `verilog-auto-star-save' off. Reported by Dan Dever.
7988 (verilog-auto-reset, verilog-read-always-signals)
7989 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
7990 temporary signals in reset list if
7991 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
7992 style to each signal's assignment type, bug381.
7993 Reported by Thomas Esposito.
6288f0ca
WS
7994 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
7995 (verilog-uvm-statement-re): Support UVM indentation and
7996 highlighting, with old OVM keywords only.
a1beca85 7997 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
7998 Support AUTOTIEOFF creating non-wire data types.
7999 Suggested by Jonathan Greenlaw.
6288f0ca
WS
8000 (verilog-auto-insert-lisp, verilog-delete-to-paren)
8001 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
8002 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
8003 (verilog-read-sub-decls, verilog-read-sub-decls-line):
8004 Fix mismatching parenthesis inside commented out code when deleting
382c953b 8005 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
8006 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
8007 non-numeric vector width. Reported by Alex Reed.
8008 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 8009 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
8010 (verilog-auto-delete-trailing-whitespace):
8011 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
8012 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
8013 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
8014 Fix verilog-scan-cache corruption when running user AUTO expansion
8015 hooks that call indentation routines.
8016 (verilog-simplify-range-expression): Fix typo ignoring lower case
8017 identifiers.
8018 (verilog-delete-auto): Fix delete-autos to also remove user created
8019 automatics, as long as they start with AUTO.
8020 (verilog-batch-diff-auto, verilog-diff-auto)
8021 (verilog-diff-function): Add `verilog-diff-auto' and bind to
8022 "C-c?" to report differences in AUTO expansion, ignoring spaces.
8023 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
8024 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
8025 (verilog-re-search-forward-quick, verilog-syntax-ppss):
8026 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
8027 is disabled and its cache will get corrupt, causing AUTOS not to
8028 expand. Instead use only -quick functions.
8029 (verilog-scan-region): Fix scanning over escaped quotes.
8030 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
8031 (verilog-re-search-backward-quick)
8032 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
8033 related functions now ignore strings, to fix misparsing of strings
8034 with magic comments embedded in them.
a1beca85
SM
8035 (verilog-read-auto-template):
8036 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
8037 Reported by Brad Dobbie.
8038 (verilog-read-auto-template):
8039 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 8040 Reported by Brad Dobbie.
6288f0ca
WS
8041 (verilog-auto-inst, verilog-auto-inst-param)
8042 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
8043 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
8044 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
8045 debugging templates without merge conflicts, bug357.
8046 Reported by Brad Dobbie.
8047 (verilog-read-auto-template):
8048 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
8049 Reported by Brad Dobbie.
8050 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
8051 abbrevs so user won't be asked to save.
8052 (verilog-read-auto-lisp-present): Fix to start at beginning of
8053 buffer in case called outside of verilog-auto.
8054 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
8055 to "X-2". Reported by Matthew Myers.
8056 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
8057 all inputs from module templates. Reported by Leith Johnson.
8058 (verilog-module-inside-filename-p): Fix locating programs as with
8059 modules.
8060 (verilog-auto-inst-port): Fix vl-width expressions when using
8061 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
8062 (verilog-decls-get-regs, verilog-decls-get-signals,
8063 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
8064 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
8065 verilog-read-decls): Combine reg and wire structures into one var
8066 structure to represent SystemVerilog concepts.
8067 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
8068 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
8069 (verilog-auto-wire-type, verilog-insert-definition):
8070 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
8071 SystemVerilog "logic" keyword instead of "wire"/"reg".
8072 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
8073 to declares outputs that also have assignments (presumably in an
a1beca85
SM
8074 ifdef or generate if so there's not a driver conflict).
8075 Reported by Matthew Myers.
8076 (verilog-auto-declare-nettype, verilog-insert-definition):
8077 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
8078 `default_nettype none. Reported by Julian Gorfajn.
8079 (verilog-read-always-signals-recurse, verilog-read-decls)
8080 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
8081 malformed end statement, bug325. Reported by Joshua Wise and
8082 Andrew Drake.
8083 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
8084 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
8085 when expanding .* in interfaces, bug320.
8086 Reported by Pierre-David Pfister.
6288f0ca 8087 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
8088 name and open parenthesis, bug317.
8089 Reported by Pierre-David Pfister.
6288f0ca
WS
8090 (verilog-simplify-range-expression): Fix simplification of
8091 multiplications inside AUTOWIRE connections, bug303.
8092 (verilog-auto-inst-port): Support parameter expansion in
8093 multidimensional arrays.
8094 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
8095 after "assert property". Reported by Julian Gorfajn.
8096 (verilog-simplify-range-expression): Fix "couldn't merge" errors
8097 with multiplication, bug303.
8098 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
8099 Reported by Jan Frode Lonnum.
8100
1bbe96b2
GM
81012011-11-30 Juanma Barranquero <lekktu@gmail.com>
8102
8103 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
8104 (hfy-shell-file-name, hfy-shell):
8105 * international/fontset.el (x-decompose-font-name): Fix typos.
8106
81072011-11-29 Ken Brown <kbrown@cornell.edu>
8108
8109 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
8110 (gdb-version): Remove defvar.
8111 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
8112 (gdb-gud-context-command, gdb-non-stop-handler)
8113 (gdb-current-context-command, gdb-stopped): Use it.
8114 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
8115 (gdb-non-stop-handler): Don't enable pretty-printing here.
8116 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
8117 non-stop mode. Use the following.
8118 (gdb-check-target-async): New defun.
8119 (gud-watch, gdb-stopped): Fix whitespace.
8120 (gdb-get-source-file): Don't try to display the source file if
8121 `gdb-main-file' is nil.
8122
81232011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8124
8125 * align.el: Try to generate fewer markers (bug#10047).
8126 (align--set-marker): New macro.
8127 (align-region): Use it.
8128
c935221f
SM
81292011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
8130
8131 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
8132
e70b5064
CY
81332011-11-29 Chong Yidong <cyd@gnu.org>
8134
8135 * indent.el (indent-for-tab-command, indent-according-to-mode):
8136 Doc fix.
8137 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
8138
f3af92b7
MA
81392011-11-29 Michael Albinus <michael.albinus@gmx.de>
8140
8141 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
8142 aware of remote file names. (Bug#10124)
8143
ed472be9
CY
81442011-11-29 Chong Yidong <cyd@gnu.org>
8145
8146 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
8147
24510c22
SM
81482011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8149
8150 * files.el (find-file): Don't use force-same-window (bug#10144).
8151 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
8152 use pop-to-buffer if the selected window can't be used.
8153 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
8154
c60c3703
EZ
81552011-11-28 Eli Zaretskii <eliz@gnu.org>
8156
8157 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
8158 special-mode-map.
8159
e95def75
CY
81602011-11-28 Chong Yidong <cyd@gnu.org>
8161
8162 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
8163
c3f1c606
NR
81642011-11-27 Nick Roberts <nickrob@snap.net.nz>
8165
8166 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
8167 gdb-get-source-file-list on gdb-create-source-file-list.
8168
00db469c
EZ
81692011-11-26 Eli Zaretskii <eliz@gnu.org>
8170
8171 * whitespace.el (whitespace-newline): Use a different foreground
8172 color for 16-color light-background displays.
8173
4ad3bc2a
CY
81742011-11-24 Chong Yidong <cyd@gnu.org>
8175
8176 * window.el (display-buffer--special-action): Doc fix.
8177
e9fce1ac
JB
81782011-11-25 Juanma Barranquero <lekktu@gmail.com>
8179
8180 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
8181 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
8182 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
8183 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
8184 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
8185 (avl-tree-stack-first):
8186 * emacs-lisp/cconv.el (cconv--analyse-use):
8187 * net/gnutls.el (gnutls-negotiate): Fix typos.
8188
cb825e5d
GM
81892011-11-24 Glenn Morris <rgm@gnu.org>
8190
3adbe224
GM
8191 * lpr.el (lpr-windows-system, lpr-lp-system):
8192 * mail/binhex.el (binhex-begin-line):
8193 * progmodes/grep.el (grep-history, grep-find-history):
8194 * textmodes/flyspell.el:
8195 * vc/pcvs-defs.el (cvs-global-menu):
8196 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
8197 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
8198 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
8199
321decc8
GM
8200 * net/tls.el: Fix case of "GnuTLS".
8201
420b63ad
GM
8202 * paths.el (rmail-file-name): Format doc-string for make-docfile.
8203
cb825e5d
GM
8204 * version.el (emacs-build-system): Give it a doc-string.
8205
a0649f08
JL
82062011-11-24 Juri Linkov <juri@jurta.org>
8207
8208 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
8209
c0bc0fd4
GM
82102011-11-24 Glenn Morris <rgm@gnu.org>
8211
8212 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
8213 if called on a non-mime message just toggle the headers. (Bug#8006)
8214
20db1522
JB
82152011-11-24 Juanma Barranquero <lekktu@gmail.com>
8216
8217 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
8218 (allout-lead-with-comment-string, allout-structure-deleted-hook)
8219 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
8220 (allout-rebullet-heading, allout-open-sibtopic)
8221 (allout-toggle-current-subtree-encryption)
8222 (allout-toggle-subtree-encryption, allout-encrypt-string)
8223 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
8224 (allout-distinctive-bullets-string, allout-auto-activation):
8225 * window.el (window-normalize-buffer-to-display):
8226 * progmodes/verilog-mode.el (verilog-batch-indent):
8227 * textmodes/bibtex.el (bibtex-field-braces-opt)
8228 (bibtex-field-strings-opt):
8229 * vc/cvs-status.el (cvs-tree-merge):
8230 Fix typos.
8231
7262a87c
MA
82322011-11-23 Michael Albinus <michael.albinus@gmx.de>
8233
8234 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
8235 `non-essential' to t, in order to avoid remote connections.
8236
283430a1
EZ
82372011-11-23 Eli Zaretskii <eliz@gnu.org>
8238
a1beca85
SM
8239 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8240 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
8241 case-insensitively.
8242
d2992a38
ML
82432011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8244
8245 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
8246
50419064
GM
82472011-11-23 Glenn Morris <rgm@gnu.org>
8248
da94eca1
GM
8249 * paths.el (rmail-file-name): Reformat the doc-string so that it
8250 is picked up.
8251
9aac4de2
GM
8252 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
8253 (rmail-auto-file): Ignore case in the "special" field names,
8254 as mail-fetch-field does for all others.
8255
8038d2d2
GM
8256 * mail/rmail.el (rmail-forward):
8257 * mail/rmailkwd.el (rmail-set-label):
8258 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
8259 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
8260
f3fe222a
GM
8261 * mail/rmail.el (rmail-current-message): Doc fix.
8262
50419064
GM
8263 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
8264
28109f49
SM
82652011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8266
8267 * server.el (server-eval-and-print): Allow C-g (bug#6585).
8268
394c65f1
GM
82692011-11-22 Glenn Morris <rgm@gnu.org>
8270
8271 * mail/rmailmm.el (test-rmail-mime-handler)
8272 (test-rmail-mime-bulk-handler)
8273 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
8274
f2a0aa3a
JL
82752011-11-21 Juri Linkov <juri@jurta.org>
8276
1154d12e
JB
8277 * calc/calc.el (calc-read-key-sequence):
8278 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 8279
9c34a344
LMI
82802011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
8281
8282 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
8283 Tell the caller that the next line needs recomputation, even
8284 though it doesn't start a sexp (bug#10094).
8285
f04a3be9
SM
82862011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8287
8288 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
8289
7978747f
SM
82902011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8291
f04a3be9
SM
8292 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8293 Use force-same-window.
7978747f 8294
fe7a3057
JB
82952011-11-20 Juanma Barranquero <lekktu@gmail.com>
8296
8297 * descr-text.el (describe-char-unicode-data):
8298 * json.el (json-string-escape):
8299 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
8300 (Footnote-unicode, Footnote-style-p):
8301 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
8302
24901d61
CY
83032011-11-20 Chong Yidong <cyd@gnu.org>
8304
8305 * window.el (replace-buffer-in-windows): Restore interactive spec.
8306
bac7ff22
SM
83072011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8308
24f3d7b9
SM
8309 * electric.el (electric-indent-mode): Fix last change (too optimistic).
8310
bac7ff22
SM
8311 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
8312 (byte-compile-global-not-obsolete-vars): New var.
8313 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
8314 Use it.
8315 (byte-compile-warn-obsolete): Align text with the one in *Help*.
8316
cd1181db
JB
83172011-11-20 Juanma Barranquero <lekktu@gmail.com>
8318
8319 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
8320 * progmodes/pascal.el (electric-pascal-equal):
8321 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
8322 * xml.el (xml-substitute-special): Fix typos.
8323
7fb18e9e
GM
83242011-11-20 Glenn Morris <rgm@gnu.org>
8325
8326 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
8327 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
8328 Doc fixes.
8329 (rmail-decode-mime-charset): Mark as obsolete.
8330
8331 * mail/rmailsum.el (rmail-message-regexp-p-1):
8332 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
8333 Before using mime functions, check they are set. (Bug#10077)
8334
d5a6b3ba
JL
83352011-11-19 Juri Linkov <juri@jurta.org>
8336
8337 * info.el (Info-finder-find-node): Use `package--builtins' instead
8338 of `package-alist'. Use node names formed by the pattern "Keyword "
8339 and the keyword name.
8340
e981b61f
AS
83412011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8342
1d00653d 8343 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 8344
3ffbc301
JL
83452011-11-19 Juri Linkov <juri@jurta.org>
8346
8347 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
8348 that calls `revert-buffer' on all Info buffers. (Bug#9915)
8349 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
8350 `old-history', `old-history-forward'. Add let-binding
8351 `window-selected'. Remove calls to `kill-buffer',
8352 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
8353 before calling `Info-find-node', so `Info-find-node-2' will reread
8354 the Info file. Restore window positions only when `window-selected'
8355 is non-nil.
8356
30c62133
JL
83572011-11-19 Juri Linkov <juri@jurta.org>
8358
8359 * isearch.el (isearch-lazy-highlight-new-loop):
8360 Remove condition `(not isearch-error)'. (Bug#9918)
8361
8362 * misearch.el (multi-isearch-search-fun): Add condition
8363 `(not bound)' to ignore lazy-highlighting search.
8364 Add the search-failed message "end of multi" when the end of
8365 multi-sequence is reached. Uncapitalize the search-failed
8366 message "Repeat for next buffer".
8367
8368 * info.el (Info-search): Add the search-failed message
8369 "end of the manual" when the end of the manual is reached
8370 in Isearch mode.
8371
645ca9cf
JL
83722011-11-19 Juri Linkov <juri@jurta.org>
8373
8374 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
8375 Use non-destructive `remove' instead of `delete' because
8376 `Info-history-list' stored to `Info-isearch-initial-history-list' in
8377 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
8378
df754f66
JL
83792011-11-19 Juri Linkov <juri@jurta.org>
8380
8381 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
8382 to nil instead of binding `search-ring' and `regexp-search-ring'.
8383 (Bug#9185)
8384
0e23d96a
EZ
83852011-11-19 Eli Zaretskii <eliz@gnu.org>
8386
8387 * simple.el (line-move): Force movement by logical lines for any
8388 hscrolled window, not only when auto-hscroll-mode is on.
8389 (line-move-visual): Update doc string to that effect. (Bug#10076)
8390
8a6ccb66
AS
83912011-11-19 Andreas Schwab <schwab@linux-m68k.org>
8392
8393 * language/european.el (macintosh): Define as alias for mac-roman.
8394
49ae5b39
EZ
83952011-11-19 Eli Zaretskii <eliz@gnu.org>
8396
8397 * mail/rmailmm.el (rmail-mime-display-header)
8398 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
8399 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
8400 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
8401 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
8402 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
8403 of a raw aref.
8404 (rmail-mime-entity-segment): To get past the tagline, move forward
8405 2 more lines, to account for the 2 empty lines that precede and
8406 follow the line with the buttons.
8407 (rmail-mime-update-tagline): Move one more line, to get past the
8408 empty line that follows the buttons in the tagline. (Bug#9520)
8409
c56cad4a
MR
84102011-11-19 Martin Rudalics <rudalics@gmx.at>
8411
8412 * window.el (window-max-delta-1, window-min-delta-1)
8413 (window-min-size-1, window-state-get-1, window-state-put-1)
8414 (window-state-put-2): Use "window--" prefix.
8415
cbe71af3
SM
84162011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
8417
2ad52c60
SM
8418 * emacs-lisp/smie.el: Improve warnings and conflict detection.
8419 (smie-warning-count): New var.
8420 (smie-set-prec2tab): Use it.
8421 (smie-bnf->prec2): Improve warnings. Add docstring.
8422 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
8423 (smie-bnf--set-class): New function.
8424 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
8425 corner case.
8426
6944dbc1
SM
8427 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
8428 (compilation-error-properties, compilation-move-to-column):
8429 Handle compilation-first-column while in the target buffer.
8430
c400c4d7
SM
8431 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
8432 Don't hardcode point-min==1.
8433
6dbe3e96
SM
8434 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
8435 (eshell-rewrite-for-command): Remove workaround.
8436 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
8437 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
8438 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
8439
cbe71af3
SM
8440 * files-x.el (modify-file-local-variable): Obey commenting conventions.
8441
a8e1496d
GM
84422011-11-17 Glenn Morris <rgm@gnu.org>
8443
8444 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
8445 Ignore buffer-local generated-autoload-file if it is the same
8446 as the global value. (Bug#10049)
8447
df85d315
JB
84482011-11-17 Juanma Barranquero <lekktu@gmail.com>
8449
8450 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
8451 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
8452 (reftex-toc-previous-heading, reftex-toc-max-level)
8453 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
8454 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
8455 (reftex-toc-do-promote, reftex-toc-promote-prepare)
8456 (reftex-toc-promote-action, reftex-toc-extract-section-number)
8457 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
8458 (reftex-toc-rename-label, reftex-toc-visit-location)
8459 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
8460 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
8461 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
8462 leaving "*toc*" only for references to the buffer.
8463
a0c2d0ae
MR
84642011-11-17 Martin Rudalics <rudalics@gmx.at>
8465
8466 * window.el (window-resize, delete-window, split-window):
8467 Replace window-splits by window-combination-resize.
1d00653d 8468 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 8469
35c0bac8
GM
84702011-11-17 Glenn Morris <rgm@gnu.org>
8471
8472 * progmodes/sh-script.el (sh-font-lock-keywords-var):
8473 Make bash entry derive from sh entry, not shell entry.
8474
d0c8fc8a
MA
84752011-11-16 Michael Albinus <michael.albinus@gmx.de>
8476
7262a87c
MA
8477 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
8478 local file name.
8479
7877f373
JB
84802011-11-16 Juanma Barranquero <lekktu@gmail.com>
8481
8482 * menu-bar.el (menu-bar-file-menu):
8483 * printing.el (pr-ps-utility):
8484 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
8485 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
8486 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
8487 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
8488 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
8489 (icalendar--convert-cyclic-to-ical)
8490 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
8491 (icalendar--convert-ical-to-diary)
8492 (icalendar--convert-recurring-to-diary)
8493 (icalendar--convert-non-recurring-all-day-to-diary)
8494 (icalendar-import-format-sample):
8495 * progmodes/idlw-shell.el (idlwave-shell-mode):
8496 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
8497 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
8498 (vhdl-ps-print-init): Fix typos.
8499
10649b82
KM
85002011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
8501
9d0cfcd6
GM
8502 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
8503 FSF and collapse date sequence, obscure author/maintainer email address
8504 better, remove extra version line, track relocation of author's webpage.
10649b82 8505
9d0cfcd6
GM
8506 * progmodes/python.el (python-pdbtrack-input-prompt)
8507 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
8508 regular python pdb prompts. Adjustments shamelessly taken exactly as
8509 suggested in EmacsWiki page (tiny change):
8510 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 8511
58179cce
JB
85122011-11-16 Juanma Barranquero <lekktu@gmail.com>
8513
8514 * expand.el (expand-pos, expand-index, expand-point):
8515 Remove redundant info from docstring.
8516 (expand-add-abbrevs): Doc fix.
8517 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
8518 (expand-sample-perl-mode-expand-list): Fix typos.
8519
8520 * net/dbus.el (dbus-event-member-name):
8521 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
8522 * term/pc-win.el (msdos-create-frame-with-faces):
8523 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
8524
b6f67890
MR
85252011-11-16 Martin Rudalics <rudalics@gmx.at>
8526
8527 * window.el (split-window, window-state-get-1)
8528 (window-state-put-1, window-state-put-2): Rename occurrences of
8529 window-nest to window-combination-limit.
1d00653d 8530 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 8531
ce7ddba0
CY
85322011-11-16 Chong Yidong <cyd@gnu.org>
8533
8534 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
8535 regexp (Bug#10033).
8536
3ae704f4
SM
85372011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8538
8539 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
8540 `completing-read' will remove *Completions* and will preserve
8541 current-buffer for us.
8542 (tmm-add-prompt): Users of *Completions* will always (re)set its
8543 major mode.
8544 (tmm-old-comp-map): Remove.
8545
6ad1cdde
GM
85462011-11-16 Glenn Morris <rgm@gnu.org>
8547
8548 * mail/rmailedit.el: Require rmailmm when compiling.
8549 (rmail-old-mime-state): New declaration.
8550 (rmail-edit-current-message): If editing a mime message,
8551 edit the "raw" message from the mbox buffer.
8552 (rmail-cease-edit): Handle mime messages. (Bug#9840)
8553
d20faa20
GM
85542011-11-15 Glenn Morris <rgm@gnu.org>
8555
8556 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
8557 which wasn't being used. Add optional arg to force given state.
8558 (rmail-mime): Add optional arg to force given state.
8559
c7015153
JB
85602011-11-15 Juanma Barranquero <lekktu@gmail.com>
8561
8562 * allout.el (allout-encryption-plaintext-sanitization-regexps):
8563 * frame.el (display-mm-dimensions-alist):
8564 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
8565 (outline-move-subtree-down):
8566 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
8567 (newsticker--treeview-do-get-node):
8568 * net/quickurl.el (quickurl-list-buffer-name):
8569 * progmodes/dcl-mode.el (dcl-mode):
8570 * progmodes/gdb-mi.el (gdb-mapcar*):
8571 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
8572
45261b50
GM
85732011-11-15 Glenn Morris <rgm@gnu.org>
8574
8575 * mail/rmail.el (rmail-file-coding-system): It's only ever used
8576 in a boolean sense, so just make it a boolean, and fix the doc.
8577 (rmail-show-mime-function, rmail-mime-feature)
8578 (rmail-require-mime-maybe): Doc fixes.
8579 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
8580
8581 * mail/rmailmm.el (rmail-show-mime): Doc fix.
8582
0d26e0b6
JB
85832011-11-15 Juanma Barranquero <lekktu@gmail.com>
8584
8585 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
8586 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
8587 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
8588 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
8589
447f30f6
GM
85902011-11-15 Glenn Morris <rgm@gnu.org>
8591
672b871d
GM
8592 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
8593 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
8594 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
8595 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
8596 (rmail-mime, rmail-show-mime): Doc fixes.
8597
f6aa5bb1
GM
8598 * term/ns-win.el (mode-line-frame-identification):
8599 Leave it alone. (Bug#10051)
8600
947cd66b
GM
8601 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
8602
447f30f6
GM
8603 * mail/rmailout.el (rmail-output-to-rmail-buffer):
8604 Handle empty buffers. (Bug#9978)
8605
0b381c7e
JB
86062011-11-14 Juanma Barranquero <lekktu@gmail.com>
8607
8608 * international/mule.el (define-charset):
8609 * mail/rmailmm.el (rmail-mime-find-header-encoding):
8610 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
8611 * progmodes/verilog-mode.el (verilog-backward-token):
8612 * textmodes/ispell.el (lookup-words):
8613 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
8614
71e027ac
GM
86152011-11-14 Glenn Morris <rgm@gnu.org>
8616
56632ce4
GM
8617 * progmodes/executable.el
8618 (executable-make-buffer-file-executable-if-script-p):
8619 Handle file-modes returning nil.
8620
40500957
GM
8621 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
8622 message - not necessary, and causes problems. (Bug#9831)
8623
071c2340
GM
8624 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
8625
d3cfca60
GM
8626 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
8627
71e027ac
GM
8628 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
8629 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
8630 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
8631
89d61221
MR
86322011-11-12 Martin Rudalics <rudalics@gmx.at>
8633
8634 * window.el (window-resize, delete-window): Use window-splits
8635 variable instead of function.
8636 (window-state-get-1, window-state-put-2, window-state-put):
8637 Don't deal with windows' splits status.
8638
98282f6f
GM
86392011-11-12 Glenn Morris <rgm@gnu.org>
8640
8641 * apropos.el (apropos-do-all, apropos-library, apropos-value)
8642 (apropos-documentation): Doc fixes.
8643
40a8bdf6
JB
86442011-11-11 Juanma Barranquero <lekktu@gmail.com>
8645
8646 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
8647 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
8648
65bd19ff
SM
86492011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
8650
8651 * electric.el (electric-indent-post-self-insert-function): Make it
8652 possible for a char to only indent in some circumstances.
8653 (electric-indent-mode): Simplify.
8654
54f9154c
MR
86552011-11-11 Martin Rudalics <rudalics@gmx.at>
8656
8657 * window.el (windows-with-parameter): Remove unused function.
8658 (windows-at-side): Rename to window-at-side-list.
8659 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
8660 (window-side-check, window-size-ignore, window-size-fixed-1)
8661 (window-in-direction-2): Prefix with "window--".
8662 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 8663
68cbc58b
GM
86642011-11-11 Glenn Morris <rgm@gnu.org>
8665
8666 * subr.el (eval-after-load): If FILE is already loaded,
8667 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
8668
b2621720
GM
86692011-11-10 Glenn Morris <rgm@gnu.org>
8670
9a4de110
GM
8671 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
8672 Call svn via vc-svn-command rather than vc-do-command.
8673 (vc-svn-command): Add --non-interactive. (Bug#9993)
8674 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
8675
b2621720
GM
8676 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
8677 Add toggle-read-only. (Bug#7292)
8678 * files.el (toggle-read-only): Mention that it should only
8679 be used interactively. (Bug#10006)
8680
1dce7193
SM
86812011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
8682
d9ac1a1e
SM
8683 * progmodes/compile.el (compilation-error-regexp-alist-alist):
8684 Adjust regexp for OCaml warnings.
8685
0c325082
SM
8686 * electric.el (electric-pair-post-self-insert-function): Let user
8687 turn it off buffer-locally (bug#9932).
8688
90132c14
SM
8689 * progmodes/python.el (python-beginning-of-statement):
8690 Rewrite (bug#2703).
8691
1dce7193
SM
8692 * progmodes/compile.el: Better handle TABs (bug#9749).
8693 (compilation-internal-error-properties)
8694 (compilation-next-error-function): Obey the target buffer's
8695 compilation-error-screen-columns.
8696
c4e7c63a
JB
86972011-11-09 Juanma Barranquero <lekktu@gmail.com>
8698
8699 * progmodes/meta-mode.el: Remove obsolete comments.
8700 (meta-right-comment-regexp, meta-ignore-comment-regexp):
8701 Fix typos in docstrings.
8702
2cffd681
MR
87032011-11-09 Martin Rudalics <rudalics@gmx.at>
8704
8705 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 8706 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
8707 (window--resizable): New function. Make all callers of
8708 window-resizable call window--resizable instead.
8709 (window-resizable): Rewrite in terms of window--resizable.
8710
0edcba87
GM
87112011-11-08 Glenn Morris <rgm@gnu.org>
8712
8713 * progmodes/delphi.el (delphi-mode-syntax-table):
8714 Let define-derived-mode define a proper syntax table. (Bug#9994)
8715
4b0d61e3
SM
87162011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8717
8718 * window.el: Stay away from defsubst.
8719 (window-list-no-nils): Remove.
8720 (window-state-get-1, window-state-get): Use backquote instead.
8721
cd394be1 87222011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 8723
4b0d61e3 8724 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 8725 Fix incorrect use of default argument in `completing-read'.
8726
e1c2c6f2
MR
87272011-11-08 Martin Rudalics <rudalics@gmx.at>
8728
8729 * window.el (display-buffer-function, special-display-function):
8730 Mention display-buffer-record-window but do not mention
8731 help-setup parameter in doc-strings.
b3f4a882 8732 (window-min-delta): Fix doc-string typo.
e1c2c6f2 8733
105216ed
CY
87342011-11-08 Chong Yidong <cyd@gnu.org>
8735
8736 * window.el (window-total-height, window-total-width): Doc fix.
8737 (window-body-size): Move from C.
8738 (window-body-height, window-body-width): Move to C.
8739
0a9f9ab5
SM
87402011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
8741
8742 * window.el: Make special-display like display-buffer-alist (bug#9532).
8743 (display-buffer--special-action): New function, morphed
8744 from display-buffer--special.
8745 (display-buffer): Use it to handle special-display-buffers at higher
8746 priority (just after display-buffer-alist).
8747 (display-buffer-fallback-action, display-buffer--other-frame-action)
8748 (pop-to-buffer-same-window): Remove display-buffer--special.
8749
a769dd15
GM
87502011-11-07 Glenn Morris <rgm@gnu.org>
8751
8752 * calendar/cal-menu.el (cal-menu-set-date-title):
8753 Do nothing if not in a calendar. (Bug#9976)
8754
05a61ee3
SM
87552011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
8756
8757 * files.el (find-file): Always use selected-window.
8758
be7f5545
MR
87592011-11-07 Martin Rudalics <rudalics@gmx.at>
8760
8761 * window.el (window-combinations): Make WINDOW argument
8762 mandatory. Rewrite doc-string.
8763 (walk-window-subtree, window-atom-check, window-min-delta)
8764 (window-max-delta, window--resize-this-window)
8765 (window--resize-root-window-vertically, window-tree)
8766 (balance-windows, window-state-put): Rewrite doc-strings as to
8767 not mention the term "subwindow".
8768 (window--resize-subwindows-skip-p): Rename to
8769 window--resize-child-windows-skip-p.
8770 (window--resize-subwindows-normal): Rename to
8771 window--resize-child-windows-normal.
8772 (window--resize-subwindows): Rename to
8773 window--resize-child-windows.
8774 (window-or-subwindow-p): Rename to window--in-subtree-p.
8775
3c6702ef
ML
87762011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
8777
8778 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
8779 Ensure that mbox format messages end in two newlines (Bug#9974).
8780
49745b39
CY
87812011-11-06 Chong Yidong <cyd@gnu.org>
8782
8783 * window.el (window-combination-p): Function deleted; its
8784 side-effect is not used in any existing code.
8785 (window-combinations, window-combined-p): Call window-*-child
8786 directly.
8787
24300f5f
CY
87882011-11-05 Chong Yidong <cyd@gnu.org>
8789
8790 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
8791 (window-size-ignore, window-state-get): Callers changed.
8792 (window-normalize-window): Rename from window-normalize-any-window.
8793 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 8794 (window-normalize-live-window): Delete.
447f16b8
CY
8795 (window-combination-p, window-combined-p, window-combinations)
8796 (walk-window-subtree, window-atom-root, window-min-size)
8797 (window-sizable, window-sizable-p, window-size-fixed-p)
8798 (window-min-delta, window-max-delta, window-resizable)
8799 (window-resizable-p, window-full-height-p, window-full-width-p)
8800 (window-current-scroll-bars, window-point-1, set-window-point-1)
8801 (window-at-side-p, window-in-direction, window-resize)
8802 (adjust-window-trailing-edge, maximize-window, minimize-window)
8803 (window-deletable-p, delete-window, delete-other-windows)
8804 (record-window-buffer, unrecord-window-buffer)
8805 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
8806 (quit-window, split-window, window-state-put)
8807 (set-window-text-height, fit-window-to-buffer)
8808 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 8809
89bd5ee1
EZ
88102011-11-04 Eli Zaretskii <eliz@gnu.org>
8811
53479029
EZ
8812 * mail/rmail.el (rmail-simplified-subject): Decode subject with
8813 rfc2047-decode-string.
8814 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
8815 warnings.
8816
89bd5ee1
EZ
8817 * window.el (window-body-height, window-body-width): Mention in
8818 the doc string that the return values are in frame's canonical
8819 units. (Bug#9949)
8820
bd17fdee
AM
88212011-11-03 Alan Mackenzie <acm@muc.de>
8822
8823 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
8824 change in cc-engine.el.
8825
acc825c5
SM
88262011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
8827
8828 * window.el (switch-to-buffer): Use `force-same-window' interactively.
8829
1885e5b8
MR
88302011-11-02 Martin Rudalics <rudalics@gmx.at>
8831
8832 * window.el (quit-window): Call unrecord-window-buffer after
8833 showing another buffer in the window. (Bug#9937)
acc825c5 8834 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 8835
ebe06da9
JB
88362011-11-02 Juanma Barranquero <lekktu@gmail.com>
8837
8838 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
8839 Accept status with more than 9 shelves. (Bug#9935)
8840 Reported by Colin D Bennett <colin@gibibit.com>.
8841
4ee88440
MR
88422011-11-01 Martin Rudalics <rudalics@gmx.at>
8843
8844 * help.el (with-help-window): Don't reference
8845 temp-buffer-show-specifiers in doc-string.
8846
08e1d82c
AS
88472011-10-31 Andreas Schwab <schwab@linux-m68k.org>
8848
8849 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
8850 menu-item.
8851
84bd6e9e
VJL
88522011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
8853
8854 * whitespace.el: New version 13.2.2.
8855 (whitespace-newline-mode): Disable properly. Reported by Sarah
8856 <EmacsWiki>.
8857
dba0634a
UJ
88582011-10-30 Ulf Jasper <ulf.jasper@web.de>
8859
8860 * net/newst-treeview.el: Remove "Time-stamp".
8861 (newsticker--group-manage-orphan-feeds): Do not call
8862 newsticker--treeview-tree-update.
db22a3c2
JB
8863 (newsticker-treeview-update, newsticker-treeview):
8864 Call newsticker--treeview-tree-update if necessary.
dba0634a 8865
3d8daefe
MR
88662011-10-30 Martin Rudalics <rudalics@gmx.at>
8867
8868 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
8869 (window-iso-combinations): Remove "iso-" infix.
8870 Suggested by Chong Yidong.
3d8daefe
MR
8871 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
8872 (window-max-delta-1, window-resize, window--resize-siblings)
8873 (window--resize-this-window, adjust-window-trailing-edge)
8874 (split-window, balance-windows-1)
8875 (shrink-window-if-larger-than-buffer):
8876 * calendar/calendar.el (calendar-generate-window):
db22a3c2 8877 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 8878
1bc4c3ae
SM
88792011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
8880
8881 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
8882 in place (bug#9907).
8883 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
8884 (eshell-rewrite-if-command, eshell-rewrite-for-command)
8885 (eshell-structure-basic-command, eshell-rewrite-while-command)
8886 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
8887 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
8888 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
8889 (eshell-do-pipelines-synchronously, eshell-eval-command):
8890 Use backquotes and prefer setq to set.
8891 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
8892 (eshell-macrop): Use functionp.
c1e2f5fa 8893 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 8894
30b65d9c
CY
88952011-10-30 Chong Yidong <cyd@gnu.org>
8896
8897 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
8898 instead of set-mark (Bug#9810).
8899
2d197ffb
CY
89002011-10-30 Chong Yidong <cyd@gnu.org>
8901
8902 * window.el (split-window-below, split-window-right): Rename from
8903 split-window-above-each-other and split-window-side-by-side
8904 respectively. All callers changed.
8905 (split-window-sensibly, split-window-sensibly): Use them.
8906 (split-window-keep-point): Doc fix.
8907
8908 * isearch.el: Add isearch-scroll property to split-window-below
8909 and split-window-right.
8910
8911 * follow.el (follow-mode):
8912 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
8913 * progmodes/ada-xref.el (ada-gdb-application):
8914 * emulation/vip.el (vip-buffer-in-two-windows):
8915 * image-dired.el (image-dired-dired-with-window-configuration):
8916 * dired-x.el (dired-do-find-marked-files):
8917 * dired.el (dired-pop-to-buffer):
8918 * bs.el (bs--show-with-configuration):
8919 * vc/emerge.el (emerge-setup-windows):
8920 * textmodes/two-column.el (2C-two-columns):
8921 * textmodes/reftex-toc.el (reftex-toc):
8922 * progmodes/gdb-mi.el (gdb-setup-windows):
8923 * progmodes/fortran.el (fortran-window-create):
8924 * net/newst-treeview.el (newsticker--treeview-window-init):
8925 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
8926 * emulation/tpu-edt.el (tpu-gold-map):
8927 * emulation/crisp.el (crisp-mode-map):
8928 * calendar/calendar.el (calendar-basic-setup): Callers changed.
8929
38bb2ca8
CY
89302011-10-29 Chong Yidong <cyd@gnu.org>
8931
aa4de341
CY
8932 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
8933
e1eb5385
CY
8934 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
8935
5d2ece3c
CY
8936 * textmodes/flyspell.el (flyspell-word): Fix char offset for
8937 forged Ispell output (Bug#7904).
8938
38bb2ca8
CY
8939 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
8940
d0af9f77
SM
89412011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8942
8943 * doc-view.el: Avoid ugly errors about not finding nil.
8944 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
8945 (doc-view-dvipdf-program, doc-view-unoconv-program)
8946 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
8947 Avoid nil or absolute file name as default value.
8948 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
8949
52bedd34
AM
89502011-10-28 Alan Mackenzie <acm@muc.de>
8951
db22a3c2 8952 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 8953
7e43cfa5
AM
89542011-10-28 Alan Mackenzie <acm@muc.de>
8955
8956 Amend the handling of c-beginning/end-of-defun in nested declaration
8957 scopes.
8958
52bedd34
AM
8959 * progmodes/cc-vars.el (c-defun-tactic): Move here from
8960 cc-langs.el. Change it to a defcustom.
7e43cfa5 8961
52bedd34
AM
8962 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
8963 cc-vars.el.
7e43cfa5 8964
d0af9f77
SM
8965 * progmodes/cc-engine.el (c-beginning-of-statement-1):
8966 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 8967
52bedd34 8968 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 8969 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
8970 (c-widen-to-enclosing-decl-scope): New function.
8971 (c-while-widening-to-decl-block): New macro.
8972 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
8973 outward for defun boundaries, and correspondingly change symbol
8974 `respect-enclosure' to `go-outward'.
8975 (c-declaration-limits): Change algorithm to report only the "innermost"
8976 defun's boundaries.
8977
1a2ce9ee
DD
89782011-10-28 Deniz Dogan <deniz@dogan.se>
8979
8980 * net/rcirc.el (rcirc-mode): Use hard newlines.
8981
bc97a826
AM
89822011-10-28 Alan Mackenzie <acm@muc.de>
8983
8984 Amend to indent and fontify macros "which include their own semicolon"
8985 correctly, using the "virtual semicolon" mechanism.
8986
52bedd34 8987 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 8988
d0af9f77 8989 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 8990 Recode to scan one line at a time rather than having \n and \r
58179cce 8991 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 8992 (c-forward-label): Amend for virtual semicolons.
58179cce 8993 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 8994
52bedd34
AM
8995 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
8996 of the new C macros.
bc97a826 8997
52bedd34 8998 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
8999 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
9000 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
9001 (c-opt-cpp-macro-define): Make into a full language variable.
9002 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
9003 AWK Mode (including \n, \r) removed, no longer needed.
9004
d0af9f77
SM
9005 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
9006 Invoke c-make-macro-with-semi-re.
bc97a826 9007
52bedd34
AM
9008 * progmodes/cc-vars.el (c-macro-with-semi-re):
9009 (c-macro-names-with-semicolon): New variables.
58179cce 9010 (c-make-macro-with-semi-re): New function.
bc97a826 9011
7a6c0941
SM
90122011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9013
9014 * vc/log-edit.el: Fill empty field rather than adding new one.
9015 (log-edit-add-field): New function.
9016 (log-edit-insert-changelog): Use it.
9017
b0c4cdcf
ML
90182011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
9019
9020 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
9021
ee1f1da9
SM
90222011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9023
9024 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
9025 (gdb--check-interpreter): New function.
9026 (gdb): Use it.
9027
51bc5f8b
GM
90282011-10-27 Glenn Morris <rgm@gnu.org>
9029
416a2c45
GM
9030 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
9031 (least-positive-float, least-negative-float)
9032 (least-positive-normalized-float, least-negative-normalized-float)
9033 (float-epsilon, float-negative-epsilon):
9034 Remove unnecessary declarations.
9035
9036 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
9037 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
9038 (least-positive-float, least-negative-float)
9039 (least-positive-normalized-float, least-negative-normalized-float)
9040 (float-epsilon, float-negative-epsilon): Add doc-strings,
9041 based on those in cl.texi.
9042
51bc5f8b
GM
9043 * files.el (set-visited-file-name): If the major-mode changed,
9044 reload the local variables. (Bug#9796)
9045
15de15c6
CY
90462011-10-27 Chong Yidong <cyd@gnu.org>
9047
9048 * subr.el (change-major-mode-after-body-hook): New hook.
9049 (run-mode-hooks): Run it.
9050
ee1f1da9
SM
9051 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9052 Use change-major-mode-before-body-hook.
15de15c6
CY
9053
9054 * simple.el (fundamental-mode):
9055 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
9056 change introducing fundamental-mode-hook.
9057
5430d399
JB
90582011-10-26 Juanma Barranquero <lekktu@gmail.com>
9059
acc825c5 9060 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 9061
ad74a69e
MA
90622011-10-26 Michael Albinus <michael.albinus@gmx.de>
9063
9064 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 9065 tramp.el explicitly. (Bug#7583)
ad74a69e 9066
71d4c2a5
SM
90672011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
9068
9069 * progmodes/octave-mod.el:
9070 * progmodes/octave-inf.el: Update maintainer.
9071
b1f6fa26
CY
90722011-10-26 Chong Yidong <cyd@gnu.org>
9073
9074 * subr.el (with-wrapper-hook): Rewrite doc.
9075
3f04efd6
MA
90762011-10-25 Michael Albinus <michael.albinus@gmx.de>
9077
9078 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 9079 filenames "/method:foo:". (Bug#9793)
3f04efd6 9080
410488d3
SM
90812011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9082
9083 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
9084 (bug#9865).
9085
c1ebb47e
GM
90862011-10-24 Glenn Morris <rgm@gnu.org>
9087
9088 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
9089
7f5c46c7
MA
90902011-10-24 Michael Albinus <michael.albinus@gmx.de>
9091
9092 * notifications.el: Add the requirement of a running D-Bus session
9093 bus to the Commentary.
9094
db2440b6
JL
90952011-10-24 Juri Linkov <juri@jurta.org>
9096
9097 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9098 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
9099 (Bug#9364)
9100
feecf435
JL
91012011-10-24 Juri Linkov <juri@jurta.org>
9102
9103 * info.el (Info-following-node-name-re): Add newline to the list
9104 of allowed characters for leading space. (Bug#9824)
9105
a3839de2
SM
91062011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
9107
acc825c5
SM
9108 * progmodes/octave-inf.el (inferior-octave-mode-map):
9109 Fix C-c C-h binding.
a3839de2
SM
9110 * progmodes/octave-mod.el (octave-help): Remove.
9111
09388e76
MA
91122011-10-23 Michael Albinus <michael.albinus@gmx.de>
9113
9114 Sync with Tramp 2.2.3.
9115
9116 * net/tramp-cache.el (top): Pacify byte-compiler using
9117 `init-file-user' and `site-run-file'.
9118
9119 * net/trampver.el: Update release number.
9120
86c60681
CY
91212011-10-23 Chong Yidong <cyd@gnu.org>
9122
9123 * files.el (toggle-read-only): Remove obsolete comment about
9124 version control.
9125
9126 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
9127 for toggle-read-only. Note that this hasn't called vc-next-action
9128 since 2008-05-02, though it wasn't documented at the time.
9129
a3839de2
SM
9130 * vc/ediff-init.el (ediff-toggle-read-only-function):
9131 Use toggle-read-only.
86c60681 9132
cd5495ff
AM
91332011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
9134
9135 Fix bug #9560, sporadic wrong indentation; improve instrumentation
9136 of c-parse-state.
9137
00b77525 9138 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 9139 correct faulty logical expression.
cd5495ff
AM
9140 (c-parse-state-state, c-record-parse-state-state):
9141 (c-replay-parse-state-state): New defvar/defuns.
9142 (c-debug-parse-state): Use new functions.
9143
42ee24ed
MR
91442011-10-22 Martin Rudalics <rudalics@gmx.at>
9145
9146 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 9147 last fix. Use window-in-direction correctly.
42ee24ed 9148
a7dee7e7
CY
91492011-10-21 Chong Yidong <cyd@gnu.org>
9150
9151 * progmodes/idlwave.el (idlwave-mode):
9152 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
9153 require-final-newline; that's done in prog-mode.
9154 Suggested by Stefan Monnier.
a7dee7e7 9155
e07b9a6d
MR
91562011-10-21 Martin Rudalics <rudalics@gmx.at>
9157
9158 * mouse.el (mouse-drag-window-above)
9159 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
9160 (mouse-drag-mode-line-1, mouse-drag-header-line)
9161 (mouse-drag-vertical-line-rightward-window): Remove.
9162 (mouse-drag-line): New function.
9163 (mouse-drag-mode-line, mouse-drag-header-line)
9164 (mouse-drag-vertical-line): Call mouse-drag-line.
9165 * window.el (window-at-side-p, windows-at-side): New functions.
9166
7e1361d9
UM
91672011-10-21 Ulrich Mueller <ulm@gentoo.org>
9168
9169 * tar-mode.el (tar-grind-file-mode):
9170 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
9171
30fcaf3a
CY
91722011-10-21 Chong Yidong <cyd@gnu.org>
9173
9174 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
9175 * progmodes/vera-mode.el (vera-mode):
9176 Use mode-require-final-newline.
30fcaf3a 9177
516eddb0
GM
91782011-10-20 Glenn Morris <rgm@gnu.org>
9179
db22a3c2 9180 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 9181
10d5f513
CS
91822011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
9183
9184 * emulation/cua-base.el (cua-set-mark): Fix case of string.
9185
ac6c8639
CY
91862011-10-20 Chong Yidong <cyd@gnu.org>
9187
9188 * emulation/cua-base.el (cua-mode):
9189 * mail/footnote.el (footnote-mode):
9190 * mail/mailabbrev.el (mail-abbrevs-mode):
9191 * net/xesam.el (xesam-minor-mode):
9192 * progmodes/bug-reference.el (bug-reference-mode):
9193 * progmodes/cap-words.el (capitalized-words-mode):
9194 * progmodes/compile.el (compilation-minor-mode)
9195 (compilation-shell-minor-mode):
9196 * progmodes/gud.el (gud-tooltip-mode):
9197 * progmodes/hideif.el (hide-ifdef-mode):
9198 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
9199 * progmodes/subword.el (subword-mode):
9200 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
9201 * progmodes/which-func.el (which-function-mode):
9202 * term/tvi970.el (tvi970-set-keypad-mode):
9203 * term/vt100.el (vt100-wide-mode):
9204 * textmodes/flyspell.el (flyspell-mode):
9205 * textmodes/ispell.el (ispell-minor-mode):
9206 * textmodes/nroff-mode.el (nroff-electric-mode):
9207 * textmodes/paragraphs.el (use-hard-newlines):
9208 * textmodes/refill.el (refill-mode):
9209 * textmodes/reftex.el (reftex-mode):
9210 * textmodes/rst.el (rst-minor-mode):
9211 * textmodes/sgml-mode.el (html-autoview-mode)
9212 (sgml-electric-tag-pair-mode):
9213 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
9214 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
9215 * emulation/crisp.el (crisp-mode):
9216 * emacs-lisp/eldoc.el (eldoc-mode):
9217 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
9218 minor mode behavior.
9219
aa42ab43
JL
92202011-10-19 Juri Linkov <juri@jurta.org>
9221
9222 * descr-text.el (describe-char): Add #x2010 and #x2011 to
9223 the list of hard-coded chars with escape-glyph face.
9224
89400f1d
SM
92252011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
9226
9227 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
9228
305c07f6
MA
92292011-10-19 Michael Albinus <michael.albinus@gmx.de>
9230
9231 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
9232 running process.
9233
13754b54
GM
92342011-10-19 Glenn Morris <rgm@gnu.org>
9235
9236 * vc/vc-bzr.el (vc-bzr-after-dir-status):
9237 Ignore ignored files. (Bug#9726)
9238
06e21633
CY
92392011-10-19 Chong Yidong <cyd@gnu.org>
9240
9241 Doc fix for minor modes, stating that an omitted argument enables
9242 the mode unconditionally when called from Lisp.
9243
9244 * abbrev.el (abbrev-mode):
9245 * allout.el (allout-mode):
9246 * autoinsert.el (auto-insert-mode):
9247 * autoarg.el (autoarg-mode, autoarg-kp-mode):
9248 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
9249 (global-auto-revert-mode):
9250 * battery.el (display-battery-mode):
9251 * composite.el (global-auto-composition-mode)
9252 (auto-composition-mode):
9253 * delsel.el (delete-selection-mode):
9254 * desktop.el (desktop-save-mode):
9255 * dired-x.el (dired-omit-mode):
9256 * dirtrack.el (dirtrack-mode):
9257 * doc-view.el (doc-view-minor-mode):
9258 * double.el (double-mode):
9259 * electric.el (electric-indent-mode, electric-pair-mode):
9260 * emacs-lock.el (emacs-lock-mode):
9261 * epa-hook.el (auto-encryption-mode):
9262 * follow.el (follow-mode):
9263 * font-core.el (font-lock-mode):
9264 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
9265 * help.el (temp-buffer-resize-mode):
9266 * hilit-chg.el (highlight-changes-mode)
9267 (highlight-changes-visible-mode):
9268 * hi-lock.el (hi-lock-mode):
9269 * hl-line.el (hl-line-mode, global-hl-line-mode):
9270 * icomplete.el (icomplete-mode):
9271 * ido.el (ido-everywhere):
9272 * image-file.el (auto-image-file-mode):
9273 * image-mode.el (image-minor-mode):
9274 * iswitchb.el (iswitchb-mode):
9275 * jka-cmpr-hook.el (auto-compression-mode):
9276 * linum.el (linum-mode):
9277 * longlines.el (longlines-mode):
9278 * master.el (master-mode):
9279 * mb-depth.el (minibuffer-depth-indicate-mode):
9280 * menu-bar.el (menu-bar-mode):
9281 * minibuf-eldef.el (minibuffer-electric-default-mode):
9282 * mouse-sel.el (mouse-sel-mode):
9283 * msb.el (msb-mode):
9284 * mwheel.el (mouse-wheel-mode):
9285 * outline.el (outline-minor-mode):
9286 * paren.el (show-paren-mode):
9287 * recentf.el (recentf-mode):
9288 * reveal.el (reveal-mode, global-reveal-mode):
9289 * rfn-eshadow.el (file-name-shadow-mode):
9290 * ruler-mode.el (ruler-mode):
9291 * savehist.el (savehist-mode):
9292 * scroll-all.el (scroll-all-mode):
9293 * scroll-bar.el (scroll-bar-mode):
9294 * server.el (server-mode):
9295 * shell.el (shell-dirtrack-mode):
9296 * simple.el (auto-fill-mode, transient-mark-mode)
9297 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
9298 (line-number-mode, column-number-mode, size-indication-mode)
9299 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
9300 * strokes.el (strokes-mode):
9301 * time.el (display-time-mode):
9302 * t-mouse.el (gpm-mouse-mode):
9303 * tool-bar.el (tool-bar-mode):
9304 * tooltip.el (tooltip-mode):
9305 * type-break.el (type-break-mode-line-message-mode)
9306 (type-break-query-mode):
9307 * view.el (view-mode):
9308 * whitespace.el (whitespace-mode, whitespace-newline-mode)
9309 (global-whitespace-mode, global-whitespace-newline-mode):
9310 * xt-mouse.el (xterm-mouse-mode): Doc fix.
9311
a3839de2
SM
9312 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
9313 Fix autogenerated docstring.
06e21633 9314
5214e501
JL
93152011-10-19 Juri Linkov <juri@jurta.org>
9316
9317 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
9318 by checking environment variables "DESKTOP_SESSION" and
9319 "XDG_CURRENT_DESKTOP". (Bug#9779)
9320
195f8db9
JL
93212011-10-19 Juri Linkov <juri@jurta.org>
9322
9323 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
9324 (browse-url-chromium-program, browse-url-chromium-arguments):
9325 New defcustoms.
9326 (browse-url-default-browser): Check for `browse-url-chromium' and
9327 call `browse-url-chromium-program'.
9328 (browse-url-chromium): New command. (Bug#9779)
9329
343a34ff
JB
93302011-10-18 Juanma Barranquero <lekktu@gmail.com>
9331
9332 * facemenu.el (list-colors-duplicates): On Windows, detect more
9333 duplicates by assuming that only colors matching "^System" are
9334 special "system colors". (Bug#9722)
9335
6978a151
SM
93362011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9337
9338 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
9339 to distinguish the author from the committer.
9340
6a80b297
MA
93412011-10-18 Michael Albinus <michael.albinus@gmx.de>
9342
9343 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
9344
b31a5677
JK
93452011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
9346
9347 * international/mule.el (sgml-html-meta-auto-coding-function):
9348 Add support for detecting encoding in HTML5 specified only as
9349 <meta charset="UTF-8">. Implementation just makes http-equiv and
9350 content-type parts from HTML4 encoding string optional. (Bug#9716)
9351
80c6d77f
GM
93522011-10-18 Glenn Morris <rgm@gnu.org>
9353
9354 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
9355
08b0fee8
CY
93562011-10-18 Chong Yidong <cyd@gnu.org>
9357
9358 * faces.el (cursor): Doc fix.
9359
67e729a5
CY
93602011-10-17 Chong Yidong <cyd@gnu.org>
9361
9362 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
9363
343a34ff 93642011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
9365
9366 * dirtrack.el (dirtrack): Support shell buffers with path
9367 prefixes, e.g. tramp-based remote shells. (Bug#9647)
9368
0bc06380
TZ
93692011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
9370
9371 * json.el: Bump version to 1.3 and note change in History.
9372 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
9373
8b79f3e0
SM
93742011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9375
5a7c536b
SM
9376 * comint.el (comint-insert-input, comint-send-input)
9377 (comint-get-old-input-default, comint-backward-matching-input)
9378 (comint-next-prompt): Use nil instead of `input' for field property of
9379 past user input (bug#114).
9380
96a8a0df
SM
9381 * minibuffer.el (completion--replace): Inherit surrounding properties
9382 (bug#114).
9383 (minibuffer-complete-and-exit): Use it.
9384
8b79f3e0
SM
9385 * comint.el (comint--table-subvert): Quote the all-completions output
9386 (bug#9160).
9387
b8f7ff0d
MR
93882011-10-17 Martin Rudalics <rudalics@gmx.at>
9389
8b79f3e0 9390 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 9391
b8f7ff0d 9392 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 9393 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
9394 entries and separate them from frame entries.
9395
c235b555
GM
93962011-10-15 Glenn Morris <rgm@gnu.org>
9397
9398 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
9399 Doc fixes.
9400
6bbfa6e1
CY
94012011-10-15 Chong Yidong <cyd@stupidchicken.com>
9402
8b79f3e0
SM
9403 * net/network-stream.el (network-stream-open-starttls):
9404 Improve detection of failure due to lack of TLS support.
ec5c990d 9405
6bbfa6e1
CY
9406 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
9407 putting the input text in front and in bold.
9408
98488977
SM
94092011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9410
3d1337be
SM
9411 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
9412
ee0b45e4
SM
9413 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
9414 empty buffer.
9415
98488977
SM
9416 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
9417 unread-command-events rather than pushing yet-another event.
9418
186f4720
EZ
94192011-10-14 Eli Zaretskii <eliz@gnu.org>
9420
9421 * mail/sendmail.el (sendmail-query-once): Improve the wording of
9422 the explanation of the possible choices. Make the options passed
9423 to completing-read shorter.
9424
8b7a997c
AM
94252011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
9426
9427 * textmodes/flyspell.el (flyspell-large-region): Make sure
9428 extended character mode is used if defined (Bug#1339).
9429
12587bbb
EZ
94302011-10-13 Eli Zaretskii <eliz@gnu.org>
9431
9432 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
9433 character info for LRE, LRO, RLE, and RLO characters by appending
9434 an invisible PDF.
12587bbb 9435
bad41229
SM
94362011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
9437
9438 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
9439 even in case of error; add debug spec; simplify data flow.
9440 (with-timeout-handler): Remove.
9441
28dbc92f
MA
94422011-10-12 Michael Albinus <michael.albinus@gmx.de>
9443
9444 Fix Bug#6019, Bug#9315.
9445
9446 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
9447 complete `buffer-file-name', the local file name part could look
9448 remotely (for example on VMS).
9449
9450 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
9451 `tramp-run-real-handler'.
9452 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
9453 already quoted by '"'.
9454
9455 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
9456 Let `file-name-handler-alist' be nil, the local file name part
9457 could look remotely (for example on VMS).
9458
e1b0b23a
SM
94592011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
9460
9461 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
9462 from here...
9463 (flyspell-post-command-hook): ...to here.
9464
a120bde9
SM
94652011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9466
9467 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
9468 if not needed.
9469 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
9470 using completion. Protect against "slow" callers.
9471 Remove the "message hack".
9472
7ce7717b
JL
94732011-10-11 Juri Linkov <juri@jurta.org>
9474
9475 * isearch.el (isearch-lazy-highlight-word): New variable.
9476 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
9477 Use it. (Bug#9727)
9478
c02ee9d6
GM
94792011-10-11 Glenn Morris <rgm@gnu.org>
9480
9481 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
9482 like f90-previous-statement does.
9483
93e616fd 94842011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9485
1f190e73 9486 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
9487 only in interactive use, to avoid error.
9488
af7b6078
SM
94892011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
9490
9491 * minibuffer.el (completion-file-name-table): Fix last change,
9492 i.e. ignore normal errors but not the other ones.
9493
0563dae9
MR
94942011-10-10 Martin Rudalics <rudalics@gmx.at>
9495
9496 * window.el (special-display-buffer-names)
9497 (special-display-regexps): Remove some remnants of earlier
9498 changes from doc-strings.
366ca7f3
MR
9499 (quit-windows-on): New function.
9500
9501 * vc/vc.el (vc-revert, vc-rollback):
9502 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
9503 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 9504 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 9505
49677495
MR
95062011-10-09 Martin Rudalics <rudalics@gmx.at>
9507
9508 * window.el (frame-auto-hide-function): Add version tag.
9509 (Bug#9699)
9510
56f2d1e1
MA
95112011-10-09 Michael Albinus <michael.albinus@gmx.de>
9512
9513 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
9514 condition.
9515
112a6592
LL
95162011-10-09 Leo Liu <sdl.web@gmail.com>
9517
9518 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
9519 (Bug#9701)
9520
0812589b
GM
95212011-10-08 Glenn Morris <rgm@gnu.org>
9522
9523 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
9524 before the first code statement zero indent. (Bug#9690)
9525
b2b0776e
CY
95262011-10-08 Chong Yidong <cyd@stupidchicken.com>
9527
9528 * simple.el (count-words-region): Always count in the region.
9529 Report the number of lines and characters too.
9530 (count-words): New command, which counts in the buffer if the
9531 region is inactive, as count-words-region used to.
9532 (count-words--message): New function. Handle plurals.
9533 (count-lines-region): Make it an alias for count-words-region.
9534
9535 * bindings.el (esc-map): Replace count-lines-region with
9536 count-words-region.
9537
c557cd6b
MR
95382011-10-08 Martin Rudalics <rudalics@gmx.at>
9539
9540 * window.el (window--delete): Delete dedicated frame
9541 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 9542 (switch-to-buffer): Fix doc-string typo.
c557cd6b 9543
61a57ef4 95442011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9545
3a7d293b 9546 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 9547
c3833279
CY
95482011-10-07 Chong Yidong <cyd@stupidchicken.com>
9549
9550 * bindings.el ([M-left],[M-right]): Bind to left-word and
9551 right-word respectively.
9552
21ce8245
GM
95532011-10-07 Glenn Morris <rgm@gnu.org>
9554
9555 * cus-start.el (debug-on-quit): Fix custom type.
9556
6d823bb2
LMI
95572011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
9558
0181e193
LMI
9559 * subr.el (define-key-after): Clarify that the function is not
9560 useful for non-menu keymaps.
9561
6d823bb2
LMI
9562 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
9563
8e3459ce 95642011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9565
21ce8245 9566 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 9567 in current minibuffer (Fix bug with recursive minibuffers).
9568
a1c2d21e
CY
95692011-10-06 Chong Yidong <cyd@stupidchicken.com>
9570
9571 * progmodes/gdb-mi.el (gdb): Doc fix.
9572
5a4cf282
MR
95732011-10-05 Martin Rudalics <rudalics@gmx.at>
9574
9575 * window.el (frame-auto-hide-function): New option replacing
9576 frame-auto-delete. Suggested by Stefan Monnier.
9577 (window--delete): Call frame-auto-hide-function instead of
9578 investigating frame-auto-delete.
c96111ea
MR
9579 (window-point-1, set-window-point-1): New functions.
9580 (window-in-direction, record-window-buffer, window-state-get-1)
9581 (display-buffer-record-window): Use window-point-1 instead of
9582 window-point.
9583 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 9584
9854542e
SM
95852011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9586
9587 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
9588
8943cfb0
GM
95892011-10-05 Glenn Morris <rgm@gnu.org>
9590
9591 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
9592 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
9593
647ab967
LL
95942011-10-05 Leo Liu <sdl.web@gmail.com>
9595
9596 * subr.el (read-char-choice): Fix argument to buffer-live-p which
9597 works with buffer object.
9598
3ddfbced
SM
95992011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
9600
9601 * mpc.el (mpc-tool-bar-map): Add labels.
9602
bdfa5dd2
GM
96032011-10-04 Glenn Morris <rgm@gnu.org>
9604
9605 * calendar/holidays.el (calendar-check-holidays): Doc fix.
9606
0e2070b5
MR
96072011-10-04 Martin Rudalics <rudalics@gmx.at>
9608
9609 * window.el (window--delete): New function.
9610 (frame-auto-delete): Resuscitate option.
9611 (bury-buffer, replace-buffer-in-windows)
9612 (quit-window): Rewrite using window--delete.
9613 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9614 Pass display-buffer-mark-dedicated to window--display-buffer-2
9615 (Bug#9639).
9616
3dc61a09
SM
96172011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9618
915a9b64
SM
9619 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
9620 returns a list (bug#9554). Add remote file name completion.
9621 * comint.el (comint--table-subvert): Curry and get quote&unquote
9622 functions as arguments.
9623 (comint--complete-file-name-data): Adjust call accordingly.
9624 * pcomplete.el (pcomplete--table-subvert): Remove.
9625 (pcomplete-completions-at-point): Use comint--table-subvert instead.
9626
3dc61a09
SM
9627 * minibuffer.el (completion-table-case-fold): Use currying.
9628 (completion--styles-type, completion--cycling-threshold-type):
9629 New constants.
9630 (completion-styles, completion-category-overrides)
9631 (completion-cycle-threshold): Use them.
9632 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
9633 completion-table-case-fold.
9634
8ea0a993
SB
96352011-10-03 Stephen Berman <stephen.berman@gmx.net>
9636
9637 * minibuffer.el (completion-category-overrides): Fix type of styles
9638 and add more user friendly tags (bug#9660).
9639
8c24b7f6
SM
96402011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9641
9642 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
9643 (mule-input-method-string): New widget.
9644 (default-input-method, language-info-custom-alist): Use it.
9645
428fe61a
SM
96462011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9647
32c1fffd
SM
9648 * pcomplete.el: Require comint.
9649 (pcomplete--common-suffix): Remove.
9650 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
9651 (pcomplete--table-subvert): Sync with comint--table-subvert.
9652 (pcomplete--entries): Use comint-completion-file-name-table.
9653 * comint.el (comint-unquote-filename): Simplify.
9654 (comint-completion-file-name-table): New function (bug#9616).
9655 (comint--complete-file-name-data): Use it.
9656
428fe61a
SM
9657 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
9658 (pcmpl-gnu-tar-buffer): Remove.
9659 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
9660 around. Make sure pcomplete-suffix-list is only changed temporarily.
9661 Don't look inside the tar's file if it's too large.
428fe61a 9662
04c52e2f
CY
96632011-10-01 Chong Yidong <cyd@stupidchicken.com>
9664
ce3cefcc
CY
9665 * cus-edit.el (custom-mode-map):
9666 * epa.el (epa-key-list-mode-map):
9667 * man.el (Man-mode-map):
9668 * startup.el (splash-screen-keymap):
9669 * simple.el (special-mode-map): Use scroll-up-command and
9670 scroll-down-command.
9671
9672 * progmodes/idlw-help.el (idlwave-help-mode-map):
9673 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
9674 * net/newst-plainview.el (newsticker-mode-map):
9675 * emulation/ws-mode.el (wordstar-mode-map):
9676 * emulation/vi.el (vi-com-map):
9677 * calc/calc-graph.el (calc-graph-show-dumb):
9678 * term/sun.el (terminal-init-sun):
9679 * term/ns-win.el (global-map):
9680 * progmodes/grep.el (grep-mode-map):
9681 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
9682 * mail/rmail.el (rmail-mode-map):
9683 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
9684
04c52e2f
CY
9685 * custom.el (custom-safe-themes, load-theme): Treat value of t for
9686 custom-safe-themes as special.
9687
79adf8c8
JD
96882011-10-01 Julien Danjou <julien@danjou.info>
9689
9690 * notifications.el (notifications-notify): Fix docstring.
9691
63bd50d3
PS
96922011-10-01 Per Starbäck <per@starback.se>
9693
9694 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
9695
199e4c7e
MR
96962011-09-30 Martin Rudalics <rudalics@gmx.at>
9697
9698 * startup.el (command-line-1): Fix last fix by inserting
9699 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 9700 (Bug#9605) and (Bug#9636)
199e4c7e 9701
fe5f08dd
EZ
97022011-09-29 Eli Zaretskii <eliz@gnu.org>
9703
9704 * simple.el (line-move): If auto-hscroll-mode is disabled and the
9705 window is hscrolled, move by logical lines. (Bug#9607)
9706 (line-move-visual): Update the doc string to the above effect.
9707
b5516bbd
MR
97082011-09-29 Martin Rudalics <rudalics@gmx.at>
9709
ccee00c0
MR
9710 * window.el (display-buffer-record-window): When WINDOW is the
9711 selected window use `point' instead of `window-point'. (Bug#9626)
9712
b5516bbd
MR
9713 * startup.el (command-line-1): Use insert-before-markers when
9714 inserting initial-scratch-message. (Bug#9605)
ccee00c0 9715
b5516bbd
MR
9716 * help.el (help-window): Remove variable.
9717
52aa0014
GM
97182011-09-29 Glenn Morris <rgm@gnu.org>
9719
9720 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
9721
df9a7357
JB
97222011-09-29 Juanma Barranquero <lekktu@gmail.com>
9723
9724 * descr-text.el (describe-char-categories): Accept category
9725 descriptions more than one line long.
9726
a8406c20
SM
97272011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9728
88d9610c
SM
9729 * simple.el (delete-trailing-whitespace): Fix last change.
9730
a5daf810
SM
9731 * progmodes/perl-mode.el (perl-syntax-propertize-function):
9732 Don't confuse "y => 3" as the beginning of a `y' operation.
9733
a8406c20
SM
9734 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
9735 object has more than 4 slots (bug#9613).
9736
a239d4e9
JB
97372011-09-28 Juanma Barranquero <lekktu@gmail.com>
9738
9739 * subr.el (with-output-to-temp-buffer):
9740 * net/quickurl.el (quickurl, quickurl-browse-url):
9741 Fix typos in docstrings.
9742
693fbdb6
EZ
97432011-09-27 Eli Zaretskii <eliz@gnu.org>
9744
9745 * minibuffer.el (completion-styles)
9746 (completion-category-overrides): Cross reference each other in doc
9747 strings.
9748
8b457e28
GM
97492011-09-27 Glenn Morris <rgm@gnu.org>
9750
9751 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
9752 to split-string. (Bug#9606)
9753
85a16208
LMI
97542011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
9755
9756 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
9757 (bug#9615).
9758
502f9ebd
CY
97592011-09-27 Chong Yidong <cyd@stupidchicken.com>
9760
9761 * emacs-lisp/package.el (list-packages): Fix echo area message.
9762
7690bdea
LL
97632011-09-27 Leo Liu <sdl.web@gmail.com>
9764
9765 * ido.el (ido-read-internal): Accept cons cell HIST arg.
9766
e2ee6f30
MA
97672011-09-25 Michael Albinus <michael.albinus@gmx.de>
9768
9769 * net/dbus.el (dbus-unregister-object): Don't release services for
9770 registered signals. (Bug#9581)
9771
f3f98342
TZ
97722011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
9773
9774 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
9775 function that picks between cfengine 2 and 3 support
9776 automatically. Update docs accordingly.
9777
dd7aa8dd
KH
97782011-09-22 Kenichi Handa <handa@m17n.org>
9779
9780 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
9781 ZERO.
9782 (indian-itrans-v5-table-for-tamil): New variable.
9783 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
9784
3f2b07f8
KM
97852011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
9786
9787 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
9788 that's true if the current command involved collapsing of text.
9789 It's reset to false at the beginning of the next command.
9790 (allout-post-command-business): Move the cursor to the beginning
9791 of entry if the cursor is hidden and collapsing activity just
9792 happened.
9793
371d6a61
CY
97942011-09-24 Chong Yidong <cyd@stupidchicken.com>
9795
9796 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
9797 tracking (Bug#9541).
9798
2ac2721a
UJ
97992011-09-24 Ulf Jasper <ulf.jasper@web.de>
9800
9801 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
9802 (newsticker-show-news): Automatically load html rendering package
9803 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
9804 because w3m-fill-column is let-bound" and the error "Symbol's value
9805 as variable is void: w3m-fill-column".
2ac2721a 9806
fac7ae53
MA
98072011-09-24 Michael Albinus <michael.albinus@gmx.de>
9808
9809 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
9810 Release services only if they are defined. (Bug#9581)
9811
e08b633b
RS
98122011-09-23 Richard Stallman <rms@gnu.org>
9813
e488d29c
RS
9814 * textmodes/paragraphs.el (forward-sentence): For backwards case,
9815 distinguish start of paragraph from start of its text.
9816
19c38752
RS
9817 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
9818
e08b633b
RS
9819 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
9820 (rmail-generate-viewer-buffer): Put that hook on view buffer.
9821 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
9822
0a39f27e
AS
98232011-09-23 Andreas Schwab <schwab@linux-m68k.org>
9824
9825 * international/mule-diag.el (mule-diag): Insert a newline after
9826 each fontset description.
9827
db4e950d
SM
98282011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9829
9830 * simple.el (delete-trailing-whitespace):
9831 Document last change; simplify.
9832
eca3f3ea
PW
98332011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
9834
d68e189a
PW
9835 * simple.el (delete-trailing-whitespace): Also delete
9836 extra newlines at the end of the buffer.
9837
eca3f3ea
PW
9838 * textmodes/picture.el: Make motion commands obey shift-select-mode.
9839 (picture-newline): Use forward-line so as to ignore fields.
9840
01c157cc
SM
98412011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
9842
9843 * subr.el (with-wrapper-hook): Fix edebug spec.
9844
022de23e
LMI
98452011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
9846
9847 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
9848 (bug#4538).
9849
91683089
MA
98502011-09-23 Michael Albinus <michael.albinus@gmx.de>
9851
eca3f3ea
PW
9852 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
9853 Fix nasty bug using wrong cached values.
91683089 9854
5bdd6fa4
AM
98552011-09-23 Alan Mackenzie <acm@muc.de>
9856
9857 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
9858
97adfb97
CY
98592011-09-23 Chong Yidong <cyd@stupidchicken.com>
9860
9861 * window.el (pop-to-buffer): Ensure right window is selected if we
9862 chose another frame.
9863
d4ef2b50
EZ
98642011-09-22 Eli Zaretskii <eliz@gnu.org>
9865
9866 * simple.el (what-cursor-position): Use get-char-property-change
9867 and next-single-char-property-change, to be able to show display
9868 properties that come from overlays as well as text properties.
9869
72258fe5
CY
98702011-09-22 Chong Yidong <cyd@stupidchicken.com>
9871
9872 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
9873
9874 * cmuscheme.el (run-scheme, switch-to-scheme):
9875 * cus-edit.el (customize-group, custom-buffer-create)
9876 (customize-browse):
9877 * info.el (info):
9878 * shell.el (shell):
9879 * mail/sendmail.el (mail):
9880 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
9881
8f098516
RS
98822011-09-22 Richard Stallman <rms@gnu.org>
9883
9884 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
9885 move back only to line beg, don't move back over blank lines.
9886
e74f1bb6
MA
98872011-09-22 Michael Albinus <michael.albinus@gmx.de>
9888
9889 * files.el (copy-directory): Set directory attributes only in case
9890 they could be retrieved from the source directory. (Bug#9565)
9891
bfeef8b6
DK
98922011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
9893
9894 * progmodes/hideshow.el (hs-looking-at-block-start-p)
9895 (hs-find-block-beginning, hs-hide-level-recursive):
9896 Ignore strings as well as comments. (Bug#9502)
9897
7e423bb8
AS
98982011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
9899
9900 * progmodes/sql.el (sql-comint-postgres):
9901 Convert port number to a string. (Bug#9566)
9902
b4d72fcf
MR
99032011-09-22 Martin Rudalics <rudalics@gmx.at>
9904
9905 * window.el (quit-window): Undedicate window when switching to
9906 previous buffer. Reported by Thierry Volpiatto
9907 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
9908 (special-display-popup-frame): When popping up a new frame reset
9909 its previous buffers to nil. Simplify code.
b4d72fcf 9910
a7b88dc6
MA
99112011-09-21 Michael Albinus <michael.albinus@gmx.de>
9912
9913 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
9914 and process filter, as done also in `shell-command'.
9915
cf4eacfd
MR
99162011-09-21 Martin Rudalics <rudalics@gmx.at>
9917
eca3f3ea 9918 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
9919 Call set-window-start with NOFORCE argument t.
9920 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
9921 (quit-window): Reword doc-string. Handle new format of
9922 quit-restore parameter. Don't delete window if it has a
9923 previous buffer we can show instead of the present one.
9924 (display-buffer-record-window): Rewrite using a new format for
9925 the quit-restore window parameter
9926 (special-display-popup-frame, display-buffer-same-window)
9927 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9928 (display-buffer-pop-up-window, display-buffer-use-some-window):
9929 Adapt symbol passed to display-buffer-record-window.
9930 * help.el (help-window-setup): Handle new format of quit-restore
9931 parameter.
9932
8d28cb95
SM
99332011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9934
94ab793f
SM
9935 * faces.el (face-list): Fix docstring (bug#9564).
9936
8d28cb95
SM
9937 * window.el (display-buffer--action-function-custom-type):
9938 Don't include internal functions in the Custom interface.
9939
3820edeb
JL
99402011-09-20 Juri Linkov <juri@jurta.org>
9941
9942 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
9943 (Info-forward-node, Info-backward-node, Info-next-preorder)
9944 (Info-last-preorder): Use it. (Bug#9528)
9945
5147931d
JL
99462011-09-20 Juri Linkov <juri@jurta.org>
9947
9948 * info.el (Info-last-preorder): Visit last menu item only when
9949 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
9950
cf499a1a
JD
99512011-09-20 Julien Danjou <julien@danjou.info>
9952
9953 * password-cache.el (password-cache-remove): Remove entries even if the
9954 value is nil, so that password with a nil value (negative caching) is
9955 possible to invalidate.
9956
f84e2fe2
LM
99572011-09-20 Lawrence Mitchell <wence@gmx.li>
9958
9959 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
9960 all whitespace around breakpoint. (Bug#9553)
9961 (f90-find-breakpoint): Only break at whitespace inside a comment.
9962
78054a46
SM
99632011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9964
9965 * minibuffer.el (completion-file-name-table): Keep track of errors.
9966 (completion-table-with-predicate): Handle the case where pred1 is nil.
9967 * pcomplete.el (pcomplete-completions-at-point): Simplify.
9968
345083b2
SM
99692011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9970
e24e27be
SM
9971 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
9972 (debugger-return-value): Signal an error if the debugging context does
9973 not await any return value.
9974
345083b2
SM
9975 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
9976 * image-mode.el (image-toggle-display-text)
9977 (image-toggle-display-image): Stay away from evil `intangible'.
9978
08d355e3
LL
99792011-09-19 Leo Liu <sdl.web@gmail.com>
9980
9981 * replace.el (occur-revert-arguments): Make it permanent-local.
9982 (occur-mode): Don't call font-lock-defontify.
9983
f01da43f
CY
99842011-09-19 Chong Yidong <cyd@stupidchicken.com>
9985
9986 * net/ldap.el (ldap-search-internal): Don't push empty search
9987 result (Bug#9508).
9988
b6072fa6
SM
99892011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
9990
9991 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
9992
443d6696
MA
99932011-09-19 Michael Albinus <michael.albinus@gmx.de>
9994
9995 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
9996 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
9997
7cc6e154
JL
99982011-09-18 Juri Linkov <juri@jurta.org>
9999
10000 * buff-menu.el (Buffer-menu-mode-map):
10001 * dired.el (dired-mode-map):
10002 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
10003 (lisp-interaction-mode-map):
10004 * emacs-lisp/package.el (package-menu-mode-map):
10005 * epa.el (epa-key-list-mode-map):
10006 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
10007 (menu-bar-options-menu):
10008 * outline.el (outline-mode-menu-bar-map):
10009 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
10010 * vc/vc-dir.el (vc-dir-menu-map):
10011 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
10012 Capitalize non-function content words in menu item strings.
10013
10014 * dired.el (dired-mode-map): Add menu item for
10015 `image-dired-dired-toggle-marked-thumbs'.
10016
80302a81
JL
100172011-09-18 Juri Linkov <juri@jurta.org>
10018
10019 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
10020 to `isearch-case-fold-search' and restore its original value
10021 after the `isearch-mode' call.
10022
46c5cf66
JL
100232011-09-18 Juri Linkov <juri@jurta.org>
10024
10025 * progmodes/grep.el (grep-process-setup): Don't check code for 1
10026 because `zgrep' returns 1 for successful matches (bug#9226).
10027
d18b513b
JL
100282011-09-18 Juri Linkov <juri@jurta.org>
10029
10030 * info.el (Info-extract-menu-node-name): Check the second match
10031 for empty string (second test-case of bug#9528).
10032 (Info-last-preorder): Let-bind `Info-history' to nil to not add
10033 intermediate nodes to the history (first test-case of bug#9528).
10034
72753f87
JL
100352011-09-18 Juri Linkov <juri@jurta.org>
10036
10037 * info.el (Info-mode-syntax-table): New variable.
1154d12e 10038 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 10039
c9384295
JL
100402011-09-18 Juri Linkov <juri@jurta.org>
10041
1154d12e
JB
10042 * info.el (Info-file-supports-index-cookies):
10043 Increment line-beginning-position's arg from 3 to 4 because makeinfo
10044 outputs one more line for long file names (bug#4142).
c9384295 10045
d473dce8
CY
100462011-09-18 Chong Yidong <cyd@stupidchicken.com>
10047
10048 * newcomment.el (comment-normalize-vars): If prompting for
10049 comment-start, set comment-start-skip too (Bug#8424).
10050
2176854d
JB
100512011-09-18 Johan Bockgård <bojohan@gnu.org>
10052
10053 * icomplete.el: Fix previous fix of Bug#5849.
10054 (icomplete-mode): Don't set completion-show-inline-help.
10055 (icomplete-minibuffer-setup): Set completion-show-inline-help
10056 locally during icompletion.
10057
3aace4e4
CY
100582011-09-18 Chong Yidong <cyd@stupidchicken.com>
10059
c940224f
CY
10060 * woman.el (woman2-process-escapes): Don't delete unrecognized
10061 escapes (Bug#7843).
10062
3aace4e4
CY
10063 * files.el (inhibit-first-line-modes-regexps): Add image files.
10064 (hack-local-variables-prop-line): Return nil for malformed
10065 prop-lines (Bug#9044).
10066
710dec63
MA
100672011-09-18 Michael Albinus <michael.albinus@gmx.de>
10068
10069 * net/tramp.el (top): Don't require 'shell.
10070 (tramp-methods): Fix docstring.
10071 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
10072 Return complete remote file name. Handle "smb" case.
10073 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
10074 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
10075
10076 * net/tramp-compat.el (top): Require 'shell.
10077
10078 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
10079 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
10080 `tramp-current-host'.
10081 (tramp-get-remote-tmpdir): Remove.
10082
10083 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
10084 `tramp-tmpdir' entries.
10085 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
10086 (tramp-smb-handle-file-attributes): Ignore errors.
10087 (tramp-smb-wait-for-output): Check also for process end.
10088
5d5ac8ec
LMI
100892011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
10090
10091 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
10092 when sending QUIT (bug#9312).
10093
8c0f49f0
CY
100942011-09-17 Chong Yidong <cyd@stupidchicken.com>
10095
10096 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
10097 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
10098 occur-mode-display-occurrence.
10099 (occur-edit-mode): Add usage message.
10100 (occur-cease-edit): New command.
10101 (occur-after-change-function): Use text properties to find the
10102 position of the prefix text.
10103 (occur-engine): Set stickiness of prefix text properties.
10104
8f1383f7
GM
101052011-09-17 Glenn Morris <rgm@gnu.org>
10106
10107 * progmodes/etags.el (complete-tag):
10108 Fix call to completion-in-region. (Bug#9526)
10109
744ba0e3
JL
101102011-09-17 Juri Linkov <juri@jurta.org>
10111
10112 * textmodes/ispell.el (ispell-word): Add to the error message
10113 the word, ispell program name and current dictionary (bug#9121).
10114 (ispell-tex-arg-end): Capitalize "error" in the error message.
10115
d9bbf400
AS
101162011-09-17 Andreas Schwab <schwab@linux-m68k.org>
10117
10118 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
10119 check. (Bug#4251)
10120
8da11505
JL
101212011-09-17 Juri Linkov <juri@jurta.org>
10122
10123 * window.el (window-safe-min-height, window-safe-min-width):
10124 Fix typos (followup to bug#9522).
10125
a91adc7e
SJ
101262011-09-17 Sven Joachim <svenjoac@gmx.de>
10127
10128 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
10129
064f328a
EZ
101302011-09-16 Eli Zaretskii <eliz@gnu.org>
10131
10132 * simple.el (line-move): If goal-column is set, move by logical
10133 lines, not by display lines. (Bug#971)
10134 (next-line, previous-line, goal-column, line-move-visual): Doc fix
10135 to reflect the above change.
10136
e69df516
SM
101372011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10138
10139 * image.el (imagemagick-register-types): Use regexp-opt.
10140
cbb0f9ab
CY
101412011-09-15 Chong Yidong <cyd@stupidchicken.com>
10142
10143 * window.el (display-buffer-base-action): Rename from
10144 display-buffer-default-action. Make default value empty.
10145 (display-buffer-overriding-action): Convert to defvar.
10146 (display-buffer-fallback-action): New var.
10147
25322144
CY
101482011-09-15 Chong Yidong <cyd@stupidchicken.com>
10149
10150 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
10151 declaration.
10152 (package--add-to-archive-contents): If there is a duplicate entry
10153 with an older version, remove it.
10154 (package-menu-mark-delete, package-menu-mark-install)
10155 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
10156 (package-menu-mark-obsolete-for-deletion):
10157 Use package-menu-get-status instead of a regexp search.
25322144
CY
10158 (package-menu-get-status): Use tabulated-list-entry.
10159 (package-menu-mark-upgrades): New command.
d770725a 10160 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
10161 (package-menu-execute): Do installation before deletion.
10162 (package-menu-refresh, package-menu-execute): Use derived-mode-p
10163 instead of checking major-mode.
10164 (package-menu--find-upgrades): New function.
10165
7520339c
LMI
101662011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10167
10168 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
10169 passwords in the log buffer.
65a046c4
LMI
10170 (smtpmail-process-filter): Update the process marker so that the
10171 "broken by peer" status message is inserted in the right place.
7520339c 10172
d3c30954
SM
101732011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
10174
3fe48822
SM
10175 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
10176 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
10177 bibtex-completion-at-point-function.
10178 (bibtex-completion-at-point-function): Use them.
10179
1b8b3954
SM
10180 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
10181
d3c30954
SM
10182 * mpc.el (mpc-constraints-tag-lookup): New function.
10183 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
10184 also to browser "album|playlist".
10185
72779976
JL
101862011-09-14 Juri Linkov <juri@jurta.org>
10187
10188 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
10189 (isearch-edit-string): Use length of `isearch-string' when
10190 `isearch-fail-pos' returns nil.
10191 (isearch-message): Remove duplicate code and call
10192 `isearch-fail-pos' with arg `t'.
10193
a0bf2bcd
CY
101942011-09-14 Chong Yidong <cyd@stupidchicken.com>
10195
17bb0a2d
CY
10196 * replace.el (occur-mode-goto-occurrence): Don't force using other
10197 window (Bug#9499).
10198
a0bf2bcd
CY
10199 * dired-aux.el (dired-do-chmod): Don't provide initial input.
10200
f678e0b6
MR
102012011-09-14 Martin Rudalics <rudalics@gmx.at>
10202
10203 * window.el (display-buffer-window): Remove.
10204 (display-buffer-record-window): Use help-setup window parameter
10205 instead of variable display-buffer-window.
10206 (display-buffer-function, special-display-buffer-names)
10207 (special-display-function): Mention help-setup parameter instead
10208 of display-buffer-window in doc-string.
d3c30954
SM
10209 * help.el (help-window-setup): New argument help-window.
10210 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
10211 Reword some messages.
10212 (with-help-window): Pass window used for displaying the buffer
10213 to help-window-setup. Don't set display-buffer-window.
10214
8e39b2e8
GM
102152011-09-13 Glenn Morris <rgm@gnu.org>
10216
10217 * emacs-lisp/debug.el (debugger-make-xrefs):
10218 Preserve point. (Bug#9462)
10219
85e9c04b
CY
102202011-09-13 Chong Yidong <cyd@stupidchicken.com>
10221
10222 * window.el (window-deletable-p): Use next-frame.
10223
1b36ed6a
MR
102242011-09-13 Martin Rudalics <rudalics@gmx.at>
10225
10226 * window.el (window-auto-delete): Remove.
10227 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 10228 dedication and previous buffers.
1b36ed6a
MR
10229 (switch-to-prev-buffer): Don't delete window.
10230 (delete-windows-on): Delete a window's frame if and only if the
10231 window is dedicated.
10232 (replace-buffer-in-windows): Delete buffer's window or frame if
10233 and only if window is dedicated.
10234 (quit-window): Handle quit-restore as before last change.
4d61f28d 10235 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 10236
ef8ef9fb
CY
102372011-09-13 Chong Yidong <cyd@stupidchicken.com>
10238
10239 * window.el (window-deletable-p): Never delete the last frame on a
10240 given terminal.
10241
b2cba41e
GM
102422011-09-13 Glenn Morris <rgm@gnu.org>
10243
10244 * help.el (describe-key-briefly): Copy previous standard-output change.
10245
51553db6 102462011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
10247
10248 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
10249
b7556719
GM
102502011-09-13 Glenn Morris <rgm@gnu.org>
10251
10252 * emacs-lisp/lisp-mode.el (lisp-indent-function):
10253 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
10254
64b51947
CY
102552011-09-12 Chong Yidong <cyd@stupidchicken.com>
10256
10257 * dired-aux.el (dired-mark-read-string): Don't return default
10258 value on empty input (Bug#9361).
10259 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
10260 Omit initial minibuffer contents.
10261 (dired-do-chmod): Signal an error on empty input.
10262 (dired-mark-read-string): Don't return default on empty input.
10263
10264 * files.el (file-modes-symbolic-to-number): Doc fix.
10265
393a301e
SM
102662011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10267
10268 * international/mule-cmds.el (ucs-completions): Remove.
10269 (read-char-by-name): Use complete-with-action instead; add metadata.
10270
fa5660f9
CY
102712011-09-11 Chong Yidong <cyd@stupidchicken.com>
10272
10273 * window.el (display-buffer--action-function-custom-type)
10274 (display-buffer--action-custom-type): New vars.
10275 (display-buffer-alist, display-buffer-default-action)
10276 (display-buffer-overriding-action): Add defcustom types.
10277
4a592f66
CY
10278 * frame.el (delete-other-frames): Doc fix (Bug#276).
10279
73d56dbd
LMI
102802011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10281
10282 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
10283
37ac18a3
CY
102842011-09-11 Chong Yidong <cyd@stupidchicken.com>
10285
10286 Change modes that used same-window-* vars to use switch-to-buffer.
10287
10288 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
10289 Use switch-to-buffer.
10290
10291 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
10292 (customize-browse, custom-buffer-create-other-window):
10293 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
10294
10295 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
10296 (Info-prev, Info-up, Info-speedbar-goto-node)
10297 (info-display-manual): Use switch-to-buffer.
10298 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
10299
10300 * mail/sendmail.el (mail): Use switch-to-buffer.
10301 (mail-recover): Use switch-to-buffer-other-window.
10302
10303 * cmuscheme.el (run-scheme, switch-to-scheme):
10304 * ielm.el (ielm):
10305 * shell.el (shell):
10306 * net/rlogin.el (rlogin):
10307 * net/telnet.el (telnet, rsh):
10308 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
10309
10195bd6
AS
103102011-09-11 Andreas Schwab <schwab@linux-m68k.org>
10311
10312 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
10313
b322f63a
LMI
103142011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10315
39d7fed6
LMI
10316 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
10317 so don't mention it (bug#9301).
ba5a81f1 10318 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 10319
ee0e9f11
LMI
10320 * faces.el (face-spec-set-match-display): Make `(type graphic)'
10321 match `x', `w32' and `ns', like the manual says (bug#9029).
10322
0b1c89c1 10323 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
10324 (process-kill-buffer-query-function): Mention the buffer name in
10325 the query.
0b1c89c1 10326
77549ea8
LMI
10327 * image-mode.el (image-next-line): The line parameter is mandatory
10328 (bug#9258).
10329
803ef892
LMI
10330 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
10331 which can be useful (bug#9301).
10332
12980837
LMI
10333 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
10334
91054f8f
LMI
10335 * subr.el (match-string): Mention that the current buffer should
10336 be the same as the search was done in (bug#9282).
10337
b322f63a
LMI
10338 * facemenu.el: Disable the remove-* commands if the mark isn't
10339 active (bug#9162).
10340
3199b96f
CY
103412011-09-10 Chong Yidong <cyd@stupidchicken.com>
10342
10343 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
10344 of display-buffer.
10345 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
10346
10347 * replace.el (occur-mode-goto-occurrence)
10348 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
10349 and display-buffer.
10350
10351 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
10352 display-buffer.
10353
10354 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
10355 special-display and same-window variables.
10356 (mail-other-window): Use switch-to-buffer-other-window.
10357 (mail-other-frame): USe switch-to-buffer-other-frame.
10358
393a301e
SM
10359 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
10360 Use display-buffer-other-frame.
3199b96f
CY
10361 (gdb-display-gdb-buffer): Use pop-to-buffer.
10362
10363 * progmodes/gud.el (gud-goto-info): Use info-other-window.
10364
10365 * progmodes/python.el: Don't set same-window-buffer-names.
10366
10367 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
10368
10369 * window.el (display-buffer-alist): Add *Python*.
10370
8319e0bf
CY
103712011-09-10 Chong Yidong <cyd@stupidchicken.com>
10372
10373 * window.el (display-buffer-alist): Add entry for buffers
10374 previously handled same-window-*.
10375 (display-buffer-alist, display-buffer-default-action)
10376 (display-buffer-overriding-action): Mark as risky.
10377 (display-buffer-alist): Document action function changes.
10378 (display-buffer--same-window-action)
10379 (display-buffer--other-frame-action): New variables.
10380 (switch-to-buffer, display-buffer-other-frame): Use them.
10381 (display-buffer): Rename reuse-frame entry to reusable-frames.
10382 (display-buffer-reuse-selected-window): Function deleted.
10383 (display-buffer-reuse-window): Handle reusable-frames alist entry.
10384 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
10385 (display-buffer-special): New function.
10386 (display-buffer--maybe-pop-up-frame-or-window): Rename from
10387 display-buffer-reuse-or-pop-window. Split off special-display
10388 part into display-buffer-special.
10389 (display-buffer-use-some-window): Don't perform any special
10390 pop-up-frames handling.
10391 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 10392 (display-buffer--maybe-same-window): Rename from
0d3ff375 10393 display-buffer-maybe-same-window.
8319e0bf 10394
919a69aa
CY
10395 * info.el: Don't set same-window-regexps.
10396 (info-setup): New function.
10397 (info-other-window, info): Call it.
10398
10399 * cus-edit.el: Don't set same-window-regexps.
10400 (customize-group): New argument.
10401 (customize-group-other-window): Use it.
10402 (customize-face, customize-face-other-window): Likewise.
10403 (custom-buffer-create-other-window): Use pop-to-buffer directly.
10404
8319e0bf
CY
10405 * net/rlogin.el:
10406 * net/telnet.el:
10407 * progmodes/gud.el: Don't set same-window-regexps.
10408
10409 * cmuscheme.el:
10410 * ielm.el:
10411 * shell.el:
10412 * mail/sendmail.el:
10413 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
10414
25173000
JL
104152011-09-10 Juri Linkov <juri@jurta.org>
10416
10417 * isearch.el (isearch-edit-string): Remove obsolete mention of
10418 `C-w' (`isearch-yank-word-or-char') from docstring.
10419 (isearch-query-replace): Fix typo in docstring (bug#9466).
10420
056e44ef
JL
104212011-09-10 Juri Linkov <juri@jurta.org>
10422
10423 * paren.el (show-paren-function): Don't show escaped parens.
10424 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
10425
c3760c17
EZ
104262011-09-10 Eli Zaretskii <eliz@gnu.org>
10427
10428 * mail/sendmail.el (mml-to-mime, mml-attach-file)
10429 (mm-default-file-encoding): Remove autoload forms, they are
10430 replaced with autoload cookies in mml.el and mm-encode.el.
10431 (mail-add-attachment): New command.
10432 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
10433 (mail-mode): Mention mail-insert-file and mail-add-attachment in
10434 the doc string.
10435 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
10436
fece895e
RT
104372011-09-10 Reuben Thomas <rrt@sc3d.org>
10438
e69df516
SM
10439 * simple.el (count-words-region): Use buffer if there's no region
10440 (bug#9429).
fece895e 10441
5e68ce4a
JL
104422011-09-09 Juri Linkov <juri@jurta.org>
10443
10444 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
10445 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
10446 (wdired-isearch-filter-read-only): New function. (Bug#6362)
10447
0a6b9622
AM
104482011-09-09 Alan Mackenzie <acm@muc.de>
10449
10450 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
10451 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
10452
14a29deb
EZ
104532011-09-09 Eli Zaretskii <eliz@gnu.org>
10454
10455 Fix for Savannah bug#9392.
10456 * simple.el (mail-encode-mml): New defvar.
10457
10458 * mail/rmail.el (mail-encode-mml): Add a defvar.
10459 (rmail-enable-mime-composing): Default to t.
10460 (rmail-forward): Use MIME method of forwarding only if both
10461 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
10462 Set mail-encode-mml non-nil if the MIME method was used.
10463
10464 * mail/sendmail.el (mml-to-mime): Add autoload form.
10465 (mail-encode-mml): Add a defvar.
10466 (mail-mode): Make mail-encode-mml buffer-local and initialize it
10467 to nil.
10468 (mail-send): If mail-encode-mml is non-nil, run the outgoing
10469 message through mml-to-mime, and reset mail-encode-mml to nil.
10470
28c45130
GM
104712011-09-09 Glenn Morris <rgm@gnu.org>
10472
10473 * woman.el (woman-if-body): When processing an .el block,
10474 do not delete the next .el block as well. (Bug#9447)
69f4b618 10475 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 10476
9b1c252e
MR
104772011-09-08 Martin Rudalics <rudalics@gmx.at>
10478
10479 * window.el (window-deletable-p): Make sure window is live before
10480 invoking window-prev-buffers.
10481
567457e3
LL
104822011-09-08 Leo Liu <sdl.web@gmail.com>
10483
10484 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
10485
97f05794
JL
104862011-09-08 Juri Linkov <juri@jurta.org>
10487
10488 * progmodes/compile.el (compilation-environment): Make it
10489 a defcustom (bug#8340).
10490
8b0874b5
MR
104912011-09-08 Martin Rudalics <rudalics@gmx.at>
10492
10493 * window.el (frame-auto-delete): Rename to window-auto-delete.
10494 Make it control auto-deletion of windows and/or frames.
10495 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 10496 for deleting window/frame. (Bug#9419)
8b0874b5
MR
10497 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
10498 Rewrite handling of case when window/frame can be deleted.
10499 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 10500 argument t. (Bug#9456)
8b0874b5 10501
4feb6e73
CY
105022011-09-07 Chong Yidong <cyd@stupidchicken.com>
10503
10504 * help-mode.el (help-mode): Restore autoload.
10505
91ab9c13
JL
105062011-09-07 Juri Linkov <juri@jurta.org>
10507
10508 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
10509 `compilation-environment'. Set buffer-local
10510 `compilation-environment' to `thisenv' later after (funcall mode).
10511 (Bug#8340)
10512
10513 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
10514 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
10515 instead of replacing its value. (Bug#8340)
10516
0527e251
JL
105172011-09-07 Juri Linkov <juri@jurta.org>
10518
10519 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
10520 based on text properties put by `grep-filter' instead of matching
10521 escape sequences.
10522 (grep-mode): Set buffer-local `compilation-error-screen-columns'
10523 to the value of `grep-error-screen-columns' (bug#9438).
10524
249f792c
JL
105252011-09-07 Juri Linkov <juri@jurta.org>
10526
10527 * simple.el (next-error-highlight, next-error-highlight-no-select):
10528 Doc fix (bug#9432).
10529
ff7271b9
OT
105302011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
10531
10532 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10533 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
10534
183fc730
LL
105352011-09-07 Leo Liu <sdl.web@gmail.com>
10536
10537 * net/rcirc.el (rcirc-mode): Conditionally initialize
10538 rcirc-input-ring.
10539
77694924
SM
105402011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10541
10542 * emacs-lisp/find-func.el (find-function-C-source): Only set
10543 find-function-C-source-directory after checking that we found a source
10544 file there (bug#9440).
10545
d809b8eb
AM
105462011-09-06 Alan Mackenzie <acm@muc.de>
10547
10548 * isearch.el (isearch-other-meta-char): Wherever a key list is
10549 unread, "unread" the prefix arg, too. This fixes bug #8901.
10550
453de99f
OG
105512011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
10552
10553 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
10554
90439906
JL
105552011-09-05 Juri Linkov <juri@jurta.org>
10556
10557 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
10558
f62bd846
JL
105592011-09-05 Juri Linkov <juri@jurta.org>
10560
10561 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
10562 keeping point where processing of grep matches begins, and
10563 continue to delete remaining escape sequences from the same point.
10564 (grep-filter): Make leading zero optional in "0?1;31m" because
10565 git-grep emits "\033[1;31m" escape sequences unlike expected
10566 "\033[01;31m" as GNU Grep does (bug#9408).
10567 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
10568
045820ec
JL
105692011-09-05 Juri Linkov <juri@jurta.org>
10570
10571 * subr.el (y-or-n-p): Capitalize "yes".
10572
f5e29b9b
MA
105732011-09-04 Michael Albinus <michael.albinus@gmx.de>
10574
10575 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
10576 `tramp-cache-unload-hook' where appropriate.
10577 (tramp-methods): Rename `tramp-remote-sh' to
10578 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
10579 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
10580
10581 * net/tramp-sh.el (top): Don't require 'shell.
10582 (tramp-methods): Add `tramp-remote-shell' and
10583 `tramp-remote-shell-args' entries.
10584 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
10585 (tramp-sh-handle-shell-command): Remove.
10586 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
10587 Use `tramp-remote-shell'.
10588
2784c434
CY
105892011-09-03 Chong Yidong <cyd@stupidchicken.com>
10590
393a301e 10591 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
10592 (sendmail-query-once): Save directly to send-mail-function.
10593 Update message-send-mail-function too.
10594
10595 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
10596
464cdf56
CS
105972011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10598
10599 * progmodes/python.el (python-mode-map): Use correct function to
10600 start python interpreter from menu-bar (as reported by Geert
10601 Kloosterman).
10602 (inferior-python-mode-map): Fix typo.
393a301e 10603 (python-shell-map): Remove.
464cdf56 10604
d37e5c87
DD
106052011-09-03 Deniz Dogan <deniz@dogan.se>
10606
10607 * net/rcirc.el (rcirc-print): Simplify code for
10608 rcirc-scroll-show-maximum-output. There is no need to walk
10609 through all windows to find the right one.
10610
f3ada0ee
CS
106112011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
10612
10613 * help.el (help-return-method): Doc fix.
10614
1f3c99ca
MR
106152011-09-03 Martin Rudalics <rudalics@gmx.at>
10616
10617 * window.el (window-deletable-p): Don't return a non-nil value
10618 when there's a buffer that was shown in the window before.
10619 (Bug#9419)
393a301e
SM
10620 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
10621 Set window's previous buffers to nil.
1f3c99ca 10622
a3cf097f
EZ
106232011-09-03 Eli Zaretskii <eliz@gnu.org>
10624
10625 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
10626 newline before and after the tag line, so it doesn't interfere
10627 with determining the paragraph direction of bidirectional text.
10628
3d03de90
LL
106292011-09-03 Leo Liu <sdl.web@gmail.com>
10630
10631 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
10632
c3313451
CY
106332011-09-02 Chong Yidong <cyd@stupidchicken.com>
10634
393a301e 10635 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
10636 (pop-to-buffer): Change interactive spec. Pass second argument
10637 directly to display-buffer.
10638 (display-buffer): Fix interactive spec. Use functionp to
10639 distinguish between a function and a list of functions.
10640
10641 * abbrev.el (edit-abbrevs):
10642 * arc-mode.el (archive-extract):
10643 * autoinsert.el (auto-insert):
10644 * bookmark.el (bookmark-bmenu-list):
10645 * files.el (find-file):
10646 * view.el (view-buffer):
10647 * progmodes/compile.el (compilation-goto-locus):
10648 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
10649
89894cd8
CY
106502011-09-02 Chong Yidong <cyd@stupidchicken.com>
10651
10652 * window.el (display-buffer-alist): Doc fix.
10653 (display-buffer): Add docstring. Don't treat
10654 display-buffer-default specially.
10655 (display-buffer-reuse-selected-window)
10656 (display-buffer-same-window, display-buffer-maybe-same-window)
10657 (display-buffer-reuse-window, display-buffer-pop-up-frame)
10658 (display-buffer-pop-up-window)
10659 (display-buffer-reuse-or-pop-window)
10660 (display-buffer-use-some-window): New functions.
10661 (display-buffer-default-action): Use them.
393a301e 10662 (display-buffer-default): Delete.
89894cd8
CY
10663 (pop-to-buffer-1): Fix choice of actions.
10664
ae0bc9fb
SM
106652011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
10666
10667 * minibuffer.el (completion--insert-strings): Don't get confused by
10668 completion entries that end with an LF char.
10669
e9d90883
EZ
106702011-09-01 Eli Zaretskii <eliz@gnu.org>
10671
10672 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
10673
437014c8
CY
106742011-09-01 Chong Yidong <cyd@stupidchicken.com>
10675
10676 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
10677 (display-buffer-same-window, display-buffer-other-window):
10678 New functions.
437014c8
CY
10679 (pop-to-buffer-1): New function. Use the above.
10680 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 10681 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
10682
10683 * view.el (view-buffer-other-window, view-buffer-other-frame):
10684 Just use pop-to-buffer.
10685
a5e063d5
TV
106862011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
10687
10688 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
10689
793d32bb
WH
106902011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
10691
10692 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
10693
d65e4c15
RS
106942011-08-31 Richard Stallman <rms@gnu.org>
10695
10696 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
10697 of the separation of rmail-view-buffer from rmail-buffer.
10698 If you say no to "replace original", the decrypt is in the
10699 view buffer. If you say yes, the decrypt goes into the
10700 rmail buffer also.
10701
f818cd2a
MR
107022011-08-31 Martin Rudalics <rudalics@gmx.at>
10703
10704 * window.el (display-buffer-window): Rewrite doc-string.
10705 (display-buffer-record-window): New function.
10706 (display-buffer-macro-specifiers)
10707 (display-buffer-even-window-sizes, display-buffer-set-height)
10708 (display-buffer-set-width, display-buffer-in-window)
10709 (display-buffer-reuse-window, display-buffer-split-specifiers)
10710 (display-buffer-side-specifiers, display-buffer-split-window-1)
10711 (display-buffer-split-window, display-buffer-split-atom-window)
10712 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10713 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
10714 (display-buffer-other-window-means-other-frame)
10715 (display-buffer-normalize-special)
10716 (display-buffer-normalize-default)
10717 (display-buffer-normalize-argument)
10718 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
10719 (display-buffer-normalize-specifiers, display-buffer-frame)
10720 (display-buffer-same-window, display-buffer-same-frame)
10721 (display-buffer-other-window)
10722 (display-buffer-same-frame-other-window)
10723 (display-buffer-other-frame, pop-to-buffer-same-window)
10724 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
10725 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
10726 (switch-to-buffer-same-frame)
10727 (switch-to-buffer-other-window-same-frame)
10728 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
10729 (display-buffer-alist-set-1, display-buffer-alist-set-2)
10730 (display-buffer-alist-set): Remove.
10731 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
10732 (special-display-regexps, special-display-function):
10733 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
10734 parameter.
10735 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
10736 (special-display-frame-alist, special-display-popup-frame)
10737 (same-window-buffer-names, same-window-regexps, same-window-p)
10738 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
10739 (split-window-preferred-function, split-height-threshold)
10740 (split-width-threshold, window-splittable-p)
10741 (split-window-sensibly, window--try-to-split-window)
10742 (window--frame-usable-p, even-window-heights)
10743 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
10744 (window--display-buffer-2, display-buffer-other-frame):
10745 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
10746 (display-buffer-default, display-buffer-assq-regexp): New functions.
10747 (display-buffer-alist): Rewrite doc-string.
10748 (display-buffer-default-action)
10749 (display-buffer-overriding-action): New variables.
10750 (display-buffer, switch-to-buffer): Rewrite.
10751 (pop-to-buffer): Restore Emacs 23 behavior but use
10752 window-normalize-buffer-to-display.
10753 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
10754 Restore Emacs 23 behavior but use
10755 window-normalize-buffer-to-switch-to.
10756 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
10757 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
10758 Rewrite using Emacs 23 options.
f818cd2a 10759
5bc3b51d
MA
107602011-08-31 Michael Albinus <michael.albinus@gmx.de>
10761
10762 * net/tramp.el (tramp-root-regexp): Remove.
10763 (tramp-completion-file-name-regexp-unified)
10764 (tramp-completion-file-name-regexp-separate)
10765 (tramp-completion-file-name-regexp-url): Don't use leading volume
b46a6a83 10766 letter on w32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
10767 (tramp-drop-volume-letter): Simplify definition.
10768 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 10769
b1a4f8e1
SM
107702011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
10771
10772 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
10773 (bug#9356).
10774
5664fa7b
RT
107752011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
10776
b1a4f8e1 10777 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 10778
9a45d6c3
JL
107792011-08-29 Juri Linkov <juri@jurta.org>
10780
10781 * isearch.el (isearch-done): Don't display message "Mark saved"
10782 when arg `edit' is non-nil to prevent its flicker in the echo area.
10783
fb87e0fb
CY
107842011-08-28 Chong Yidong <cyd@stupidchicken.com>
10785
10786 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
10787 obsolete packages for deletion.
10788
09ac1c2a
CS
107892011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
10790
10791 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 10792 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
10793 view-mode from help-mode.
10794 (help-xref-override-view-map): Remove.
10795 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
10796 view-mode is not used anymore.
10797
7a1ff57f
CY
107982011-08-28 Chong Yidong <cyd@stupidchicken.com>
10799
10800 * server.el (server-port): Doc fix.
10801
b9696605
CY
10802 * cus-theme.el (custom-theme-choose-mode): Inherit from
10803 special-mode (Bug#9124).
10804 (custom-theme-choose-mode-map): Add special-mode to parent.
10805
ef8cdf8c
AM
108062011-08-28 Alan Mackenzie <acm@muc.de>
10807
10808 * progmodes/cc-fonts.el
10809 (c-make-font-lock-BO-decl-search-function): New function.
10810 (c-basic-matchers-after - "Fontify the clauses after various
10811 keywords"): Extract the three keyword lists for the 3 erroneous
10812 constructs from the list of four, and use the new function above
10813 in place of an old one.
10814
27de4e20
DD
108152011-08-28 Deniz Dogan <deniz@dogan.se>
10816
10817 * net/rcirc.el (rcirc-insert-prev-input)
10818 (rcirc-insert-next-input): Remove unused argument.
10819
356a3681
SM
108202011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
10821
10822 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
10823
3fc9b218
AM
108242011-08-27 Alan Mackenzie <acm@muc.de>
10825
10826 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
10827 handle function pointer parameters properly.
10828
538a061c
MR
108292011-08-27 Martin Rudalics <rudalics@gmx.at>
10830
10831 * window.el (display-buffer-reuse-window): Fix case where
10832 selected window was reused with non-nil OTHER-WINDOW argument.
10833 (Bug#9381)
10834
35b1c40c
DD
108352011-08-27 Deniz Dogan <deniz@dogan.se>
10836
10837 * net/rcirc.el (rcirc-check-auth-status): Adding support for
10838 oftc's NickServ messages.
10839
2f6a3e79
GM
108402011-08-27 Glenn Morris <rgm@gnu.org>
10841
10842 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
10843
7254299e
CY
108442011-08-26 Chong Yidong <cyd@stupidchicken.com>
10845
10846 * emacs-lisp/package.el (package-install): Call package-initialize
10847 if called interactively.
10848
f8ccf167
LL
108492011-08-26 Leo Liu <sdl.web@gmail.com>
10850
10851 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
10852
3e8cd5ce
JL
108532011-08-25 Juri Linkov <juri@jurta.org>
10854
10855 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
10856 `search-whitespace-regexp' (bug#9364).
10857
93eb7113
JL
108582011-08-25 Juri Linkov <juri@jurta.org>
10859
10860 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
10861 `regexp-search-ring' to their global values to protect from
10862 updating by `read-from-minibuffer' (bug#9185).
10863
f65d1611
JL
108642011-08-25 Juri Linkov <juri@jurta.org>
10865
10866 * textmodes/ispell.el (ispell-command-loop): Add newline
10867 at the end of the "Use option `i'..." line.
10868
f1cf7a31
JL
108692011-08-25 Juri Linkov <juri@jurta.org>
10870
10871 * battery.el (display-battery-mode): If `battery-status-function'
10872 or `battery-mode-line-format' is nil, display the message and set
10873 `display-battery-mode' to nil (bug#9363).
10874
0c95fcf7
EZ
108752011-08-25 Eli Zaretskii <eliz@gnu.org>
10876
10877 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
10878 bidi-string-mark-left-to-right; they are unnecessary now.
10879
a2ebe600
DD
108802011-08-25 Deniz Dogan <deniz@dogan.se>
10881
10882 * net/quickurl.el: Documentation typo fixes.
10883
e4ed06f1
CY
108842011-08-25 Chong Yidong <cyd@stupidchicken.com>
10885
10886 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
10887
e5f1c99e
GM
108882011-08-25 Glenn Morris <rgm@gnu.org>
10889
b2948976
GM
10890 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
10891
e5f1c99e
GM
10892 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
10893 (smtpmail-via-smtp): Handle nil response from smtp.
10894
f22f4808
JL
108952011-08-24 Juri Linkov <juri@jurta.org>
10896
10897 * proced.el (proced-marked): Inherit from `error' instead of
10898 `font-lock-warning-face'.
10899
10900 * ibuffer.el (ibuffer-marked-face): Change default face from
10901 `font-lock-warning-face' to `warning'.
10902 (ibuffer-deletion-face): Change default face from
10903 `font-lock-type-face' to `error'.
10904
10905 * battery.el (battery-update): Use the face `error' instead of
10906 `font-lock-warning-face' (bug#6117).
10907
6a93965e
JL
109082011-08-24 Juri Linkov <juri@jurta.org>
10909
10910 * faces.el (success): Change face color from "Green3" to
10911 "ForestGreen" on light background (bug#9353).
10912
1ed43b09
CY
109132011-08-24 Chong Yidong <cyd@stupidchicken.com>
10914
5664fa7b
RT
10915 * window.el (quit-window): Rename from quit-restore-window.
10916 Use same arglist as old quit-window.
1ed43b09
CY
10917 (frame-auto-delete): Doc fix.
10918
10919 * view.el (view-mode-exit): Use quit-window.
10920
11dcdbb2
JL
109212011-08-24 Juri Linkov <juri@jurta.org>
10922
10923 * isearch.el (isearch-ring-adjust1): Start visiting previous
10924 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
10925 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
10926 for empty search string (when the last search string is reused
10927 automatically) to adjust the isearch ring to the last element and
10928 prepare the correct index for further M-p commands (bug#9185).
10929
de62b4df
KH
109302011-08-24 Kenichi Handa <handa@m17n.org>
10931
10932 * international/ucs-normalize.el: If decomposition property of
10933 CHAR is the default one (i.e. a list of CHAR itself), treat it as
10934 nil.
10935 (nfd, nfkd): Likewise.
10936
963b492b
SM
109372011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
10938
10939 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
10940 from process filters aren't reliably transmitted to the surrounding
10941 accept-process-output.
10942 (mpc-proc-check): New function.
10943 (mpc-proc-sync): Use it (bug#8293)
10944
93b6b5e1
SM
109452011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10946
10947 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
10948 Add compatibility functions (bug#9313).
10949
bca633fb
EZ
109502011-08-23 Eli Zaretskii <eliz@gnu.org>
10951
b177498a
EZ
10952 * cus-start.el (all): Add entry for bidi-paragraph-direction.
10953
6df6ae42 10954 * international/uni-bidi.el: Regenerate.
bca633fb 10955
0902a04e
KH
109562011-08-23 Kenichi Handa <handa@m17n.org>
10957
10958 * international/charprop.el:
10959 * international/uni-bidi.el:
10960 * international/uni-category.el:
10961 * international/uni-combining.el:
10962 * international/uni-comment.el:
10963 * international/uni-decimal.el:
10964 * international/uni-decomposition.el:
10965 * international/uni-digit.el:
10966 * international/uni-lowercase.el:
10967 * international/uni-mirrored.el:
10968 * international/uni-name.el:
10969 * international/uni-numeric.el:
10970 * international/uni-old-name.el:
10971 * international/uni-titlecase.el:
10972 * international/uni-uppercase.el: Regenerate.
10973
3bbf23bc
MR
109742011-08-23 Martin Rudalics <rudalics@gmx.at>
10975
10976 * help.el (help-window-setup): Fix message displayed when other
10977 window is reused. (Bug#9341)
10978
b3fd59bd
SM
109792011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10980
1802e444
SM
10981 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
10982 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
10983
b3fd59bd
SM
10984 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
10985 Mark obsolete.
10986 * shell.el (shell-parse-pcomplete-arguments): New function.
10987 (shell-completion-vars): Use it instead (bug#9160).
10988
4eb61348
SM
109892011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10990
867cab74
SM
10991 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
10992 strings and comments (bug#9333).
10993
4eb61348
SM
10994 * emacs-lisp/debug.el (debug-arglist): New function.
10995 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
10996 (debug-on-entry-1): Handle interpreted closures (bug#9120).
10997
262a1439
JL
109982011-08-22 Juri Linkov <juri@jurta.org>
10999
56ee679c
JL
11000 * progmodes/compile.el (compilation-mode-font-lock-keywords):
11001 Revert regexp that highlights output switches to its old
11002 pre-2010-10-28 value and remove one `?' from it (bug#9319).
11003
262a1439
JL
11004 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
11005 to check for empty output (bug#9226).
11006
f13f86fb
CY
110072011-08-22 Chong Yidong <cyd@stupidchicken.com>
11008
11009 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
11010 symbol-constituent as the default, as that stops font-lock from
11011 working properly (Bug#8843).
11012
c65c9622
LMI
110132011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11014
11015 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
11016 `coding-system-for-*' around the process open call to avoid
11017 auth-source side effects.
e7f2c178 11018 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
11019 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
11020 probe hangs.
c65c9622 11021
23a8a5ab
CY
110222011-08-21 Chong Yidong <cyd@stupidchicken.com>
11023
ff98b2dd
CY
11024 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
11025
23a8a5ab
CY
11026 * emacs-lisp/find-func.el (find-function-noselect): New arg
11027 lisp-only.
11028
11029 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
11030 signal an error for built-in functions (Bug#6664).
11031
f5e3c598
LMI
110322011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11033
11034 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
11035 (smtpmail-try-auth-methods): Use it.
11036
a3f2468a
CY
110372011-08-21 Chong Yidong <cyd@stupidchicken.com>
11038
2c34e8da
CY
11039 * font-lock.el (font-lock-fontify-region)
11040 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
11041 (font-lock-default-unfontify-buffer)
11042 (font-lock-default-fontify-region)
11043 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
11044
b3fd59bd
SM
11045 * progmodes/compile.el (compilation-error-properties):
11046 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
11047 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
11048 `ant' regexp.
ee31aabc 11049
a3f2468a
CY
11050 * net/browse-url.el (browse-url-firefox): Don't call
11051 browse-url-firefox-sentinel unless using -remote (Bug#9328).
11052
8e999f70
GM
110532011-08-20 Glenn Morris <rgm@gnu.org>
11054
c21a496a
GM
11055 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
11056
59ee0542
GM
11057 * tutorial.el (tutorial--default-keys): Update some default bindings.
11058
8e999f70
GM
11059 * files.el (hack-local-variables): Fully ignore case for "mode:".
11060
e3715033
AM
110612011-08-20 Alan Mackenzie <acm@muc.de>
11062
11063 Resolve invalid use of a regexp in regexp-opt.
11064
4d61f28d
JB
11065 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
11066 detection for a java annotation.
e3715033 11067
4d61f28d 11068 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
11069 detection for a java annotation.
11070
4d61f28d
JB
11071 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
11072 handling for java.
e3715033
AM
11073 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
11074
04ed2e9c
CY
110752011-08-20 Chong Yidong <cyd@stupidchicken.com>
11076
11077 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
11078 (Bug#9274).
11079
826cee64
AM
110802011-08-20 Alan Mackenzie <acm@muc.de>
11081
58179cce 11082 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
11083 such a construct. Mainly for when jit-lock etc. starts a chunk
11084 here.
11085
58179cce 11086 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 11087 variable.
58179cce 11088 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
11089 c-make-font-lock-search-function.
11090 (c-make-font-lock-search-function): Use the above function.
11091 (c-make-font-lock-context-search-function): New function.
11092 (c-cpp-matchers): Enhance the preprocessor expression case with
11093 the above function
11094 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
11095 which takes an expression.
11096
11097 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
11098
13009bd8
MR
110992011-08-20 Martin Rudalics <rudalics@gmx.at>
11100
11101 * window.el (display-buffer-reuse-window)
11102 (display-buffer-pop-up-window): Don't reuse or split a side
11103 window.
11104
9234ff7f
GM
111052011-08-19 Glenn Morris <rgm@gnu.org>
11106
11107 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 11108 Downcase "Mode:". (Bug#9331)
9234ff7f 11109
f635daa1
CY
111102011-08-18 Chong Yidong <cyd@stupidchicken.com>
11111
11112 * international/characters.el: Add L and R categories.
11113
11114 * subr.el (bidi-string-mark-left-to-right): Rename from
11115 string-mark-left-to-right. Use category search.
11116
11117 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
11118
bc987f8b
JL
111192011-08-18 Juri Linkov <juri@jurta.org>
11120
11121 * faces.el (error, warning, success): New faces with definitions
11122 copied from old default values of `font-lock-warning-face',
11123 `compilation-warning', `compilation-info' (bug#6117).
11124
11125 * font-lock.el (font-lock-warning-face): Inherit from `error'.
11126
11127 * progmodes/compile.el (compilation-error): Inherit from `error'.
11128 (compilation-warning): Inherit from `warning'.
11129 (compilation-info): Inherit from `success'.
11130
11131 * dired.el (dired-marked): Inherit from `warning'.
11132 (dired-flagged): Inherit from `error'.
11133
57173b96
LMI
111342011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11135
3e79eb87
LMI
11136 * mail/smtpmail.el (auth-source): Require to avoid problems with
11137 binding variables (bug#9298). Also clean up some unused
11138 autoloads.
11139
b3fd59bd
SM
11140 * net/network-stream.el (network-stream-open-starttls):
11141 Support using starttls.el without using gnutls-cli.
57173b96 11142
02b404de
JL
111432011-08-17 Juri Linkov <juri@jurta.org>
11144
11145 * progmodes/grep.el (rgrep): Handle the case when
11146 `grep-find-command' is a cons cell (bug#9278).
11147
8c9177f2
MR
111482011-08-17 Martin Rudalics <rudalics@gmx.at>
11149
11150 * window.el (display-buffer-pop-up-frame): Run frame creation
11151 function with BUFFER current (as special-display-popup-frame
11152 does). Reported by Drew Adams.
11153
3644a0ab
DU
111542011-08-17 Daiki Ueno <ueno@unixuser.org>
11155
11156 * epa-mail.el: Simplify GnuPG group expansion using
11157 epg-expand-group.
11158 (epa-mail-group-alist, epa-mail-group-modtime)
11159 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
11160 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
11161 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
11162 Remove.
11163
5e617bc2 111642011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
11165
11166 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
11167
9c4aeabf
AM
111682011-08-16 Alan Mackenzie <acm@muc.de>
11169
11170 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
11171 Correct, to avoid the inside of macros.
11172
3a99bf64
RS
111732011-08-16 Richard Stallman <rms@gnu.org>
11174
04963aa8
RS
11175 * epa-mail.el: Handle GnuPG group definitions.
11176 (epa-mail-group-alist, epa-mail-group-modtime)
11177 (epa-mail-gnupg-conf-file): New variables.
11178 (epa-mail-parse-groups, epa-mail-sync-groups)
11179 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
11180 (epa-mail-expand-recipients): New functions.
11181 (epa-mail-encrypt): Call epa-mail-expand-recipients.
11182
177549d0
RS
11183 * mail/rmail.el (rmail-epa-decrypt): New command.
11184
fe38beef
RS
11185 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
11186 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
11187 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
11188 (epa-decrypt-armor-in-region): Make error message clearer.
11189
934eacb9
SM
111902011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
11191
11192 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
11193 and "a2b" to "ab" for `prefix'.
11194
d024fb4e
CY
111952011-08-14 Chong Yidong <cyd@stupidchicken.com>
11196
11197 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
11198 filter groups.
de148fee
CY
11199 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
11200 Fourquet (Bug#8804).
d024fb4e 11201
62f1ca49
JB
112022011-08-12 Juanma Barranquero <lekktu@gmail.com>
11203
11204 * startup.el (argi): Declare as global variable (bug#9275).
11205
9ccaaa4b
CY
112062011-08-12 Chong Yidong <cyd@stupidchicken.com>
11207
11208 * subr.el (string-mark-left-to-right): Search the entire string
11209 for RTL script, not just the terminating character. Doc fix.
11210
a3dae87a
SM
112112011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11212
6cd18349
SM
11213 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
11214 New function.
11215 (js--regexp-literal, js-syntax-propertize-function): Remove.
11216 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
11217 (js-mode-map): Don't rebind electric keys.
11218 (js-insert-and-indent): Remove.
11219 (js-mode): Setup electric-layout and electric-indent instead.
11220
a3dae87a
SM
11221 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
11222
9d5cb631
DU
112232011-08-12 Daiki Ueno <ueno@unixuser.org>
11224
11225 * epa.el (epa-progress-callback-function): Fix the logic of
11226 displaying progress.
11227 * epa-file.el (epa-file-insert-file-contents): Make progress
11228 display more user-friendly.
11229 (epa-file-write-region): Ditto.
11230
3e26a4a2
CY
112312011-08-10 Chong Yidong <cyd@stupidchicken.com>
11232
11233 * subr.el (string-mark-left-to-right): New function.
11234
11235 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
11236 Use string-mark-left-to-right.
11237 (list-buffers-noselect): Caller changed.
11238
a3dae87a
SM
11239 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
11240 Use string-mark-left-to-right.
3e26a4a2
CY
11241 (tabulated-list-print): Recenter after moving point.
11242
ac8cf6e6
JL
112432011-08-10 Juri Linkov <juri@jurta.org>
11244
11245 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
11246 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
11247 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
11248
8d96c9a4
CY
112492011-08-09 Chong Yidong <cyd@stupidchicken.com>
11250
11251 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
11252 (Bug#7554).
11253
7be1c708 112542011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
11255
11256 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
11257 character. (Bug#6594)
11258
37e11a63
CY
112592011-08-08 Chong Yidong <cyd@stupidchicken.com>
11260
839dde57
CY
11261 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
11262 (image-dired--with-db-file): New macro.
11263 (image-dired-write-tags, image-dired-remove-tag)
11264 (image-dired-create-gallery-lists, image-dired-write-comments)
11265 (image-dired-get-comment, image-dired-mark-tagged-files)
11266 (image-dired-list-tags, image-dired-gallery-generate): Use it.
11267 (image-dired-gallery-generate): Use insert-file-contents.
11268
37e11a63
CY
11269 * time.el (display-time-world-list, display-time-world-display):
11270 * time-stamp.el (time-stamp-string):
11271 * vc/add-log.el (add-change-log-entry): Use setenv instead of
11272 set-time-zone-rule (Bug#7337).
11273
0b4946c4
DU
112742011-08-08 Daiki Ueno <ueno@unixuser.org>
11275
11276 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
11277 (epg-error-to-string, epg-errors-to-string): New function.
11278 (epg-wait-for-completion): Reverse errors list.
11279 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
11280 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
11281 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
11282 (epg-sign-keys, epg-generate-key-from-file)
11283 (epg-generate-key-from-string): Format errors by using
11284 epg-errors-to-string (bug#9255).
11285 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
11286
75bfc667
JL
112872011-08-07 Juri Linkov <juri@jurta.org>
11288
11289 * faces.el (list-faces-display): Remove extra angle bracket
11290 from `help-mode-map'.
11291
11292 * info.el (Info-history-toc-nodes): Doc fix.
11293
11294 * longlines.el (longlines-mode): Doc fix.
11295
673e08bb
SM
112962011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
11297
4640dd88
SM
11298 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
11299 of statements and in a few more cases (bug#9183).
11300
673e08bb
SM
11301 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
11302 New functions.
11303 (cl-transform-lambda): Use them (bug#9239).
11304
89b3f019
MR
113052011-08-05 Martin Rudalics <rudalics@gmx.at>
11306
11307 * window.el (display-buffer-same-window)
11308 (display-buffer-same-frame, display-buffer-other-window)
11309 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
11310 (pop-to-buffer-other-window)
11311 (pop-to-buffer-same-frame-other-window)
11312 (pop-to-buffer-other-frame): Make them defuns.
11313 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
11314
640c8776
SM
113152011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11316
11317 * subr.el (make-composed-keymap): Move from C. Change calling
11318 convention, and improve docstring to bring attention to a subtle point.
11319 * minibuffer.el (completing-read-default): Adjust accordingly.
11320
63648a95
MA
113212011-08-03 Michael Albinus <michael.albinus@gmx.de>
11322
11323 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
11324 (tramp-open-shell): Use `tramp-shell-quote-argument'.
11325
11326 * net/trampver.el: Update release number.
11327
b796c9b7
SM
113282011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11329
11330 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
11331 "in" (bug#9190).
11332
2239d7d5
LMI
113332011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11334
e07dd7c3
LMI
11335 * mail/sendmail.el (sendmail-query-once): Restore the current
11336 buffer after querying (bug#9074).
11337
0e6a2bd7
LMI
11338 * dired.el (dired-flagged): Use different faces for marked and
11339 flagged files (bug#6117).
11340
ce887515
LMI
11341 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
11342 (bug#4433).
11343
92f2affc
LMI
11344 * ido.el (ido-mode): Switch off the message if called
11345 non-interactively.
11346
57d5aff0
LMI
11347 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
11348 before 587, since it appears that that's more likely to work for
11349 more people.
11350
98cd6c18 11351 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 11352 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
11353 exist.
11354
b96dec83
LMI
11355 * info.el: Remove the `Info-beginning-of-buffer' function
11356 (bug#8325).
11357
b796c9b7
SM
11358 * net/network-stream.el (network-stream-open-starttls):
11359 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 11360
d90e2ea0
MR
113612011-08-01 Martin Rudalics <rudalics@gmx.at>
11362
11363 * window.el (display-buffer-in-window): Don't set dedicated status
11364 of window here (Bug#9215).
11365 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
11366 (display-buffer-pop-up-side-window)
b796c9b7 11367 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 11368
cca09170
SM
113692011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
11370
11371 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
11372 before binding generated-autoload-file.
11373
027b979c
DD
113742011-08-01 Deniz Dogan <deniz@dogan.se>
11375
11376 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
11377
3c7ee4f3
MA
113782011-07-30 Michael Albinus <michael.albinus@gmx.de>
11379
11380 Sync with Tramp 2.2.2.
11381
11382 * net/trampver.el: Update release number.
11383
2cc8e51a
JL
113842011-07-30 Juri Linkov <juri@jurta.org>
11385
11386 * dired-aux.el (dired-touch-initial): Remove function.
11387 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
11388 current time, and `default' to the last modification time of the
11389 current marked file (bug#6887).
11390
a514d856
JM
113912011-07-28 Jose E. Marchesi <jemarch@gnu.org>
11392
11393 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 11394 numeric argument to read-number (bug#9163).
a514d856 11395
8a7eddd7
MA
113962011-07-27 Michael Albinus <michael.albinus@gmx.de>
11397
11398 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
11399 connection process, it could be nil.
11400
1ddd96f5
LL
114012011-07-27 Leo Liu <sdl.web@gmail.com>
11402
11403 Simplify url handling in rcirc-mode.
11404
11405 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
11406 (rcirc-browse-url-at-mouse): Remove.
11407 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
11408
b248a85d
AM
114092011-07-26 Alan Mackenzie <acm@muc.de>
11410
11411 Fontify bitfield declarations properly.
11412
11413 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
11414 (c-symbol-chars): Now exported as a lang variable.
11415 (c-not-primitive-type-keywords): New lang variable.
11416
11417 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
11418 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 11419 parsed as a bitfield declaration.
b248a85d 11420
b796c9b7
SM
11421 * progmodes/cc-engine.el (c-beginning-of-statement-1):
11422 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
11423 (c-punctuation-in): New function.
11424 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
11425 declarations properly.
11426
68575ab0
UJ
114272011-07-26 Ulf Jasper <ulf.jasper@web.de>
11428
11429 * calendar/icalendar.el (icalendar--all-events): Take care of
11430 multiple vcalendars in a single file.
b796c9b7 11431 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 11432
0f0a88b9
DD
114332011-07-25 Deniz Dogan <deniz@dogan.se>
11434
11435 * image.el (insert-image): Clarifying docstring.
11436
0b3f36df
MA
114372011-07-24 Michael Albinus <michael.albinus@gmx.de>
11438
11439 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
11440 `tramp-send-command-and-check' if there is no error.
11441 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
11442
a9901f61
AM
114432011-07-22 Alan Mackenzie <acm@muc.de>
11444
11445 Prevent cc-langs.elc being loaded at run time.
11446
11447 * progmodes/cc-mode.el: Remove two autoload forms which loaded
11448 cc-langs.
11449
4d61f28d 11450 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
11451 "(require 'cc-langs)". Quote a form so it will evaluate at
11452 (cc-mode's) compilation time.
11453
11d074b2
MA
114542011-07-22 Michael Albinus <michael.albinus@gmx.de>
11455
11456 * net/tramp.el (tramp-file-name-handler): Avoid recursive
11457 loading. (Bug#9114)
11458
938b94c8
MR
114592011-07-21 Martin Rudalics <rudalics@gmx.at>
11460
11461 * window.el (display-buffer-pop-up-window)
11462 (display-buffer-pop-up-side-window)
11463 (display-buffer-in-side-window): Call display-buffer-set-height
11464 and display-buffer-set-width after setting the new window's
b796c9b7 11465 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 11466
bfa4f190
SS
114672011-07-20 Sam Steingold <sds@gnu.org>
11468
11469 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
11470 (etags-tags-included-tables): Call `convert-standard-filename' on
11471 the file names contained in TAGS so that windows Emacs can handle
11472 TAGS files created by cygwin ctags.
11473
8ca42262
LMI
114742011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
11475
11476 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
11477 which apparently didn't work.
11478
5db2afd2 114792011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 11480
5db2afd2
RW
11481 * proced.el (proced-send-signal): For *Marked Processes* buffer
11482 put point at beginning of buffer.
11483
92e15d10
SB
114842011-07-19 Stephen Berman <stephen.berman@gmx.net>
11485
11486 * proced.el (proced-format): Make header lines align with the text
11487 (bug#1779).
11488
1bfd59e5
LMI
114892011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11490
11491 * view.el (view-buffer): Allow running in `special' modes if we're
11492 visiting a file (bug#8615).
11493
f5aae37c
MR
114942011-07-19 Martin Rudalics <rudalics@gmx.at>
11495
11496 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
11497 (display-buffer-alist-set-1, display-buffer-alist-set-2):
11498 New functions.
f5aae37c
MR
11499 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
11500 more accurately.
11501
bf2c1571
AM
115022011-07-18 Alan Mackenzie <acm@muc.de>
11503
11504 Fontify declarators properly when, e.g., a jit-lock chunk begins
11505 inside a declaration.
11506
11507 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
11508
b796c9b7
SM
11509 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
11510 New function.
bf2c1571
AM
11511 (c-complex-decl-matchers): Insert reference to
11512 c-font-lock-enclosing-decls.
11513
11514 * progmodes/cc-engine.el (c-backward-single-comment):
11515 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
11516 to nil around calls to (forward-comment -1).
11517
4e190b80
LMI
115182011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
11519
12dc863d
LMI
11520 * image.el (put-image): Doc typo fix.
11521
a762e966
LMI
11522 * progmodes/etags.el (tags-search): Doc typo fix.
11523
4e190b80
LMI
11524 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
11525 password if we get errors 550 to 554.
11526
f019fb21
LMI
115272011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
11528
b796c9b7 11529 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 11530
81746738
LMI
11531 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
11532 indentation character (bug#6380).
11533
3ee3a1b5
LMI
11534 * files.el (buffer-offer-save): Made permanently local (bug#6241).
11535
c82f64de
LMI
11536 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
11537 to clarify what the problem is (bug#4291).
11538
f019fb21
LMI
11539 * simple.el (current-kill): Clarify what
11540 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
11541 (auto-fill-mode): Document `auto-fill-function' in relation to
11542 `auto-fill-mode' (bug#2470).
f019fb21 11543
0794775d
LM
115442011-07-16 Lawrence Mitchell <wence@gmx.li>
11545
11546 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
11547 method if slot is read-only (bug#9035).
11548
be39b8cc
MR
115492011-07-16 Martin Rudalics <rudalics@gmx.at>
11550
b796c9b7 11551 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 11552 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
11553 selected before, see discussion of (Bug#8615), (Bug#6954).
11554 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 11555
6ccf7859
GM
115562011-07-15 Glenn Morris <rgm@gnu.org>
11557
11558 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 11559 Respect help-form.
6ccf7859 11560
87e86684
LM
115612011-07-09 Lawrence Mitchell <wence@gmx.li>
11562
11563 * net/gnutls.el (gnutls-min-prime-bits): New variable.
11564 (gnutls-negotiate): Use it.
11565
d6066239
LMI
115662011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11567
b796c9b7
SM
11568 * net/gnutls.el (gnutls-negotiate):
11569 Upcase `gnutls-algorithm-priority'.
d6066239 11570
bd23ebc0
GM
115712011-07-15 Glenn Morris <rgm@gnu.org>
11572
c65bca65
GM
11573 * jka-compr.el (jka-compr-verbose): Move from here...
11574 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
11575 Add missing :version tag.
11576 * info.el: No need to require jka-compr when compiling.
bd23ebc0 11577
478615cc
LMI
115782011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
11579
7b41decb
LMI
11580 * net/gnutls.el (gnutls-algorithm-priority): New variable.
11581 (gnutls-negotiate): Use it.
11582
dbc44fcd
LMI
11583 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
11584
06789f97
LMI
11585 * info.el (Info-beginning-of-buffer): New command.
11586 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
11587 announcing `b' as the key (bug#8325).
ab896c37 11588 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 11589
c39da690
LMI
11590 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
11591
3aa5f34b
LMI
11592 * international/mule-cmds.el
11593 (describe-specified-language-support): Make the error message
11594 clearer (bug#8905).
11595
4bf0979f
LMI
11596 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
11597
478615cc
LMI
11598 * isearch.el (isearch-barrier): Add a doc string, since it's
11599 mentioned in a function doc string (bug#8678).
11600
75c68aa1
MR
116012011-07-15 Martin Rudalics <rudalics@gmx.at>
11602
11603 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
11604 buffer argument (Bug#9083) and self-identifying label argument.
11605
a7c33da2
GM
116062011-07-15 Glenn Morris <rgm@gnu.org>
11607
11608 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
11609
2f5c6024
LMI
116102011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11611
11612 * man.el (Man-fontify-manpage): Fix message when formatting the
11613 man page (bug#7929).
11614
0bb23927 116152011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
11616
11617 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
11618 argument LRM; if non-nil, append an invisible LRM character to the
11619 buffer name.
11620 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
11621 last argument non-nil, when formatting buffer names.
0bb23927
EZ
11622 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
11623 paragraph direction.
cce4b0a7 11624
621ef9ab
LMI
116252011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
11626
d1583c48
LMI
11627 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
11628 the man page name (bug#7929).
11629
6a57fb5f
LMI
11630 * image.el (put-image): Mention the `put-image' overlay property
11631 (bug#7834).
11632
d7956b14
LMI
11633 * scroll-bar.el (set-scroll-bar-mode): Mention that
11634 `scroll-bar-mode' lists the values (bug#7772).
11635
5b2d4a66
LMI
11636 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
11637 command (bug#7729).
11638
7509a874
LMI
11639 * rect.el (apply-on-rectangle): Return the point after the last
11640 operation.
11641 (string-rectangle): Go to the point after the last operation
11642 (bug#7522).
11643
4fe74b19
LMI
11644 * printing.el (pr-toggle-region): Clarify the documentation
11645 slightly (bug#7493).
11646
b796c9b7
SM
11647 * time.el (display-time-update):
11648 Allow `display-time-mail-function' to return nil (bug#7158).
11649 Fix suggested by Detlev Zundel.
ab283561 11650
fc233c9d
LMI
11651 * vc/diff.el (diff): Clarify the order the file names are read
11652 (bug#7111).
11653
43f5740b
LMI
11654 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
11655 the doc string (bug#7015).
11656
f2182a76
LMI
11657 * font-lock.el (font-lock-maximum-decoration): Mention what
11658 numeric levels mean (bug#6935).
11659
621ef9ab
LMI
11660 * startup.el (initial-buffer-choice): Don't mention the `none'
11661 selection, which is against policy.
11662
adc47434
MR
116632011-07-14 Martin Rudalics <rudalics@gmx.at>
11664
b796c9b7
SM
11665 * window.el (display-buffer-normalize-special):
11666 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 11667
7e5bfb8f
EZ
116682011-07-14 Eli Zaretskii <eliz@gnu.org>
11669
11670 * subr.el (version<, version<=, version=): Mention "-CVS" and
11671 "-12345" alpha version numbers.
11672
27fa387a
CY
116732011-07-14 Chong Yidong <cyd@stupidchicken.com>
11674
11675 * bindings.el: Add advertised binding for set-mark-command
11676 (Bug#5772).
11677
8bdfa064
CY
116782011-07-14 Chong Yidong <cyd@stupidchicken.com>
11679
11680 * bindings.el (mode-line-other-buffer):
11681 * bookmark.el (bookmark-bmenu-2-window):
11682 * bs.el (bs-cycle-next, bs-cycle-previous):
11683 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
11684 switch-to-buffer.
11685
11686 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 11687 Delete.
8bdfa064 11688
5eba16a3
JB
116892011-07-14 Juanma Barranquero <lekktu@gmail.com>
11690
11691 * follow.el (follow-debug-message, follow-redisplay):
11692 * jka-cmpr-hook.el (with-auto-compression-mode):
11693 Fix typos in docstrings.
11694
15853710
LMI
116952011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11696
a28e4607
LMI
11697 * subr.el (with-silent-modifications): Clarify somewhat what the
11698 macro inhibits (bug#6525).
11699
15853710
LMI
11700 * simple.el (eval-expression): Note what it does if called
11701 interactively (bug#6495).
11702
bee0fcef
CY
117032011-07-13 Chong Yidong <cyd@stupidchicken.com>
11704
b796c9b7
SM
11705 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
11706 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
11707
11708 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11709 Remove switch-to-buffer.
11710
58274504
LMI
117112011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11712
bd2fcc8d
LMI
11713 * files.el (make-directory): Clarify that an error will be raised
11714 if there's an error (bug#6397).
11715
0f04b32c
LMI
11716 * startup.el (initial-buffer-choice): Add `none' as a choice
11717 (bug#6234).
11718
465c5fc8
LMI
11719 * subr.el (add-hook): Clarify section about buffer-local hooks
11720 (bug#6218).
11721
58274504
LMI
11722 * dired.el (dired-flagged): Clarify doc string (bug#6117).
11723
bead9a43
JB
117242011-07-13 Juanma Barranquero <lekktu@gmail.com>
11725
11726 * tabify.el (untabify): Preserve the current column so that point
11727 doesn't move (bug#6032).
11728
3af98a7b
LMI
117292011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11730
b796c9b7
SM
11731 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
11732 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 11733
6240145a
GM
117342011-07-13 Glenn Morris <rgm@gnu.org>
11735
11736 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
11737 (dired-insert-directory): Give a message the first time
11738 if ls is found not to support --dired.
11739
1d8c2ccc
LMI
117402011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11741
11742 * simple.el (toggle-truncate-lines): Clarify what is toggled
11743 (bug#5580). Text by Drew Adams.
11744
5fc4038e
CY
117452011-07-13 Chong Yidong <cyd@stupidchicken.com>
11746
11747 * simple.el (blink-matching-open): Make the error message from the
11748 last change less verbose.
11749
bf6012e5
DN
117502011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
11751
11752 * font-lock.el (font-lock-comment-face): Use the high contrast
11753 "yellow" color for font-lock-comment-face on low color terminals
11754 using a dark background color (bug#4221).
11755
343c3b5a
LMI
117562011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11757
7e9505c5
LMI
11758 * dired.el (dired-insert-set-properties): Make the doc string
11759 reflect what it does now (bug#5325).
11760
c26fdcf5
LMI
11761 * simple.el (blink-matching-open): Say that we were unable to find
11762 the match within the limit, if we're limited (bug#5122).
11763
bb388cc5
LMI
11764 * international/mule-cmds.el (prefer-coding-system): Add an
11765 example (bug#4869).
11766
343c3b5a
LMI
11767 * progmodes/etags.el (tags-search): Document `file-list-form'
11768 (bug#4731).
11769
2a517d45
LM
117702011-07-13 Lawrence Mitchell <wence@gmx.li>
11771
11772 * net/browse-url.el (browse-url-default-browser)
11773 (browse-url-browser-function): Make the default browser choice a
11774 bit more logical (bug#4300). Also clean up the doc string.
11775
b6c78ef2
JB
117762011-07-13 Juanma Barranquero <lekktu@gmail.com>
11777
11778 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
11779 binary endings (bug#4440).
11780
1c4dd947
LMI
117812011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
11782
a2014063
LMI
11783 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
11784 which can be pretty annoying (bug#8971).
11785
9c9c2d88
LMI
11786 * jka-compr.el (jka-compr-verbose): New variable, and use
11787 throughout (bug#8971).
11788
1c4dd947
LMI
11789 * info.el (Info-find-file): Fall back on the installation
11790 directory if we can't find the info node anywhere else.
11791
a1c9f41b
SO
117922011-07-13 Sergei Organov <osv@javad.com> (tiny change)
11793
11794 * vc/vc.el (vc-revert-file):
11795 Don't set file time-stamp in the past. (Bug#5181)
11796
536f3d36
LMI
117972011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11798
7152b011
LMI
11799 * files.el (after-find-file): Give a better error message when
11800 trying to find a symlink that points to a file that doesn't exist
11801 (bug#4398).
11802
536f3d36
LMI
11803 * progmodes/cc-vars.el: Remove (probably) misleading comment
11804 (bug#4396).
11805
460c0fba
JB
118062011-07-12 Johan Bockgård <bojohan@gnu.org>
11807
11808 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
11809
7a6bda45
CY
118102011-07-12 Chong Yidong <cyd@stupidchicken.com>
11811
11812 * mouse-sel.el: Hack restoring functionality, while keeping
11813 compatibility with 2010-07-03 changes to mouse selection.
11814 (mouse-sel-primary-overlay): New var.
11815 (mouse-sel-selection-alist): Use it.
11816 (mouse-sel-mode): Doc fix; remove points that are default features
11817 of mouse.el.
11818
c79598ef
JB
118192011-07-12 Johan Bockgård <bojohan@gnu.org>
11820
11821 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11822 Fix previous fix (bug#2490).
11823
ff8be6ef
RW
118242011-07-12 Roland Winkler <winkler@gnu.org>
11825
b796c9b7
SM
11826 * textmodes/bibtex.el (bibtex-initialize):
11827 Use pop-to-buffer-same-window.
ff8be6ef
RW
11828 (bibtex-search-entries): Fix interactive call.
11829
296ba3ee
LMI
118302011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11831
f5242a02 11832 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
11833 Fontise bytecomp Error lines more correctly (bug#2490).
11834 Fix suggested by Johan Bockgård.
f5242a02 11835
296ba3ee
LMI
11836 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
11837
11838 * dired-x.el (dired-guess-default): Use `delete-dups'.
11839
f69fd0d2
CY
118402011-07-12 Chong Yidong <cyd@stupidchicken.com>
11841
11842 * dired.el (dired-mark-prompt):
11843 * dired-aux.el (dired-read-shell-command): Doc fix.
11844
eab5dc07
LMI
118452011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11846
b796c9b7
SM
11847 * mail/sendmail.el (sendmail-query-once):
11848 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
11849 emacs -Q.
11850
11851 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11852
eab5dc07
LMI
11853 * cus-edit.el (custom-file): Take an optional no-error variable.
11854 (customize-save-variable): Set the variable, and give a warning if
11855 running under "emacs -q".
11856
a1e65d42
JB
118572011-07-11 Juanma Barranquero <lekktu@gmail.com>
11858
11859 * loadhist.el (unload-feature-special-hooks):
11860 Add `auto-coding-functions', `fill-nobreak-predicate' and
11861 `find-directory-functions' (bug#5327).
11862
1d52da10
LMI
118632011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11864
be958f1d
LMI
11865 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
11866
5bedb26c
LMI
11867 * cus-edit.el (custom-guess-name-alist): -alist variables should
11868 use the `alist' type (bug#3120). Suggested by Drew Adams.
11869
1d52da10
LMI
11870 * printing.el: Add documentation to all the `pr-toggle-' commands.
11871
cd394be1 118722011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
11873
11874 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
11875 backends where it makes sense (bug#2623).
11876
dcc88d8a
LMI
118772011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11878
c3de9feb
LMI
11879 * dired-x.el (dired-guess-default): Remove duplicate shell command
11880 entries (bug#2028).
8a93078b 11881 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 11882 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 11883
dcc88d8a
LMI
11884 * subr.el (remove-duplicates): New conveniency function.
11885
505e3645
LMI
118862011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
11887
11888 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
11889 (bug#1526).
11890
118912011-07-10 Martin Rudalics <rudalics@gmx.at>
11892
11893 * window.el (display-buffer-normalize-default): Don't invert
11894 meaning of even-window-heights. Reported by Eli Zaretskii
11895 <eliz@gnu.org>.
11896
455e4fa1
BR
118972011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
11898
11899 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
11900
8e0bc3e9
CY
119012011-07-10 Chong Yidong <cyd@stupidchicken.com>
11902
11903 * window.el (display-buffer): Fix arguments to
11904 display-buffer-reuse-window in last change.
11905
fa7c3228
CY
11906 * faces.el (link): Use a less saturated blue on light backgrounds.
11907
11908 * startup.el (fancy-startup-text, fancy-about-text)
11909 (fancy-startup-tail): Use font-lock faces, for background safety.
11910
c0a7f300
BN
119112011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
11912
b796c9b7
SM
11913 * emulation/viper-cmd.el (viper-change-state-to-vi):
11914 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 11915
4dc2a129
MR
119162011-07-09 Martin Rudalics <rudalics@gmx.at>
11917
11918 * window.el (display-buffer-default-specifiers): Remove.
11919 (display-buffer-macro-specifiers): Remove default specifiers.
11920 (display-buffer-alist): Default to nil.
b796c9b7 11921 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
11922 (display-buffer-pop-up-window): Allow splitting internal
11923 windows. Check whether a live window was created.
11924 (display-buffer-other-window-means-other-frame)
11925 (display-buffer-normalize-arguments): Rename to
11926 display-buffer-normalize-argument and rewrite. Set the
11927 other-window specifier.
11928 (display-buffer-normalize-special): New function.
11929 (display-buffer-normalize-options): Rename to
11930 display-buffer-normalize-default and rewrite.
11931 (display-buffer-normalize-options-inhibit): Remove.
11932 (display-buffer-normalize-specifiers): Rewrite.
11933 (display-buffer): Process other-window specifier and call
11934 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
11935 more faithfully.
b796c9b7 11936 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 11937 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
11938 (display-buffer-in-window, display-buffer-alist-set):
11939 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
11940 <tassilo@member.fsf.org>.
11941
2d43b8c9
LL
119422011-07-09 Leo Liu <sdl.web@gmail.com>
11943
11944 * register.el (insert-register): Restore accidental change on
11945 2011-06-26. (Bug#9028)
11946
7f9b7c53
GM
119472011-07-09 Glenn Morris <rgm@gnu.org>
11948
11949 * subr.el (remq): Handle the empty list. (Bug#9024)
11950
f042cfd8
AS
119512011-07-08 Andreas Schwab <schwab@linux-m68k.org>
11952
11953 * mail/sendmail.el (send-mail-function): No longer delay custom
11954 initialization.
11955 * custom.el (custom-initialize-delay): Doc fix.
11956
856b2f11
SM
119572011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11958
11959 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
11960
afae1d68
MA
119612011-07-08 Michael Albinus <michael.albinus@gmx.de>
11962
11963 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
11964 human-friendly prompt.
11965
0757af94
SM
119662011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
11967
11968 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
11969 provided by a particular plugin.
11970
d760b731
LMI
119712011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
11972
11973 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
11974 save customizations (with "emacs -Q"), just set the variable
11975 instead of erroring out.
11976
11977 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
11978
cd79ce90
JL
119792011-07-08 Juri Linkov <juri@jurta.org>
11980
11981 * arc-mode.el (archive-zip-expunge, archive-zip-update)
11982 (archive-zip-update-case): Use 7z if found by `executable-find'.
11983 The order of searching the available programs is the same as in
11984 `archive-zip-extract' (bug#8968).
11985
14cc04aa
CY
119862011-07-07 Chong Yidong <cyd@stupidchicken.com>
11987
11988 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
11989 (menu-bar-options-menu): Tweak descriptions.
11990
0a1848ec
LMI
119912011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11992
11993 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
11994 menu items into verb phrases (bug#1421). Also refill to fit under
11995 80 columns.
11996
f5bd0689
CY
119972011-07-07 Chong Yidong <cyd@stupidchicken.com>
11998
538e85c6
CY
11999 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
12000 (Info-read-node-name): Doc fix (Bug#1084).
12001
f5bd0689
CY
12002 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
12003 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
12004 (end-of-sexp, beginning-of-sexp)
12005 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
12006 (forward-symbol, forward-same-syntax, word-at-point)
12007 (sentence-at-point): Doc fix (Bug#1144).
12008
56ec5115
LMI
120092011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12010
f3f8e37f
LMI
12011 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
12012 should cover it (bug#1281).
12013
0757af94 12014 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 12015
e9fce1ac 12016 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
12017 negotiation fails, then possibly try again with a non-encrypted
12018 connection (bug#9017).
12019
56ec5115
LMI
12020 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
12021 be used.
12022
c2f9aec8
RS
120232011-07-07 Richard Stallman <rms@gnu.org>
12024
12025 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
12026 property, and handle its changed format.
12027 Look for the correct line number.
12028 Use file's line contents (but not past first =) to find
12029 correct line in message.
12030
ef7b981d 120312011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
12032
12033 * international/characters.el (build-unicode-category-table):
12034 Delete it.
0757af94 12035 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 12036
0757af94 12037 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
12038 to src/chartab.c.
12039 (get-char-code-property): Call unicode-property-table-internal to
12040 load a file. Call get-unicode-property-internal where necessary.
12041 (put-char-code-property): Call unicode-property-table-internal to
12042 load a file. Call put-unicode-property-internal where necessary.
12043 put-unicode-property-internal where necessary.
0757af94
SM
12044 (char-code-property-description):
12045 Call unicode-property-table-internal to load a file.
c805dec0
KH
12046
12047 * international/charprop.el:
12048 * international/uni-bidi.el:
12049 * international/uni-category.el:
12050 * international/uni-combining.el:
12051 * international/uni-comment.el:
12052 * international/uni-decimal.el:
12053 * international/uni-decomposition.el:
12054 * international/uni-digit.el:
12055 * international/uni-lowercase.el:
12056 * international/uni-mirrored.el:
12057 * international/uni-name.el:
12058 * international/uni-numeric.el:
12059 * international/uni-old-name.el:
12060 * international/uni-titlecase.el:
12061 * international/uni-uppercase.el: Regenerate.
12062
12063 * loadup.el: Load international/charprop.el before
12064 international/characters.
12065
e14b388a
CY
120662011-07-07 Chong Yidong <cyd@stupidchicken.com>
12067
12068 * window.el (next-buffer, previous-buffer): Signal an error if
12069 called from a minibuffer window.
12070
12071 * bindings.el: Revert 2011-07-04 change.
12072
354cf0ba
RS
120732011-07-06 Richard Stallman <rms@gnu.org>
12074
12075 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
12076 (rmail-mime-insert-bulk, rmail-mime-insert-text):
12077 Treat markers like ints.
12078 (rmail-mime-entity): Doc fix.
12079
a48868a7
LMI
120802011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12081
4906cd3d
LMI
12082 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
12083 defcustom again for backwards compatibility.
12084
e0457abe
LMI
12085 * simple.el (shell-command-on-region): Fill.
12086
d67f7e1f
LMI
12087 * dired-aux.el (dired-kill-line): Add a doc string.
12088
fe204702
LMI
12089 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
12090 to "\\sw\\|\\s_" (bug#358).
12091
a48868a7
LMI
12092 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
12093 (dired-unmark-backward): Ditto.
12094 (dired-flag-backup-files): Ditto.
12095
12096 * dired-x.el (dired-mark-sexp): Ditto.
12097
aa8a705c
RS
120982011-07-06 Richard Stallman <rms@gnu.org>
12099
12100 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
12101 (rmail-mime-entity): New arg TRUNCATED.
12102 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
12103 New functions.
12104 (rmail-mime-save): Warn if entity is truncated.
12105 (rmail-mime-toggle-hidden): Likewise, for showing.
12106 (rmail-mime-process-multipart): Record when an entity is truncated.
12107
a9a936b9
RS
12108 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
12109 if ENTITY is a string.
12110
1f2b92cb
LMI
121112011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12112
f4f73198 12113 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
12114 of faces when `M-C-x'-ing their definitions (bug#8378).
12115 Also clean up the code slightly.
f4f73198 12116
12b16734 12117 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 12118 because that makes the colors go away.
12b16734 12119
f0691d22
LMI
12120 * mail/sendmail.el (send-mail-function): Change the default to
12121 `sendmail-query-once'.
9e87df06 12122 (sendmail-query-once): Add an autoload cookie.
f0691d22 12123
1f2b92cb
LMI
12124 * net/network-stream.el (network-stream-open-starttls): Try using
12125 a plain connection even if the server offered STARTTLS, and we
12126 kinda wanted to use it, if Emacs doesn't have any STARTTLS
12127 capability. This should make smtpmail.el work in slightly more
12128 configurations.
12129
1cdd2a1b
MA
121302011-07-06 Michael Albinus <michael.albinus@gmx.de>
12131
12132 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
12133 New defun.
12134 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
12135
fbcc67e2
MM
121362011-07-06 Michael R. Mauger <mmaug@yahoo.com>
12137
12138 * progmodes/sql.el: Version 3.0
0757af94 12139 (sql-product-alist): Add product :completion-object,
fbcc67e2 12140 :completion-column, and :statement attributes.
0757af94 12141 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 12142 (sql-mode-syntax-table): Mark all punctuation.
0757af94 12143 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
12144 ansi keywords.
12145 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 12146 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
12147 (sql-oracle-show-reserved-words): New function for development.
12148 (sql-product-font-lock): Simplify for source code buffers.
12149 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
12150 New functions.
12151 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
12152 (sql-mode-map): Add statement movement functions.
12153 (sql-ansi-statement-starters, sql-oracle-statement-starters):
12154 New variable.
fbcc67e2
MM
12155 (sql-statement-regexp, sql-beginning-of-statement)
12156 (sql-end-of-statement, sql-signum): New functions.
0757af94 12157 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
12158 (sql-show-sqli-buffer): Bug fix.
12159 (sql-interactive-mode): Store connection data as buffer local.
0757af94 12160 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
12161 with sql-interactive-mode.
12162 (sql-save-connection): Save buffer local settings.
0757af94 12163 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
12164 (sql-product-interactive): Bug fix.
12165 (sql-preoutput-hold): New variable.
12166 (sql-interactive-remove-continuation-prompt): Bug fixes.
12167 (sql-debug-redirect): New variable.
12168 (sql-str-literal): New function.
12169 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 12170 Redesign.
fbcc67e2
MM
12171 (sql-oracle-save-settings, sql-oracle-restore-settings)
12172 (sql-oracle-list-all, sql-oracle-list-table): New functions.
12173 (sql-completion-object, sql-completion-column)
12174 (sql-completion-sqlbuf): New variables.
12175 (sql-build-completions-1, sql-build-completions)
12176 (sql-try-completion): New functions.
12177 (sql-read-table-name): Use them.
12178 (sql-contains-names): New buffer local variable.
12179 (sql-list-all, sql-list-table): Use it.
12180 (sql-oracle-completion-types): New variable.
12181 (sql-oracle-completion-object, sql-sqlite-completion-object)
12182 (sql-postgres-completion-object): New functions.
12183
d4eaeab1
GM
121842011-07-06 Glenn Morris <rgm@gnu.org>
12185
12186 * window.el (pop-to-buffer): Doc fix.
12187
322b7dab 121882011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
12189
12190 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
12191
322b7dab 121922011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 12193
322b7dab 12194 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 12195
322b7dab 12196 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 12197
605dd5bf
CY
121982011-07-05 Chong Yidong <cyd@stupidchicken.com>
12199
12200 * button.el (button): Inherit from link face. Suggested by Dan
12201 Nicolaescu.
12202
7dbfa719
SM
122032011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12204
3db614b0
SM
12205 * progmodes/gdb-mi.el: Fit in 80 columns.
12206 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
12207 switch-to-buffer.
12208
7dbfa719
SM
12209 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
12210 if imenu is simply not configured (bug#8941).
12211
919d884a
KM
122122011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
12213
12214 * allout.el (allout-post-undo-hook): New allout outline-change
12215 event hook to signal undo activity.
12216 (allout-post-command-business): Run allout-post-undo-hook if an
12217 undo just occurred.
7dbfa719
SM
12218 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
12219 * allout-widgets.el (allout-widgets-after-undo-function):
12220 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
12221 in the vicinity of an undo.
12222 (allout-widgets-mode): Include allout-widgets-after-undo-function
12223 on the new allout-post-undo-hook.
12224
450a0f09
SM
122252011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12226
12227 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
12228 Let define-derived-mode define it.
12229 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
12230 cycles of abbrev-table inheritance (bug#8998).
12231
2de69e00
RW
122322011-07-05 Roland Winkler <winkler@gnu.org>
12233
12234 * textmodes/bibtex.el: Add support for biblatex.
12235 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
12236 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
12237 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
12238 (bibtex-entry-alist, bibtex-field-alist): New variables.
12239 (bibtex-entry-field-alist): Obsolete alias for
12240 bibtex-BibTeX-entry-alist.
12241 (bibtex-entry-alist, bibtex-field-alist): New widgets.
12242 (bibtex-set-dialect): New command.
12243 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
12244 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
12245 Bind via bibtex-set-dialect.
2de69e00
RW
12246 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
12247 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
12248 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
12249 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
12250 Define via bibtex-set-dialect.
450a0f09
SM
12251 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
12252 Obey bibtex-no-opt-remove-re.
2de69e00
RW
12253 (bibtex-vec-push, bibtex-vec-incr): New functions.
12254 (bibtex-format-entry, bibtex-field-list)
12255 (bibtex-print-help-message, bibtex-validate)
12256 (bibtex-search-entries): Use new format of bibtex-entry-alist.
12257
2dcdbdd9
SM
122582011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
12259
12260 * progmodes/compile.el (compilation-goto-locus):
12261 * net/tramp-cmds.el (tramp-append-tramp-buffers):
12262 * bs.el (bs-cycle-next, bs-cycle-previous):
12263 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
12264 * bindings.el (mode-line-other-buffer):
12265 * autoinsert.el (auto-insert):
12266 * arc-mode.el (archive-extract):
12267 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
12268
b27640fe
JB
122692011-07-05 Juanma Barranquero <lekktu@gmail.com>
12270
12271 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
12272 Fix check of `emacs-lock-unlockable-modes'.
12273 Coerce true values of `emacs-lock--try-unlocking' to t.
12274
53bbe3ad
JB
122752011-07-05 Juanma Barranquero <lekktu@gmail.com>
12276
12277 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
12278 * emacs-lock.el: New file.
12279
1d3cdbc7
JD
122802011-07-05 Julien Danjou <julien@danjou.info>
12281
12282 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
12283 than `boundp' to check if face is set.
12284
9173deec
JB
122852011-07-05 Juanma Barranquero <lekktu@gmail.com>
12286
12287 * register.el (registerv-make):
12288 * window.el (window-min-height): Fix typos in docstrings.
12289
869795d6
JD
122902011-07-05 Jan Djärv <jan.h.d@swipnet.se>
12291
9173deec 12292 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
12293 Update doc string.
12294
b768cdcd
JB
122952011-07-04 Juanma Barranquero <lekktu@gmail.com>
12296
12297 * server.el (server-execute): Catch quit and call
12298 `server-return-error' to pass the error back to emacsclient and
12299 close the connection (bug#8942).
12300
13aa217b
KM
123012011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
12302
12303 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
12304 insecure exception for current topic. Also note that auto-saves
12305 are handled differently.
12306
5d3385a0 12307 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
12308 State variables for tracking auto-save inhibition situation.
12309
12310 (allout-write-contents-hook-handler): Rename from
12311 'allout-write-file-hook-handler', and describe how it depends on
12312 write-contents-functions sensitivity to non-nil value to prevent
12313 file write.
12314
12315 (allout-auto-save-hook-handler): Remove. auto-save does not check
12316 this in individual buffers, only in the starting buffer, so this
12317 is not the right way for us to inhibit auto-save in a buffer
12318 according to its condition.
12319
12320 (allout-mode): Use new allout-write-contents-hook-handler, and
12321 only with write-contents-functions. Remove auto-save provisions -
12322 they're implemented elsewhere.
12323
12324 (allout-before-change-handler): If undo is in progress, note that
12325 for attention of allout-post-command-business.
12326
12327 (allout-post-command-business): If the command we're following was
12328 an undo, check for change in the status of encrypted items and
12329 adjust auto-save inhibitions accordingly.
12330
12331 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
12332 according to whether there are or aren't any plain-text topics
12333 pending encryption.
12334
2dcdbdd9 12335 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
12336 Adjust buffer-saved-size and some allout state to inhibit auto-saves
12337 if there are plain-text topics pending encryption.
13aa217b
KM
12338
12339 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
12340 buffer-saved-size and some allout state to not inhibit auto-saves
12341 if there are no longer any plain-text topics pending encryption.
12342
0757af94
SM
12343 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
12344 No longer provide for exemption of the current topic.
13aa217b 12345
ac89b32c
JL
123462011-07-04 Juri Linkov <juri@jurta.org>
12347
12348 Add 7z operations to delete and save changed members (bug#8968).
12349 * arc-mode.el (archive-7z-expunge, archive-7z-update):
12350 New defcustoms.
12351 (archive-7z-write-file-member): New function.
12352 (archive-7z-summarize): Fix the number of dashes in the
12353 listing output.
12354
8fa39615
SM
123552011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12356
12357 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
12358 (bug#8958).
12359
2f11b3f1
CY
123602011-07-04 Chong Yidong <cyd@stupidchicken.com>
12361
d66fef2b
CY
12362 * bindings.el: Ignore next-buffer and previous-buffer in
12363 minibuffer-local-map.
12364
2f11b3f1
CY
12365 * font-lock.el (font-lock-builtin-face): Change light background
12366 color to dark slate blue (Bug#6693).
12367
f932a347
WD
123682011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
12369
12370 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
12371
c8af70e1
SM
123722011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12373
12374 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
12375 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
12376 Add switch-to-buffer.
12377
f158badc
LMI
123782011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12379
12380 * isearch.el (isearch-search-fun-function): Clarify further the
12381 meaning of the function returned.
12382
6d95bd46
MA
123832011-07-04 Michael Albinus <michael.albinus@gmx.de>
12384
12385 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
12386
12387 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
12388 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
12389 Use it.
12390 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
12391 `tramp-default-remote-path' does not exist.
12392 (tramp-send-command-and-read): New optional argument NOERROR.
12393 (tramp-open-connection-setup-interactive-shell)
12394 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
12395 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
12396 (tramp-process-sentinel): Flush also process' connection property.
12397 (tramp-sh-handle-start-file-process): Do not set process
12398 sentinel. It is done now ...
12399 (tramp-maybe-open-connection): ... here. (Bug#8929)
12400
909e6b67
MK
124012011-07-04 MON KEY <monkey@sandpframing.com>
12402
12403 * play/animate.el (animate-string): Doc fixes and allow changing
12404 the buffer name (bug#5417).
12405
124062011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12407
c8af70e1 12408 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 12409
f34755dc
PE
124102011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12411
396cec72
PE
12412 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
12413 This is simpler and helps future-proof the code.
12414 (timer-until): Use time-subtract and float-time.
08235028 12415 (timer--time-less-p): Use time-less-p.
f34755dc 12416
56e6cc31
JB
124172011-07-04 Juanma Barranquero <lekktu@gmail.com>
12418
3abb79e5
JB
12419 * type-break.el (timep): Use the value of `float-time' to avoid a
12420 byte-compiler warning.
12421
56e6cc31
JB
12422 * server.el (server-eval-and-print): Return any result, even nil.
12423
7b9430b4
PE
124242011-07-03 Paul Eggert <eggert@cs.ucla.edu>
12425
12426 * type-break.el: Accept time formats that the builtins accept.
12427 (timep, type-break-time-difference): Accept any format that
12428 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
12429 This is simpler and helps future-proof the code.
12430 (type-break-time-difference): Round rather than ignoring
12431 subseconds components.
12432
3034e9e7
LMI
124332011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12434
12435 * info.el (Info-apropos-matches): Make non-interactive, since it
12436 doesn't seem to do anything useful as a command (bug#8829).
12437
1485f4c0
CY
124382011-07-03 Chong Yidong <cyd@stupidchicken.com>
12439
12440 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 12441 Move from faces.el.
1485f4c0
CY
12442 (frame-default-terminal-background): New function.
12443
12444 * custom.el (custom-push-theme): Don't record faces in `changed'
12445 theme; this doesn't work correctly for per-frame face settings.
12446 (disable-theme): Use face-set-after-frame-default to reset faces.
12447 (custom--frame-color-default): New function.
12448
9fa3dd45
LMI
124492011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12450
c8af70e1 12451 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
12452 (bug#8769).
12453
6cbbc20c
KR
124542011-03-29 Kevin Ryde <user42@zip.com.au>
12455
12456 * progmodes/compile.el (compilation-error-regexp-alist-alist):
12457 `perl-Test2' extend to match possible "fail #N" rep count
12458 (bug#8377).
12459
c7f98048
LMI
124602011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12461
65676592
LMI
12462 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
12463 `smtpmail-via-smtp' now returns the error instead of nil.
12464
c7f98048
LMI
12465 * isearch.el (isearch-search-fun-function): Clarify the doc string
12466 (bug#8101).
12467
56e6cc31 124682011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
12469
12470 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
12471 unnecessary spaces (bug#8987).
12472
2b216704
LMI
124732011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12474
12475 * net/network-stream.el (open-network-stream): Use the
12476 :end-of-capability command thoughout.
12477
124782011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
12479
12480 * net/network-stream.el (open-network-stream): Add the
12481 :end-of-capability command parameter, used by pop3.el.
12482
36adf6ce
LMI
124832011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12484
1ca0da0e
LMI
12485 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
12486
fc00f69c
LMI
12487 * fringe.el (fringe-query-style): Remove redundant text " (type ?
12488 for list)" (bug#6475).
12489
28fd8759 12490 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 12491 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
12492 an error (bug#6297).
12493
0dd8b6da
LMI
12494 * man.el (Man-reference-regexp): Allow matching possible
12495 word-wrapped references (bug#6289).
12496
ce1438d6
LMI
12497 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
12498 for consistency with the other vc buffers (bug#6197).
12499 (vc-checkin): Ditto.
12500
12501 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
12502
36adf6ce
LMI
12503 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
12504
e83cc1f7
LMI
125052011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12506
8a20ca4c
LMI
12507 * custom.el (defcustom): Clarify that :set is only used in the
12508 Customize user interface (bug#6089).
12509
83319045
LMI
12510 * progmodes/flymake.el (flymake-mode): If the buffer isn't
12511 associated with a file, refuse to run instead of erroring out
12512 (bug#6084).
12513
a8392169
LMI
12514 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
12515 the doc string, since it appears that using `fill-column' always
12516 controls the width (bug#7845).
12517
e83cc1f7
LMI
12518 * simple.el (shell-command-on-region): Say where the error output
12519 went if `shell-command-default-error-buffer' is set (bug#6857).
12520
e47ca23b
KM
125212011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
12522
12523 * allout.el (allout-yank-processing): Adjust cursor position for
12524 backwards-deleted space.
12525
12526 (allout-rebullet-heading): Register changes with
12527 allout-exposure-changed-hook, so the modified topic is properly
12528 decorated.
12529
5cf56143
LMI
125302011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12531
08549772
LMI
12532 * minibuffer.el (completion-in-region): Document PREDICATE
12533 (bug#7136).
12534
48e96771
LMI
12535 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
12536 of keyword/argument pairs (bug#6904).
12537
c8af70e1
SM
12538 * replace.el (multi-occur):
12539 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 12540
e17d05e2
LMI
125412011-07-02 Drew Adams <drew.adams@oracle.com>
12542
12543 * dired.el (dired-mark-if): Make the message about whether it's
12544 marking or unmarking clearer (bug#8523).
12545
063b0e45
LMI
125462011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12547
12548 * disp-table.el (display-table-print-array): New function.
12549 (describe-display-table): Use it to print the vectors more pretty
12550 (Bug#8859).
12551
28545e04
MR
125522011-07-02 Martin Rudalics <rudalics@gmx.at>
12553
12554 * window.el (window-state-get-1): Don't assign clone numbers.
12555 Add clone-of item to list of window parameters.
12556 (window-state-put-2): Don't process clone numbers.
12557 (display-buffer-alist): Fix doc-string.
12558
3349e122
SM
125592011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12560
12561 * subr.el (remq): Don't allocate if it's not needed.
12562 (keymap--menu-item-binding, keymap--menu-item-with-binding)
12563 (keymap--merge-bindings): New functions.
12564 (keymap-canonicalize): Use them to refine the canonicalization.
12565 * minibuffer.el (minibuffer-local-completion-map)
12566 (minibuffer-local-must-match-map): Move initialization from C.
12567 (minibuffer-local-filename-completion-map): Move initialization from C;
12568 don't inherit from anything here.
12569 (minibuffer-local-filename-must-match-map): Make obsolete.
12570 (completing-read-default): Use make-composed-keymap to combine
12571 minibuffer-local-filename-completion-map with either
12572 minibuffer-local-must-match-map or
12573 minibuffer-local-filename-completion-map.
12574
d224ac83
GM
125752011-07-01 Glenn Morris <rgm@gnu.org>
12576
3de63bf8
GM
12577 * type-break.el (type-break-time-sum): Use dolist.
12578
d224ac83
GM
12579 * textmodes/flyspell.el (flyspell-word-search-backward):
12580 Replace CL function.
12581
1a1e3f32
SM
125822011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12583
fe3f64d5
SM
12584 * mouse.el (mouse--strip-first-event): New function.
12585 (function-key-map): Use it to map fringe clicks to normal clicks
12586 by default.
12587
eb604e34
SM
12588 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
12589 (vc-bzr-revision-completion-table): Add support for annotate and date.
12590
1a1e3f32
SM
12591 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
12592 inherit from parent.
12593
5bd35902
LMI
125942011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
12595
ace6c69c 12596 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 12597 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 12598
191e2bed
LMI
12599 * dired.el (dired-mode): Fix up the doc string as suggested by
12600 Drew Adams (bug#8817).
12601
5bd35902
LMI
12602 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
12603 cookie, since the manual says that it should be possible to add
12604 this function to `find-file-hook' (bug#8709).
12605
eee8207a
TZ
126062011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12607
12608 * progmodes/cfengine.el: Moved all cfengine3.el functionality
12609 here. Noted Ted Zlatanov as the maintainer.
12610 (cfengine-common-settings, cfengine-common-syntax): New functions
12611 to set up common things between `cfengine-mode' and
12612 `cfengine3-mode'.
12613 (cfengine3-mode): New mode.
12614 (cfengine3-defuns cfengine3-defuns-regex
12615 (cfengine3-class-selector-regex cfengine3-category-regex)
12616 (cfengine3-vartypes cfengine3-font-lock-keywords)
12617 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 12618 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 12619
36b148cf
MA
126202011-07-01 Michael Albinus <michael.albinus@gmx.de>
12621
12622 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
12623
12624 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
12625
0bf4ba9a
MR
126262011-07-01 Martin Rudalics <rudalics@gmx.at>
12627
12628 * window.el (same-window-buffer-names, same-window-regexps)
12629 (same-window-p, special-display-frame-alist)
12630 (special-display-popup-frame, special-display-function)
12631 (special-display-buffer-names, special-display-regexps)
12632 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
12633 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12634 (split-window-preferred-function, split-height-threshold)
12635 (split-width-threshold, even-window-heights)
12636 (display-buffer-mark-dedicated, window-splittable-p)
12637 (split-window-sensibly, window-safely-shrinkable-p):
12638 Un-obsolete.
12639 (display-buffer): Don't spread args with function specifier
12640 because special-display-popup-frame won't like it.
12641
35837f51
PE
126422011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12643
d0672f86
PE
12644 Time-stamp simplifications and fixes.
12645 These improve accuracy slightly, and future-proof the code
12646 against some potential changes to current-time format.
12647
b9444d97
PE
12648 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
12649 by using time-since and float-time.
12650
0ef923dc
PE
12651 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
12652 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
12653 + NNN microseconds".
12654
2f81380d
PE
12655 * type-break.el (type-break-time-sum): Rewrite using time-add.
12656
845b5c3e
PE
12657 * play/hanoi.el (hanoi-current-time-float): Remove.
12658 All uses replaced by float-time.
12659
ee6f1be0
PE
12660 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
12661 This yields a more-accurate answer.
12662 (rng-time-to-float): Remove; no longer needed.
12663
fe955043
PE
12664 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
12665
5777162a
PE
12666 * calendar/timeclock.el (timeclock-seconds-to-time):
12667 Defalias to seconds-to-time, since they're the same thing.
12668
3103f8b6 12669 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 12670 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
12671 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
12672
0e61a35f
SM
126732011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12674
12675 * window.el (bury-buffer): Don't iconify the only frame.
12676 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
12677 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
12678
ddd63a1e
CY
126792011-07-01 Chong Yidong <cyd@stupidchicken.com>
12680
0e61a35f
SM
12681 * eshell/em-smart.el (eshell-smart-display-navigate-list):
12682 Add mouse-yank-primary.
ddd63a1e 12683
055f4923
TZ
126842011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
12685
12686 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
12687
6a2fb145
SM
126882011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
12689
12690 * emacs-lisp/find-func.el (find-library--load-name): New fun.
12691 (find-library-name): Use it to find relative load names when provided
12692 absolute file name (bug#8803).
12693
fd4983f2
LMI
126942011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12695
887d14ad
LMI
12696 * textmodes/flyspell.el (flyspell-word): Consider words that
12697 differ only in case as potential doublons (bug#5687).
12698
c53dc7fc
LMI
12699 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
12700 Remove two rather uninteresting debugging-like messages to make
12701 debbugs.el more silent.
12702
fd4983f2
LMI
12703 * comint.el (comint-password-prompt-regexp): Accept "Response" as
12704 a password-like phrase.
12705
7a71b18d 127062011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
12707
12708 * progmodes/cc-guess.el: New file.
12709
6a2fb145 12710 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
12711
12712 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
12713 derived from `c-basic-common-init'.
12714
12715 * progmodes/cc-mode.el (top-level): Require cc-guess.
12716 (c-basic-common-init): Use `cc-choose-style-for-mode'.
12717
1fa280a3
LM
127182011-06-30 Lawrence Mitchell <wence@gmx.li>
12719
12720 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
12721
e6597158
AM
127222011-06-30 Alan Mackenzie <acm@muc.de>
12723
1fa280a3
LM
12724 * progmodes/cc-engine.el (c-guess-continued-construct):
12725 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
12726 lock is disabled. Name this case as "CASE G".
12727
68ba37fb
KM
127282011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
12729
12730 * allout.el (allout-yank-processing): Fix injection of extra space
12731 between bullet and non-whitespace character in first topic when
12732 pasting, ensuring that the actual spacing in the pasted topic
12733 following the bullet char is preserved. This extra space was
12734 causing pasted encrypted topics to get a decrypted status even
12735 when the content was actually still encrypted. Now the decryption
12736 status from before the paste is preserved.
12737
12738 (allout-flag-region): Set all allout overlays so they evaporate
12739 when reduced to zero length (evanescent), to prevent overlay
12740 leakage.
12741
887a0b34
GM
127422011-06-30 Glenn Morris <rgm@gnu.org>
12743
94b9acce
GM
12744 * w32-fns.el (w32-charset-info-alist): Declare.
12745
1d9b46d4
GM
12746 * find-dired.el (find-grep-options): Simplify.
12747
cc232200
GM
12748 * term/ns-win.el (ns-set-resource): Declare.
12749
28e77c46
GM
12750 * ses.el (row, col): Declare dynamic variables honestly.
12751
887a0b34
GM
12752 * textmodes/reftex-parse.el (index-tags): Declare.
12753
658d8eb8
CY
127542011-06-30 Chong Yidong <cyd@stupidchicken.com>
12755
12756 * cus-edit.el (customize-push-and-save): New function.
12757
12758 * files.el (hack-local-variables-confirm): Use it.
12759
1fa280a3
LM
12760 * custom.el (load-theme): New arg NO-CONFIRM.
12761 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
12762 (custom-enabled-themes): Doc fix.
12763
12764 * cus-theme.el (customize-create-theme)
12765 (custom-theme-merge-theme): Callers to load-theme changed.
12766
bb617717
LMI
127672011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
12768
d61bdd5d
LMI
12769 * thingatpt.el (thing-at-point-short-url-regexp): Require that
12770 short URLs have at least one dot in them (bug #7614).
12771
bb617717
LMI
12772 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
12773 nil, because using a pty is apparently too slow (bug #895).
12774
2f31f37a
LMI
127752011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
12776
12777 * mail/sendmail.el (sendmail-query-once): New function.
12778 (sendmail-query-once-function): New variable.
12779
3076b24e
GM
127802011-06-29 Glenn Morris <rgm@gnu.org>
12781
faf2a174
GM
12782 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
12783
3076b24e
GM
12784 * ses.el (top-level): Require cl when compiling.
12785 (ses-set-localvars): Fix error statement.
12786 Call it at compile time to silence a storm of warnings.
12787
5386012d
MR
127882011-06-29 Martin Rudalics <rudalics@gmx.at>
12789
12790 * window.el (normalize-live-buffer): Rename to
12791 window-normalize-buffer.
12792 (normalize-live-frame): Rename to window-normalize-frame.
12793 (normalize-any-window): Rename to window-normalize-any-window.
12794 (normalize-live-window): Rename to window-normalize-live-window.
12795 (make-window-atom): Rename to window-make-atom.
12796 (window-resize-reset): Rename to window--resize-reset.
12797 (window-resize-reset-1): Rename to window--resize-reset-1.
12798 (resize-mini-window): Rename to window--resize-mini-window.
12799 (resize-subwindows-skip-p): Rename to
12800 window--resize-subwindows-skip-p.
12801 (resize-subwindows-normal): Rename to
12802 window--resize-subwindows-normal.
12803 (resize-subwindows): Rename to window--resize-subwindows.
12804 (resize-other-windows): Rename to window--resize-siblings.
12805 (resize-this-window): Rename to window--resize-this-window.
12806 (resize-root-window): Rename to window--resize-root-window.
12807 (resize-root-window-vertically): Rename to
12808 window--resize-root-window-vertically.
12809 (normalize-buffer-to-display): Rename to
12810 window-normalize-buffer-to-display.
12811 (normalize-buffer-to-switch-to): Rename to
12812 window-normalize-buffer-to-switch-to.
12813 Correspondingly update all callers of the functions listed
12814 above.
12815 (display-buffer-alist, display-buffer-normalize-arguments)
12816 (display-buffer-normalize-options, display-buffer)
12817 (display-buffer-alist-set): Use "function" instead of
12818 "fun-with-args".
12819
1176868d
CY
128202011-06-28 Chong Yidong <cyd@stupidchicken.com>
12821
12822 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
12823 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
12824 debbugs.gnu.org. Mention acknowledgment email.
12825
20a7a65f
LMI
128262011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
12827
12828 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
12829 buffer multibyteness, since it shouldn't matter.
12830
5f45cca5
MR
128312011-06-28 Martin Rudalics <rudalics@gmx.at>
12832
12833 * window.el (display-buffer-in-side-window): Handle dedicated
12834 windows as in display-buffer-reuse-window.
12835 (display-buffer-normalize-alist): Use value of override
12836 specifier.
12837 (display-buffer-normalize-specifiers): Use value of
12838 other-window-means-other-frame specifier.
12839 (display-buffer-alist): Rewrite some texts in widgets.
12840 (display-buffer): Spread arguments when calling function
12841 specified by fun-with-args.
12842
ad85fe1f
DD
128432011-06-28 Deniz Dogan <deniz@dogan.se>
12844
1fa280a3
LM
12845 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
12846 Unnest `let'.
da68c4c8 12847
ad85fe1f
DD
12848 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
12849 selectors (Bug#5732).
ec49bd31 12850 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 12851
a08cc025
JA
128522011-06-27 Jari Aalto <jari.aalto@cante.net>
12853
12854 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
12855 (eshell-ls-date-format): New defcustom.
12856 (eshell-ls-file): Use it.
12857
e2b551c5
SM
128582011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12859
12860 * help-fns.el (describe-variable): Fix message for terminal-local vars.
12861
8982b231
KY
128622011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
12863
12864 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
12865 (ange-ftp-make-tmp-name): New arg.
12866 (ange-ftp-file-local-copy): Use it.
12867
36c9fa27
J
128682011-06-27 Jambunathan K <kjambunathan@gmail.com>
12869
12870 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
12871 no-conversion (Bug#8870).
12872
d68443dc
MR
128732011-06-27 Martin Rudalics <rudalics@gmx.at>
12874
12875 * window.el (window-right, window-left, window-child)
12876 (window-child-count, window-last-child)
12877 (window-iso-combination-p, walk-window-tree-1)
12878 (window-atom-check-1, window-tree-1, delete-window)
12879 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
12880 new naming conventions - window-vchild, window-hchild,
12881 window-next and window-prev are now called window-top-child,
12882 window-left-child, window-next-sibling and window-prev-sibling
12883 respectively.
d615d6d2
MR
12884 (resize-window-reset): Rename to window-resize-reset.
12885 (resize-window-reset-1): Rename to window-resize-reset-1.
12886 (resize-window): Rename to window-resize.
12887 (window-min-height, window-min-width)
12888 (resize-mini-window, resize-this-window, resize-root-window)
12889 (resize-root-window-vertically, adjust-window-trailing-edge)
12890 (enlarge-window, shrink-window, maximize-window)
12891 (minimize-window, delete-window, quit-restore-window)
12892 (split-window, balance-windows, balance-windows-area-adjust)
12893 (balance-windows-area, window-state-put-2)
12894 (display-buffer-even-window-sizes, display-buffer-set-height)
12895 (display-buffer-set-width, set-window-text-height)
12896 (fit-window-to-buffer): Rename all "resize-window" prefixed
12897 calls to use the "window-resize" prefix convention.
12898 (display-buffer-alist): Fix symbol for label specifier.
12899 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
12900 corresponding specifier.
12901 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 12902
b6458526
VB
129032011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12904
12905 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
12906 convention.
12907 (ses-call-printer): Does not pass an empty string to formatter when the
12908 cell is empty to keep from barking printer Calc math-format-value.
12909
d31fd9ac
RS
129102011-06-27 Richard Stallman <rms@gnu.org>
12911
43d5bf84
RS
12912 * battery.el (battery-mode-line-limit): New variable.
12913 (battery-update): Handle it.
12914
d31fd9ac
RS
12915 * mail/rmailmm.el (rmail-mime-process-multipart):
12916 Handle truncated messages.
12917
819a6054
GM
129182011-06-27 Glenn Morris <rgm@gnu.org>
12919
12920 * progmodes/flymake.el (flymake-err-line-patterns):
12921 Allow for column numbers in the ant/javac pattern. (Bug#8866)
12922
cedc73f2
VB
129232011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
12924
819a6054 12925 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
12926 (ses--clean-!, ses--clean-_): New functions.
12927 (ses-range): Add configurability of readout order, and conversion
12928 to Calc vector.
12929
5e5d49b6
VB
12930 * ses.el (ses-repair-cell-reference-all): New function.
12931 (ses-cell-symbol): Set macro as safe, so that it can be used in
12932 formulas.
12933
56e6cc31 12934 * ses.el: Update cycle detection algorithm.
90ca8b49 12935 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 12936 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
12937 (ses-set-localvars): New function.
12938 (ses-make-cell): Add property-list as a cell element.
12939 (ses-cell-property-get-fun, ses-cell-property-get)
12940 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
12941 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
12942 New functions.
90ca8b49
VB
12943 (ses-cell-property-set, ses-cell-property-pop)
12944 (ses-cell-property-get-handle): New macro.
12945 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
12946 New aliases, used for code readability.
12947 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
12948 cycle detection.
12949 (ses-self-reference-early-detection): New defcustom.
fac916bf 12950 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
12951 (ses-mode): Use ses-set-localvars.
12952 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
12953 before lauching the update processing.
12954 (ses-initialize-Dijkstra-attempt): New function.
12955 (ses-recalculate-cell): Update for cycle detection based on
12956 Dijkstra algorithm.
12957
2bb63e81
VB
12958 * ses.el: Fix commenting and indenting convention.
12959
c9d29fb8
SM
129602011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
12961
12962 * bs.el (bs-cycle-next): Complete last change.
12963
d8e4b68b
JB
129642011-06-27 Drew Adams <drew.adams@oracle.com>
12965
12966 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
12967
40098786
LMI
129682011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12969
c9d29fb8
SM
12970 * net/network-stream.el (network-stream-open-starttls):
12971 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
12972 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
12973
40098786
LMI
12974 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
12975 to binary to possibly avoid line encoding issues on Windows (among
12976 other things).
12977
468d09d4
LMI
129782011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
12979
12980 * net/network-stream.el (open-network-stream): Return an :error
12981 saying what the problem was, if possible.
12982
12983 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
12984 server.
12985
12986 * net/network-stream.el (network-stream-open-starttls): If we
12987 wanted to use STARTTLS, and the server offered it, but we weren't
12988 able to because we had no STARTTLS support, then close the connection.
12989 (open-network-stream): Return an :error element, if present.
12990
16f07dd7
CY
129912011-06-26 Chong Yidong <cyd@stupidchicken.com>
12992
88821ca0
CY
12993 * hl-line.el (hl-line-sticky-flag): Doc fix.
12994 (global-hl-line-sticky-flag): New option (Bug#8323).
12995 (global-hl-line-highlight): Obey it.
12996
16f07dd7
CY
12997 * vc/vc.el (vc-revert-show-diff): Default to t.
12998
6b5ccddf
KM
129992011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
13000
c9d29fb8
SM
13001 * allout-widgets.el (allout-widgets-post-command-business):
13002 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
13003 undecorated when an isearch is continued past, and isearch
13004 automatically collapses them. This leads to "widget leaks", where
13005 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
13006 hidden widgets can slow down cursor travel, substantially.
13007 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
13008 so we're doing without this nicety.
13009
13010 (allout-widgets-tally-string): Don't try to do a hash-table-count
13011 of allout-widgets-tally when it's nil. This eliminates spurious "Error
13012 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
13013 *Messages* when allout-widgets-maintain-tally is t.
13014
355f2e07
MR
130152011-06-26 Martin Rudalics <rudalics@gmx.at>
13016
13017 * window.el (display-buffer-normalize-argument): Rename to
13018 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
13019 LABEL argument. Respect special-display-function when popping up
13020 a new frame. Fix code searching for a window showing the buffer
13021 on another frame.
c9d29fb8
SM
13022 (display-buffer-normalize-specifiers):
13023 Call display-buffer-normalize-arguments.
355f2e07
MR
13024 (display-buffer-in-window): Don't undedicate the window if its
13025 buffer remains the same.
13026 Reported by Drew Adams <drew.adams@oracle.com>.
13027 (display-buffer-alist): Add choice for same-window macro
13028 specfier.
13029 (display-buffer): Mention special meaning of LABEL argument in
13030 doc-string. Fix quoting. Don't pop up a new frame even as
13031 fallback.
13032
7ca8fc42
JB
130332011-06-26 Juanma Barranquero <lekktu@gmail.com>
13034
13035 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
13036 avoid deleting the current window in some cases (bug#8911).
13037
bc312254
AS
130382011-06-26 Andreas Schwab <schwab@linux-m68k.org>
13039
13040 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
13041 (Bug#8934)
13042
2db18f3f
LMI
130432011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13044
c9d29fb8
SM
13045 * net/network-stream.el (network-stream-open-starttls):
13046 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
13047 (network-stream-open-tls): Ditto.
13048
6302e0d3
LL
130492011-06-26 Leo Liu <sdl.web@gmail.com>
13050
13051 * register.el (registerv): New struct.
13052 (registerv-make): New function.
c9d29fb8
SM
13053 (jump-to-register, describe-register-1, insert-register):
13054 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
13055 struct. (Bug#8415)
13056
5fdd4046
CY
130572011-06-26 Chong Yidong <cyd@stupidchicken.com>
13058
2afef60a
CY
13059 * vc/vc.el (vc-revert-show-diff): New defcustom.
13060 (vc-diff-internal): New arg specifying diff buffer.
13061 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
13062 reuse an existing *vc-diff* buffer (Bug#8927).
13063
5fdd4046
CY
13064 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
13065
e93db24a
GM
130662011-06-26 Glenn Morris <rgm@gnu.org>
13067
13068 * progmodes/f90.el (f90-critical-indent): New option.
13069 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
13070 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
13071 (f90-mode): Doc fix.
13072 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
13073 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
13074 (f90-beginning-of-block, f90-next-block, f90-indent-region)
13075 (f90-match-end): Handle block, critical.
13076
eefff499
GM
130772011-06-25 Glenn Morris <rgm@gnu.org>
13078
f6ba4cc9
GM
13079 * calendar/diary-lib.el (diary-included-files): Doc fix.
13080 (diary-include-files): New function, extracted from
13081 diary-include-other-diary-files and diary-mark-included-diary-files.
13082 (diary-include-other-diary-files, diary-mark-included-diary-files):
13083 Just call diary-include-files.
13084 (diary-mark-entries): Reset diary-included-files on first call.
13085
16712304
GM
13086 * calendar/diary-lib.el (diary-mark-entries)
13087 (diary-mark-included-diary-files):
13088 Visit included diary-files in temp buffers.
13089
5d8e0d43
GM
13090 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
13091 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
13092 (f90-start-block-re, f90-imenu-generic-expression)
13093 (f90-looking-at-program-block-start, f90-no-block-limit):
13094 Add support for submodules.
13095
ccf7a5d5
GM
13096 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
13097 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 13098
11fdef7d 130992011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
13100
13101 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
13102 buffer-file-type before setting its value, to avoid disastrous
eefff499 13103 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 13104
74f53697
JB
131052011-06-25 Juanma Barranquero <lekktu@gmail.com>
13106
13107 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
13108
13109 * ses.el (ses-unload-function):
13110 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
13111
13112 * proced.el (proced-unload-function):
13113 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
13114
18a4ce5e
AR
131152011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
13116
13117 * server.el (server-create-window-system-frame): Add parameters arg.
13118 (server-process-filter): Doc fix. Handle frame-parameters.
13119
519d22cc
JB
131202011-06-25 Juanma Barranquero <lekktu@gmail.com>
13121
13122 Fix bug#8730, bug#8781.
13123
13124 * loadhist.el (unload--set-major-mode): New function.
13125 (unload-feature): Use it.
13126
13127 * progmodes/python.el (python-after-info-look): Add autoload cookie.
13128 (python-unload-function): New function.
13129
c206f5b0
SM
131302011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
13131
13132 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
13133
f9ad64f3
GS
131342011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
13135
13136 * net/browse-url.el (browse-url-firefox-program): Add icecat to
13137 the candidates list.
13138
7d0da90e
JB
131392011-06-24 Juanma Barranquero <lekktu@gmail.com>
13140
13141 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
13142
14b4e83d
RS
131432011-06-23 Richard Stallman <rms@gnu.org>
13144
13145 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
13146 (rmail-variables): Set next-error-move-function.
13147 (rmail-what-message): Take argument POS.
13148 (rmail-next-error-move): New function.
13149
273d2baf
SM
131502011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
13151
13152 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
13153 messages for adjacent non-terminals.
13154
56c2cc9a
RS
131552011-06-23 Richard Stallman <rms@gnu.org>
13156
13157 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 13158 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
13159 (rmail-start-mail): Don't specify use of rmail-mail-return;
13160 that's done by mail-bury now.
13161 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 13162
d59eb518
MA
131632011-06-23 Michael Albinus <michael.albinus@gmx.de>
13164
13165 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
13166 SIZE is a number.
13167
02cfc6d6
MR
131682011-06-23 Martin Rudalics <rudalics@gmx.at>
13169
13170 * window.el (get-lru-window, get-mru-window)
13171 (get-largest-window): Never return a minibuffer window.
13172 (display-buffer-pop-up-window): Fix a bug that could lead to
13173 reusing the minibuffer window.
13174 (display-buffer): Pass original specifier argument to
13175 display-buffer-function instead of the normalized one.
13176 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
13177
4e323265
LL
131782011-06-22 Leo Liu <sdl.web@gmail.com>
13179
13180 * minibuffer.el (completing-read-function)
13181 (completing-read-default): Move from minibuf.c
13182
7a70468f
RS
131832011-06-22 Richard Stallman <rms@gnu.org>
13184
50718fc2
RS
13185 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
13186 to Rmail even if not started by a special Rmail command.
13187
7a70468f
RS
13188 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
13189 Copy the buffer currently showing just one message.
13190
297dde5a
RW
131912011-06-22 Roland Winkler <winkler@gnu.org>
13192
13193 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
13194 (bibtex-clean-entry): First delete the old key so that a
13195 customized algorithm for generating the new key does not get
13196 confused by the old key.
13197 (bibtex-url): Obey regexp of first step.
13198 (bibtex-search-entries): Do not use add-to-list with local
13199 list-var.
13200
97bb1093
LMI
132012011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13202
13203 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
13204 stored a user name, then query for the password first, instead of
13205 waiting for SMTP to give an error message and the trying again.
13206
1c0f1a19
JD
132072011-06-22 Lawrence Mitchell <wence@gmx.li>
13208
13209 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
13210 BUFFER in call-process.
13211
396f7c9d
LMI
132122011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
13213
13214 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
13215 QUIT twice.
ddb7ffee
LMI
13216 (smtpmail-try-auth-methods): Require user name and password from
13217 auth-source.
396f7c9d 13218
8998d1b3
MR
132192011-06-22 Martin Rudalics <rudalics@gmx.at>
13220
13221 * window.el (display-buffer-default-specifiers)
13222 (display-buffer-alist): Remove entries for pop-up-frame-alist.
13223 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 13224 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
13225
13226 * frame.el (pop-up-frame-alist, pop-up-frame-function)
13227 (special-display-frame-alist, special-display-popup-frame):
13228 Remove duplicate declarations. These are now in window.el.
13229
4ea31e07
LMI
132302011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
13231
c9d29fb8
SM
13232 * mail/smtpmail.el (smtpmail-via-smtp):
13233 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
13234 server supports it. SMTP servers that support STARTTLS commonly
13235 require it.
13236
13237 * net/network-stream.el (network-stream-open-starttls): Support
13238 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 13239 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 13240
95f41d9a
LMI
13241 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
13242 upgrades with `open-network-stream', and rely solely on
13243 auth-source for all credentials. Big changes throughout the file,
13244 but in particular:
c9d29fb8
SM
13245 (smtpmail-auth-credentials): Remove.
13246 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
13247 (smtpmail-via-smtp): Check for servers saying they want AUTH after
13248 MAIL FROM, too.
95f41d9a 13249
c9d29fb8
SM
13250 * net/network-stream.el (network-stream-open-starttls):
13251 Provide support for client certificates both for external and built-in
4ea31e07
LMI
13252 STARTTLS.
13253 (auth-source): Require.
13254 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
13255 (network-stream-certificate): Change cert-cert to cert and
13256 cert-key to key.
4ea31e07 13257
065ec2c7
MA
132582011-06-21 Michael Albinus <michael.albinus@gmx.de>
13259
13260 * net/tramp-cache.el (top): Don't load the persistency file when
13261 "emacs -Q" has been called.
13262
cd93b359
DR
132632011-06-21 Tim Harper <timcharper@gmail.com>
13264
d8e4b68b
JB
13265 * term/ns-win.el (ns-initialize-window-system):
13266 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
13267 resource to NO as it is not yet supported by the NS port.
13268
ae9c0411
JB
132692011-06-21 Juanma Barranquero <lekktu@gmail.com>
13270
13271 * misc.el (list-dynamic-libraries--refresh): Compute header here...
13272 (list-dynamic-libraries): ...not here.
13273
7f3f739f
LL
132742011-06-21 Leo Liu <sdl.web@gmail.com>
13275
13276 * subr.el (sha1): Implement sha1 using secure-hash.
13277
327c8fb1
MR
132782011-06-21 Martin Rudalics <rudalics@gmx.at>
13279
13280 * window.el (display-buffer-alist): In default value do not
13281 enforce searching a window on any but the selected frame.
13282 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
13283 (display-buffer-select-window): Remove function.
13284 (display-buffer-in-window): When a window on another frame gets
13285 reused, do not select it any more but just raise its frame if
13286 necessary (Bug#8851) and (Bug#8856).
13287 (display-buffer-normalize-options): Handle pop-up-frames related
13288 options more faithfully.
13289 (pop-to-buffer): Don't rely on `display-buffer' selecting the
13290 window if it is on another frame.
c9d29fb8
SM
13291 (display-buffer-alist, display-buffer-default-specifiers):
13292 Don't make new frame unsplittable by default.
9e9de014
MR
13293 (display-buffer-normalize-argument): Fix doc-string typo and use
13294 'same-frame-other-window instead of 'other-window when associating
13295 with display-buffer-macro-specifiers.
327c8fb1 13296
7cf3f556
VB
132972011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
13298
13299 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
13300 New functions.
13301 (5x5-mode-map, 5x5-mode-menu): Bind them.
13302 (5x5-draw-grid): Tweak the solver's rendering.
13303
60a406cf
SM
133042011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13305
13306 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
13307 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
13308
d8e4b68b 133092011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
13310
13311 * menu-bar.el: Use function variable instead of switch-to-buffer.
13312 (menu-bar-select-buffer-function): New variable.
60a406cf 13313 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 13314
478d6f95
SM
133152011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
13316
13317 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
13318 variable's status.
13319
ca530739
JD
133202011-06-20 Jan Djärv <jan.h.d@swipnet.se>
13321
13322 * x-dnd.el (x-dnd-version-from-flags)
13323 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
13324 and long as number (Bug#8899).
13325 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
13326
bcd70d97
SM
133272011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
13328
60a406cf 13329 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
13330 (completion-try-completion, completion-all-completions): Compute the
13331 metadata argument if it's missing; make it optional (bug#8795).
13332
60a406cf 13333 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
13334 (widget-complete): Use new :completion-function property.
13335 (widget-completions-at-point): New function.
13336 (default): Use :completion-function instead of :complete.
60a406cf
SM
13337 (widget-default-completions): Rename from widget-default-complete;
13338 Rewrite.
bcd70d97
SM
13339 (widget-string-complete, widget-file-complete, widget-color-complete):
13340 Remove functions.
13341 (file, symbol, function, variable, coding-system, color):
13342 * international/mule-cmds.el (default-input-method, charset)
13343 (language-info-custom-alist):
13344 * cus-edit.el (face): Use new property :completions.
13345
13346 * progmodes/pascal.el (pascal-completions-at-point): New function.
13347 (pascal-mode): Use it.
13348 (pascal-mode-map): Use completion-at-point.
13349 (pascal-toggle-completions): Make obsolete.
13350 (pascal-complete-word, pascal-show-completions):
13351 * progmodes/octave-mod.el (octave-complete-symbol):
13352 Redefine as obsolete alias.
13353 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
13354 Signal absence of completion info for old Octave,
13355 (inferior-octave-complete): Redefine as obsolete alias.
13356 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
13357 (meta-completions-at-point): Rename from meta-complete-symbol and
13358 adapt it for use on completion-at-point-functions.
13359 (meta-common-mode): Use it.
13360 (meta-looking-at-backward, meta-match-buffer): Remove.
13361 (meta-complete-symbol): Redefine as obsolete alias.
13362 (meta-common-mode-map): Use completion-at-point.
13363 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
13364 (makefile-mode-map): Use completion-at-point.
13365 (makefile-completions-at-point): Rename from makefile-complete and
13366 adapt it for use on completion-at-point-functions.
13367 (makefile-mode): Use it.
13368 (makefile-complete): Redefine as obsolete alias.
13369
aebf69c8
DD
133702011-06-20 Deniz Dogan <deniz@dogan.se>
13371
13372 * net/rcirc.el: Delete trailing whitespaces once and for all.
13373
bfbbb27d
DC
133742011-06-20 Daniel Colascione <dan.colascione@gmail.com>
13375
13376 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
13377
d264a46b
CY
133782011-06-19 Chong Yidong <cyd@stupidchicken.com>
13379
4ca009e5
CY
13380 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
13381
d264a46b
CY
13382 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
13383
fbf5b3ce
MR
133842011-06-19 Martin Rudalics <rudalics@gmx.at>
13385
13386 * window.el (display-buffer-other-window-means-other-frame):
13387 Call display-buffer-normalize-alist.
13388 (display-buffer-normalize-specifiers-1): Rename to
13389 display-buffer-normalize-argument. New argument other-frame.
13390 Rewrite.
13391 (display-buffer-normalize-specifiers-2): Rename to
13392 display-buffer-normalize-options.
13393 (display-buffer-normalize-alist-1): New function.
13394 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
13395 display-buffer-normalize-alist.
13396 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
13397 (display-buffer-normalize-options-inhibit): New variable.
13398 (display-buffer-normalize-specifiers): Rewrite calling
13399 display-buffer-normalize-alist,
13400 display-buffer-normalize-argument, and
13401 display-buffer-normalize-options. Don't call the latter if
13402 display-buffer-normalize-options-inhibit is non-nil.
13403 (frame-auto-delete): New option.
13404 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
13405 (window-list-no-nils, window-state-ignored-parameters)
13406 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
13407 (window-state-put-1, window-state-put-2, window-state-put):
13408 New functions.
9a028c23
MR
13409 (display-buffer-normalize-options): Move special-display-p group
13410 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 13411
6d10d800
CY
134122011-06-18 Chong Yidong <cyd@stupidchicken.com>
13413
6420d28b
CY
13414 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
13415 groups (Bug#8776).
13416 (rx-submatch-n): New function.
13417 (rx): Document it.
13418
ddb8b596
CY
13419 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
13420 (Bug#8768).
13421
13422 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
13423
77080289
CY
13424 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
13425
61dfb316
CY
13426 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
13427 anytime existing face settings are present (Bug#8889).
13428
6d10d800
CY
13429 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
13430 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
13431 Remove unused argument.
13432
be3fb2b8
MR
134332011-06-18 Martin Rudalics <rudalics@gmx.at>
13434
bcd70d97
SM
13435 * window.el (display-buffer-default-specifiers):
13436 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
13437 pop-up-window-min-width, and another reuse-window specifier
13438 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
13439 (display-buffer-normalize-specifiers-2):
13440 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
13441 pop-up-windows is unset. Add a reuse-window specifier for the
13442 case popping up a new window fails.
13443 (special-display-popup-frame): Remove double quoting.
28dec25a 13444 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 13445
1c6d8c76
SM
134462011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13447
13448 * shell.el (shell-completion-vars): Set pcomplete-termination-string
13449 according to comint-completion-addsuffix.
13450
13451 * pcomplete.el: Convert to lexical binding and fix bug#8819.
13452 (pcomplete-suffix-list): Mark as obsolete.
13453 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
13454 pcomplete-seen in the closure.
13455 (pcomplete-comint-setup): Setup completion-at-point as well.
13456 (pcomplete--entries): New function.
13457 (pcomplete--env-regexp): New var.
13458 (pcomplete-entries): Rewrite to work with partial-completion and
13459 without relying on pcomplete-suffix-list.
13460 (pcomplete-pare-list): Remove, unused.
13461
25aef8b8
MR
134622011-06-17 Martin Rudalics <rudalics@gmx.at>
13463
13464 * window.el (display-buffer-alist): Set pop-up-window-min-height
13465 and pop-up-window-min-width in default value. Reported by
13466 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
13467 other-window-means-other-frame.
13468 (display-buffer-macro-specifiers): Comment out entry for
13469 other-window specifier.
13470 (display-buffer-other-window-means-other-frame): New function.
13471 (display-buffer-normalize-specifiers-1): New arguments
13472 buffer-name and label. Treat other-window case specially.
13473 (display-buffer-normalize-specifiers-2): Treat other-window case
13474 specially.
13475 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
13476 (display-buffer-normalize-specifiers):
13477 Call display-buffer-normalize-specifiers-3.
25aef8b8 13478
dbad4f69
MR
134792011-06-17 Martin Rudalics <rudalics@gmx.at>
13480
13481 * window.el (same-window-p): Fix two typos introduced when
13482 adding with-no-warnings.
d1067961
MR
13483 (display-buffer-normalize-specifiers-1): Don't check
13484 pop-up-frames for 'unset initialization.
13485 (display-buffer-normalize-specifiers-2): Major rewrite using
13486 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
13487 (pop-up-frames, display-buffer-reuse-frames)
13488 (display-buffer-mark-dedicated): Don't initialize to 'unset.
13489 Suggested by David Engster <deng@randomsample.de>.
13490 (even-window-heights): Initialize to 'unset.
13491 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
13492 (display-buffer-macro-specifiers): Don't pop up a new frame in the
13493 other window case.
dbad4f69 13494
9b9c9e3a
MR
134952011-06-16 Martin Rudalics <rudalics@gmx.at>
13496
bcd70d97
SM
13497 * window.el (display-buffer-normalize-specifiers-1):
13498 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 13499 second argument of display-buffer (Bug#8865).
981d5c09
MR
13500 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
13501 (switch-to-buffer-other-window-same-frame)
13502 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
13503 Adams (Bug#8875).
9c2755e9
MR
13504 (display-buffer): Don't check noninteractive when calling
13505 display-buffer-pop-up-frame.
13506 (display-buffer-pop-up-frame): Never pop up a frame in
13507 noninteractive mode (Bug#8857).
67222e1d
MR
13508 (enlarge-window, shrink-window): Don't report an error when the
13509 window can't be resized as requested (Bug#8862).
9b9c9e3a 13510
2b75be67
SM
135112011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13512
9ffdd3ba
SM
13513 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
13514
cb581a67
SM
13515 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
13516
2b75be67
SM
13517 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
13518
8c0e3589
AM
135192011-06-15 Alan Mackenzie <acm@muc.de>
13520
cb581a67
SM
13521 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
13522 for declarators, disable knr checking to speed up for normal files.
13523 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 13524
b96e6cde
LMI
135252011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13526
4bba86e6
LMI
13527 * net/network-stream.el (open-network-stream): Add the keyword
13528 :always-query-capabilities for the case where you want to force a
13529 `plain' network connection, but the protocol still requires the
13530 capabilitiy command (i.e., SMTP and EHLO).
13531
2b75be67 13532 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
13533 consistency with other `-live-p' functions.
13534
efdcdbf8
SM
135352011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13536
13537 * window.el (same-window-buffer-names, same-window-regexps)
13538 (special-display-frame-alist, special-display-popup-frame)
13539 (special-display-function, special-display-buffer-names)
13540 (special-display-regexps, pop-up-frame-alist)
13541 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
13542 (pop-up-windows, split-window-preferred-function)
13543 (split-height-threshold, split-width-threshold, even-window-heights)
13544 (display-buffer-mark-dedicated): Don't encourage the use of
13545 display-buffer-alist from Elisp code.
13546
c5cde042
DN
135472011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
13548
13549 * progmodes/python.el (python-mode): Derive from prog-mode.
13550 * progmodes/ps-mode.el (ps-mode):
13551 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 13552 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
13553 * progmodes/ld-script.el (ld-script-mode): Likewise.
13554
baa1c9ab
MR
135552011-06-15 Martin Rudalics <rudalics@gmx.at>
13556
13557 * window.el (display-buffer-alist): Trim default value to avoid
13558 popping up a new frame (Bug#8857) or reusing an arbitrary window
13559 on another frame.
13560 (display-buffer): Do not fall back on popping up a new frame in
13561 batch mode (Bug#8857).
13562
c5dd5a51
CY
135632011-06-14 Chong Yidong <cyd@stupidchicken.com>
13564
13565 * cus-theme.el (describe-theme-1): Use custom-theme-p.
13566 (custom-theme-summary): New function.
13567 (customize-themes): Use it.
13568
d647b7c4
GM
135692011-06-13 Glenn Morris <rgm@gnu.org>
13570
13571 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
13572
9481c002
MR
135732011-06-13 Martin Rudalics <rudalics@gmx.at>
13574
357f93d2
MR
13575 * help.el (help-window): Remove variable.
13576 (help-window-point-marker, temp-buffer-max-height)
13577 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
13578 (help-print-return-message): Don't set help-window.
13579 (resize-temp-buffer-window): Rewrite cod eand doc-string.
13580 (help-window-setup-finish): Remove.
13581 (help-window-display-message, help-window-setup)
13582 (with-help-window): Major rewrite based on new
13583 display-buffer-window variable.
13584
13585 * help-mode.el (help-mode-finish): Remove help-window related
13586 code.
13587
13588 * view.el (view-exits-all-viewing-windows): Remove reference to
13589 view-return-to-alist in doc-string.
13590 (view-return-to-alist): Make obsolete.
13591 (view-buffer): Call pop-to-buffer-same-window and remove
13592 undo-window code.
13593 (view-buffer-other-window): Call pop-to-buffer-other-window and
13594 simplify code. Ignore second argument.
13595 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
13596 simplify code. Ignore second argument.
13597 (view-return-to-alist-update): Make obsolete.
13598 (view-mode-enter): Rename second argument to QUIT-RESTORE.
13599 Rewrite using quit-restore window parameters.
2b75be67
SM
13600 (view-mode-exit): Rename second argument to EXIT-ONLY.
13601 Rewrite using quit-restore-window.
357f93d2
MR
13602 (View-exit, View-exit-and-edit, View-leave, View-quit)
13603 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
13604 appropriate arguments.
13605 (view-end-message): Use quit-restore window parameter.
13606
9481c002
MR
13607 * window.el (display-buffer-function): Rewrite doc-string.
13608 (display-buffer-window, display-buffer-alist): New variables.
13609 (display-buffer-split-specifiers)
13610 (display-buffer-side-specifiers)
13611 (display-buffer-macro-specifiers): New constants.
13612 (display-buffer-even-window-sizes, display-buffer-set-height)
13613 (display-buffer-set-width, display-buffer-select-window)
13614 (display-buffer-in-window, display-buffer-reuse-window)
13615 (display-buffer-split-window-1, display-buffer-split-window)
13616 (display-buffer-split-atom-window, display-buffer-pop-up-window)
13617 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
13618 (display-buffer-in-side-window, normalize-buffer-to-display)
13619 (display-buffer-normalize-specifiers-1)
13620 (display-buffer-normalize-specifiers-2)
2b75be67
SM
13621 (display-buffer-normalize-specifiers, display-buffer-frame):
13622 New functions.
9481c002
MR
13623 (display-buffer): Major rewrite.
13624 (display-buffer-other-window, display-buffer-other-frame)
13625 (pop-to-buffer, switch-to-buffer-other-window)
13626 (switch-to-buffer-other-frame): Rewrite.
13627 (display-buffer-same-window, display-buffer-same-frame)
13628 (display-buffer-same-frame-other-window)
13629 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
13630 (pop-to-buffer-other-window)
13631 (pop-to-buffer-same-frame-other-window)
13632 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
13633 (switch-to-buffer-other-window-same-frame): New functions.
13634 (same-window-p, special-display-p): Rewrite disabling warnings.
13635 Make obsolete.
13636 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
13637 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
13638 Make obsolete
13639 (same-window-buffer-names, same-window-regexps)
13640 (special-display-frame-alist, special-display-popup-frame)
13641 (special-display-function, special-display-buffer-names)
13642 (special-display-regexps, pop-up-frame-alist)
13643 (pop-up-frame-function, split-window-preferred-function)
13644 (split-height-threshold, split-width-threshold)
13645 (even-window-heights): Make obsolete.
13646
9db51aca
GM
136472011-06-12 Glenn Morris <rgm@gnu.org>
13648
13649 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 13650 Misc simplifications.
9db51aca 13651
39cffb44
MR
136522011-06-12 Martin Rudalics <rudalics@gmx.at>
13653
13654 * window.el (window-safely-shrinkable-p): Restore function which
13655 was inadvertently removed in change from 2011-06-11. Declare as
13656 obsolete.
13657
2b75be67
SM
13658 * calendar/calendar.el (calendar-generate-window):
13659 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
13660 window-safely-shrinkable-p.
13661
a8955be7
GM
136622011-06-12 Glenn Morris <rgm@gnu.org>
13663
13664 * progmodes/fortran.el (fortran-mode-syntax-table):
13665 * progmodes/f90.el (f90-mode-syntax-table):
13666 Set % to punctuation. (Bug#8820)
13667 (f90-find-tag-default): Remove, no longer needed.
13668
f0d4059d
DC
136692011-06-12 Daniel Colascione <dan.colascione@gmail.com>
13670
13671 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
13672
1100a63c
CY
136732011-06-11 Chong Yidong <cyd@stupidchicken.com>
13674
13675 * image.el (image-animated-p): Return animation delay in seconds.
13676 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
13677 (image-animate-timeout): Remove DELAY argument. Don't assume
13678 every subimage has the same delay; get it from image-animated-p.
13679 (image-animate): Caller changed.
13680
def722bf
MA
136812011-06-11 Michael Albinus <michael.albinus@gmx.de>
13682
13683 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
13684 to ignored backtrace functions.
13685
0a2bb1a9
GM
136862011-06-11 Glenn Morris <rgm@gnu.org>
13687
13688 * calendar/appt.el (appt-disp-window-function): Doc fix.
13689 (appt-check): Handle overlapping appointments. (Bug#8337)
13690
6198ccd0
MR
136912011-06-11 Martin Rudalics <rudalics@gmx.at>
13692
13693 * window.el (window-tree-1, window-tree): New functions, moving
13694 the latter to window.el.
13695 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
13696 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
13697 (bw-refresh-edges): Remove.
13698 (balance-windows-1, balance-windows-2): New functions.
13699 (balance-windows): Rewrite in terms of window tree functions,
13700 balance-windows-1 and balance-windows-2.
13701 (bw-adjust-window): Remove.
13702 (balance-windows-area-adjust): New function with functionality of
13703 bw-adjust-window but using resize-window.
2b75be67
SM
13704 (set-window-text-height): Rewrite doc-string.
13705 Use normalize-live-window and resize-window.
13706 (enlarge-window-horizontally, shrink-window-horizontally):
13707 Rename argument to DELTA.
6198ccd0
MR
13708 (window-buffer-height): New function.
13709 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
13710 Rewrite using new window resize routines.
2b75be67
SM
13711 (kill-buffer-and-window, mouse-autoselect-window-select):
13712 Use ignore-errors instead of condition-case.
6198ccd0
MR
13713 (quit-window): Call delete-frame instead of delete-windows-on
13714 for the only buffer on frame.
13715
9397e56f
MR
137162011-06-10 Martin Rudalics <rudalics@gmx.at>
13717
13718 * loadup.el (top-level): Load window before files for the sake
13719 of replace-buffer-in-windows.
13720
13721 * files.el (read-buffer-to-switch)
13722 (switch-to-buffer-other-window)
2b75be67
SM
13723 (switch-to-buffer-other-frame, display-buffer-other-frame):
13724 Move to window.el.
9397e56f
MR
13725
13726 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
13727 (previous-buffer): Move to window.el.
13728
13729 * bindings.el (unbury-buffer): Move to window.el.
13730
13731 * window.el (delete-other-windows-vertically): Move after
13732 definition of delete-other-windows.
13733 (other-window, delete-windows-on, replace-buffer-in-windows):
13734 Move here from window.c.
13735 (record-window-buffer, unrecord-window-buffer)
13736 (set-window-buffer-start-and-point, switch-to-prev-buffer)
13737 (switch-to-next-buffer): New functions.
13738 (get-next-valid-buffer, last-buffer, next-buffer): Move here
13739 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
13740 (previous-buffer): Move here from simple.el.
13741 Call switch-to-prev-buffer.
9397e56f
MR
13742 (bury-buffer): Move here from buffer.c. Switch to previous
13743 buffer when window cannot be deleted.
13744 (unbury-buffer): Move here from bindings.el.
13745 (ctl-x-map): Move binding for other-window from window.c to
13746 here.
13747 (read-buffer-to-switch, switch-to-buffer-other-window)
13748 (switch-to-buffer-other-frame): Move here from files.el.
13749 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
13750 (switch-to-buffer): Move here from buffer.c.
13751 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 13752
562dd5e9
MR
137532011-06-10 Martin Rudalics <rudalics@gmx.at>
13754
13755 * window.el (window-min-height, window-min-width): Move here
13756 from window.c. Add defcustoms and rewrite doc-strings.
13757 (resize-mini-window, resize-window): New functions.
13758 (adjust-window-trailing-edge, enlarge-window, shrink-window):
13759 Move here from window.c.
13760 (maximize-window, minimize-window): New functions.
13761 (delete-window, delete-other-windows, split-window): Move here
13762 from window.c.
13763 (window-split-min-size): New function.
13764 (split-window-keep-point): Mention split-window-above-each-other
13765 instead of split-window-vertically.
2b75be67 13766 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
13767 Rename split-window-vertically to split-window-above-each-other
13768 and provide defalias for old definition.
13769 (split-window-side-by-side, split-window-horizontally):
13770 Rename split-window-horizontally to split-window-side-by-side
13771 and provide defalias for the old definition.
562dd5e9
MR
13772 (ctl-x-map): Move bindings for delete-window,
13773 delete-other-windows and enlarge-window here from window.c.
13774 Replace bindings for split-window-vertically and
13775 split-window-horizontally by bindings for
13776 split-window-above-each-other and split-window-side-by-side.
13777
13778 * cus-start.el (all): Remove entries for window-min-height and
13779 window-min-width. Add entries for window-splits and
13780 window-nest.
13781
f0da764a
GM
137822011-06-09 Glenn Morris <rgm@gnu.org>
13783
80675c21
GM
13784 * calendar/appt.el (appt-mode-line): New function.
13785 (appt-check, appt-disp-window): Use it.
13786
f0da764a
GM
13787 * files.el (hack-one-local-variable-eval-safep):
13788 Allow minor-modes with explicit +/-1 arguments.
13789
59f623b7
TZ
137902011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
13791
13792 * term/xterm.el (xterm): Add defgroup.
13793 (xterm-extra-capabilities): Add defcustom to supply known xterm
13794 capabilities, skip querying them, or query them (default).
13795 (terminal-init-xterm): Use it.
13796 (terminal-init-xterm-modify-other-keys): New function to set up
13797 modifyOtherKeys support to simplify `terminal-init-xterm'.
13798
9aab8e0d
MR
137992011-06-09 Martin Rudalics <rudalics@gmx.at>
13800
13801 * window.el (resize-window-reset, resize-window-reset-1)
13802 (resize-subwindows-skip-p, resize-subwindows-normal)
13803 (resize-subwindows, resize-other-windows, resize-this-window)
13804 (resize-root-window, resize-root-window-vertically)
13805 (window-deletable-p, window-or-subwindow-p)
13806 (frame-root-window-p): New functions.
13807
e8b08aee
GM
138082011-06-09 Glenn Morris <rgm@gnu.org>
13809
13810 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
13811 (ange-ftp-get-files): Use it.
13812
254c37a5
AK
138132011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
13814
13815 * mail/sendmail.el (mail-recover-1, mail-recover):
13816 * files.el (recover-file, recover-session):
13817 Handle dired-listing-switches not being just a single short option.
13818
35d7dbd3
GM
138192011-06-09 Glenn Morris <rgm@gnu.org>
13820
13821 * calendar/appt.el (appt-display-message, appt-disp-window):
13822 Handle lists of appointments.
13823
387522b2
MR
138242011-06-08 Martin Rudalics <rudalics@gmx.at>
13825
2b75be67
SM
13826 * window.el (one-window-p): Move down in code.
13827 Rewrite doc-string.
13828 (window-current-scroll-bars): Rewrite doc-string.
13829 Normalize live window argument.
387522b2
MR
13830 (walk-windows, get-window-with-predicate, count-windows):
13831 Rewrite doc-string. Use window-list-1.
13832 (window-in-direction-2, window-in-direction, get-mru-window):
13833 New functions.
13834
d8e4b68b 138352011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
13836
13837 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
13838 Doc fix (Bug#8713).
13839
138402011-06-08 Chong Yidong <cyd@stupidchicken.com>
13841
13842 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
13843
138442011-06-08 Juanma Barranquero <lekktu@gmail.com>
13845
13846 * loadhist.el (unload-feature-special-hooks):
13847 Add `comint-output-filter-functions'.
13848
0de12c52
IK
138492011-06-08 Ivan Kanis <gnu@kanis.fr>
13850
13851 * calendar/appt.el (appt-check): Move some initializations into the let.
13852
f3d1777e
MR
138532011-06-08 Martin Rudalics <rudalics@gmx.at>
13854
13855 * window.el (window-height): Defalias to window-total-height.
13856 (window-width): Defalias to window-body-width.
13857
18af70d0
CY
138582011-06-07 Chong Yidong <cyd@stupidchicken.com>
13859
13860 * image-mode.el (image-toggle-animation): New command.
13861 (image-mode-map): Bind it to RET.
13862 (image-mode): Update message.
13863 (image-toggle-display-image): Avoid a spurious cache flush.
13864 (image-transform-rotation): Doc fix.
13865 (image-transform-properties): Return quickly in the normal case.
13866 (image-animate-loop): Rename from image-animate-max-time.
13867
2b75be67 13868 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
13869 (create-animated-image): Remove unnecessary function.
13870 (image-animate): Rename from image-animate-start. New arg.
2b75be67 13871 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
13872 (image-animate-timer): Use car-safe.
13873 (image-animate-timeout): Rename argument.
13874
190b47e6
MR
138752011-06-07 Martin Rudalics <rudalics@gmx.at>
13876
13877 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
13878 window.c. Rename first argument to ALL-FRAMES.
13879 Rephrase doc-strings.
13880 (get-buffer-window-list): Rewrite using window-list-1.
13881 Rephrase doc-string.
a1511caf
MR
13882 (window-safe-min-height, window-safe-min-width): New constants.
13883 (window-size-ignore, window-min-size, window-min-size-1)
13884 (window-sizable, window-sizable-p, window-size-fixed-1)
13885 (window-size-fixed-p, window-min-delta-1, window-min-delta)
13886 (window-max-delta-1, window-max-delta, window-resizable)
13887 (window-resizable-p, window-total-height, window-total-width)
13888 (window-body-width): New functions.
13889 (window-full-height-p, window-full-width-p): Rewrite using
13890 window-total-size.
13891 (window-body-height): Rewrite using window-body-size.
190b47e6 13892
85cc1f11
MR
138932011-06-06 Martin Rudalics <rudalics@gmx.at>
13894
13895 * window.el (window-right, window-left, window-child)
13896 (window-child-count, window-last-child, window-any-p)
13897 (normalize-live-buffer, normalize-live-frame)
13898 (normalize-any-window, normalize-live-window)
13899 (window-iso-combination-p, window-iso-combined-p)
13900 (window-iso-combinations)
13901 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
13902 (windows-with-parameter, window-with-parameter)
13903 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
13904 (window-atom-check, window-side-check, window-check):
13905 New functions.
85cc1f11
MR
13906 (ignore-window-parameters, window-sides, window-sides-vertical)
13907 (window-sides-slots): New variables.
13908 (window-size-fixed): Move down in code. Minor doc-string fix.
13909
e7156492
AS
139102011-06-05 Andreas Schwab <schwab@linux-m68k.org>
13911
13912 * comint.el (comint-dynamic-complete-as-filename)
13913 (comint-dynamic-complete-filename): Correctly call
13914 completion-in-region.
13915
7e821d0d
DD
139162011-06-05 Deniz Dogan <deniz@dogan.se>
13917
13918 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
13919 in last change.
13920
ac09b8a1
DD
139212011-06-05 Deniz Dogan <deniz@dogan.se>
13922
13923 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
13924 (rcirc): Use it to prompt for encryption.
13925
34699b85
RW
139262011-06-05 Roland Winkler <winkler@gnu.org>
13927
13928 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
13929 (bibtex-search-entries): New command bound to C-c C-a.
13930 (bibtex-display-entries): New function.
13931
004dedd3
RW
139322011-06-05 Roland Winkler <winkler@gnu.org>
13933
13934 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
13935 (bibtex-insert-kill): After yanking insert newline if necessary.
13936 (bibtex-initialize): Call bibtex-string-files-init only once.
13937 (bibtex-mode): Do not call easy-menu-add.
13938 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
13939 (bibtex-yank): Set arg properly if nil.
13940
022fe7ce
RW
139412011-06-05 Roland Winkler <winkler@gnu.org>
13942
2b75be67
SM
13943 * textmodes/bibtex.el (bibtex-search-entry-globally):
13944 New variable.
022fe7ce
RW
13945 (bibtex-search-entry): Use it.
13946
b7c3692a
RW
139472011-06-05 Roland Winkler <winkler@gnu.org>
13948
13949 * textmodes/bibtex.el (bibtex-entry-format): New option
13950 sort-fields.
13951 (bibtex-format-entry, bibtex-reformat): Honor this option.
13952 (bibtex-parse-entry): Return fields in proper order.
13953
8eda563d
JB
139542011-06-05 Juanma Barranquero <lekktu@gmail.com>
13955
13956 * doc-view.el (doc-view-remove-if): Move computation of result out
13957 of `dolist' to silence misleading lexical-binding warning.
13958
7dbe3dbc
CY
139592011-06-04 Chong Yidong <cyd@stupidchicken.com>
13960
13961 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
13962 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
13963
0c33dd17
MA
139642011-06-04 Michael Albinus <michael.albinus@gmx.de>
13965
13966 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
13967 "SunOS 5.10".
13968
f8f91c2b
MA
139692011-06-04 Michael Albinus <michael.albinus@gmx.de>
13970
13971 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
13972 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
13973 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
13974 (tramp-parse-putty):
13975 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
13976 (tramp-completion-function-alist-ssh)
13977 (tramp-completion-function-alist-telnet)
13978 (tramp-completion-function-alist-su)
13979 (tramp-completion-function-alist-putty): Set `tramp-autoload'
13980 cookie.
13981
13982 * net/tramp-ftp.el:
13983 * net/tramp-sh.el:
13984 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
13985 load "tramp.el" `tramp-set-completion-function'.
13986
e17d9003
SM
139872011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
13988
13989 * shell.el: Require and use pcomplete.
13990 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
13991 (shell-completion-vars): Set pcomplete-default-completion-function.
13992
6c4cab03
DD
139932011-06-04 Deniz Dogan <deniz@dogan.se>
13994
13995 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
13996 `memq' (Bug#8799).
13997
ea9fafe0
SM
139982011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
13999
14000 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
14001
b3e945d3
JB
140022011-06-02 Juanma Barranquero <lekktu@gmail.com>
14003
14004 * bs.el (bs--mark-unmark, bs--nth-wrapper):
14005 * mpc.el (mpc-select-extend, mpc-songpointer-context):
14006 * vc/log-view.el (log-view-beginning-of-defun):
14007 * vc/smerge-mode.el (smerge-apply-resolution-patch)
14008 (smerge-refine-forward, smerge-refine-chopup-region):
14009 Silence warning for unused `dotimes' counter variables.
14010
7d520089
SM
140112011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
14012
14013 * net/tramp.el (tramp-with-progress-reporter): Rename from
14014 with-progress-reporter. Use `declare'.
14015 * net/tramp-smb.el:
14016 * net/tramp-sh.el:
14017 * net/tramp-gvfs.el: Update all uses.
14018
a1c2400f
JB
140192011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
14020
14021 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
14022 buffer isn't killed before making it current.
14023
2403c841
SM
140242011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14025
14026 Silence various byte-compiler warnings.
14027 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
14028 `access-type' and new obsolescence format.
14029 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
14030 new format.
14031 (byte-compile-check-variable): New `access-type' argument.
14032 Only warn if the access-type is obsolete.
14033 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
14034 (byte-compile-variable-set): Adjust callers.
14035 * help-fns.el (describe-variable): Adjust to new obsolescence format.
14036 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
14037 setting it as obsolete.
14038 * simple.el (minibuffer-completing-symbol):
14039 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
14040 access as obsolete.
14041 * minibuffer.el (minibuffer-completing-file-name): Don't make it
14042 obsolete yet.
14043 * international/quail.el (quail-mouse-choose-completion): Remove unused
14044 code referring to obsolete var.
14045 (quail-choose-completion-string): Remove.
14046 * server.el (server-clients-with, server-kill-buffer-query-function)
14047 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
14048 * proced.el (proced-send-signal):
14049 * emacs-lisp/lisp.el (lisp-complete-symbol):
14050 Replace completion-annotate-function with completion-extra-properties.
14051
2462470b
SM
140522011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14053
fb5b2591
SM
14054 * simple.el (goto-line): Use read-number.
14055 (overriding-map-is-bound): Remove.
14056 (saved-overriding-map): Change default.
14057 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
14058 Take the map as argument.
14059 (universal-argument, negative-argument, digit-argument): Use it.
14060 (restore-overriding-map): Adjust.
14061 (do-auto-fill): Use fill-forward-paragraph.
14062 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
14063
fd6fa53f
SM
14064 * minibuffer.el (minibuffer-inactive-mode-map): New var.
14065 (minibuffer-inactive-mode): New major mode.
14066 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
14067 the *Messages* buffer" hack.
14068 (mouse-popup-menubar): Don't burp if the event is a normal key.
14069
2462470b
SM
14070 Miscellaneous tweaks.
14071 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
14072 lexical scoping as in subr.el's dolist and dotimes.
14073 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
14074 Silence compiler warning.
14075 * thingatpt.el (forward-whitespace): Trivial coding style fix.
14076 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
14077 * international/ccl.el (ccl-compile): Trivial simplification.
14078 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
14079 * emacs-lisp/testcover.el (testcover-end): Remove spurious
14080 `printflag' argument.
14081 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
14082 Purecopy the whole obsolescence data.
14083
108bf785
LL
140842011-06-01 Leo Liu <sdl.web@gmail.com>
14085
14086 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
14087 improve doc-string as suggested by Marco Pessotto
14088 <melmothx@gmail.com>.
14089 (rcirc-print): Fix last change.
14090
30a23501
SM
140912011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14092
14093 * minibuffer.el (complete-with-action): Return nil for the metadata and
14094 boundaries of non-functional tables.
14095 (completion-table-dynamic): Return nil for the metadata.
14096 (completion-table-with-terminator): Add default case, using
14097 complete-with-action.
14098 (completion--metadata): New function.
14099 (completion-all-sorted-completions, minibuffer-completion-help): Use it
14100 to try and avoid pathological performance problems.
14101 (completion--embedded-envvar-table): Return `category' metadata.
14102
bcd54f83
LMI
141032011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
14104
14105 * subr.el (process-alive-p): New tiny convenience function.
14106
e227544d
SM
141072011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14108
14109 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
14110 content but also its previous major mode.
14111
e8296fdc
HE
141122011-05-31 Helmut Eller <eller.helmut@gmail.com>
14113
4d61f28d 14114 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
14115 *Backtrace* buffer when we exit with C-M-c.
14116
620c53a6
SM
141172011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14118
14119 * minibuffer.el: Add metadata method to completion tables.
14120 (completion-category-overrides): New defcustom.
14121 (completion-metadata, completion--field-metadata)
14122 (completion-metadata-get, completion--styles)
14123 (completion--cycle-threshold): New functions.
14124 (completion-try-completion, completion-all-completions):
14125 Add `metadata' argument to choose completion-styles.
14126 (completion--do-completion): Use metadata to choose cycling.
14127 (completion-all-sorted-completions): Use metadata for sorting.
14128 Remove :completion-cycle-penalty which is not needed any more.
14129 (completion--try-word-completion): Add `metadata' argument.
14130 (minibuffer-completion-help): Check metadata for annotation function
14131 and sorting.
14132 (completion-file-name-table): Return `category' metadata.
14133 (minibuffer-completing-file-name): Make obsolete.
14134 * simple.el (minibuffer-completing-symbol): Make obsolete.
14135 * icomplete.el (icomplete-completions): Pass new `metadata' param to
14136 completion-try-completion.
14137
1257e755
SM
141382011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
14139
14140 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
14141
3767e706
LL
141422011-05-30 Leo Liu <sdl.web@gmail.com>
14143
14144 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
14145 (rcirc-print): Decode all incoming messages (bug#8744).
14146 (rcirc-decode-coding-system): Allow value nil for automatic coding
14147 system detection.
3767e706 14148
d1a5d56a
GM
141492011-06-01 Glenn Morris <rgm@gnu.org>
14150
14151 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
14152
e8cbec34
CY
141532011-05-29 Chong Yidong <cyd@stupidchicken.com>
14154
14155 * image.el (image-animate-max-time): Allow nil and t values.
14156 Default to nil.
14157 (create-animated-image): Doc fix.
14158 (image-animate-start): Remove second arg; just use
14159 image-animate-max-time.
14160 (image-animate-timeout): Doc fix. Args changed.
14161
14162 * image-mode.el (image-toggle-display-image): Ensure that the
14163 image spec passed to the animate timer is the same object as in
58179cce 14164 the buffer's display property (Bug#6981).
e8cbec34
CY
14165 (image-transform-properties): Doc fix.
14166
14167 * image.el (image-animate-max-time): Default to nil.
14168
159daf87
MR
141692011-05-29 Martin Rudalics <rudalics@gmx.at>
14170
14171 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
14172 entire buffer list (Bug#8184).
14173
d66c4c7c
CY
141742011-05-29 Chong Yidong <cyd@stupidchicken.com>
14175
14176 * image.el (imagemagick-types-inhibit)
14177 (imagemagick-register-types): Doc fix.
14178
80aec780
DD
141792011-05-29 Deniz Dogan <deniz@dogan.se>
14180
14181 * net/rcirc.el (rcirc): Use the user's stored encryption method by
14182 default.
14183
1dd3c2d9
CY
141842011-05-29 Chong Yidong <cyd@stupidchicken.com>
14185
14186 * select.el: Don't perform clipboard-manager saving in hooks;
14187 leave the hooks empty.
14188
60e56523
LL
141892011-05-28 Leo Liu <sdl.web@gmail.com>
14190
14191 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
14192 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
14193 (occur-edit-mode): New major mode (Bug#8463).
14194 (occur-after-change-function): New function.
14195 (occur-engine): Give Occur tags a read-only property.
14196
2b1e1a22
KR
141972011-05-28 Kevin Ryde <user42@zip.com.au>
14198
14199 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
14200
5d344e88
CY
142012011-05-28 Chong Yidong <cyd@stupidchicken.com>
14202
8e6ca83d
CY
14203 * bindings.el (help-echo): Make the initial non-indicator dash
14204 empty on graphical terminals (Bug#7295).
14205
5d344e88
CY
14206 * files.el (auto-mode-alist): Move config rule after the
14207 in-stripping one (Bug#8547).
14208
bfbbace7
CY
14209 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
14210
fbeba6e2
CY
14211 * startup.el (normal-splash-screen): Remove gratuitous mode-line
14212 setting (Bug#8740).
14213
60ed8c72
AA
142142011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
14215
4ac619f0
AA
14216 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
14217 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
14218 (Bug#8539).
60ed8c72 14219
23db196e
CY
142202011-05-28 Chong Yidong <cyd@stupidchicken.com>
14221
14222 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
14223
5012f24c
DK
142242011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
14225
14226 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
14227 (hs-hide-block-at-point, hs-find-block-beginning)
14228 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
14229 (Bug#8279).
14230
6a639b16
GM
142312011-05-28 Glenn Morris <rgm@gnu.org>
14232
14233 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
14234
d43eaf2c
CY
142352011-05-28 Chong Yidong <cyd@stupidchicken.com>
14236
5199bde1
CY
14237 * help-fns.el (describe-function-1): If the function is a derived
14238 major mode, print the parent mode.
14239
d43eaf2c
CY
14240 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
14241 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
14242
423428a8
SM
142432011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
14244
0ff8e1ba 14245 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 14246 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
14247 * progmodes/etags.el (tags-completion-at-point-function):
14248 * info-look.el (info-lookup-completions-at-point): Mark as
14249 non-exclusive.
14250 (info-complete): Adjust accordingly.
14251
423428a8
SM
14252 * info-look.el: Convert to lexical-binding and completion-at-point.
14253 (info-lookup-completions-at-point): New function.
14254 (info-complete): Use it and completion-in-region.
14255
b74aa22b
DA
142562011-05-28 Drew Adams <drew.adams@oracle.com>
14257
14258 * isearch.el: Let M-e start with point at the first mismatched char.
14259 (isearch-fail-pos): New function.
14260 (isearch-edit-string): Use it.
14261
66e2e71d
DK
142622011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
14263
14264 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
14265
b1890b0f 142662011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
14267
14268 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
14269 traversal functions for avl-trees.
14270 (avl-tree--stack): New struct.
14271 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
14272 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
14273 (avl-tree--do-enter): Add optional `updatefun' arg.
14274 Change return value.
eb95d01d 14275 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
14276 (avl-tree--do-delete): Add `test' and `nilflag' args.
14277 Change return value.
eb95d01d
TC
14278 (avl-tree-member): Add optional `nilflag'
14279 (avl-tree-member-p): New function.
14280 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
14281 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
14282 (avl-tree-stack-empty-p): New functions.
14283
3769ddcf
TC
14284 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
14285 avl-tree--del-balance1 and make it work both ways.
14286 (avl-tree--del-balance2): Remove.
14287 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
14288 make it work both ways.
14289 (avl-tree--enter-balance2): Remove.
14290 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
14291 New macros.
14292 (avl-tree--mapc, avl-tree-map): Add direction argument.
14293
eb95d01d 142942011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
14295
14296 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
14297
a9f737ee
CY
142982011-05-27 Chong Yidong <cyd@stupidchicken.com>
14299
14300 * select.el: Support clipboard managers with built-in function
14301 x-clipboard-manager-save, via delete-frame-functions and
14302 kill-emacs-hook.
14303 (xselect-convert-to-targets): Add MULTIPLE target to list.
14304 (xselect-convert-to-save-targets): New function.
14305
c92a1e54
KH
143062011-05-27 Kenichi Handa <handa@m17n.org>
14307
14308 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
14309 let-binding rfc2047-encode-encoded-words to nil.
14310
e145f188
GM
143112011-05-27 Glenn Morris <rgm@gnu.org>
14312
5ec8a862
GM
14313 * mail/emacsbug.el: Don't require url-util.
14314
4b29d9fb
GM
14315 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
14316
e145f188
GM
14317 * files.el (set-auto-mode):
14318 Also respect mode: entries at the end of the file. (Bug#8586)
14319
7d15102b
GM
143202011-05-26 Glenn Morris <rgm@gnu.org>
14321
98f593b8
GM
14322 * files.el (hack-local-variables-prop-line, hack-local-variables):
14323 Downcase mode names, as seems to be traditional.
27b48e63 14324 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 14325
7d15102b
GM
14326 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
14327 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
14328
51d5b4ec
JD
143292011-05-25 Julien Danjou <julien@danjou.info>
14330
14331 * textmodes/rst.el (rst-define-level-faces): Do not define face
14332 symbol if it is already defined.
14333
91513f63
VB
143342011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
14335
14336 * play/5x5.el (5x5-new-game, 5x5-randomize):
14337 Reset 5x5-solver-output to nil when a new grid is cast.
14338 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
14339 these debugging traces, as defmacro breaks the compiled code.
14340
4d90d6d0
DK
143412011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
14342
14343 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
14344
e1b90ef6
LL
143452011-05-24 Leo Liu <sdl.web@gmail.com>
14346
14347 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
14348 (vc-bzr-sha1): Adapt.
14349
d8e4b68b 14350 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
14351
14352 * bindings.el: Provide sha1 feature.
14353
db0406bb 143542011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
14355
14356 * mail/sendmail.el: Require `rfc2047'.
14357 (mail-insert-from-field): Do not perform RFC2047 encoding.
14358 (mail-encode-header): New function.
14359 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
14360 buffer to the return value of select-message-coding-system.
14361 Call mail-encode-header.
b8d747b9
KH
14362
14363 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
14364
db0406bb 143652011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 14366
4d90d6d0
DK
14367 * mail/supercite.el (sc-default-cite-frame):
14368 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 14369
eb8a5e9b
GM
143702011-05-24 Glenn Morris <rgm@gnu.org>
14371
f8630703
GM
14372 * progmodes/python.el (brm-menu): Declare.
14373
8831bbed
GM
14374 * emulation/viper.el (viper-set-hooks): Declare.
14375
eb8a5e9b
GM
14376 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
14377 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
14378 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
14379 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
14380 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
14381 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
14382
a2a25d24
SM
143832011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
14384
14385 Add an :exit-function for completion-at-point.
14386
14387 * minibuffer.el (completion--done): New fun.
14388 (completion--do-completion): Use it. New arg `expect-exact'.
14389 (minibuffer-complete, minibuffer-complete-word): Don't output message,
14390 since completion--do-completion does it for us now.
14391 (minibuffer-force-complete): Use completion--done and
14392 completion--replace. Handle sole-completion case with more care.
14393 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
14394 (completion-extra-properties): New var.
14395 (completion-annotate-function): Make obsolete.
14396 (minibuffer-completion-help): Adjust accordingly.
14397 Use completion-list-insert-choice-function.
14398 (completion-at-point, completion-help-at-point):
14399 Bind completion-extra-properties.
14400 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
14401 * simple.el (completion-list-insert-choice-function): New var.
14402 (completion-setup-function): Preserve it.
14403 (choose-completion): Pay attention to it, shuffle the code a bit.
14404 (choose-completion-string): New arg `insert-function'.
14405
14406 * textmodes/bibtex.el: Convert to lexical binding.
14407 (bibtex-mode-map): Use completion-at-point.
14408 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
14409 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
14410 (bibtex-complete): Define as obsolete alias.
14411 (bibtex-complete-internal): Remove.
14412 (bibtex-format-entry): Remove unused sub-group in regexp.
14413 * shell.el (shell--command-completion-data)
14414 (shell-environment-variable-completion):
14415 * pcomplete.el (pcomplete-completions-at-point):
14416 * comint.el (comint--complete-file-name-data): Use :exit-function
14417 instead of completion-table-with-terminator so it also works for
14418 choose-completion.
14419
e44e373d
SM
144202011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14421
4f91a816
SM
14422 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
14423
782fc819
SM
14424 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
14425 (bug#8710).
14426
e44e373d
SM
14427 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
14428
381987c3
KM
144292011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
14430
14431 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
14432 customization variable and implement: If non-nil, auto-fill will
14433 be inhibited while on topic's header line.
14434
b776bc70
VB
144352011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
14436
14437 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 14438 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
14439 always have a solution in grid size = 5 cases.
14440 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
14441 (5x5-solver-output, 5x5-log-buffer): New vars.
14442 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
14443 Make these variables buffer local to achieve 5x5 multi-session-ness.
14444 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
14445 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
14446 (5x5-solve-suggest): New funs.
14447 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
14448 randomize a grid so that we ensure that there is always a solution.
14449 (5x5-make-random-grid): Allow other movement than flipping.
14450
7de88b6e
KR
144512011-05-23 Kevin Ryde <user42@zip.com.au>
14452
14453 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 14454 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
14455 advice and passes PREDICATE.
14456
b1ef1257
SM
144572011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
14458
bbca48fe
SM
14459 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
14460 byte-compile-lambda if it's actually a lambda.
14461
b1ef1257
SM
14462 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
14463 Fix function quoting. Use backquote better.
14464
92a9cc65
YS
144652011-05-22 Yuanle Song <sylecn@gmail.com>
14466
14467 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
14468 matching (Bug#8516).
14469
f0fb8059
JA
144702011-01-22 Jari Aalto <jari.aalto@cante.net>
14471
14472 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
14473 different face (Bug#8178).
14474
d5b44c93
CY
144752011-05-22 Chong Yidong <cyd@stupidchicken.com>
14476
14477 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
14478 defface (Bug#8144).
14479
79106a44
SM
144802011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
14481
9c848d8a
SM
14482 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
14483 funcall as well (bug#8712). Warn when performing those conversions.
14484 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
14485
79106a44
SM
14486 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
14487
88dfa756
GM
144882011-05-22 Glenn Morris <rgm@gnu.org>
14489
14490 * files.el (hack-local-variables-prop-line): Small simplifications.
14491 (hack-local-variables, hack-local-variables-prop-line):
14492 If MODE-ONLY, return the mode, rather than just `t'.
14493
b7cf2c79
SM
144942011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
14495
14496 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
14497
3f1a8558
GM
144982011-05-21 Glenn Morris <rgm@gnu.org>
14499
7e4ccca3
GM
14500 * files.el (hack-local-variables-prop-line, hack-local-variables):
14501 If only interested in the mode, don't bother doing the other stuff.
14502
637d46ca
GM
14503 * image-mode.el (image-after-revert-hook):
14504 Redraw all frames on which the image is visible. (Bug#8567)
14505
973d955b
GM
14506 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
14507
3f1a8558
GM
14508 * wid-edit.el (widget-checklist-match-inline):
14509 Fix 2011-04-19 change. (Bug#8649)
14510
96479927
SM
145112011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
14512
1dcf791f
SM
14513 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
14514 Also allow singlespace after single-letter capitals followed by a dot.
14515
96479927
SM
14516 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
14517 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
14518
35fd0881
N
145192011-05-20 Nix <nix@esperi.org.uk>
14520
14521 * files.el (basic-save-buffer-2):
14522 Fix handling of break-hardlink-on-save with non-existent files.
14523
82745640
DD
145242011-05-19 Deniz Dogan <deniz@dogan.se>
14525
14526 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 14527 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 14528
4a720484
GM
145292011-05-19 Glenn Morris <rgm@gnu.org>
14530
d1f21341
GM
14531 * progmodes/f90.el (f90-type-def-re):
14532 Handle "type, bind(c)". (Bug#8691)
14533
4a720484
GM
14534 * emacs-lisp/autoload.el (batch-update-autoloads):
14535 Set autoload-excludes by parsing loadup.el rather than Makefiles.
14536
2fb0a219
MA
145372011-05-18 Michael Albinus <michael.albinus@gmx.de>
14538
14539 * net/tramp.el (tramp-process-actions): Set "first-password-request"
14540 property for the correct connection in case of multihops.
14541
e565dd37
GM
145422011-05-18 Glenn Morris <rgm@gnu.org>
14543
c2571358 14544 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
14545 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
14546
e565dd37
GM
14547 Rationalize calendar handling of day and month abbrev-arrays.
14548 * calendar/calendar.el (calendar-customized-p): New function.
14549 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
14550 (calendar-day-name-array, calendar-month-name-array): Doc fix.
14551 Add :set function.
14552 (calendar-abbrev-length, calendar-day-abbrev-array)
14553 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
14554 (calendar-day-abbrev-array, calendar-month-abbrev-array):
14555 Elements may no longer be nil.
14556 (calendar-day-name, calendar-month-name):
14557 Update for changed nature of abbrev arrays.
14558 * calendar/diary-lib.el (diary-name-pattern):
14559 Update for changed nature of abbrev arrays.
14560 (diary-mark-entries-1): Update calendar-make-alist calls.
14561 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
14562 * calendar/cal-html.el (cal-html-day-abbrev-array):
14563 Simply inherit from calendar-day-abbrev-array.
14564
1d99a745
SM
145652011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
14566
14567 * progmodes/grep.el (grep-mode): Disable default
14568 compilation-directory-matcher setting (bug#8684).
14569
7c1d9aa0
MA
145702011-05-17 Michael Albinus <michael.albinus@gmx.de>
14571
14572 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
14573 instead of "head" and "tail". There were problems with SunOS 5.9,
14574 and it performs better.
14575
3952e9d8
GM
145762011-05-17 Glenn Morris <rgm@gnu.org>
14577
2dd12e7f
GM
14578 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
14579
e4157b9c
GM
14580 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
14581 Replace obsolete function.
14582
8e249bbd
GM
14583 * shell.el (pcomplete-parse-arguments-function): Declare.
14584
3952e9d8
GM
14585 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
14586 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
14587 (appt-check): Doc fixes.
14588 (appt-disp-window-function, appt-delete-window-function):
14589 Remove needless special case in custom :type.
14590 (appt-display-count): Default to 0, not nil.
14591 (appt-check): Reset appt-display-count to 0, not nil.
14592
c71a0d48 145932011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 14594
c71a0d48
GM
14595 * progmodes/python.el (python-font-lock-keywords):
14596 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 14597
31d55be9
SM
145982011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
14599
14600 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
14601
3bfacb2f
KR
146022011-05-16 Kevin Ryde <user42@zip.com.au>
14603
14604 * info-look.el (makefile-automake-mode): New setups, looking in
14605 automake manual, then makefile-mode.
14606 (makefile-mode): Remove automake manual, have it just in
14607 makefile-automake-mode since there's various things different or
14608 not relevant to plain make.
14609 (makefile-mode): Remove "other-modes" non-existent automake-mode,
14610 believe a hypothetical automake-mode would go to makefile-mode,
14611 not the other way around.
14612
c8e83751
CY
146132011-05-15 Chong Yidong <cyd@stupidchicken.com>
14614
5e9e35cd
CY
14615 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
14616 hunk-end tags (Bug#8672).
14617
c8e83751
CY
14618 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
14619 vc-annotate-show-diff-revision-at-line (Bug#8671).
14620
50b23e5a
GM
146212011-05-14 Glenn Morris <rgm@gnu.org>
14622
7210a739
GM
14623 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
14624 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
14625 (change-log-font-lock-keywords): Also handle multiple author lines
14626 with leading tabs. (Bug#8644)
7210a739 14627
4691905a
GM
14628 * calendar/appt.el (appt-check): Rename some local variables.
14629 Some simplification/reordering.
14630
50b23e5a
GM
14631 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
14632 (feedmail-sendmail-f-doesnt-sell-me-out)
14633 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14634 (feedmail-debug-sit-for, feedmail-queue-express-hook)
14635 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
14636 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
14637 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
14638 (feedmail-binmail-gnulinuxish-template):
14639 Rename from feedmail-binmail-linuxish-template.
14640 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
14641 Use insert-buffer-substring.
14642
215cda7c
BC
146432011-05-14 Bill Carpenter <bill@carpenter.org>
14644
14645 * mail/feedmail.el (feedmail-patch-level): Increase.
14646 (feedmail-debug): New custom group.
14647 (feedmail-confirm-outgoing-timeout)
14648 (feedmail-sendmail-f-doesnt-sell-me-out)
14649 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
14650 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
14651 (feedmail-sender-line, feedmail-from-line)
14652 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 14653 (feedmail-spray-this-address)
215cda7c
BC
14654 (feedmail-spray-address-fiddle-plex-list)
14655 (feedmail-queue-use-send-time-for-date)
14656 (feedmail-queue-use-send-time-for-message-id)
14657 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
14658 (feedmail-buffer-eating-function):
14659 Doc fixes.
14660 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
14661 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
14662 (feedmail-message-action-scroll-down): New functions.
14663 (feedmail-queue-directory, feedmail-queue-draft-directory):
14664 Use expand-file-name.
14665 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
14666 Remove C-v help entry.
14667 (feedmail-queue-buffer-file-name): New variable.
14668 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
14669 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
14670 (feedmail-message-action-send-strong, feedmail-message-action-edit)
14671 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
14672 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
14673 (feedmail-message-action-toggle-spray)
14674 (feedmail-run-the-queue-no-prompts)
14675 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
14676 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
14677 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
14678 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
14679 (feedmail-envelope-deducer, feedmail-fiddle-from)
14680 (feedmail-fiddle-sender, feedmail-default-date-generator)
14681 (feedmail-fiddle-date, feedmail-fiddle-message-id)
14682 (feedmail-fiddle-spray-address)
14683 (feedmail-fiddle-list-of-spray-fiddle-plexes)
14684 (feedmail-fiddle-list-of-fiddle-plexes)
14685 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
14686 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
14687 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
14688 Change default. Doc fix.
14689 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
14690 (feedmail-binmail-linuxish-template): New constant.
14691 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
14692 Respect feedmail-sendmail-f-doesnt-sell-me-out.
14693 (feedmail-send-it): Add debug call.
14694 Use feedmail-queue-buffer-file-name, and
14695 feedmail-send-it-immediately-wrapper.
14696 (feedmail-message-action-send): Add debug call.
14697 Use feedmail-send-it-immediately-wrapper.
14698 (feedmail-queue-express-to-queue): Add debug call.
14699 Run feedmail-queue-express-hook.
14700 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
14701 (feedmail-message-action-help-blat):
14702 Rename from feedmail-queue-send-edit-prompt-help-first.
14703 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
14704 Check line-endings. Handle errors better.
14705 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
14706 Doc fix. Add debug call.
14707 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
14708 Use feedmail-queue-send-edit-prompt-inner.
14709 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
14710 (feedmail-queue-send-edit-prompt-inner): New function, extracted
14711 from feedmail-queue-send-edit-prompt.
14712 (feedmail-queue-send-edit-prompt-help)
14713 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
14714 (feedmail-tidy-up-slug): Add debug call.
14715 Respect feedmail-queue-slug-suspect-regexp.
14716 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
14717 (feedmail-dump-message-to-queue): Add debug call.
14718 Expand queue-directory.
14719 (feedmail-dump-message-to-queue): Change message slightly.
14720 Use feedmail-say-chatter.
14721 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
14722 (feedmail-send-it-immediately-wrapper): New function.
14723 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
14724 Insert empty string rather than newline. Handle full-frame case.
14725 Use catch/throw. Use feedmail-say-chatter.
14726 (feedmail-fiddle-from): Try mail-host-address.
14727 (feedmail-default-message-id-generator): Doc fix.
14728 Bind system-time-locale. Handle missing end.
14729 (feedmail-fiddle-x-mailer): Add debug call.
14730 Handle feedmail-x-mailer-line being nil.
14731 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
14732 Add debug call. Use buffer-substring-no-properties.
14733 (feedmail-say-debug, feedmail-say-chatter): New functions.
14734 (feedmail-find-eoh): Give an explicit error.
14735
42c7e61e
UJ
147362011-05-13 Ulf Jasper <ulf.jasper@web.de>
14737
c2571358 14738 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 14739 family from helvetica to sans.
c2571358 14740 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
14741 etc/images/newsticker.
14742
c2571358 14743 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
14744 family from helvetica to sans.
14745
14746 * net/newst-plainview.el (newsticker-new-item-face)
14747 (newsticker-old-item-face, newsticker-immortal-item-face)
14748 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 14749 (newsticker-statistics-face): Change default family from
42c7e61e 14750 helvetica to sans.
c2571358 14751 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
14752 etc/images/newsticker.
14753
5d3385a0
JB
14754 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
14755 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
14756 auto-marking.
14757
8497a297
DV
147582011-05-13 Didier Verna <didier@xemacs.org>
14759
14760 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
14761 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
14762 TODO entries.
8497a297
DV
14763 (lisp-lambda-list-keyword-parameter-indentation)
14764 (lisp-lambda-list-keyword-parameter-alignment)
14765 (lisp-lambda-list-keyword-alignment): New customizable user options.
14766 (lisp-indent-defun-method): Improve docstring.
14767 (extended-loop-p): Fix comment.
14768 (lisp-indent-lambda-list-keywords-regexp): New variable.
14769 (lisp-indent-lambda-list): New function.
14770 (lisp-indent-259): Use it.
14771 (lisp-indent-defmethod): Support for more than one
14772 method qualifier and properly indent methods lambda-lists.
14773 (defgeneric): Provide a missing common-lisp-indent-function property.
14774
f278f87f
SM
147752011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
14776
14777 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
14778 bounds for the empty string (bug#8667).
14779
5233edd7
GM
147802011-05-13 Glenn Morris <rgm@gnu.org>
14781
5237a44f
GM
14782 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
14783
8340026c 14784 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 14785 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 14786
5233edd7 14787 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 14788 (appt-time-msg-list): Doc fix.
a5464014 14789 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 14790
92d10796
AS
147912011-05-12 Andreas Schwab <schwab@linux-m68k.org>
14792
14793 * progmodes/ld-script.el (ld-script-keywords)
14794 (ld-script-builtins): Update keywords list.
14795
914a0ae1
SM
147962011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14797
c89be45f
SM
14798 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
14799
914a0ae1
SM
14800 * shell.el (shell-completion-vars): New function.
14801 (shell-mode):
14802 * simple.el (read-shell-command): Use it.
14803 (blink-matching-open): No need for " [...]" in minibuffer-message.
14804
98dc3df3
GM
148052011-05-12 Glenn Morris <rgm@gnu.org>
14806
14807 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
14808 (appt-check): Simplify.
14809
d2fc7e3d 148102011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 14811
4d61f28d 14812 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
14813 literal "/dev/null".
14814
d2fc7e3d 148152011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
14816
14817 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
14818 Fix typo.
14819
d2fc7e3d 148202011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 14821
3f254caa
SM
14822 * progmodes/which-func.el (which-function):
14823 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
14824 which might not be defined (Bug#8260).
14825
d45885f7
GM
148262011-05-12 Glenn Morris <rgm@gnu.org>
14827
14828 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
14829 Let byte-compile-initial-macro-environment always take precedence.
14830
488086f4
SM
148312011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
14832
14833 * net/rcirc.el: Add support for SSL/TLS connections.
14834 (rcirc-server-alist): New field `encryption'.
14835 (rcirc): Check `encryption' settings.
14836 (rcirc-connect): New arg `encryption'. Use open-network-stream.
14837 Merge make-local-variable into `set'.
14838 (rcirc--connection-open-p): New function.
14839 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
14840 the process is not a network process (e.g. running gnutls-cli).
14841 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
14842 Make rcirc-(en|de)code-coding-system local here.
14843 (rcirc-mode): Merge make-local-variable into `set'.
14844 (rcirc-parent-buffer): Make permanent buffer-local.
14845 (rcirc-multiline-minor-mode): Don't do it here.
14846 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
14847 there's no server buffer.
14848
7d3b9d44
GM
148492011-05-11 Glenn Morris <rgm@gnu.org>
14850
f64049c6
GM
14851 * newcomment.el (comment-kill): Prefix "unused" local.
14852
93c9df73
GM
14853 * term/w32console.el (get-screen-color): Declare.
14854
7d3b9d44
GM
14855 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
14856 Handle symbol elements of byte-compile-initial-macro-environment.
14857
9e2dd53f
LL
148582011-05-10 Leo Liu <sdl.web@gmail.com>
14859
488086f4
SM
14860 * bookmark.el (bookmark-bmenu-mode-map):
14861 Bind bookmark-bmenu-search to `/'.
8b340240 14862
9e2dd53f 14863 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
14864 (footnote-unicode-string, footnote-unicode-regexp): New variable.
14865 (Footnote-unicode): New function.
14866 (footnote-style-alist): Add unicode style to the list.
14867 (footnote-style): Doc fix.
9e2dd53f 14868
79b70037
GM
148692011-05-10 Jim Meyering <meyering@redhat.com>
14870
14871 Fix doubled-word typos.
14872 * international/quail.el (quail-insert-kbd-layout): and and -> and
14873 * kermit.el: and and -> and
14874 * net/ldap.el (ldap-search-internal): to to -> to
14875 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
14876 * progmodes/js.el (js-mode): and and -> and
14877 * textmodes/artist.el (artist-move-to-xy): at at -> at
14878 (artist-draw-region-trim-line-endings): if if -> if
14879 And Safetyc -> Safety.
14880 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
14881
b8f82dc1 148822011-05-10 Glenn Morris <rgm@gnu.org>
f1a71c6e 14883 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
14884
14885 * files.el (hack-one-local-variable-eval-safep):
14886 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
14887
4f99f44b
GM
148882011-05-10 Glenn Morris <rgm@gnu.org>
14889
14890 * calendar/diary-lib.el (diary-list-entries-hook)
14891 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
14892 (diary-nongregorian-marking-hook, diary-list-entries)
14893 (diary-include-other-diary-files, diary-mark-entries)
14894 (diary-mark-included-diary-files): Doc fixes.
14895
84f29e6b
JB
148962011-05-09 Juanma Barranquero <lekktu@gmail.com>
14897
14898 * misc.el: Require tabulated-list.el during compilation.
14899
9bedd73a
CY
149002011-05-09 Chong Yidong <cyd@stupidchicken.com>
14901
488086f4
SM
14902 * progmodes/compile.el (compilation-start):
14903 Run compilation-filter-hook for the async case too.
9bedd73a
CY
14904 (compilation-filter-hook): Doc fix.
14905
797c735c
DD
149062011-05-09 Deniz Dogan <deniz@dogan.se>
14907
14908 * wdired.el: Remove outdated installation comment. Fix usage
14909 comment.
14910
5f4b1dfe
JB
149112011-05-09 Juanma Barranquero <lekktu@gmail.com>
14912
14913 * misc.el: Implement new command `list-dynamic-libraries'.
14914 (list-dynamic-libraries--loaded-only-p): New variable.
14915 (list-dynamic-libraries--refresh): New function.
14916 (list-dynamic-libraries): New command.
14917
4c44026c
CY
149182011-05-09 Chong Yidong <cyd@stupidchicken.com>
14919
488086f4
SM
14920 * progmodes/compile.el (compilation-error-regexp-alist-alist):
14921 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
14922 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
14923 higher priority to avoid clobbering by gnu.
14924
027f966d
CY
149252011-05-08 Chong Yidong <cyd@stupidchicken.com>
14926
14927 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
14928 if the face has existing theme settings (Bug#8454).
14929
085f5d7d
CY
149302011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
14931
488086f4
SM
14932 * progmodes/perl-mode.el (perl-imenu-generic-expression):
14933 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 14934
2a86a00c
RS
14935 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
14936 special file names `.' and `..' (Bug#8259).
14937
d9c54a06
CY
149382011-05-08 Chong Yidong <cyd@stupidchicken.com>
14939
488086f4
SM
14940 * progmodes/grep.el (grep-mode-font-lock-keywords):
14941 Remove buffer-changing entries.
d9c54a06
CY
14942 (grep-filter): New function.
14943 (grep-mode): Add it to compilation-filter-hook.
14944
14945 * progmodes/compile.el (compilation-filter-hook)
14946 (compilation-filter-start): New defvars.
14947 (compilation-filter): Call compilation-filter-hook prior to
14948 updating the process mark.
14949
c4662635
SM
149502011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
14951
14952 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
14953
b0512a1d
EZ
149542011-05-07 Eli Zaretskii <eliz@gnu.org>
14955
605c9376
EZ
14956 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
14957 mailclient-send-it even if window-system is nil. (Bug#8595)
14958
c4662635
SM
14959 * term/w32console.el (terminal-init-w32console):
14960 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
14961 background-mode. (Bug#8597)
14962
d1dc2cc2
SM
149632011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
14964
14965 Make bytecomp.el understand that defmethod defines funs (bug#8631).
14966 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
14967 New functions.
14968 (defgeneric, eieio--defmethod): Use them.
14969 (eieio-defgeneric): Remove.
14970 (defmethod): Call defgeneric in a way visible to the byte-compiler.
14971
915d1300
GM
149722011-05-07 Glenn Morris <rgm@gnu.org>
14973
a3961c3e
GM
14974 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
14975 Use let rather than let*.
14976 (timeclock-find-discrep): Remove unused local.
14977
314347b9
GM
14978 * calendar/diary-lib.el (diary-comment-start): Doc fix.
14979
915d1300
GM
14980 * calendar/appt.el (appt-time-msg-list): Doc fix.
14981
275b59b0
NF
149822011-05-06 Noah Friedman <friedman@splode.com>
14983
14984 * apropos.el (apropos-print-doc): Only use
14985 emacs-lisp-docstring-fill-column when it is bound to an integer,
14986 per that variable's documentation.
14987
6c19f744
SM
149882011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
14989
14990 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 14991 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 14992
60f884b2
GM
149932011-05-06 Glenn Morris <rgm@gnu.org>
14994
5006e634
GM
14995 * calendar/appt.el (appt-message-warning-time): Doc fix.
14996 (appt-warning-time-regexp): New option.
14997 (appt-make-list): Respect appt-message-warning-time.
14998
548d0a63
GM
14999 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
15000 New options.
15001 (diary-add-to-list): Strip comments from the displayed string.
15002 (diary-mode): Set comment-start and comment-end.
15003
60f884b2
GM
15004 * vc/diff-mode.el (smerge-refine-subst): Declare.
15005 (diff-refine-hunk): Don't require smerge-mode when compiling.
15006
989681bb
JB
150072011-05-06 Juanma Barranquero <lekktu@gmail.com>
15008
15009 * simple.el (list-processes): Return nil as the docstring says.
15010
a6bc05e1
MA
150112011-05-05 Michael Albinus <michael.albinus@gmx.de>
15012
15013 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
15014 to "".
15015 (ange-ftp-write-region, ange-ftp-insert-file-contents)
15016 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
15017 determining of binary transfer. (Bug#7383)
15018
23c22e9a
MA
150192011-05-05 Michael Albinus <michael.albinus@gmx.de>
15020
c4662635
SM
15021 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15022 Fix port computation bug. (Bug#8618)
23c22e9a 15023
0bff894f
GM
150242011-05-05 Glenn Morris <rgm@gnu.org>
15025
b8296902
GM
15026 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
15027
1f522ce8
GM
15028 * simple.el (shell-dynamic-complete-functions)
15029 (comint-dynamic-complete-functions): Declare.
15030
cf5bee67
GM
15031 * net/network-stream.el (gnutls-negotiate):
15032 * simple.el (tabulated-list-print): Fix declarations.
15033
15034 * progmodes/gud.el (syntax-symbol, syntax-point):
15035 Remove unnecessary and incorrect declarations.
15036
0bff894f
GM
15037 * emacs-lisp/check-declare.el (check-declare-scan):
15038 Handle byte-compile-initial-macro-environment in bytecomp.el
15039
9869b3ae
SM
150402011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
15041
15042 Fix earlier half-done eieio-defmethod change (bug#8338).
15043 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
15044 Streamline and change calling convention.
15045 (defmethod): Adjust accordingly and simplify.
15046 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
15047 new eieio--defmethod.
15048 (slot-boundp): Minor CSE simplification.
15049
9c1d5ac5
MZ
150502011-05-05 Milan Zamazal <pdm@zamazal.org>
15051
15052 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
15053 (glasses-make-readable): Use glasses-separate-capital-groups.
15054
455c834e
JB
150552011-05-05 Juanma Barranquero <lekktu@gmail.com>
15056
15057 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
15058 (warning-series): Doc fix.
15059 (display-warning): Don't try to create the buffer if we just found it.
15060
9ed7c8cb
CY
150612011-05-04 Chong Yidong <cyd@stupidchicken.com>
15062
15063 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
15064 (autoload-find-generated-file): New function.
15065 (generate-file-autoloads): Bind generated-autoload-file to
15066 buffer-file-name.
9869b3ae
SM
15067 (update-file-autoloads, update-directory-autoloads):
15068 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
15069 output file (Bug#7989).
15070 (batch-update-autoloads): Doc fix.
15071
0898ca10
JB
150722011-05-04 Juanma Barranquero <lekktu@gmail.com>
15073
15074 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
15075
31dfb76c
GM
150762011-05-04 Glenn Morris <rgm@gnu.org>
15077
f330b642
GM
15078 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
15079 function, so it follows changes in calendar-date-style.
15080 (diary-fancy-date-matcher): New function.
15081 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
15082 (diary-fancy-font-lock-fontify-region-function):
15083 Use diary-fancy-date-pattern as a function.
15084
31dfb76c
GM
15085 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
15086 non-numbers for `year' etc pseudo-variables. (Bug#8583)
15087
48e79d6a
TZ
150882011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
15089
15090 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
15091 instead of positional arguments. Allow :keylist and :crlfiles
15092 arguments.
15093 (open-gnutls-stream): Call it.
15094
15095 * net/network-stream.el (network-stream-open-starttls): Adjust to
15096 call `gnutls-negotiate' with :process and :hostname arguments.
15097
dd5a5ee0
SM
150982011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
15099
ef80fc09
SM
15100 * minibuffer.el (completion--message): New function.
15101 (completion--do-completion, minibuffer-complete)
15102 (minibuffer-force-complete, minibuffer-complete-word): Use it.
15103 (completion--do-completion): Don't ignore completion-auto-help when in
15104 icomplete-mode.
15105
dd5a5ee0
SM
15106 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
15107 internal encoding (e.g. tibetan zero is not whitespace).
15108 (global-whitespace-mode): Prefer save-current-buffer.
15109 (whitespace-trailing-regexp): Remove useless save-match-data.
15110 (whitespace-empty-at-bob-regexp): Minor simplification.
15111
b7d22a83
CY
151122011-05-03 Chong Yidong <cyd@stupidchicken.com>
15113
15114 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
15115
5192af46
AM
151162011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
15117
15118 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 15119 Use `concat' to create string for insertion.
5192af46 15120
5767d190
SM
151212011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15122
15123 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
15124 Avoid open-line which runs post-self-insert-hook.
15125 (bibtex-fill-entry): Remove unused `end' var.
15126
bf242939
AM
151272011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
15128
5767d190
SM
15129 * textmodes/ispell.el (ispell-add-per-file-word-list):
15130 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 15131
25666126
LL
151322011-05-03 Leo Liu <sdl.web@gmail.com>
15133
15134 * isearch.el (isearch-yank-pop): New command.
5767d190 15135 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
15136 (isearch-forward): Mention it.
15137
52d3c2d0
SM
151382011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
15139
1bcace58
SM
15140 * simple.el (minibuffer-complete-shell-command): Remove.
15141 (minibuffer-local-shell-command-map): Use completion-at-point.
15142 (read-shell-command): Setup completion vars here instead.
15143 (read-expression-map): Bind TAB to symbol completion.
15144
52d3c2d0
SM
15145 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
15146 error directly rather via storing it into `results'.
15147
35813471
LL
151482011-05-02 Leo Liu <sdl.web@gmail.com>
15149
15150 * vc/diff.el: Fix description.
15151
e793a940
LMI
151522011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
15153
15154 * server.el (server-eval-at): New function.
15155
8de66e05
LMI
151562011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15157
15158 * net/network-stream.el (open-network-stream): Take a :nowait
15159 parameter and pass it on to `make-network-process'.
15160 (network-stream-open-plain): Ditto.
15161
dcb79f20
AS
151622011-04-30 Andreas Schwab <schwab@linux-m68k.org>
15163
15164 * faces.el (face-spec-set-match-display): Don't match toolkit
15165 options on terminal frames.
15166
14a7fbd8
SM
151672011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
15168
7eabc1be
SM
15169 * progmodes/pascal.el: Use lexical binding.
15170 (pascal-mode-map): Remove author preferences.
15171
14a7fbd8
SM
15172 * pcomplete.el (pcomplete-std-complete): Don't abuse
15173 completion-at-point.
15174
50f84510
JB
151752011-04-28 Juanma Barranquero <lekktu@gmail.com>
15176
6e087a44
JB
15177 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
15178 removing code that has been dead since 1991 or so.
15179
50f84510
JB
15180 * startup.el (command-line): When warning about "_emacs", use a
15181 delayed warning to allow the user to filter it out.
15182
0ba690bd
DD
151832011-04-28 Deniz Dogan <deniz@dogan.se>
15184
15185 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
15186 user has not joined.
15187
08abfaad
SM
151882011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15189
15190 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
15191 aren't any completions at point.
15192
638f053a
JB
151932011-04-28 Juanma Barranquero <lekktu@gmail.com>
15194
15195 * subr.el (display-delayed-warnings): New function.
15196 (delayed-warnings-hook): New variable.
15197
8fff8daa
SM
151982011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
15199
08abfaad
SM
15200 * minibuffer.el (completion-at-point, completion-help-at-point):
15201 Don't presume that a given completion-at-point-function will always
15202 use the same calling convention.
15203
8fff8daa
SM
15204 * pcomplete.el (pcomplete-completions-at-point):
15205 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
15206 pcomplete-seen is non-nil.
15207 (pcomplete-comint-setup): Also recognize the new comint/shell
15208 completion functions.
15209 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
15210 pcomplete-seen is non-nil.
15211
841a1577 152122011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 15213
841a1577 15214 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 15215 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 15216 the first character in the entry. This allows for code to add its
211ec907
UJ
15217 own uid to the entry.
15218 (icalendar--convert-float-to-ical): Add export of
15219 `diary-float'-entries save for those with the optional DAY
15220 argument.
15221
2a782793
DC
152222011-04-27 Daniel Colascione <dan.colascione@gmail.com>
15223
15224 * subr.el (shell-quote-argument): Use alternate escaping strategy
15225 when we spot a variable reference in a string.
15226
0438ce91
DC
152272011-04-26 Daniel Colascione <dan.colascione@gmail.com>
15228
15229 * cus-start.el (all): Define customization for debug-on-event.
15230
841a1577 152312011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
15232
15233 * subr.el (shell-quote-argument): Escape correctly under Windows.
15234
d090ed6c
SM
152352011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15236
15237 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
15238
bfd31217
MA
152392011-04-25 Michael Albinus <michael.albinus@gmx.de>
15240
d090ed6c
SM
15241 * net/tramp.el (tramp-process-actions): Add POS argument.
15242 Delete region between POS and (pos).
bfd31217 15243
d090ed6c
SM
15244 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15245 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
15246 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
15247
15248 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
15249 position in `tramp-process-actions' call.
15250
15251 * net/trampver.el: Update release number.
15252
e92f3bd3
SM
152532011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
15254
850256b5
SM
15255 * custom.el (defcustom): Obey lexical-binding.
15256
e92f3bd3
SM
15257 Fix octave-inf completion problems reported by Alexander Klimov.
15258 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
15259 Inherit from octave-mode-syntax-table.
15260 (inferior-octave-mode): Set info-lookup-mode.
15261 (inferior-octave-completion-at-point): New function.
15262 (inferior-octave-complete): Use it and completion-in-region.
15263 (inferior-octave-dynamic-complete-functions): Use it as well, and use
15264 comint-filename-completion.
15265 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
15266 symbol elements which shouldn't be word elements.
15267 (octave-font-lock-keywords, octave-beginning-of-defun)
15268 (octave-function-header-regexp): Adjust regexps accordingly.
15269 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
15270
cd22b309
JB
152712011-04-25 Juanma Barranquero <lekktu@gmail.com>
15272
15273 * net/gnutls.el (gnutls-errorp): Declare before first use.
15274
8b492194
TZ
152752011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
15276
15277 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
15278 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 15279 default trustfile exists before going to use it. Add missing
5a5fa834 15280 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
15281 Reported by Claudio Bley <claudio.bley@gmail.com>.
15282 (open-gnutls-stream): Add usage example.
15283
15284 * net/network-stream.el (network-stream-open-starttls): Give host
15285 parameter to `gnutls-negotiate'.
15286 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 15287 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 15288
841a1577 152892011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 15290
cd22b309
JB
15291 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
15292 Use correct match group (bug#8438).
05842630 15293
3ba7869c
CY
152942011-04-24 Chong Yidong <cyd@stupidchicken.com>
15295
512e3ae1
CY
15296 * emacs-lisp/package.el (package-built-in-p): Fix typo.
15297 (package-menu--generate): New arg specifying packages to show.
15298 (package-menu-refresh, package-menu-execute, list-packages):
15299 Callers changed.
15300 (package-show-package-list): New function, replacing deleted
15301 package--list-packages (renamed because it is non-internal).
15302
15303 * finder.el (finder-list-matches): Use package-show-package-list
15304 instead of deleted package--list-packages.
15305
e92f3bd3
SM
15306 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
15307 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
15308 (vc-annotate-mode-map): Bind it to RET.
15309
7031be6d
UR
153102011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
15311
15312 * progmodes/etags.el (next-file): Don't use set-buffer to change
15313 buffers (Bug#8478).
15314
4ef177aa
CY
153152011-04-24 Chong Yidong <cyd@stupidchicken.com>
15316
c8d173eb
CY
15317 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
15318
4ef177aa
CY
15319 * apropos.el (apropos-label-face): Avoid variable-pitch face.
15320 (apropos-accumulator): Doc fix.
15321 (apropos-function, apropos-macro, apropos-command)
15322 (apropos-variable, apropos-face, apropos-group, apropos-widget)
15323 (apropos-plist): Add face property.
15324 (apropos-symbols-internal): Fix indentation.
15325 (apropos-print): Simplify help, and recognize apropos-multi-type.
15326 (apropos-print-doc): Use button-type-get to extract the button's
15327 face property. Fill docstring (Bug#8352).
15328
4ffd0d6b 153292011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
15330
15331 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
15332
c6c32125 15333 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 15334 (mpuz-mode-map): Use mapc.
c6c32125
JB
15335 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
15336 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
15337 Fix typos in docstrings.
15338
58d468b4
JB
15339 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
15340 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
15341
6470c3c6
JB
15342 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
15343
4ffd0d6b 153442011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
15345
15346 * minibuffer.el (completion--do-completion): Avoid the "Next char
15347 not unique" prompt if icomplete-mode is enabled (Bug#5849).
15348
3ad8bad0
CY
15349 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
15350 mouse-2 into unread-command-events, it is interpreted correctly.
15351
71d73c9c 15352 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 15353 (image-toggle-display): Doc fix.
71d73c9c 15354
841a1577 153552011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 15356
4ffd0d6b
GM
15357 * textmodes/page.el (what-page): Use line-number-at-pos to
15358 calculate line number (Bug#6825).
6e1dbaa9 15359
c2fb1b60
JB
153602011-04-22 Juanma Barranquero <lekktu@gmail.com>
15361
15362 * eshell/esh-mode.el (find-tag-interactive): Declare function.
15363 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
15364 Pass argument NO-DEFAULT to `find-tag-interactive'.
15365
e02f48d7
JB
153662011-04-22 Juanma Barranquero <lekktu@gmail.com>
15367
15368 Lexical-binding cleanup.
15369
15370 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
15371 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
15372 * progmodes/ada-prj.el (ada-prj-initialize-values)
15373 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
15374 (ada-prj-show-value):
15375 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
15376 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
15377 (antlr-invalidate-context-cache, antlr-options-menu-filter)
15378 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
15379 * progmodes/bug-reference.el (bug-reference-push-button):
15380 * progmodes/fortran.el (fortran-line-length):
15381 * progmodes/glasses.el (glasses-change):
15382 * progmodes/octave-mod.el (octave-fill-paragraph):
15383 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
15384 (python-pdbtrack-grub-for-buffer, python-sentinel):
15385 * progmodes/sql.el (sql-save-connection):
15386 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
15387 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
15388 Mark unused parameters.
15389
15390 * progmodes/compile.el (compilation--flush-directory-cache)
15391 (compilation--flush-parse, compile-internal): Mark unused parameters.
15392 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
15393 (compilation-next-error-function): Remove unused variable `timestamp'.
15394
15395 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
15396 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
15397
15398 * progmodes/dcl-mode.el (dcl-end-of-command):
15399 Remove unused variable `start'.
15400 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
15401 (dcl-option-value-basic, dcl-option-value-offset)
15402 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
15403 Mark unused parameters.
15404 (dcl-save-local-variable): Remove unused variable `val'.
15405 (mode): Declare.
15406
15407 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
15408 Mark unused parameters.
15409 (delphi-ignore-changes): Move before first use.
15410 (delphi-charset-token-at): Remove unused variable `start'.
15411 (delphi-else-start): Remove unused variable `if-count'.
15412 (delphi-comment-block-start, delphi-comment-block-end):
15413 Remove unused variable `kind'.
15414 (delphi-indent-line): Remove unused variable `new-point'.
15415
15416 * progmodes/ebrowse.el (ebrowse-files-list)
15417 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
15418 Mark unused parameters. Don't quote `lambda'.
15419 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
15420 Don't quote `lambda'.
15421 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
15422 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
15423 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
15424 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
15425 Use `ignore-errors'.
15426 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
15427 (ebrowse-view/find-file-and-search-pattern)
15428 (ebrowse-view/find-member-declaration/definition):
15429 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
15430 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
15431 Rename parameter PREFIX-ARG to PREFIX.
15432 (ebrowse-tags-read-name): Remove unused variables `start' and
15433 `member-info'.
15434 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
15435 to `tags-file'.
15436
15437 * progmodes/etags.el (local-find-tag-hook): Declare.
15438 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
15439 Mark unused parameters.
15440
15441 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
15442 (executable-interpret): Mark unused parameter.
15443
15444 * progmodes/flymake.el (flymake-process-sentinel)
15445 (flymake-after-change-function)
15446 (flymake-create-temp-with-folder-structure)
15447 (flymake-get-include-dirs-dot): Mark unused parameters.
15448 (flymake-safe-delete-directory): Remove unused variable `err'.
15449
15450 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
15451 (speedbar-timer-fn, speedbar-line-text)
15452 (speedbar-change-expand-button-char, speedbar-delete-subblock)
15453 (speedbar-center-buffer-smartly): Declare functions.
15454 (gdb-find-watch-expression): Remove unused variable `array'.
15455 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
15456 (gdb-starting): Mark unused parameters.
15457 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
15458 (gdb-table-string): Remove unused variable `res'.
15459 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
15460 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
15461 (gdb-display-buffer): Remove unused variable `cur-size'.
15462
15463 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
15464 allow lexical-binding compilation.
15465 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
15466 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
15467 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
15468 Mark unused parameters.
15469 (gud-gdb-marker-filter): Remove unused variable `match'.
15470 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
15471 lambda expressions and funcall them, instead of using `fset'.
15472
15473 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
15474 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
15475
15476 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
15477 variable `header-beg'; use `let'.
15478
15479 * progmodes/icon.el (indent-icon-exp): Remove unused variables
15480 `restart', `last-sexp' and `at-do'.
15481
15482 * progmodes/js.el (js--debug): Mark unused parameter.
15483 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
15484 (js--splice-into-items): Remove unused variable `item'.
15485 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
15486
15487 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
15488 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
15489 (makefile-complete): Remove unused variable `try'.
15490 (makefile-fill-paragraph, makefile-match-function-end):
15491 Mark unused parameters.
15492
15493 * progmodes/octave-inf.el (inferior-octave-complete):
15494 Remove unused variable `proc'.
15495 (inferior-octave-output-digest): Mark unused parameter.
15496
15497 * progmodes/perl-mode.el (perl-calculate-indent):
15498 Remove unused variable `err'.
15499
15500 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
15501 (prolog-indent-line): Mark unused parameters.
15502 (prolog-indent-line): Remove unused variable `beg'.
15503
15504 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
15505 (reporter-dont-compact-list): Declare.
15506
15507 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
15508 Remove unused variable `char'.
15509 (sh-debug): Mark unused parameter.
15510 (sh-get-indent-info): Remove unused variable `start'.
15511 (sh-calculate-indent): Remove unused variable `var'.
15512
15513 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
15514 (simula-electric-keyword): Remove unused variable `null'.
15515 (simula-search-backward, simula-search-forward): Remove unused
15516 variables `begin' and `end'.
15517
15518 * progmodes/vera-mode.el (vera-guess-basic-syntax):
15519 Remove unused variable `pos'.
15520 (vera-electric-tab, vera-comment-uncomment-region):
15521 Mark unused parameters.
15522 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
15523
7ede3b65
CY
155242011-04-22 Chong Yidong <cyd@stupidchicken.com>
15525
15526 * emacs-lisp/package.el (package--builtins, package-alist)
15527 (package-load-descriptor, package-built-in-p, package-activate)
15528 (define-package, package-installed-p)
15529 (package-compute-transaction, package-buffer-info)
15530 (package--push): Doc fix. Distinguish more clearly between
15531 version strings and version lists.
15532
121656e9
JB
155332011-04-21 Juanma Barranquero <lekktu@gmail.com>
15534
15535 Lexical-binding cleanup.
15536
15537 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
15538 (5x5-make-mutate-best):
15539 * play/fortune.el (fortune-in-buffer):
15540 * play/gomoku.el (gomoku-init-display):
15541 * play/solitaire.el (solitaire, solitaire-do-check):
15542 * play/tetris.el (tetris-default-update-speed-function):
15543 Mark unused parameters.
15544
15545 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
15546 (bubbles--shift): Remove unused variable `char-org'.
15547 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
15548 (bubbles--show-images): Remove unused variable `char'.
15549
15550 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
15551 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
15552 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
15553 (decipher-analyze-buffer): Use ?\s.
15554 (decipher-make-checkpoint): Remove unused variable `mapping'.
15555
15556 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
15557
15558 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
15559 Remove unused variable `result'; use `let'.
15560
15561 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
15562 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
15563 (gametree-children-shown-p, gametree-compute-reduced-score):
15564 Use `ignore-errors'.
15565
15566 * play/handwrite.el (ps-lpr-switches): Declare.
15567 (handwrite): Remove unused variables `pmin' and `lastp'.
15568
15569 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
15570
15571 * play/landmark.el (landmark-init-display)
15572 (landmark-update-naught-weights): Mark unused parameters.
15573 (landmark-y): Remove unused variable `noise'. Simplify.
15574 (landmark-human-plays): Remove unused variable `score'.
15575
15576 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
15577 (mpuz-try-proposal): Remove unused variable `game'.
15578
15579 * play/zone.el (life-patterns): Declare.
15580
80f499c7
JB
155812011-04-20 Juanma Barranquero <lekktu@gmail.com>
15582
15583 * vc/vc.el (ediff-vc-internal): Declare function.
15584
024ff170
SM
155852011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15586
c0a193ea
SM
15587 * shell.el: Use lexical-binding and std completion UI.
15588 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
15589 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
15590 comint-preoutput-filter-functions rather than on
15591 comint-output-filter-functions.
15592 (shell-command-completion, shell--command-completion-data)
15593 (shell-filename-completion, shell-environment-variable-completion)
15594 (shell-c-a-p-replace-by-expanded-directory): New functions.
15595 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
15596 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
15597 (shell-dynamic-complete-environment-variable): Use them.
15598 (shell-dynamic-complete-as-environment-variable)
15599 (shell-dynamic-complete-as-command): Remove.
15600 (shell-match-partial-variable): Match past point.
15601 * comint.el: Clean up use of completion-at-point-functions.
15602 (comint-completion-at-point): New function.
15603 (comint-mode): Use it completion-at-point-functions.
15604 (comint-dynamic-complete): Make it obsolete.
15605 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
15606 (comint-c-a-p-replace-by-expanded-history): New function.
15607 (comint-dynamic-complete-functions)
15608 (comint-replace-by-expanded-history): Use it.
15609 * minibuffer.el (completion-table-with-terminator): Allow dynamic
15610 termination strings. Try harder to avoid second try-completion.
15611 (completion-in-region-mode-map): Disable bindings that don't work yet.
15612
2dbaa080
SM
15613 * comint.el: Use lexical-binding. Require CL.
15614 (comint-dynamic-complete-functions): Use comint-filename-completion.
15615 (comint-completion-addsuffix): Tweak custom type.
15616 (comint-filename-completion, comint--common-suffix)
15617 (comint--common-quoted-suffix, comint--table-subvert)
15618 (comint--complete-file-name-data): New functions.
15619 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
15620 (comint-dynamic-list-filename-completions): Use them.
15621 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 15622
2dbaa080
SM
15623 * minibuffer.el (completion-in-region-mode):
15624 Keep completion-in-region-mode--predicate global.
15625 (completion-in-region--postch):
15626 Assume completion-in-region-mode--predicate is not null.
15627
c79a6f38
SM
15628 * progmodes/flymake.el (flymake-start-syntax-check-process):
15629 Obey `dir'. Simplify.
15630
024ff170
SM
15631 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
15632 we're in VC after all.
15633
1c6c854e
CS
156342011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
15635
15636 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 15637 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
15638 (vc-version-diff): Use vc-diff-build-argument-list-internal.
15639
bed7f140
SM
156402011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
15641
332e62ab
SM
15642 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
15643 add sanity check.
15644
bed7f140
SM
15645 * obsolete/erc-hecomplete.el: Make obsolete.
15646 * obsolete/: Standardize obsolescence info in the header.
15647
f195c582
GM
156482011-04-20 Glenn Morris <rgm@gnu.org>
15649
15650 * calendar/solar.el (solar-horizontal-coordinates):
15651 Use the longitude argument rather than `calendar-longitude'.
15652 (solar-date-next-longitude): Remove unused locals.
15653
cb79b8c0
VJL
156542011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
15655
15656 * whitespace.el: New version 13.2.1.
15657
156582011-04-20 felix <EmacsWiki> (tiny change)
15659
d8e4b68b 15660 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
15661 switching between major modes on a file.
15662
602ea69d
SM
156632011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
15664
15665 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
15666 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
15667 multi-line comments as well.
15668
06b60517
JB
156692011-04-19 Juanma Barranquero <lekktu@gmail.com>
15670
15671 Lexical-binding cleanup.
15672
15673 * arc-mode.el (archive-mode-revert):
15674 * cmuscheme.el (scheme-interactively-start-process):
15675 * custom.el (custom-initialize-delay):
15676 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
15677 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
15678 * emacs-lock.el (emacs-lock-clear-sentinel):
15679 * ezimage.el (defezimage):
15680 * follow.el (follow-avoid-tail-recenter):
15681 * fringe.el (set-fringe-mode-1):
15682 * generic-x.el (bat-generic-mode-compile):
15683 * help-mode.el (help-info-variable, help-do-xref)
15684 (help-mode-revert-buffer):
15685 * help.el (view-emacs-todo):
15686 * iswitchb.el (iswitchb-completion-help):
15687 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
15688 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
15689 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
15690 * locate.el (locate-update):
15691 * longlines.el (longlines-encode-region)
15692 (longlines-after-change-function):
15693 * outline.el (outline-isearch-open-invisible):
15694 * ps-def.el (declare-function, charset-dimension, char-width)
15695 (encode-char):
15696 * ps-mule.el (ps-mule-plot-string):
15697 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
15698 (recentf-edit-list-select, recentf-edit-list-validate)
15699 (recentf-open-files-action):
15700 * rect.el (delete-whitespace-rectangle-line)
15701 (rectangle-number-line-callback):
15702 * register.el (window-configuration-to-register)
15703 (frame-configuration-to-register):
15704 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
15705 * select.el (xselect-convert-to-string, xselect-convert-to-length)
15706 (xselect-convert-to-targets, xselect-convert-to-delete)
15707 (xselect-convert-to-filename, xselect-convert-to-charpos)
15708 (xselect-convert-to-lineno, xselect-convert-to-colno)
15709 (xselect-convert-to-os, xselect-convert-to-host)
15710 (xselect-convert-to-user, xselect-convert-to-class)
15711 (xselect-convert-to-name, xselect-convert-to-integer)
15712 (xselect-convert-to-atom, xselect-convert-to-identity):
15713 * subr.el (declare, ignore, process-kill-without-query)
15714 (text-clone-maintain):
15715 * terminal.el (te-get-char, te-tic-sentinel):
15716 * tool-bar.el (tool-bar-make-keymap):
15717 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
15718 * type-break.el (type-break-mode, type-break-noninteractive-query):
15719 * view.el (View-back-to-mark):
15720 * wid-browse.el (widget-browse-action, widget-browse-widget)
15721 (widget-browse-widgets, widget-browse-sexp):
15722 * widget.el (define-widget-keywords):
15723 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
15724 Mark unused parameters.
15725
15726 * align.el (align-adjust-col-for-rule): Mark unused parameter.
15727 (align-areas): Remove unused variable `look'.
15728 (align-region): Remove unused variables `real-end' and `pos-list'.
15729
15730 * apropos.el (apropos-score-doc): Remove unused variable `i'.
15731
15732 * bindings.el (mode-line-modified, mode-line-remote):
15733 Mark unused parameters.
15734 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
15735
15736 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
15737 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
15738
15739 * comint.el (comint-history-isearch-pop-state)
15740 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
15741 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
15742 (comint-substitute-in-file-name): Doc fix.
15743
15744 * completion.el (cmpl-statistics-block): Mark unused parameter.
15745 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
15746 (save-completions-to-file, load-completions-from-file):
15747 Remove unused local variable `e'.
15748
15749 * composite.el (compose-chars): Remove unused variable `len'.
15750 (lgstring-insert-glyph): Remove unused variable `g'.
15751 (compose-glyph-string): Remove unused variables `ascent',
15752 `descent', `lbearing' and `rbearing'.
15753 (compose-glyph-string-relative): Remove unused variables
15754 `lbearing', `rbearing' and `wadjust'.
15755 (compose-gstring-for-graphic): Remove unused variables `header',
15756 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
15757 (compose-gstring-for-terminal): Remove unused variables `header'
15758 and `nchars'. Use `let', not `let*'.
15759
15760 * cus-edit.el (Custom-set, Custom-save, custom-reset)
15761 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
15762 (Custom-buffer-done, custom-buffer-create-internal)
15763 (custom-browse-visibility-action, custom-browse-group-tag-action)
15764 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
15765 (widget-magic-mouse-down-action, custom-toggle-parent)
15766 (custom-add-parent-links, custom-toggle-hide-variable)
15767 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
15768 (custom-toggle-hide-face, face, hook, custom-group-link-action)
15769 (custom-face-menu-create, custom-variable-menu-create, get)
15770 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
15771 (custom-reset-standard-save-and-update): Remove unused variable `value'.
15772 (customize-apropos): Remove unused variable `tests'.
15773 (custom-group-value-create): Remove unused variable `hidden-p'.
15774 (sort-fold-case): Declare.
15775
15776 * cus-theme.el (custom-reset-standard-faces-list)
15777 (custom-reset-standard-variables-list): Declare.
15778 (customize-create-theme, custom-theme-revert, custom-theme-write)
15779 (custom-theme-choose-mode, customize-themes, custom-theme-save):
15780 Mark unused parameters.
15781
15782 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
15783
15784 * delim-col.el (delimit-columns-max): Move defvar before first use.
15785
15786 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 15787 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
15788
15789 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
15790 (auto-insert): Declare.
15791 (desktop-restore-file-buffer): Rename desktop-* parameters;
15792 mark unused ones.
15793 (desktop-create-buffer): Rename desktop-* parameters and bind them.
15794 (desktop-buffer): Rename desktop-* parameters.
15795
15796 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
15797 (dframe-reposition-frame-xemacs, dframe-help-echo)
15798 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
15799 Mark unused parameters.
15800
15801 * dired-aux.el (backup-extract-version-start, overwrite-query)
15802 (overwrite-backup-query, rename-regexp-query)
15803 (rename-non-directory-query): Declare.
15804 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
15805 (dired-add-entry): Remove unused variable `orig-file-name'.
15806 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
15807 Use parameter PRESERVE-TIME instead of accessing dynamic variable
15808 `dired-copy-preserve-time' directly.
15809 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
15810 (dired-insert-subdir-newpos): Rename unused variable `pos'.
15811
15812 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
15813 (dired-virtual-revert, dired-make-relative-symlink):
15814 Mark unused parameters.
15815 (manual-program): Declare.
15816 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
15817 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
15818 wrapped in `with-no-warnings' to avoid replacing one warning by another.
15819
15820 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
15821
15822 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
15823
15824 * echistory.el (electric-history-in-progress, Helper-return-blurb):
15825 Declare.
15826
15827 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
15828
15829 * electric.el (Electric-command-loop): Rename parameter
15830 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
15831
15832 * expand.el (expand-in-literal): Remove unused variable `here'.
15833
15834 * facemenu.el (facemenu-add-new-color):
15835 Remove unused variable `docstring'.
15836
15837 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
15838 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
15839 (face-attr-construct): Mark unused parameter. Doc fix.
15840 (read-color): Remove unused variable `hex-string'.
15841
15842 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
15843 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
15844 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
15845 (display-buffer-other-frame): Remove unused variable `old-window'.
15846 (kill-buffer-hook): Declare.
15847 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
15848 Mark unused parameters.
15849 (after-find-file): Pass 1 to `auto-save-mode', not t.
15850
15851 * files-x.el (auto-insert): Declare.
15852 (modify-file-local-variable-prop-line): Remove unused variable `val'.
15853
15854 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 15855 variable `buf'. Mark unused parameter.
06b60517
JB
15856 (find-lisp-insert-directory): Mark unused parameter.
15857
15858 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
15859 (format-encode-region): Remove unused variables `cur-buf' and `result'.
15860 (format-common-tail): Remove, unused.
15861 (format-deannotate-region): Remove unused variable `loc'.
15862 (format-annotate-region): Remove unused variable `p'.
15863 (format-annotate-single-property-change): Remove unused variables
15864 `default' and `tail'.
15865
15866 * forms.el (read-file-filter): Declare.
15867 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
15868
15869 * frame.el (frame-creation-function-alist): Mark unused parameter.
15870 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
15871
15872 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
15873 Remove unused parameters.
15874 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
15875 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
15876
15877 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
15878 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
15879 (hfy-prepare-tag-map): Mark unused parameters.
15880 (htmlfontify-buffer): Use `called-interactively-p'.
15881
15882 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
15883 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
15884 (ibuffer-do-occur): Mark unused parameters.
15885 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
15886 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
15887
15888 * ibuffer.el: Don't quote `lambda'.
15889 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
15890 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
15891 Mark unused parameters.
15892
15893 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
15894 (ido-completing-read): Mark unused parameters.
15895 (ido-copy-current-word): Mark unused parameters;
15896 remove unused variable `name'.
15897 (ido-sort-merged-list): Remove unused parameter `dirs'.
15898
15899 * ielm.el (ielm-input-sender): Mark unused parameter.
15900 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
15901 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
15902 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
15903 `ielm-string' as a dynamic variable accessible from the IELM prompt.
15904 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
15905
15906 * image-dired.el (image-dired-display-thumbs): Remove unused
15907 variables `curr-file' and `count'.
15908 (image-dired-remove-tag): Remove unused variable `start'.
15909 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
15910 variable `curr-file'
15911 (image-dired-rotate-original): Remove unused variable `temp-file'.
15912 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
15913 Remove unused variable `file'.
15914 (image-dired-gallery-generate): Remove unused variable `curr'.
15915 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
15916
15917 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
15918
15919 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
15920
15921 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
15922
15923 * isearch.el (minibuffer-history-symbol): Declare.
15924 (isearch-edit-string): Remove unused variable `err'.
15925 (isearch-message-prefix, isearch-message-suffix):
15926 Mark unused parameters.
15927
15928 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
15929
15930 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
15931
15932 * makesum.el (double-column): Remove unused variable `cnt'.
15933
15934 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
15935 (ido-ignore-item-temp-list): Declare.
15936
15937 * mouse-drag.el (mouse-drag-throw): Remove unused variables
15938 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
15939 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
15940 (mouse-drag-drag): Remove unused variables `mouse-delta' and
15941 `mouse-col-delta'.
15942
15943 * mouse-sel.el (mouse-extend-internal):
15944 Remove unused variable `orig-window-frame'.
15945
15946 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
15947 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
15948 Move declarations before first use.
15949 (pcomplete-opt): Mark unused parameters; doc fix.
15950
15951 * proced.el (proced-revert): Mark unused parameter.
15952 (proced-send-signal): Remove unused variable `err'.
15953
15954 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
15955 Rename parameter PREFIX-ARG to ARG.
15956 (ps-basic-plot-string, ps-basic-plot-whitespace):
15957 Mark unused parameters.
15958
15959 * replace.el (replace-count): Define.
15960 (occur-revert-function): Mark unused parameters.
15961 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
15962 (isearch-case-fold-search, isearch-string): Declare.
15963 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
15964 bind `case-fold-search'. Remove unused variables `beg' and `end',
15965 and simplify.
15966 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
15967 COUNT and bind `replace-count'.
15968 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
15969 to COUNT.
15970
15971 * savehist.el (print-readably, print-string-length): Declare.
15972
15973 * shadowfile.el (shadow-expand-cluster-in-file-name):
15974 Remove unused variable `cluster'.
15975 (shadow-copy-file): Remove unused variable `i'.
15976 (shadow-noquery, shadow-clusters, shadow-site-cluster)
15977 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
15978 (shadow-define-literal-group, shadow-define-regexp-group)
15979 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
15980
15981 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
15982 (shell): Use `called-interactively-p'.
15983 (shell-directory-tracker): Remove unused variable `chdir-failure'.
15984
15985 * simple.el (compilation-context-lines, comint-file-name-quote-list)
15986 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
15987 (delete-backward-char): Remove unused variable `ocol'.
15988 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
15989 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
15990 (event-apply-hyper-modifier, event-apply-shift-modifier)
15991 (event-apply-control-modifier, event-apply-meta-modifier):
15992 Mark unused parameters.
15993 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
15994 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
15995
15996 * speedbar.el (speedbar-ignored-directory-expressions)
15997 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
15998 (speedbar-find-file, speedbar-dir-follow)
15999 (speedbar-directory-buttons-follow, speedbar-tag-find)
16000 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
16001 (speedbar-buffers-line-directory, speedbar-buffer-click):
16002 Mark unused parameters.
16003 (speedbar-tag-file): Remove unused variable `mode'.
16004 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
16005
16006 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
16007
16008 * talk.el (talk): Remove unused variable `display'.
16009
16010 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
16011 (tar-write-region-annotate): Mark unused parameter.
16012
16013 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
16014 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
16015 Declare them, wrapped in `with-no-warnings' to avoid replacing one
16016 warning by another.
16017
16018 * time-stamp.el (time-stamp-string-preprocess):
16019 Remove unused variable `require-padding'.
16020
16021 * tree-widget.el (widget-glyph-enable): Declare.
16022 (tree-widget-action): Mark unused parameter.
16023
16024 * w32-fns.el (x-get-selection): Mark unused parameter.
16025 (autoload-make-program, generated-autoload-file): Declare.
16026
16027 * wdired.el (wdired-revert): Mark unused parameters.
16028 (wdired-xcase-word): Remove unused variable `err'.
16029
16030 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
16031 (whitespace-help-scroll): Remove unused variable `data-help'.
16032
16033 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
16034 (widget-image-insert, widget-after-change, default)
16035 (widget-default-format-handler, widget-default-notify)
16036 (widget-default-prompt-value, widget-info-link-action)
16037 (widget-url-link-action, widget-function-link-action)
16038 (widget-variable-link-action, widget-file-link-action)
16039 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
16040 (widget-field-prompt-internal, widget-field-action, widget-field-match)
16041 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
16042 (widget-insert-button-action, widget-delete-button-action, visibility)
16043 (widget-documentation-link-action, widget-documentation-string-action)
16044 (widget-const-prompt-value, widget-regexp-match, symbol)
16045 (widget-coding-system-prompt-value)
16046 (widget-key-sequence-value-to-external, sexp)
16047 (widget-sexp-value-to-internal, character, vector, cons)
16048 (widget-choice-prompt-value, widget-boolean-prompt-value)
16049 (widget-color--choose-action): Mark unused parameters.
16050 (widget-item-match-inline, widget-choice-match-inline)
16051 (widget-checklist-match, widget-checklist-match-inline)
16052 (widget-group-match): Rename parameter VALUES to VALS.
16053 (widget-field-value-set): Remove unused variable `size'.
16054 (widget-color-action): Remove unused variables `value' and `start'.
16055
16056 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 16057 variable `dir'. Doc fix.
06b60517
JB
16058 (windmove-find-other-window): Don't pass it.
16059
16060 * window.el (count-windows): Mark unused parameter.
16061 (bw-adjust-window): Remove unused variable `err'.
16062
16063 * woman.el (woman-file-name): Remove unused variable `default'.
16064 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
16065 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
16066 (global-font-lock-mode): Declare.
16067 (woman-decode-region): Mark unused parameter.
16068 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
16069
16070 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
16071 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
16072 (x-dnd-handle-moz-url): Remove unused variable `title'.
16073 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
16074
16075 * xml.el (xml-parse-tag, xml-parse-attlist):
16076 Remove unused variable `pos'.
16077
bc4f7f3d
GM
160782011-04-19 Glenn Morris <rgm@gnu.org>
16079
16080 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
16081 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
16082 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
16083 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
16084 * calendar/cal-html.el (cal-html-insert-minical):
16085 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
16086 (calendar-mark-date-pattern):
16087 Prefix "unused" locals.
16088
16089 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
16090 optional argument `style'.
16091
16092 * calendar/appt.el (appt-make-list):
16093 * calendar/cal-china.el (calendar-chinese-date-string):
16094 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
16095 (diary-hebrew-yahrzeit):
16096 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
16097 * calendar/calendar.el (calendar-generate-window):
16098 * calendar/time-date.el (time-to-days):
16099 Remove unused local variables.
16100
16a43933
CY
161012011-04-18 Chong Yidong <cyd@stupidchicken.com>
16102
16103 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
16104 glyphless-char-display table.
16105 (tabulated-list-glyphless-char-display): New var.
16106
7eed1860
SS
161072011-04-18 Sam Steingold <sds@gnu.org>
16108
16109 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
16110 to acknowledgments.
16111
4d2d1ccd
GM
161122011-04-17 Glenn Morris <rgm@gnu.org>
16113
16114 * calendar/diary-lib.el (diary-sexp-entry):
16115 * calendar/holidays.el (holiday-sexp):
16116 Set debug-on-error rather than the removed stack-trace-on-error.
16117
239da61d
GM
161182011-04-16 Glenn Morris <rgm@gnu.org>
16119
16120 * progmodes/f90.el: Use lexical-binding.
16121 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
16122
8b05752a
SM
161232011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16124
daca8ba5
SM
16125 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
16126 (mail-mode): Setup mailalias completion here instead.
16127 * mail/mailalias.el: Use lexical-binding.
16128 (pattern, mailalias-done): Declare dynamic.
16129 (mail-completion-at-point-function): New function, from mail-complete.
16130 (mail-complete): Use it.
16131 (mail-completion-expand): New function.
16132 (mail-get-names): Use it.
16133 (mail-directory, mail-directory-process, mail-directory-stream):
16134 Don't use `pattern' for lexically bound arg.
16135
6f542485
SM
16136 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
16137
037e7c3f
SM
16138 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
16139 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
16140 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
16141
8b05752a
SM
16142 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
16143 (byte-save-window-excursion, byte-temp-output-buffer-setup)
16144 (byte-interactive-p): Define them again, for use when inlining
16145 old code.
16146
49093f60
JB
161472011-04-15 Juanma Barranquero <lekktu@gmail.com>
16148
16149 * loadup.el: Use `string-to-number', not `string-to-int'.
16150
b5b8e7de
SM
161512011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16152
16153 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
16154 gud-gdb-complete-command.
16155 (gud-gdb-completions): New function, from gud-gdb-complete-command.
16156 (gud-gdb-completion-at-point): New function.
16157 (gud-gdb-completions): Remove.
16158
f42efeb5
MA
161592011-04-14 Michael Albinus <michael.albinus@gmx.de>
16160
49093f60
JB
16161 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
16162 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
16163 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
16164 whether `executable-find' is bound.
f42efeb5
MA
16165
16166 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
16167
e240cc21
SM
161682011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16169
16170 * minibuffer.el (completion-in-region-mode-predicate)
16171 (completion-in-region-mode--predicate): New vars.
16172 (completion-in-region, completion-in-region--postch)
16173 (completion-in-region-mode): Use them.
16174 (completion--capf-wrapper): Also return the hook function.
16175 (completion-at-point, completion-help-at-point):
16176 Adjust and provide a predicate.
c2bd2ab0
SM
16177
16178 Preserve arg names for advice of subr and lexical functions (bug#8457).
16179 * help-fns.el (help-function-arglist): Consolidate the subr and
16180 new-byte-code cases. Add argument `preserve-names' to extract names
16181 from the docstring when needed.
16182 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
16183 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
16184 (ad-arglist): Use help-function-arglist's new arg.
16185 (ad-definition-type): Use cond.
16186
c183f693
JB
161872011-04-13 Juanma Barranquero <lekktu@gmail.com>
16188
06641a47
JB
16189 * autorevert.el (auto-revert-handler):
16190 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
16191 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
16192 Don't quote lambda.
16193
c183f693
JB
16194 * image-mode.el (image-transform-set-scale):
16195 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
16196
1e3b6001
G
161972011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
16198
16199 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 16200 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
16201 Upgrades via gnutls-cli are too slow to be done opportunistically.
16202
2d6af8dd
JB
162032011-04-12 Juanma Barranquero <lekktu@gmail.com>
16204
16205 * dframe.el (dframe-current-frame): Remove spurious quote.
16206
c0749a51
GM
162072011-04-12 Glenn Morris <rgm@gnu.org>
16208
088d0d61
GM
16209 * calendar/cal-tex.el (cal-tex-end-document):
16210 Try to automatically use latin1 input if needed.
16211
c0749a51
GM
16212 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
16213 Don't try to cons a mark onto an empty element.
16214
5c90fde0
LL
162152011-04-11 Leo Liu <sdl.web@gmail.com>
16216
16217 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
16218 buffers.
16219 (ido-kill-buffer-at-head): Support killing virtual buffers.
16220
369e974d
CY
162212011-04-10 Chong Yidong <cyd@stupidchicken.com>
16222
16223 * minibuffer.el (completion-show-inline-help): New var.
16224 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
16225 (minibuffer-force-complete, minibuffer-complete-word):
16226 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
16227
16228 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
16229 to avoid interference from inline help (Bug#5849).
16230
37f1c930
LL
162312011-04-10 Leo Liu <sdl.web@gmail.com>
16232
099c39a4
JB
16233 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
16234 Fix typo.
37f1c930 16235
a32d4040
CY
162362011-04-09 Chong Yidong <cyd@stupidchicken.com>
16237
16238 * image-mode.el (image-toggle-display-image): Signal an error if
16239 not in Image mode.
16240 (image-transform-mode, image-transform-resize)
16241 (image-transform-set-rotation): Doc fix.
daca8ba5 16242 (image-transform-set-resize): Delete.
a32d4040
CY
16243 (image-transform-set-scale, image-transform-fit-to-height)
16244 (image-transform-fit-to-width): Handle image-toggle-display-image
16245 and image-transform-resize directly.
16246
099c39a4 162472011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
16248
16249 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
16250 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
16251 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
16252 (doc-view-mode-map): Add bindings for the new functions.
16253
099c39a4 162542011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 16255
4d61f28d 16256 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
16257 Fix typo in docstring.
16258
3726838a
EZ
162592011-04-08 Eli Zaretskii <eliz@gnu.org>
16260
04f33f1e
EZ
16261 * files.el (file-size-human-readable): Produce one digit after
16262 decimal, like "ls -lh" does.
16263
16264 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
16265 the file size representation.
16266
3726838a
EZ
16267 * simple.el (list-processes): If async subprocesses are not
16268 available, error out with a clear error message.
16269
cbb59342
CY
162702011-04-08 Chong Yidong <cyd@stupidchicken.com>
16271
16272 * help.el (help-form-show): New function, to be called from C.
16273 Put help-form output in a buffer named differently than *Help*.
16274
e3971c44
EZ
162752011-04-08 Eli Zaretskii <eliz@gnu.org>
16276
16277 * files.el (file-size-human-readable): New function.
16278
16279 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
16280 computing the representation inline. Don't require `cl'.
16281
12544bbe
GM
162822011-04-08 Glenn Morris <rgm@gnu.org>
16283
a1de6c6a
GM
16284 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
16285
3c4671f4
GM
16286 * net/browse-url.el (browse-url-firefox):
16287 Test system-type, not system-configuration.
16288
b605679c
GM
16289 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
16290 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
16291 Use log-edit-empty-buffer-p. (Bug#7598)
16292
56442f0c
GM
16293 * net/rlogin.el (rlogin-process-connection-type): Simplify.
16294 (rlogin-mode-map): Initialize in the defvar.
16295 (rlogin): Use ignore-errors.
16296
12544bbe
GM
16297 * replace.el (occur-mode-map): Some fixes for menu items.
16298
eb237b0f
AH
162992011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
16300
16301 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
16302
7d668f2c
CY
163032011-04-06 Chong Yidong <cyd@stupidchicken.com>
16304
e67a13ab
CY
16305 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
16306 issuing unused warnings.
16307
16308 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
16309 macro directly.
16310
7d668f2c
CY
16311 * simple.el: Lisp reimplement of list-processes. Based on an
16312 earlier reimplementation by Leo Liu, but using tabulated-list.el.
16313 (process-menu-mode): New major mode.
16314 (list-processes--refresh, list-processes):
16315 (process-menu-visit-buffer): New functions.
16316
16317 * files.el (save-buffers-kill-emacs): Don't assume any return
16318 value of list-processes, which is undocumented anyway.
16319
a83ec3c9
CY
163202011-04-06 Chong Yidong <cyd@stupidchicken.com>
16321
16322 * emacs-lisp/tabulated-list.el: New file.
16323
e91a96fe
CY
16324 * emacs-lisp/package.el: Use Tabulated List mode.
16325 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
16326 (package-menu-mode): Derive from tabulated-list-mode. Set up the
16327 table format using Tabulated List mode variables.
16328 (package--push): New macro, replacing package-list-maybe-add.
16329 (package-menu--generate): Use package--push. Renamed from
16330 package--generate-package-list.
16331 (package-menu-refresh, list-packages): Use it.
daca8ba5 16332 (package-menu--print-info): Rename from package-print-package.
e91a96fe 16333 Return insertion data instead of inserting it directly.
099c39a4
JB
16334 (package-menu-describe-package, package-menu-execute):
16335 Use tabulated-list-get-id.
e91a96fe
CY
16336 (package-menu-mark-delete, package-menu-mark-install)
16337 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
16338 (package-menu-mark-obsolete-for-deletion):
16339 Use tabulated-list-put-tag.
e91a96fe
CY
16340 (package--list-packages, package-menu-revert)
16341 (package-menu-get-package, package-menu-get-version)
16342 (package-menu-sort-by-column): Functions deleted.
16343 (package-menu-package-list, package-menu-sort-key): Vars deleted.
16344 (package-menu--status-predicate, package-menu--version-predicate)
16345 (package-menu--name-predicate)
16346 (package-menu--description-predicate): Handle arguments in the
16347 Tabulated List format.
16348 (package-list-packages-no-fetch): Call list-packages.
16349
3e214b50
JB
163502011-04-06 Juanma Barranquero <lekktu@gmail.com>
16351
16352 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 16353 (after-find-file): Don't bind it.
3e214b50
JB
16354 (revert-buffer-in-progress-p): New variable.
16355 (revert-buffer): Bind it.
16356 Pass nil for `after-find-file-from-revert-buffer'.
16357
16358 * saveplace.el (save-place-find-file-hook): Use new variable
16359 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
16360
3f0f1700
GM
163612011-04-06 Glenn Morris <rgm@gnu.org>
16362
c0274801
GM
16363 * Makefile.in (AUTOGEN_VCS): New variable.
16364 (autoloads): Use $AUTOGEN_VCS.
16365
3f0f1700
GM
16366 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
16367 * calendar/calendar.el (calendar-mode-map):
16368 Check for toolkit scroll bars. (Bug#8305)
16369
41ea9e48
CY
163702011-04-05 Chong Yidong <cyd@stupidchicken.com>
16371
16372 * minibuffer.el (completion-in-region--postch)
16373 (completion-in-region-mode): Remove unnecessary messages.
16374
6194c800
JB
163752011-04-05 Juanma Barranquero <lekktu@gmail.com>
16376
33256f14
JB
16377 * font-lock.el (font-lock-refresh-defaults):
16378 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
16379 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
16380
6194c800
JB
16381 * info.el (Info-directory-list, Info-read-node-name-2)
16382 (Info-split-parameter-string): Doc fixes.
16383 (Info-virtual-nodes): Reflow docstring.
16384 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
16385 (Info-apropos-toc-nodes, info-finder, Info-get-token)
16386 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
16387 Fix typos in docstrings.
16388 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
16389 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
16390 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
16391 (Info-restore-desktop-buffer): Mark unused parameters.
16392 (Info-directory-find-file, Info-directory-find-node)
16393 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
16394 (Info-virtual-index-find-node, Info-apropos-find-file)
16395 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 16396 Mark unused parameters; fix typos in docstrings.
6194c800
JB
16397 (Info-virtual-index): Remove unused local variable `nodename'.
16398
b87a8200 163992011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 16400
b87a8200
DD
16401 * net/rcirc.el: Update my e-mail address.
16402 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 16403
3b2ff876
CY
164042011-04-05 Chong Yidong <cyd@stupidchicken.com>
16405
16406 * startup.el (command-line): Save the cursor's theme-face
16407 directly, instead of using face-override-spec.
16408
16409 * custom.el (load-theme): Minor optimization in assigning faces.
16410
8d17e7ca
JB
164112011-04-04 Juanma Barranquero <lekktu@gmail.com>
16412
16413 * help-fns.el (describe-variable): Complete all variables having
16414 documentation, including keywords.
16415 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
16416
2fbc1934
JB
164172011-04-04 Juanma Barranquero <lekktu@gmail.com>
16418
16419 Convert to lexical-binding.
16420
16421 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
16422 (bs--get-marked-string, bs--get-modified-string)
16423 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
16424 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
16425 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
16426
16427 * ehelp.el (electric-help-execute-extended)
16428 (electric-help-ctrl-x-prefix):
16429 * hexl.el (hexl-revert-buffer-function):
16430 * linum.el (linum-after-change, linum-after-scroll):
16431 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
16432
16433 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
16434
74f50695
DU
164352011-04-04 Daiki Ueno <ueno@unixuser.org>
16436
16437 * epa-dired.el:
16438 * epa-mail.el:
16439 * epa-hook.el:
16440 * epa-file.el:
16441 * epa.el:
16442 * epg.el: Use lexical binding.
16443
c11325f7
CY
164442011-04-03 Chong Yidong <cyd@stupidchicken.com>
16445
0d9e9a12
CY
16446 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
16447
c11325f7 16448 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
16449 dictionary case for flyspell-mark-duplications-exceptions.
16450 Use regexp matching for languages.
c11325f7
CY
16451 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
16452 default dictionary (Bug#7926).
16453
da91b5f2
CY
164542011-04-02 Chong Yidong <cyd@stupidchicken.com>
16455
099c39a4
JB
16456 * emacs-lisp/package.el (package--with-work-buffer):
16457 Recognize https URLs.
da91b5f2 16458
099c39a4
JB
16459 * net/network-stream.el: Move from gnus/proto-stream.el.
16460 Change prefix to network-stream throughout.
da91b5f2
CY
16461 (open-protocol-stream): Merge into open-network-stream, leaving
16462 open-protocol-stream as an alias. Handle nil BUFFER args.
16463
16464 * subr.el (open-network-stream): Move to net/network-stream.el.
16465
afa8e9f6
GM
164662011-04-02 Glenn Morris <rgm@gnu.org>
16467
1d2e369d
GM
16468 * find-dired.el (find-exec-terminator): New option.
16469 (find-ls-option): Test for -ls support.
16470 (find-ls-subdir-switches): Test for -b in find-ls-option.
16471 (find-dired, find-grep-dired): Doc fixes.
16472 (find-dired): Use find-exec-terminator.
16473
8abb7da8 16474 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
16475 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
16476 (find-name-arg): Remove purecopy.
8abb7da8 16477
f3ca7378
GM
16478 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
16479 (grep-compute-defaults): Check for `-exec COMMAND +' support.
16480 Set grep-find-use-xargs, grep-find-command, and grep-find-template
16481 accordingly. Don't add the null-device if not needed.
16482
afa8e9f6
GM
16483 * files.el (save-some-buffers): Doc fix.
16484
35eae264
EZ
164852011-04-02 Eli Zaretskii <eliz@gnu.org>
16486
16487 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
16488
26b51db5
JB
164892011-04-01 Juanma Barranquero <lekktu@gmail.com>
16490
16491 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
16492 Use `dolist' rather than `mapcar'.
16493
7200d79c
SM
164942011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16495
03408648 16496 Add lexical binding.
7200d79c 16497
03408648
SM
16498 * subr.el (apply-partially): Use new closures rather than CL.
16499 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
16500 (dolist, dotimes): Use slightly different expansion for lexical code.
16501 (functionp): Move to C.
16502 (letrec): New macro.
16503 (with-wrapper-hook): Use it and apply-partially instead of CL.
16504 (eval-after-load): Preserve lexical-binding.
16505 (save-window-excursion, with-output-to-temp-buffer): Turn them
16506 into macros.
7200d79c 16507
03408648
SM
16508 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
16509
16510 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
16511 than the arglist.
16512 (help-add-fundoc-usage): Don't add `Not documented'.
16513 (help-function-arglist): Handle closures, subroutines, and new
16514 byte-code-functions.
16515 (help-make-usage): Remove leading underscores.
16516 (describe-function-1): Handle closures.
16517 (describe-variable): Use special-variable-p for completion.
16518
16519 * files.el (lexical-binding): Declare safe.
f488fb65 16520
03408648
SM
16521 * emacs-lisp/pcase.el: Don't use destructuring-bind.
16522 (pcase--memoize): Rename from pcase-memoize. Change weakness.
16523 (pcase): Add `let' pattern.
16524 Change memoization so it actually works.
16525 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
16526 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
16527 <let>: New case.
f488fb65 16528
03408648
SM
16529 * emacs-lisp/macroexp.el: Use lexical binding.
16530 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
16531 Don't convert ' to #' without checking that it's indeed quoting
16532 a lambda.
16533
16534 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 16535 Use eval-sexp-add-defvars.
03408648
SM
16536 (eval-sexp-add-defvars): New fun.
16537
16538 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
16539
16540 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
16541 Don't autoload.
16542 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
16543 than the internal `byte-compile-lambda'.
16544 (defmethod): Don't hide code under quotes.
16545 (eieio-defmethod): New `code' argument.
16546
16547 * emacs-lisp/eieio-comp.el: Remove.
16548
16549 * emacs-lisp/edebug.el (edebug-eval-defun)
16550 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
16551 (edebug-toggle): Avoid `eval'.
16552
16553 * emacs-lisp/disass.el (disassemble-internal): Handle new
16554 `closure' objects.
16555 (disassemble-1): Handle new byte codes.
16556
16557 * emacs-lisp/cl.el (pushnew): Silence warning.
16558
16559 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
16560 (cl-byte-compile-throw): Remove.
16561 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
16562
16563 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
16564 closures.
16565
16566 * emacs-lisp/cconv.el: New file.
16567
16568 * emacs-lisp/bytecomp.el: Use lexical binding instead of
16569 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
16570 (byte-compile-initial-macro-environment):
16571 Handle declare-function here.
16572 (byte-compile--lexical-environment): New var.
16573 (byte-stack-ref, byte-stack-set, byte-discardN)
16574 (byte-discardN-preserve-tos): New lap codes.
16575 (byte-interactive-p): Don't use any more.
16576 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
16577 New macros.
16578 (byte-compile-lapcode): Use them and handle new lap codes.
16579 (byte-compile-obsolete): Remove.
16580 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
16581 (byte-compile-arglist-warn): Check late def of inlinable funs.
16582 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
16583 since they should have been expanded by now.
16584 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
16585 (byte-compile-from-buffer): Remove unused second arg.
16586 (byte-compile-preprocess): New function.
16587 (byte-compile-toplevel-file-form): New function to distinguish
16588 file-form calls from outside from file-form calls from hunk-handlers.
16589 (byte-compile-file-form): Simplify.
16590 (byte-compile-file-form-defsubst): Remove.
16591 (byte-compile-file-form-defmumble): Simplify now that
16592 byte-compile-lambda always returns a byte-code-function.
16593 (byte-compile): Preprocess.
16594 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
16595 Remove, not used any more.
16596 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
16597 (byte-compile-make-args-desc): New funs.
16598 (byte-compile-lambda): Handle lexical functions. Always return
16599 a byte-code-function.
16600 (byte-compile-reserved-constants): New var, to make up room for
16601 closed-over variables.
16602 (byte-compile-constants-vector): Obey it.
16603 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
16604 (byte-compile-macroexpand-declare-function): New function.
16605 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
16606 byte-code-functions.
16607 (byte-compile-form): Check obsolescence here.
16608 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
16609 (byte-compile-variable-ref): Remove.
16610 (byte-compile-dynamic-variable-op): New fun.
16611 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
16612 (byte-compile-variable-set): New funs.
16613 (byte-compile-discard): Add 2 args.
16614 (byte-compile-stack-ref, byte-compile-stack-set)
16615 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
16616 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
16617 macroexpand-all instead.
16618 (byte-compile-quote-form): Remove.
16619 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
16620 (byte-compile-bind, byte-compile-unbind): New funs.
16621 (byte-compile-let): Handle let* and lexical binding.
16622 (byte-compile-let*): Remove.
16623 (byte-compile-catch, byte-compile-unwind-protect)
16624 (byte-compile-track-mouse, byte-compile-condition-case):
16625 Handle a new :fun-body form, used for lexical scoping.
16626 (byte-compile-save-window-excursion)
16627 (byte-compile-with-output-to-temp-buffer): Remove.
16628 (byte-compile-defun): Simplify.
16629 (byte-compile-stack-adjustment): New fun.
16630 (byte-compile-out): Use it.
16631 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
16632
16633 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
16634 handler any more.
16635
16636 * emacs-lisp/byte-opt.el: Use lexical binding.
16637 (byte-inline-lapcode): Remove (to bytecomp).
16638 (byte-compile-inline-expand): Pay attention to inlining to/from
16639 lexically bound code.
16640 (byte-compile-unfold-lambda): Don't handle byte-code-functions
16641 any more.
16642 (byte-optimize-form-code-walker): Don't handle save-window-excursion
16643 any more and don't call compiler-macros.
16644 (byte-compile-splice-in-already-compiled-code): Remove.
16645 (byte-code): Don't inline any more.
16646 (disassemble-offset): Receive `bytes' as argument rather than via
16647 dynamic scoping.
16648 (byte-compile-tag-number): Declare before first use.
16649 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
16650 `return' even if make-spliceable.
16651 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
16652 obsolete interactive-p.
16653 (byte-optimize-lapcode): Optimize new lap-codes.
16654 Don't trip up on new form of `byte-constant' lap code.
16655
16656 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
16657
16658 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
16659
16660 * custom.el (custom-initialize-default, custom-declare-variable):
16661 Use `defvar'.
16662
16663 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
16664 New variables.
16665 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
16666 (COMPILE_FIRST): Add macroexp and cconv.
16667 * makefile.w32-in: Mirror changes in Makefile.in.
16668
16669 * vc/cvs-status.el:
16670 * vc/diff-mode.el:
16671 * vc/log-edit.el:
16672 * vc/log-view.el:
16673 * vc/smerge-mode.el:
16674 * textmodes/bibtex-style.el:
090bd7cb 16675 * textmodes/css-mode.el:
03408648
SM
16676 * startup.el:
16677 * uniquify.el:
da91b5f2
CY
16678 * minibuffer.el:
16679 * newcomment.el:
16680 * reveal.el:
16681 * server.el:
16682 * mpc.el:
16683 * emacs-lisp/smie.el:
16684 * doc-view.el:
16685 * dired.el:
03408648
SM
16686 * abbrev.el: Use lexical binding.
16687
0f0c1f27
EZ
166882011-04-01 Eli Zaretskii <eliz@gnu.org>
16689
16690 * info.el (info-display-manual): New function.
16691
c82b2579
SM
166922011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
16693
16694 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
16695
221ddf68
TH
166962011-03-31 Tassilo Horn <tassilo@member.fsf.org>
16697
16698 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 16699 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 16700
cba6e77e
GM
167012011-03-31 Glenn Morris <rgm@gnu.org>
16702
e040639f
GM
16703 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
16704
cba6e77e
GM
16705 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
16706
6d0f1c9e
CS
167072011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
16708
16709 * progmodes/python.el (python-default-interpreter)
16710 (python-python-command-args, python-jython-command-args)
16711 (python-which-shell, python-which-args, python-which-bufname)
16712 (python-file-queue, python-comint-output-filter-function)
16713 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
16714 variables and functions.
16715
3e2d70fd
SM
167162011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16717
16718 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
16719 (completion-in-region-mode): New minor mode.
16720 (completion-in-region): Use it.
16721 (completion-in-region--data, completion-in-region-mode-map): New vars.
16722 (completion-in-region--postch): New function.
16723 (completion--capf-misbehave-funs, completion--capf-safe-funs):
16724 New vars.
16725 (completion--capf-wrapper): New function.
16726 (completion-at-point): Use it to track well-behavedness of
16727 hook functions.
16728 (completion-help-at-point): New command.
16729
f3e4086c
JM
167302011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
16731
16732 * vc/add-log.el (add-change-log-entry): Don't use whitespace
16733 syntax class to search for whitespace on a single line
16734 (Message-ID: <4D938140.4030905@redhat.com>).
16735
eb7ffc14
LL
167362011-03-30 Leo Liu <sdl.web@gmail.com>
16737
16738 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
16739 New commands.
16740 (edit-abbrevs-map): Bind them here.
16741 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
16742
d806ab68
KM
167432011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
16744
16745 * allout.el (allout-hide-by-annotation, allout-flag-region):
16746 Reduce possibility of overlay leakage by making them volatile.
16747
16748 * allout-widgets.el (allout-widgets-tally): Define as nil so the
16749 hash is not shared between buffers. Mode initialization is
16750 responsible for giving it a useful starting value.
16751 (allout-item-span): Reduce possibility of overlay leakage by
16752 making them volatile.
16753 (allout-widgets-count-buttons-in-region): Add diagnostic function
16754 for tracking down button overlay leaks.
16755
ea622834
LL
167562011-03-29 Leo Liu <sdl.web@gmail.com>
16757
16758 * ido.el (ido-read-internal): Use the default history var
16759 minibuffer-history if no HISTORY is specified.
16760
b62f8267
G
167612011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
16762
03408648
SM
16763 * net/imap.el (imap-shell-open, imap-process-connection-type):
16764 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
16765 Kerberos, SSL, other subprocesses.
16766
947b6566
LL
167672011-03-28 Leo Liu <sdl.web@gmail.com>
16768
16769 * abbrev.el (abbrev-table-empty-p): New function.
16770 (prepare-abbrev-list-buffer): Place empty abbrev tables after
16771 nonempty ones. (Bug#5937)
16772
5ffb62aa
JD
167732011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16774
16775 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
16776
7a097943
LL
167772011-03-27 Leo Liu <sdl.web@gmail.com>
16778
16779 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
16780 for foreground and background colors.
16781 (ansi-color-make-color-map): Adapt.
16782
c5b40130
LL
167832011-03-25 Leo Liu <sdl.web@gmail.com>
16784
1f48f7d2
LL
16785 * midnight.el (midnight-time-float): Remove. Note it calculates
16786 the microsecond component incorrectly and seconds-to-time does the
16787 same job.
625897ec 16788 Remove redundant (require 'timer).
1f48f7d2 16789
c5b40130
LL
16790 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
16791 (ido-completions): Remove unused arguments. (Bug#8329)
16792
d86d2721
SM
167932011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
16794
16795 * minibuffer.el (completion--flush-all-sorted-completions):
16796 Remove itself from hook.
16797 (completion-at-point): Let the functions perform the completion
16798 immediately and return nil or t.
16799 * comint.el (comint-dynamic-complete-functions): Now identical to
16800 completion-at-point-functions.
16801 (comint-dynamic-list-input-ring): Remove unused var `index'.
16802 (comint--match-partial-filename, comint--unquote&expand-filename):
16803 New funs, split from comint-match-partial-filename.
16804 (comint-dynamic-complete): Use completion-at-point.
16805 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
16806
e8974c48
DA
168072011-03-24 Drew Adams <drew.adams@oracle.com>
16808
16809 * thingatpt.el: Support `defun'.
16810
def71b5e
LL
168112011-03-23 Leo Liu <sdl.web@gmail.com>
16812
cb5af48e
LL
16813 * abbrevlist.el: Move to obsolete/abbrevlist.el.
16814
def71b5e
LL
16815 * help-mode.el (help-mode-finish): Tweak regexp.
16816
927c53e7
GM
168172011-03-23 Glenn Morris <rgm@gnu.org>
16818
18d05bed
GM
16819 * eshell/esh-opt.el (eshell-eval-using-options):
16820 Do not bind unused local variable `eshell-option-stub'.
16821
927c53e7
GM
16822 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
16823
9d0da923
JB
168242011-03-22 Juanma Barranquero <lekktu@gmail.com>
16825
16826 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
16827 keymap variable in `with-no-warnings' to avoid a warning when the
16828 keymap has been already `defconst'ed.
16829
4b978a67
LL
168302011-03-22 Leo Liu <sdl.web@gmail.com>
16831
16832 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
16833 encode all chars in abbrevs; otherwise use emacs-mule or
16834 utf-8-emacs. (Bug#8308)
16835
5fd62452
JB
168362011-03-22 Juanma Barranquero <lekktu@gmail.com>
16837
0b1596c6
JB
16838 * simple.el (backward-delete-char-untabify):
16839 Avoid warning about using `delete-backward-char'.
16840
5fd62452
JB
16841 * image.el (image-type-file-name-regexps): Make it variable.
16842 `imagemagick-register-types' modifies it, and the user may want
16843 to add new extensions for known image types.
16844 (imagemagick-register-types): Throw error if not using ImageMagick.
16845
0b4e93f1
LL
168462011-03-22 Leo Liu <sdl.web@gmail.com>
16847
16848 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
16849 located before rcirc-prompt-end-marker.
16850 (rcirc-complete): Error if point is not after rcirc prompt.
16851 Handle the case when table is nil.
9882e214 16852 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 16853
fccee4ab
CY
168542011-03-22 Chong Yidong <cyd@stupidchicken.com>
16855
16856 * custom.el (custom--inhibit-theme-enable): Make it affect only
16857 custom-theme-set-variables and custom-theme-set-faces.
16858 (provide-theme): Ignore custom--inhibit-theme-enable.
16859 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
16860 (custom-enabling-themes): Delete variable.
d86d2721
SM
16861 (enable-theme): Accept only loaded themes as arguments.
16862 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
16863 (custom-enabled-themes): Forbid themes from setting this.
16864 Eliminate use of custom-enabling-themes.
16865 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 16866
af896da6
LL
168672011-03-21 Leo Liu <sdl.web@gmail.com>
16868
16869 * ido.el (ido-read-internal): Add ido-selected to history instead
16870 of user input.
16871
78f64af0
SM
168722011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
16873
16874 * subr.el (deferred-action-list, deferred-action-function):
16875 Mark obsolete.
16876
b16ac1ec
LL
168772011-03-21 Leo Liu <sdl.web@gmail.com>
16878
810f7698
LL
16879 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
16880 change on 2011-02-13 (bug#8309).
16881
b16ac1ec
LL
16882 * minibuffer.el (read-file-name-function): Change default value.
16883 (read-file-name--defaults): Rename from read-file-name-defaults.
16884 (read-file-name-default): Rename from read-file-name.
16885 (read-file-name): Call read-file-name-function.
16886
4e05e67e
GM
168872011-03-21 Glenn Morris <rgm@gnu.org>
16888
16889 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
16890 Doc fixes.
16891
4359915b
CY
168922011-03-21 Chong Yidong <cyd@stupidchicken.com>
16893
16894 * cus-theme.el: Add missing provide statement.
16895 (customize-create-theme): Extract theme value correctly.
16896 (custom-theme-visit-theme): Autoload.
16897 (customize-create-theme): Prompt before inserting default faces.
16898
1fe275ee
JB
168992011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
16900
16901 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
16902 units and musical notes.
16903
cd394be1 169042011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
16905
16906 * ido.el (ido-read-internal): Use completing-read-default.
16907 (ido-completing-read): Fix compatibility with completing-read.
16908
7d476bde
CO
169092011-03-20 Christian Ohler <ohler@gnu.org>
16910
16911 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
16912 (ert-delete-all-tests): Use `called-interactively-p' rather than
16913 `interactive-p'.
16914 (ert--make-xrefs-region): Respect END.
16915
fe0fb33e
CY
169162011-03-19 Chong Yidong <cyd@stupidchicken.com>
16917
ff854b0b
CY
16918 * dired-aux.el (dired-create-directory): Signal an error if the
16919 directory already exists (Bug#8246).
16920
fe0fb33e
CY
16921 * facemenu.el (list-colors-display): Call list-faces-display
16922 inside with-help-window.
16923 (list-colors-print): Use display property to align the final
16924 column, instead of checking window-width.
16925
576bce32
EZ
169262011-03-19 Eli Zaretskii <eliz@gnu.org>
16927
4d61f28d 16928 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
16929 windows-nt systems.
16930 (emerge-protect-metachars): Quote correctly for ms-dos and
16931 windows-nt systems.
16932
89c41d68 169332011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
16934
16935 * info.el (info-initialize): Replace all uses of `:' with
16936 path-separator for compatibility with non-Unix systems.
16937 Cache quoting of path-separator. (Bug#8258)
16938
b14e3e21 169392011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
16940
16941 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
16942 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
16943 (mouse-avoidance-mode): Fix typos in docstrings.
16944
4525ce3e
CY
169452011-03-19 Chong Yidong <cyd@stupidchicken.com>
16946
16947 * startup.el (package-subdirectory-regexp): Move from package.el.
16948 Omit \\` and \\', and let callers add them.
16949
16950 * emacs-lisp/package.el (package-strip-version)
16951 (package-load-all-descriptors): Add \\` and \\' to
16952 package-subdirectory-regexp before using it.
16953 (package-untar-buffer): New arg DIR; ensure that file untars only
16954 into this expected directory. Remove superfluous delete-region.
16955 (package-unpack): Caller changed.
16956 (package-tar-file-info): Use package-subdirectory-regexp.
16957
a904a09a 169582011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 16959
a904a09a
SM
16960 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
16961 diff-mode-shared-map (bug#8284).
16962 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
16963
169642011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
16965
16966 * calendar/time-date.el (format-seconds): Use assoc instead of
16967 assoc-string, since assoc-string doesn't exist in XEmacs.
16968
171fc304
JB
169692011-03-17 Juanma Barranquero <lekktu@gmail.com>
16970
16971 * custom.el (custom-known-themes): Reflow docstring.
16972 (custom-theme-load-path): Fix typo in docstring.
16973 (load-theme): Fix typo in error message.
16974 (custom-available-themes, custom-variable-theme-value):
16975 Use `let', not `let*'.
16976
d71990a1
JB
169772011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
16978
16979 * calc/README: Mention inclusion of musical notes.
16980
16981 * calc/calc-units.el (calc-lu-quant): Rename from
16982 `calc-logunits-quantity'.
16983 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
16984 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
16985 (calc-db): Rename from `calc-dblevel'.
16986 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
16987 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
16988 (calc-np): Rename from `calc-nplevel'.
16989 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
16990 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
16991 (calc-lu-plus): Rename from `calc-logunits-add'.
16992 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
16993 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
16994 (calc-lu-minus): Rename from `calc-logunits-sub'.
16995 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
16996 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
16997 (calc-lu-times): Rename from `calc-logunits-mul'.
16998 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
16999 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
17000 (calc-lu-divide): Rename from `calc-logunits-div'.
17001 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
17002 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
17003
17004 * calc/calc-ext.el (calc-init-extensions): Update the names of the
17005 functions being autoloaded.
17006
17007 * calc/calc.el (calc-lu-power-reference): Rename from
17008 `calc-logunits-power-reference'.
17009 (calc-lu-field-reference): Rename from
17010 `calc-logunits-field-reference'.
17011
7a71b18d
GM
17012 * calc/calc-help.el (calc-l-prefix-help):
17013 Mention musical note functions.
d71990a1 17014
40c2934b
SM
170152011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
17016
17017 * minibuffer.el (completion-all-sorted-completions):
17018 Use :completion-cycle-penalty text property if present.
17019
b0911414
KM
170202011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
17021
17022 * allout.el (allout-yank-processing): Adjust for new rebulleting
17023 regime so bullet being yanked is used without prompting the user
17024 for a choice.
17025
8a05b668
JB
170262011-03-16 Juanma Barranquero <lekktu@gmail.com>
17027
17028 * startup.el (command-line): Warn the user that _emacs is deprecated.
17029
5ba5fb81
JB
170302011-03-16 Juanma Barranquero <lekktu@gmail.com>
17031
17032 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
17033 (delphi-verbose, delphi-comment-face, delphi-string-face)
17034 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
17035 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
17036 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
17037 (delphi-new-comment-line, delphi-font-lock-defaults)
17038 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
17039 Fix typos in docstrings.
17040
2dab465b
KM
170412011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
17042
5ba5fb81 17043 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
17044 Invert the roles of character and string values for INSTEAD, so a
17045 string is used for the more common case of a defaulting prompt.
17046
0adf5618
SM
170472011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17048
17049 * progmodes/ruby-mode.el (ruby-backward-sexp):
17050 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
17051 * play/gamegrid.el (gamegrid-make-face):
17052 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
17053 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
17054 * notifications.el (notifications-notify):
17055 * net/xesam.el (xesam-search-engines):
17056 * net/quickurl.el (quickurl-list-insert):
17057 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
17058
d72700e5
CY
170592011-03-15 Chong Yidong <cyd@stupidchicken.com>
17060
17061 * startup.el (command-line): Update package subdirectory regexp.
17062
49c5410a
SM
170632011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17064
c6eee9aa
SM
17065 * allout.el (allout-abbreviate-flattened-numbering)
17066 (allout-mode-deactivate-hook): Fix up obsolescence "date".
17067
49c5410a
SM
17068 * subr.el (read-char-choice): Only show the cursor after the prompt,
17069 not after the answer.
17070
047b2bb9
KR
170712011-03-15 Kevin Ryde <user42@zip.com.au>
17072
17073 * help-fns.el (variable-at-point): Skip leading quotes, if any
17074 (bug#8253).
17075
0a57d256
SM
170762011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
17077
17078 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
17079 warning message.
17080
77c992bc
MA
170812011-03-14 Michael Albinus <michael.albinus@gmx.de>
17082
17083 * shell.el (shell): When called interactively, offer to change the
17084 shell file name on remote hosts.
17085
eebc475d
TZ
170862011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
17087
17088 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
17089 integration for LDAP parameters. The host, base, user or binddn,
17090 and secret tokens can be specified in a netrc file, for instance.
17091 This is optional because an `auth-source' parameter must be
17092 specified in the search attributes.
17093
9d05d1ba
JB
170942011-03-13 Juanma Barranquero <lekktu@gmail.com>
17095
17096 * help.el (describe-mode): Link to the mode's definition (bug#8185).
17097
09d9db2c
GM
170982011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17099
17100 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
17101 into declaration. Remove redundant and harmful binding.
17102
171032011-03-12 Eli Zaretskii <eliz@gnu.org>
17104
17105 * files.el (file-ownership-preserved-p): Pass `integer' as an
17106 explicit 2nd argument to `file-attributes'. If the file's owner
17107 is the Administrators group on Windows, and the current user is
17108 Administrator, consider that a match.
17109
17110 * server.el (server-ensure-safe-dir): Consider server directory
17111 safe on MS-Windows if its owner is the Administrators group while
17112 the current Emacs user is Administrator. Use `=' to compare
17113 numerical UIDs, since they could be integers or floats.
17114
219bd536
JB
171152011-03-12 Juanma Barranquero <lekktu@gmail.com>
17116
17117 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
17118
f3afd36b
MA
171192011-03-12 Michael Albinus <michael.albinus@gmx.de>
17120
17121 Sync with Tramp 2.2.1.
17122
17123 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
17124
17125 * net/trampver.el: Update release number.
17126
3aaaa6f1
SM
171272011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
17128
94642599
SM
17129 * progmodes/compile.el (compilation--previous-directory): Fix up
17130 various nil/dead-marker mismatches (bug#8014).
17131 (compilation-directory-properties, compilation-error-properties):
17132 Don't call it at a position past the one we're about to change.
17133
3aaaa6f1
SM
17134 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
17135 Disable obsolescence warnings in the file that declares it.
17136
14239447
KM
171372011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
17138
099c39a4
JB
17139 * allout-widgets.el (allout-widgets-tally):
17140 Initialize allout-widgets-tally as a hash table rather than nil to
17141 prevent mode-line redisplay warnings. Also, clarify the module
17142 description and fix a comment typo.
14239447 17143
135e287c
JB
171442011-03-11 Juanma Barranquero <lekktu@gmail.com>
17145
17146 * help-fns.el (describe-variable): Don't complete keywords.
17147 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
17148
ffbf300e
CY
171492011-03-10 Chong Yidong <cyd@stupidchicken.com>
17150
ba08b241
CY
17151 * emacs-lisp/package.el (package-version-join): Impose a standard
17152 string representation for pre/alpha/beta version lists.
17153 (package-unpack-single): Standardize the directory name by passing
17154 it through package-version-join.
17155 (package-strip-rcs-id): Accept any version string that does not
17156 signal an error in version-to-list.
ffbf300e 17157
f346fd6b
MA
171582011-03-10 Michael Albinus <michael.albinus@gmx.de>
17159
17160 * simple.el (delete-trailing-whitespace): Return nil for the
17161 benefit of `write-file-functions'.
17162
ccb55d27
GM
171632011-03-10 Glenn Morris <rgm@gnu.org>
17164
5ceaac0c
GM
17165 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
17166
02da65ff
GM
17167 * vc/vc-git.el (vc-git-program): New option.
17168 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
17169 (vc-git--call): Use it.
17170
b2f603cc
GM
17171 * eshell/esh-util.el (eshell-condition-case): Doc fix.
17172
5772caab
GM
17173 * cus-edit.el (Custom-newline): If no button at point, look
17174 for a subgroup button at start-of-line. (Bug#2298)
17175
ccb55d27
GM
17176 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
17177
ec6ecaed
JD
171782011-03-10 Julien Danjou <julien@danjou.info>
17179
17180 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
17181 `cursor-type' is nil.
17182
9d5aa01d
JB
171832011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
17184
17185 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
17186
b6a5875b
KM
171872011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
17188
7a71b18d 17189 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
17190 preserves the existing header prefix, rebulleting it if necessary,
17191 rather than replacing it. This is necessary for proper operation
17192 of cooperative addons like allout-widgets.
1154d12e
JB
17193 (allout-make-topic-prefix, allout-rebullet-heading):
17194 Change SOLICIT arg to INSTEAD, and interpret additionally a string
17195 value as alternate bullet to be used, instead of prompting the user
17196 for a bullet character.
b6a5875b 17197
ee545c35
MA
171982011-03-09 Michael Albinus <michael.albinus@gmx.de>
17199
d86d2721
SM
17200 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
17201 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
17202 `tramp-default-port'.
17203
c47971d7
DD
172042011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
17205
17206 * net/rcirc.el (rcirc-handler-001): Remove useless
17207 with-rcirc-process-buffer.
17208 (rcirc-check-auth-status): Swap arguments to string-match.
17209
13522cb4
GM
172102011-03-09 Glenn Morris <rgm@gnu.org>
17211
0be6f4f1
GM
17212 * shell.el (shell-mode):
17213 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
17214
13522cb4
GM
17215 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
17216 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
17217
515de2e3
CY
172182011-03-08 Chong Yidong <cyd@stupidchicken.com>
17219
17220 * emacs-lisp/package.el (package-refresh-contents)
17221 (package-menu-execute): Use condition-case-no-debug.
17222
b511b994
MA
172232011-03-08 Michael Albinus <michael.albinus@gmx.de>
17224
17225 * simple.el (shell-command-to-string): Use `process-file'.
17226
17227 * emacs-lisp/package.el (package-tar-file-info): Handle also
17228 remote files.
17229
d86d2721
SM
17230 * emacs-lisp/package-x.el (package-upload-buffer-internal):
17231 Use `equal' for upload base check.
b511b994 17232
25bbfb31
AM
172332011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
17234
17235 * textmodes/texinfo.el (texinfo-environments):
17236 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
17237
be996521
GM
172382011-03-08 Glenn Morris <rgm@gnu.org>
17239
e9c8529f
GM
17240 * cus-start.el (cursor-in-non-selected-windows):
17241 Fix :set quoting oddness. (Bug#8192)
17242
be996521
GM
17243 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
17244 in some setf expressions. (Bug#2159)
17245
2bb5649e
CY
172462011-03-08 Chong Yidong <cyd@stupidchicken.com>
17247
17248 * custom.el (custom-available-themes): Return themes in
17249 alphabetical order.
17250
33383987 17251See ChangeLog.15 for earlier changes.
e3d51b27
MR
17252
17253;; Local Variables:
17254;; coding: utf-8
e3d51b27
MR
17255;; End:
17256
acaf905b 17257 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
17258
17259 This file is part of GNU Emacs.
17260
17261 GNU Emacs is free software: you can redistribute it and/or modify
17262 it under the terms of the GNU General Public License as published by
17263 the Free Software Foundation, either version 3 of the License, or
17264 (at your option) any later version.
17265
17266 GNU Emacs is distributed in the hope that it will be useful,
17267 but WITHOUT ANY WARRANTY; without even the implied warranty of
17268 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17269 GNU General Public License for more details.
17270
17271 You should have received a copy of the GNU General Public License
17272 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.