Merge from emacs-24; up to 2012-04-30T11:57:47Z!sdl.web@gmail.com
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
c8d3a25c 12012-06-29 Andreas Schwab <schwab@linux-m68k.org>
3d8b9024 2
c8d3a25c
GM
3 * calendar/cal-dst.el (calendar-current-time-zone):
4 Return calendar-current-time-zone-cache if non-nil.
3d8b9024 5
c8d3a25c 62012-06-29 Masatake YAMATO <yamato@redhat.com>
26e8548e
MY
7
8 * progmodes/which-func.el (which-func-format):
9 Add mouse-face. (Bug#11698)
10
c8d3a25c
GM
112012-06-29 Leo Liu <sdl.web@gmail.com>
12
13 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
14
152012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
16
17 * minibuffer.el (minibuffer-confirm-exit-commands):
18 Add completion-at-point (bug#11725).
19
202012-06-29 Glenn Morris <rgm@gnu.org>
21
22 * progmodes/f90.el (f90-font-lock-keywords-2):
23 Add some preprocessor elements. (Bug#10499)
24
252012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
26
27 * progmodes/cperl-mode.el (cperl-update-syntaxification):
28 Use syntax-propertize (bug#11739).
29
2badeec4
JB
302012-06-28 Juanma Barranquero <lekktu@gmail.com>
31
32 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
33
ae4969c2
JD
342012-06-28 Julien Danjou <julien@danjou.info>
35
36 * term.el (term-handle-colors-array): Use a set of new faces to
37 color the terminal. Also uses :inverse-video property.
38 (term-default-fg-color): Set to nil by default, deprecate in favor
39 of `term-face'.
40 (term-default-bg-color): Set to nil by default, deprecate in favor
41 of `term-face'.
42 (term-current-face): Use `term-face' by default.
43 (term-bold-attribute): Variable deleted.
44
1c9bd870
GM
452012-06-28 Glenn Morris <rgm@gnu.org>
46
47 * simple.el (completion-list-mode-finish):
48 Don't use toggle-read-only. (Since completion-list-mode has
49 a special mode-class, it wasn't doing anything extra anyway.)
50
c207708c
SM
512012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
52
53 Make inlining of other-mode interpreted functions work (bug#11799).
54 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
55 (byte-compile): Use it to fix compilation of lexical-binding closures.
56 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
57 function, if needed.
58
3fd56834
SM
592012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
60
04901786
SM
61 * help-mode.el (help-make-xrefs): Don't just withstand
62 cyclic-variable-indirection but any error in documentation-property.
63
1ec4b7b2
SM
64 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
65 memory use.
66 * bindings.el (bindings--define-key): New function.
67 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
68 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
69 * bindings.el: Use it to purecopy define-key bindings.
70
e309e2a5
SM
71 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
72
d5c6faf9
SM
73 * emacs-lisp/cl.el (flet): Mark obsolete.
74 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
75 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
76 * progmodes/js.el (js-c-fill-paragraph):
77 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
78 (ebrowse-switch-member-buffer-to-derived-class):
79 * play/5x5.el (5x5-solver): Use cl-flet.
80
6e9590e2
SM
81 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
82 (cl--symbol-function): New macro.
83 (cl--letf, cl--letf*): Use it.
84
3fd56834
SM
85 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
86 Strip "toggle-" if any.
87
35ff222c
GM
882012-06-27 Glenn Morris <rgm@gnu.org>
89
1ba6038a
GM
90 * info.el (Info-default-directory-list): Move here from paths.el.
91 * paths.el: Remove file, which is now empty.
92 * loadup.el: No longer load "paths".
93
0ea0e51b
GM
94 * custom.el (custom-initialize-delay): Doc fix.
95
35ff222c
GM
96 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
97 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
98 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
99 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
100 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
101 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
102 * eshell/eshell.el (eshell-defgroup): Remove alias.
103
c89926a5
CY
1042012-06-27 Chong Yidong <cyd@gnu.org>
105
106 * help.el (help-enable-auto-load): New variable.
107
108 * help-fns.el (help-fns--autoloaded-p): New function.
109 (describe-function-1): Refer to a function as "autoloaded" if it
110 was autoloaded at any time in the past. Perform autoloading if
111 help-enable-auto-load is non-nil.
112
cc06e7e7
EZ
1132012-06-26 Eli Zaretskii <eliz@gnu.org>
114
115 * makefile.w32-in (compile, compile-always): Depend on
116 update-subdirs, not on subdirs.el. Otherwise, several different
117 sub-targets of 'bootstrap' running in parallel could
118 simultaneously write to subdirs.el, producing a garbled file.
119
d2c32364
SS
1202012-06-26 Sam Steingold <sds@gnu.org>
121
122 * files.el (file-name-base): New convenience function.
0d14cc21
GM
123 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
124 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
125 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
126 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
127 * textmodes/ispell.el, textmodes/reftex-ref.el:
d2c32364
SS
128 * textmodes/tex-mode.el: Use it.
129 Did not touch cedet and org because they are maintained elsewhere.
130
5cf983b2
MR
1312012-06-26 Martin Rudalics <rudalics@gmx.at>
132
133 * calendar/calendar.el (calendar-exit): Don't try to delete or
134 iconify last frame. See:
135 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
136
8c4f2952
JD
1372012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
138
139 * server.el (server-process-filter): Remember dir in the
140 process's `server-client-directory' properties.
141
772b2e2c
CY
1422012-06-24 Chong Yidong <cyd@gnu.org>
143
144 * xml.el (xml-parse-tag): Correctly handle comment embedded in
145 non-tag text.
146
711b11e1
JB
1472012-06-23 Juanma Barranquero <lekktu@gmail.com>
148
149 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
150
dc5d230c
SM
1512012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * help-fns.el (describe-variable): Don't croak when doc is not found.
154 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
155 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
156 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
157 * emacs-lisp/smie.el (smie-next-sexp): CSE.
158 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
159 ((lambda ..) ..).
160 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
161
136e1c1d
CY
1622012-06-23 Chong Yidong <cyd@gnu.org>
163
e8c1cabf
CY
164 * info.el (Info-mouse-follow-link): Accept symbol values of
165 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
136e1c1d
CY
166 (Info-fontify-node): Use Info-link-keymap for all navigation
167 buttons, with link-args property to perform the desired action.
168 (Info-link-keymap): Doc fix.
169 (Info-next-link-keymap, Info-prev-link-keymap)
170 (Info-up-link-keymap): Delete now-unused keymaps.
171
0e9e6c6a
CY
1722012-06-23 Chong Yidong <cyd@gnu.org>
173
05e89fea
CY
174 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
175
0e9e6c6a
CY
176 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
177 system abbrevs.
178
179 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
180
e33c6771
SM
1812012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
182
b68581e2
SM
183 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
184 (bug#11719).
185
e33c6771
SM
186 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
187 the requote function doesn't work properly (bug#11714).
188
7117e105
GM
1892012-06-23 Glenn Morris <rgm@gnu.org>
190
191 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
192
36cec983
SM
1932012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
194
195 Further GV/CL cleanups.
196 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
197 gv-expander.
198 (gv--defun-declaration): New function.
199 (defun-declarations-alist): Use it.
200 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
201 (gv-place): Autoload.
202 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
203 original definition of dotimes and dolist.
204 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
205 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
206 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
207 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
208 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
209 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
210 to the function's definition.
211 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
212 * window.el:
213 * files.el:
214 * faces.el:
215 * env.el: Don't use CL.
216
d35af63c
PE
2172012-06-22 Paul Eggert <eggert@cs.ucla.edu>
218
219 Support higher-resolution time stamps (Bug#9000).
220
221 * calendar/time-date.el (with-decoded-time-value): New arg
222 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
223 (encode-time-value): New optional arg PICO. New type 3.
224 (time-to-seconds) [!float-time]: Support the new picoseconds
225 component if it's used.
226 (seconds-to-time, time-subtract, time-add):
227 Support ps-resolution time stamps as well.
228
229 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
230 (timerp): Timer vectors now have length 9, not 8.
231 (timer--time): Support new-style (4-part) time stamps.
232 (timer-next-integral-multiple-of-time): Time stamps now have
233 picosecond resolution, so take a bit more care about rounding.
234 (timer-relative-time, timer-inc-time): New optional arg psecs.
235 (timer-set-time-with-usecs): Set psecs to 0.
236 (timer--activate): Check psecs component, too.
237
238 * proced.el (proced-time-lessp): Support ps-resolution stamps.
239
ac77b21a
SM
2402012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
241
f143bfe3
SM
242 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
243 Move the non-essential binding to the post/pre-command-hook where it is
244 more obviously correct.
245
ac77b21a
SM
246 * subr.el (read-passwd): Don't use a history at all.
247 * savehist.el (savehist-save): Remove password saved accidentally
248 because of the above bug.
249
76386c5a
BG
2502012-06-22 Bastien Guerry <bzg@gnu.org>
251
252 * files.el (toggle-read-only): Display a message telling whether
253 the buffer is read-only or not (bug#11726).
254
2ee3d7f0
SM
2552012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
256
257 * emacs-lisp/gv.el: New file.
258 * subr.el (push, pop): Extend to generalized variables.
259 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
260 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
261 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
262 gv-define-simple-setter, and gv-define-expander.
263 Remove setf-methods defined in gv. Rename cl-setf -> setf.
264 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
265 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
266 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
267 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
268 gv-letplace.
269 (cl-defstruct): Don't define setf-method any more.
270 * emacs-lisp/cl.el (flet): Don't autoload.
271 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
272 (define-setf-expander, defsetf, define-modify-macro)
273 (cl-struct-setf-expander): Move from cl-lib.el.
274 * emacs-lisp/syntax.el:
275 * emacs-lisp/ewoc.el:
276 * emacs-lisp/smie.el:
277 * emacs-lisp/cconv.el:
278 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
279 (timer--time): Use gv-define-simple-setter.
280 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
281 to avoid coding-system problems in subr.el. Adjust all users.
282 (macroexp--maxsize, macroexp-small-p): New functions.
283 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
284 * scroll-bar.el (scroll-bar-mode):
285 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
286 (normal-erase-is-backspace-mode): Don't use the `eq' place.
287 * winner.el (winner-configuration, winner-make-point-alist)
288 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
289 * files.el (locate-file-completion-table): Avoid list*.
290
c5695d1d
CY
2912012-06-22 Chong Yidong <cyd@gnu.org>
292
293 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
294 (dired-create-files): Doc fix (Bug#11329).
295 (dired-do-copy): Doc fix (Bug#11334).
296 (dired-mark-read-string): Doc fix (Bug#11553).
297
2ee3d7f0
SM
298 * dired.el (dired-recursive-copies, dired-recursive-deletes):
299 Doc fix (Bug#11326).
c5695d1d
CY
300 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
301 (dired-dwim-target): Doc fix.
302
303 * wdired.el (wdired-mode): Doc fix.
304
89b5595a
GM
3052012-06-22 Glenn Morris <rgm@gnu.org>
306
575db3f1
GM
307 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
308 (pcmpl-rpm-cache-stamp-file): New constant.
309 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
310 (pcmpl-rpm-packages): Optionally cache list of packages.
311
a4c8dd51
GM
312 * pcmpl-rpm.el (pcmpl-rpm): New group.
313 (pcmpl-rpm-query-options): New option.
314 (pcmpl-rpm-packages): No need to inline it.
315 Use pcmpl-rpm-query-options.
316
89b5595a
GM
317 * calendar/calendar.el (calendar-in-read-only-buffer):
318 Avoid some needless mode changes.
319
e76f0800
CY
3202012-06-21 Chong Yidong <cyd@gnu.org>
321
322 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
323 (desktop-path): Remove . from the default value (Bug#10977).
6b67c0d4 324 (desktop-read): Use user-emacs-directory if desktop-path is nil.
e76f0800 325
297a8f1d
CY
3262012-06-20 Chong Yidong <cyd@gnu.org>
327
328 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
329
d34c18b1
DR
3302012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
331
332 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
333 (bug#11201).
334
32f7f28e
CY
3352012-06-20 Chong Yidong <cyd@gnu.org>
336
337 * term.el (term-window-width): Handle the case of a missing right
338 fringe (Bug#8837).
339 (term-check-size): Use window-text-height (Bug#5445).
d34c18b1
DR
340 (term-mode): Use define-derived-mode. Minor cleanups.
341 Set font-lock-defaults (Bug#7692).
6ff7caa8
CY
342 (term-move-columns, term-insert-char, term-emulate-terminal)
343 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
32f7f28e 344
493c6688
MA
3452012-06-20 Michael Albinus <michael.albinus@gmx.de>
346
d34c18b1
DR
347 * net/ange-ftp.el (ange-ftp-get-passwd):
348 Bind `enable-recursive-minibuffers'.
493c6688
MA
349 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
350
3f06ecf4
DR
3512012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
352
353 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
354
68f12411
GM
3552012-06-19 Glenn Morris <rgm@gnu.org>
356
357 * progmodes/python.el (python-mode): Derive from prog-mode.
358
b3820318
KG
3592012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
360
361 * emulation/edt.el (edt-default-menu-bar-update-buffers)
362 (edt-user-menu-bar-update-buffers): New functions.
363 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
364
c6bf3022
CY
3652012-06-19 Chong Yidong <cyd@gnu.org>
366
367 * subr.el (with-selected-window): Preserve the selected window's
368 terminal's top-frame (Bug#4702).
369
370 * window.el (save-selected-window): Likewise.
371
25f09295
SM
3722012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
373
374 * progmodes/python.el (python-rx-constituents): Move backquote.
375 (python-skeleton-define, python-define-auxiliary-skeleton):
376 Use `declare'.
377
6b11952a
MA
3782012-06-18 Michael Albinus <michael.albinus@gmx.de>
379
380 * minibuffer.el (read-file-name-default): Revert the patch from
381 2012-06-17.
382
ee4b1330
SM
3832012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
384
385 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
386 (pcase--u1, pcase--q1): Don't use apply-partially.
387
35647f79
GM
3882012-06-18 Glenn Morris <rgm@gnu.org>
389
390 * progmodes/python.el (python-proc, python-buffer)
391 (python-send-receive, python-send-string): Fix obsolete versions.
392
24b0cff0
MR
3932012-06-18 Martin Rudalics <rudalics@gmx.at>
394
395 * window.el (special-display-p): Completely remove stringp
396 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
397
29855149
MA
3982012-06-17 Michael Albinus <michael.albinus@gmx.de>
399
400 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
401
402 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
403
404 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
405 * net/tramp-sh.el (tramp-maybe-open-connection):
406 Throw if `non-essential' is non-nil.
407
07463363
MR
4082012-06-17 Martin Rudalics <rudalics@gmx.at>
409
410 * window.el (special-display-p): Signal an error if BUFFER-NAME
411 is not a string (Bug#11713).
412
48d1354e
PE
4132012-06-17 Paul Eggert <eggert@cs.ucla.edu>
414
415 * progmodes/python.el (python-info-beginning-of-backslash):
416 Rename from python-info-beginning-of-backlash, as a spelling fix.
417
eb4a8a9a
CY
4182012-06-17 Chong Yidong <cyd@gnu.org>
419
420 * term.el (term-emulate-terminal): If term-check-size is called,
421 move point to the process mark without resetting point (Bug#4635).
422
ddfbf826 4232012-06-17 Glenn Morris <rgm@gnu.org>
9c758578
GM
424
425 * international/mule-cmds.el (mule-menu-keymap)
426 (set-language-environment, set-locale-environment): Doc tweaks.
427
9b0e3eba
AA
4282012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
429
430 * cus-face.el (custom-face-attributes): Add wave-style underline
431 attribute.
432 * faces.el (set-face-attribute): Update docstring to describe
433 wave-style underline attribute.
434
771e3eae
CY
4352012-06-16 Chong Yidong <cyd@gnu.org>
436
437 * term/xterm.el (terminal-init-xterm): Discard input before
438 querying background mode (Bug#10959).
439
7ae2ea10
SM
4402012-06-16 Stefan Merten <smerten@oekonux.de>
441
442 * textmodes/rst.el: Added and corrected some comments.
443 (rst-re-alist-def): Improve symbol syntax.
444 (rst-mode-syntax-table): Correct syntax entries.
6665a6fd
SM
445 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
446 (rst-official-version, rst-official-cvs-rev): Update version
447 information.
7ae2ea10 448
b6974efa
JB
4492012-06-15 Juanma Barranquero <lekktu@gmail.com>
450
451 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
452 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
453
8826d473
GM
4542012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
455
456 * progmodes/python.el: New python.el merge.
457 (python-guess-indent): Obsolete var.
458 (python-indent-guess-indent-offset): New defcustom.
459 (python-indent): Obsolete var.
460 (python-indent-offset): New defcustom.
461 (python-python-command, python-jython-command): Delete var.
462 (python-shell-interpreter): New defcustom.
463 (python-pdbtrack-do-tracking-p): Delete var.
464 (python-pdbtrack-activate): New defcustom.
465 (python-use-skeletons): Obsolete var.
466 (python-skeleton-autoinsert): New defcustom.
467 (inferior-python-filter-regexp, python-continuation-offset)
468 (python-honour-comment-indentation, python-indent-string-contents)
469 (python-jython-packages, python-mode-hook)
470 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
471 (python-shell-prompt-alist)
472 (python-source-modes): Delete defcustoms.
473 (python-check-buffer-name, python-eldoc-setup-code)
474 (python-eldoc-string-code, python-ffap-setup-code)
475 (python-ffap-string-code, python-fill-comment-function)
476 (python-fill-decorator-function, python-fill-paren-function)
477 (python-fill-string-function, python-imenu-include-defun-type)
478 (python-imenu-make-tree, python-imenu-subtree-root-label)
479 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
480 (python-shell-compilation-regexp-alist)
481 (python-shell-completion-module-string-code)
482 (python-shell-completion-pdb-string-code)
483 (python-shell-completion-setup-code)
484 (python-shell-completion-string-code)
485 (python-shell-enable-font-lock, python-shell-exec-path)
486 (python-shell-extra-pythonpaths)
487 (python-shell-internal-buffer-name, python-shell-interpreter-args)
488 (python-shell-process-environment)
489 (python-shell-prompt-block-regexp)
490 (python-shell-prompt-output-regexp)
491 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
492 (python-shell-send-setup-max-wait, python-shell-setup-codes)
493 (python-shell-virtualenv-path): New defcustoms.
494 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
495 (inferior-python-mode-syntax-table, python--prompt-regexp)
496 (python-buffer, python-command python-python-command)
497 (python-default-template, python-imports, python-indent-index)
498 (python-indent-list, python-indent-list-length)
499 (python-mode-running, python-pdbtrack-is-tracking-p)
500 (python-preoutput-continuation, python-preoutput-leftover)
501 (python-preoutput-result, python-preoutput-skip-next-prompt)
502 (python-prev-dir/file, python-recursing)
503 (python-saved-check-command, python-version-checked)
504 (python-which-func-length-limit)
505 (view-return-to-alist): Delete vars.
506 (python-check-custom-command, python-dotty-syntax-table)
507 (python-imenu-index-alist, python-indent-current-level)
508 (python-indent-dedenters, python-indent-levels)
509 (python-nav-beginning-of-defun-regexp)
510 (python-nav-list-defun-positions-cache)
511 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
512 (python-shell-internal-buffer)
513 (python-skeleton-available): New vars.
514 (def-python-skeleton): Delete macro.
515 (python-skeleton-define): New macro.
516 (python-define-auxiliary-skeleton, python-rx): New macros.
517 (python-insert-class): Delete command.
518 (python-skeleton-class): New command.
519 (python-insert-def): Delete command.
520 (python-skeleton-def): New command.
521 (python-insert-for): Delete command.
522 (python-skeleton-for): New command.
523 (python-insert-if): Delete command.
524 (python-skeleton-if): New command.
525 (python-insert-try/except, python-insert-try/finally): Delete commands.
526 (python-skeleton-try): New command.
527 (python-insert-while): Delete command.
528 (python-skeleton-while): New command.
529 (python-backspace): Delete command.
530 (python-indent-dedent-line-backspace): New command.
531 (python-electric-colon): Delete command.
532 (python-indent-electric-colon): New command.
533 (python-guess-indent): Delete command.
534 (python-indent-guess-indent-offset): New command.
535 (python-shift-left): Delete command.
536 (python-indent-shift-left): New command.
537 (python-shift-right): Delete command.
538 (python-indent-shift-right): New command.
539 (python-find-function): Delete command.
540 (python-nav-jump-to-defun): New command.
541 (python-next-statement): Delete command.
542 (python-nav-forward-sentence): New command.
543 (python-previous-statement): Delete command.
544 (python-nav-backward-sentence): New command.
545 (python-fill-paragraph): Delete command.
546 (python-fill-paragraph-function): New command.
547 (python-send-buffer): Delete command.
548 (python-shell-send-buffer): New command.
549 (python-send-defun): Delete command.
550 (python-shell-send-defun): New command.
551 (python-send-region, python-send-region-and-go): Delete commands.
552 (python-shell-send-region)
553 (python-shell-switch-to-shell): New commands.
554 (python-send-string): Delete command.
555 (python-shell-send-string): New command.
556 (python-switch-to-python): Delete command.
557 (python-shell-switch-to-shell): New command.
558 (python-describe-symbol): Delete command.
559 (python-eldoc-at-point): New command.
560 (python--set-prompt-regexp, python-args-to-list)
561 (python-after-info-look, python-check-version)
562 (python-check-comint-prompt, python-find-imports)
563 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
564 (python-unload-function, python-expand-template)
565 (python-maybe-jython, python-preoutput-filter)
566 (python-pdbtrack-get-source-buffer)
567 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
568 (python-pdbtrack-toggle-stack-tracking)
569 (python-pdbtrack-track-stack-file, python-initial-text)
570 (python-first-word, python-comment-line-p, python-send-command)
571 (python-setup-brm, python-sentinel, python-set-proc)
572 (python-skip-out, python-input-filter, python-outdent-p)
573 (python-outline-level, python-backslash-continuation-line-p)
574 (python-end-of-block, python-end-of-statement, python-mark-block)
575 (python-beginning-of-block, python-beginning-of-statement)
576 (python-blank-line-p, python-beginning-of-string)
577 (python-open-block-statement-p): Delete functions.
578 (python-indent-line, python-indent-line-1): Delete functions.
579 (python-indent-line): New function.
580 (python-indentation-levels): Delete function.
581 (python-indent-calculate-levels): New function.
582 (python-proc): Delete function.
583 (python-shell-get-process): New function.
584 (python-send-receive): Delete function.
585 (python-shell-send-string-no-output): New function.
586 (python-module-path): Delete function.
587 (python-ffap-module-path): New function.
588 (python-completion-at-point)
589 (python-symbol-completions): Delete functions.
590 (python-completion-complete-at-point): New function.
591 (python-load-file): Delete function.
592 (python-shell-send-file): New function.
593 (python-calculate-indentation): Delete function.
594 (python-indent-calculate-indentation): New function.
595 (python-skip-comments/blanks): Delete function.
596 (python-util-forward-comment): New function.
597 (python-continuation-line-p): Delete function.
598 (python-info-continuation-line-p): New function.
599 (python-which-func, python-current-defun): Delete function.
600 (python-info-current-defun): New function.
601 (python-beginning-of-defun): Delete function.
602 (python-nav-beginning-of-defun): New function.
603 (python-close-block-statement-p)
604 (python-block-end-p): Delete function.
605 (python-info-closing-block): New function.
606 (python-comint-output-filter-function)
607 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
608 (python-fill-comment, python-fill-decorator, python-fill-paren)
609 (python-fill-string, python-imenu-make-element-tree)
610 (python-imenu-make-tree, python-imenu-tree-assoc)
611 (python-indent-context, python-indent-dedent-line)
612 (python-indent-line-function)
613 (python-indent-post-self-insert-function)
614 (python-indent-toggle-levels)
615 (python-info-assignment-continuation-line-p)
616 (python-info-beginning-of-backlash)
617 (python-info-block-continuation-line-p)
618 (python-info-closing-block-message)
619 (python-info-line-ends-backslash-p)
620 (python-info-looking-at-beginning-of-defun)
621 (python-info-ppss-context, python-info-ppss-context-type)
622 (python-nav-list-defun-positions, python-nav-read-defun)
623 (python-nav-sentence-end, python-nav-sentence-start)
624 (python-pdbtrack-comint-output-filter-function)
625 (python-pdbtrack-set-tracked-buffer)
626 (python-shell-calculate-exec-path)
627 (python-shell-calculate-process-environment)
628 (python-shell-completion--do-completion-at-point)
629 (python-shell-completion--get-completions)
630 (python-shell-completion-complete-at-point)
631 (python-shell-completion-complete-or-indent)
632 (python-shell-get-or-create-process)
633 (python-shell-get-process-name)
634 (python-shell-internal-get-or-create-process)
635 (python-shell-internal-get-process-name)
636 (python-shell-internal-send-string, python-shell-make-comint)
637 (python-shell-parse-command, python-shell-send-setup-code)
638 (python-skeleton-add-menu-items)
639 (python-util-clone-local-variables, python-util-position)
640 (run-python-internal, python-indentation-levels)
641 (python-nav-beginning-of-defun)
642 (python-completion-complete-at-point): New functions.
643 (run-python): Change arguments. New API requirements.
644
4302f5ba
SM
6452012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
646
f38ea36d
SM
647 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
648 (bug#11649).
649
650 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
651 (macroexp--expand-all): Use it.
652
4302f5ba
SM
653 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
654 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
655 Use `cl-function' instead.
656
33377562
JB
6572012-06-14 Juanma Barranquero <lekktu@gmail.com>
658
659 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
660 Suggested by Stefan Monnier while discussing bug#11657.
661
54c5ba1a
SS
6622012-06-14 Sam Steingold <sds@gnu.org>
663
664 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
665
f9f1b1fe
AS
6662012-06-14 Andreas Schwab <schwab@linux-m68k.org>
667
668 * play/doctor.el (doctor-doc): Remove parameter and use
669 doctor-sent instead of sent.
670 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
671
a81068ba
SM
6722012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
673
5a315f9c
SM
674 * files.el: Require cl-lib.
675 (file-name-non-special): Replace case -> cl-case.
676
677 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
678
a81068ba
SM
679 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
680 mapping from #' to function*.
681
8cca9703
CY
6822012-06-13 Chong Yidong <cyd@gnu.org>
683
684 * mouse.el (mouse-drag-track): Do not set the mark if the user
685 releases the mouse without selecting anything (Bug#11588).
686
a12ac9d7
SM
6872012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
688
ccf1dc18
SM
689 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
690 as well (bug#11646).
691
ef62b23d
SM
692 * loadup.el: Count byte-code functions as well.
693
c4c8444a
SM
694 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
695 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
696
a12ac9d7
SM
697 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
698 (bug#11649). Add cl-defun and cl-defmacro.
699
87e6e64f
DA
7002012-06-13 Drew Adams <drew.adams@oracle.com>
701
702 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
703 Fix last change.
704
682cefaf
MA
7052012-06-13 Michael Albinus <michael.albinus@gmx.de>
706
707 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
708 Otherwise, it blocks in batch mode.
709
773e1f08
JB
7102012-06-13 Juanma Barranquero <lekktu@gmail.com>
711
712 * help-mode.el (bookmark-make-record-default): Declare.
713
60057926
CY
7142012-06-13 Chong Yidong <cyd@gnu.org>
715
716 * emacs-lisp/package.el (list-packages): Compute a list of
717 packages that are newly-available since the last list-packages
718 invocation.
719 (package-menu--new-package-list): New var.
720 (package-menu--generate, package-menu--print-info)
721 (package-menu--status-predicate, package-menu-mark-install):
722 Handle new status label "new".
723
ad4d226c
SM
7242012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
725
726 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
727 conversion to backquotes.
728
f1a4e679
CY
7292012-06-12 Chong Yidong <cyd@gnu.org>
730
731 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
732 Rename from gud-inhibit-global-bindings.
733
734 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
735
736 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
737 hook from nxml-glyph-set-hook.
738
739 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
740 declaration.
741
742 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
743
744 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
745 Convert to defcustom.
746
0c9e42b5
DA
7472012-06-12 Drew Adams <drew.adams@oracle.com>
748
749 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
750 New functions.
751 (help-mode): Use them.
752
09e06855
GM
7532012-06-11 Glenn Morris <rgm@gnu.org>
754
755 * progmodes/fortran.el (fortran-font-lock-keywords-3):
756 Use preprocessor face for directives.
757 (fortran-directive-re): Doc fix.
758
71adb94b
SM
7592012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
760
2eb87922
SM
761 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
762 conversion to backquotes (bug#11652).
763
71adb94b
SM
764 Fix compiler-expansion of CL's cXXr functions (bug#11673).
765 * emacs-lisp/cl-lib.el (cl--defalias): New function.
766 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
767 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
768 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
769 (cl-ninth, cl-tenth): Mark them as inlinable.
770 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
771 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
772 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
773 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
774 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
775 (cl-list*, cl-adjoin): Don't put an autoload manually.
776 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
777 (cl--compiler-macro-list*): Add autoload cookie.
778 (cl--compiler-macro-cXXr): New function.
2eb87922 779
71adb94b
SM
780 * help-fns.el (help-fns--compiler-macro): New function extracted from
781 describe-function-1; follow aliases and use `compiler-macro' property.
782 (describe-function-1): Use it.
783
a6674402
CY
7842012-06-11 Chong Yidong <cyd@gnu.org>
785
786 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
787 is uninstalled, if imagemagick is installed.
788
bb3faf5b
SM
7892012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
790
791 * emacs-lisp/cl-lib.el: Use lexical-binding.
792 (cl-map-extents, cl-maclisp-member): Remove.
793 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
794 (cl--set-substring, cl--block-wrapper, cl--block-throw)
795 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
796 * emacs-lisp/cl-extra.el: Use lexical-binding.
797 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
798 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
799 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
800 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
801 * emacs-lisp/cl-seq.el: Use lexical-binding.
802 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
803 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
804 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
805 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
806 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
807 CL's internals.
808
2fe4b125
MA
8092012-06-11 Michael Albinus <michael.albinus@gmx.de>
810
811 Sync with Tramp 2.2.6-pre.
812
813 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
814 `print-length' and `print-level' to nil, in order to avoid
815 truncation. Reported by Christopher Schmidt
816 <christopher@ristopher.com>.
817
818 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
819
820 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
821 New defmacro.
822 (tramp-compat-copy-directory): Add optional argument
823 COPY-CONTENTS. It is not handled yet.
824
825 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
826 (tramp-ftp-file-name-p): Simplify.
827
828 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
829 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
830 connection vector.
831
832 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
833 (tramp-methods): Do not use `tramp-password-end-of-line'.
834 (tramp-completion-function-alist-putty): Handle UNIX case.
835 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
836 (tramp-do-file-attributes-with-stat)
837 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
838 gid as real numbers. They could run out of integer range on cygwin.
839 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
840 (tramp-sh-handle-expand-file-name): Handle hops.
87e6e64f
DA
841 (tramp-open-connection-setup-interactive-shell):
842 Use `tramp-cleanup'. Move check for busyboxes ...
843 (tramp-find-shell): ... here. Simplify implementation.
844 Set "remote-shell" property also for alternative shells.
845 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
846 If failing, a regular file would be written otherwise.
847 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
2fe4b125
MA
848 (tramp-find-inline-encoding): Cache the coding commands in the
849 process cache. Apply test command on the remote side, if defined.
850 (tramp-find-inline-compress): Cache the compress commands in the
851 process cache.
852 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
853 when requested. Handle hops.
854 (tramp-current-connection): New defvar.
87e6e64f
DA
855 (tramp-maybe-open-connection): Use `tramp-cleanup'.
856 Throw `suppress', if there was a failed connection shortly before.
2fe4b125 857 Handle user interrupt. (Bug#10187)
87e6e64f
DA
858 (tramp-get-inline-compress, tramp-get-inline-coding):
859 Read connection properties from the process cache.
2fe4b125
MA
860
861 * net/tramp-smb.el (tramp-smb-server-version)
87e6e64f
DA
862 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
863 New defconsts.
2fe4b125
MA
864 (tramp-smb-prompt): Extend for powershell prompt.
865 (tramp-smb-file-name-handler-alist): Add handlers for
866 `process-file', `shell-command' and `start-file-process'.
867 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
868 (tramp-smb-winexe-shell-command-switch): New defcustoms.
869 (tramp-smb-file-name-p): Simplify.
870 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
871 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
872 (tramp-smb-shell-quote-argument): New defuns.
873 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
874 Implement using "tar". By this, time-stamps are preserved.
875 (tramp-smb-handle-copy-file): Handle also the case of directories.
876 (tramp-smb-do-file-attributes-with-stat)
87e6e64f
DA
877 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
878 Use `tramp-get-connection-buffer').
2fe4b125
MA
879 (tramp-smb-handle-rename-file): Use "rename", when source and
880 target are on the same share.
87e6e64f
DA
881 (tramp-smb-maybe-open-connection): Handle wrong passwords.
882 Use `tramp-smb-server-version'.
2fe4b125
MA
883 (tramp-smb-wait-for-output): Remove prompt.
884
885 * net/tramp.el (top): Require 'cl.
87e6e64f
DA
886 (tramp-methods, tramp-rsh-end-of-line):
887 Remove `tramp-password-end-of-line' from docstring.
2fe4b125
MA
888 (tramp-save-ad-hoc-proxies): New defcustom.
889 (tramp-completion-function-alist): Adapt docstring.
890 (tramp-default-password-end-of-line): Remove defcustom.
891 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
892 (tramp-user-regexp, tramp-file-name-regexp-unified)
893 (tramp-file-name-regexp-url): Extend regexp by hop separator.
894 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
895 (tramp-remote-file-name-spec-regexp): New defconst.
896 (tramp-file-name-structure): Extend structure for hops.
897 (tramp-get-method-parameter): Move up.
898 (tramp-file-name-p, tramp-dissect-file-name)
899 (with-parsed-tramp-file-name): Handle hops.
900 (tramp-file-name-hop): New defun.
901 (tramp-make-tramp-file-name): New optional arg HOP.
902 (tramp-message-show-progress-reporter-message): New defvar.
903 (tramp-with-progress-reporter): Use it. We cannot use
904 `tramp-message-show-message' here, because this suppresses also
905 error buffers.
906 (tramp-error-with-buffer): Suppress buffer view, if
87e6e64f
DA
907 `tramp-message-show-message' is nil.
908 Use `tramp-get-connection-buffer'.
2fe4b125
MA
909 (tramp-cleanup): New defun.
910 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
911 (tramp-file-name-handler): If `debug-on-error' is set, propagate
912 an error unchanged.
913 (tramp-completion-handle-file-name-all-completions): Handle hops.
914 Fix an error when called from ido.
915 (tramp-completion-dissect-file-name): Use better local variable
916 name. Add hop to the vector.
917 (tramp-handle-insert-file-contents): Use progress-reporter for the
918 whole scenario.
919 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
920 to `t'.
921 (tramp-check-for-regexp): Simplify search.
922 (tramp-enter-password): Remove it. Move implementation ...
923 (tramp-action-password): ... here.
924 (tramp-mode-string-to-int, tramp-local-host-p)
925 (tramp-make-tramp-temp-file, tramp-read-passwd)
87e6e64f
DA
926 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
927 Set tramp-autoload cookie.
2fe4b125
MA
928
929 * net/trampver.el: Update release number.
930
9312012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
932 Michael Albinus <michael.albinus@gmx.de>
933
934 * net/tramp.el (tramp-set-completion-function): Fix docstring.
935 (tramp-parse-group, tramp-parse-file)
936 (tramp-parse-shostkeys-sknownhosts): New defuns.
937 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
938 (tramp-parse-shosts-group, tramp-parse-sconfig)
939 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
940 (tramp-parse-sknownhosts, tramp-parse-hosts)
941 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
942 Use them.
943 (tramp-parse-passwd-group, tramp-parse-netrc-group)
944 (tramp-parse-putty-group): Don't narrow.
945 (tramp-parse-putty): Make a loop.
946 (tramp-file-name-handler): Catch the `suppress' signal.
947
72834e10
CY
9482012-06-11 Chong Yidong <cyd@gnu.org>
949
950 * image.el (imagemagick-register-types): Put the ImageMagick entry
951 at the end of image-type-file-name-regexps.
952
a4712e11
JB
9532012-06-11 Johan Bockgård <bojohan@gnu.org>
954
955 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
956 (pcase, pcase-let*, pcase-dolist): Use them.
957
82ad98e3
SM
9582012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
959
960 * emacs-lisp/pcase.el (pcase--let*): New function.
961 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
962 (pcase--expand): Use macroexp-let².
963
f80efb86
SM
9642012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
965
966 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
967 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
968 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
969 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
970 * emacs-lisp/derived.el: Use pcase instead of `cl'.
971 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
972
31ca4639 9732012-06-10 Glenn Morris <rgm@gnu.org>
94f0aa34 974
31ca4639
CY
975 * mail/rmail.el (rmail-yank-current-message): Leave point at
976 correct position. (Bug#11660)
94f0aa34 977
31ca4639 9782012-06-10 Chong Yidong <cyd@gnu.org>
9e1b8ec4 979
31ca4639 980 * allout-widgets.el: Fix code header.
9e1b8ec4 981
31ca4639 9822012-06-10 Chong Yidong <cyd@gnu.org>
00cd0305 983
f80efb86
SM
984 * cus-edit.el (customize-changed-options-previous-release):
985 Bump to 24.1.
31ca4639 986
642b6d30
AS
9872012-06-09 Andreas Schwab <schwab@linux-m68k.org>
988
989 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
990
4f5d2ba1
CY
9912012-06-09 Chong Yidong <cyd@gnu.org>
992
993 * ebuff-menu.el (electric-buffer-list): Preserve header line.
994
e75852fd
MR
9952012-06-09 Martin Rudalics <rudalics@gmx.at>
996
997 * window.el (special-display-popup-frame): Don't use
998 window--display-buffer (Bug#11651).
999
1e48e282
EZ
10002012-06-09 Eli Zaretskii <eliz@gnu.org>
1001
8a26b487
EZ
1002 Fix parallel builds: make sure loaddefs.el is not being written
1003 while Lisp files are compiled.
1004 (compile): Don't depend on 'mh-autoloads'.
1005 (compile-CMD, compile-SH): Depend on 'autoloads'.
1006 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
1007
1e48e282
EZ
1008 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
1009
6175e34b
CY
10102012-06-09 Chong Yidong <cyd@gnu.org>
1011
1012 * face-remap.el (face-remap-add-relative, face-remap-set-base)
1013 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
1014 Doc fixes (Bug#11225).
1015
d9857e53
SM
10162012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1017
1018 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
1019 a function if there's a clear indication that it has a compiler-macro.
1020 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
1021 (macro-declarations-alist): Add arglist to declaration functions.
1022 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
1023 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
1024 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
1025 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
1026 Also add autoload to find the compiler macro.
1027 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
1028 (cl--compiler-macro-member, cl--compiler-macro-assoc)
1029 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
1030 (cl--compiler-macro-get): New functions, replacing calls to
1031 cl-define-compiler-macro.
1032 (cl-typep) [compiler-macro]: Use macroexp-let².
1033
f81298f8 10342012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
ee574791
UJ
1035
1036 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
1037 string properly, fixes Bug#11473.
1038
4b56d0fe
CY
10392012-06-08 Chong Yidong <cyd@gnu.org>
1040
1041 * faces.el (set-face-attribute): Doc fix.
1042 (modify-face): Don't use :bold and :italic.
1043 (error, warning, success): Tweak definitions.
1044
1045 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
1046 (custom-modified, custom-set, custom-changed, custom-themed)
1047 (custom-saved, custom-button, custom-button-mouse)
1048 (custom-button-pressed, custom-state, custom-comment-tag)
1049 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
1050 (custom-group-subtitle): Use new-style face specs.
1051 (custom-invalid-face, custom-rogue-face, custom-modified-face)
1052 (custom-set-face, custom-changed-face, custom-saved-face)
1053 (custom-button-face, custom-button-pressed-face)
1054 (custom-documentation-face, custom-state-face)
1055 (custom-comment-face, custom-comment-tag-face)
1056 (custom-variable-tag-face, custom-variable-button-face)
1057 (custom-face-tag-face, custom-group-tag-face-1)
1058 (custom-group-tag-face): Remove obsolete face alias.
1059
1060 * epa.el (epa-validity-high, epa-validity-medium)
1061 (epa-validity-low, epa-mark, epa-field-name, epa-string)
1062 (epa-field-name, epa-field-body):
1063 * font-lock.el (font-lock-comment-face, font-lock-string-face)
1064 (font-lock-keyword-face, font-lock-builtin-face)
1065 (font-lock-function-name-face, font-lock-variable-name-face)
1066 (font-lock-type-face, font-lock-constant-face):
1067 * ido.el (ido-first-match, ido-only-match, ido-subdir)
1068 (ido-virtual, ido-indicator, ido-incomplete-regexp):
1069 * speedbar.el (speedbar-button-face, speedbar-file-face)
1070 (speedbar-directory-face, speedbar-tag-face)
1071 (speedbar-selected-face, speedbar-highlight-face)
1072 (speedbar-separator-face):
1073 * whitespace.el (whitespace-newline, whitespace-space)
1074 (whitespace-hspace, whitespace-tab, whitespace-trailing)
1075 (whitespace-line, whitespace-space-before-tab)
1076 (whitespace-space-after-tab, whitespace-indentation)
1077 (whitespace-empty):
1078 * emulation/cua-base.el (cua-global-mark):
1079 * eshell/em-prompt.el (eshell-prompt):
1080 * net/newst-plainview.el (newsticker-new-item-face)
1081 (newsticker-old-item-face, newsticker-immortal-item-face)
1082 (newsticker-obsolete-item-face, newsticker-date-face)
1083 (newsticker-statistics-face, newsticker-default-face):
1084 * net/newst-reader.el (newsticker-feed-face)
1085 (newsticker-extra-face, newsticker-enclosure-face):
1086 * net/newst-treeview.el (newsticker-treeview-face)
1087 (newsticker-treeview-new-face, newsticker-treeview-old-face)
1088 (newsticker-treeview-immortal-face)
1089 (newsticker-treeview-obsolete-face)
1090 (newsticker-treeview-selection-face):
1091 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
1092 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
1093 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
1094 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
1095 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
1096 (nxml-outline-active-indicator, nxml-outline-ellipsis):
1097 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
1098 (mpuz-text):
1099 * progmodes/vera-mode.el (vera-font-lock-number)
1100 (vera-font-lock-function, vera-font-lock-interface):
1101 * textmodes/table.el (table-cell): Use new-style face specs, and
1102 don't use the old :bold and :italic attributes.
1103
1104 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
1105 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
1106 (ebrowse-member-class, ebrowse-progress): Likewise.
1107 (ebrowse-tree-mark-face, ebrowse-root-class-face)
1108 (ebrowse-file-name-face, ebrowse-default-face)
1109 (ebrowse-member-attribute-face, ebrowse-member-class-face)
1110 (ebrowse-progress-face): Remove obsolete faces.
1111
1112 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1113 Inherit from error and warning faces respectively.
1114
1115 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1116 Likewise.
f80efb86
SM
1117 (flyspell-incorrect-face, flyspell-duplicate-face):
1118 Remove obsolete aliases.
4b56d0fe 1119
03310646
MA
11202012-06-08 Michael Albinus <michael.albinus@gmx.de>
1121
1122 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1123 Avoid infloop.
1124
513749ee
SM
11252012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1126
1127 * startup.el (argv, argi): Make lexically scoped.
1128 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
1129 * emacs-lisp/cl-macs.el: Use lexical-binding.
1130 Rename cl-bind-* to cl--bind-*.
1131 * files.el: Don't require `cl' since it doesn't use it.
1132 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
1133
595ef4ad
JB
11342012-06-08 Juanma Barranquero <lekktu@gmail.com>
1135
1136 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
1137 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
1138 instead of calling external sort utility.
1139 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
1140
e9f66fcb
EZ
11412012-06-08 Eli Zaretskii <eliz@gnu.org>
1142
1143 * descr-text.el (describe-char): Mention how to insert the
1144 character, if the current input method doesn't support it.
1145 See the discussion in this thread for the details:
1146 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1147
3d10db47
SS
11482012-06-08 Sam Steingold <sds@gnu.org>
1149
1150 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1151 XF86Back to previous-buffer.
1152 (minibuffer-local-map): Bind them to next-history-element and
1153 previous-history-element respectively.
1154 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1155 help-go-back respectively.
1156 * info.el (Info-mode-map): Bind them to Info-history-forward and
1157 Info-history-back respectively.
1158 These are the keys next to Up on the ThinkPad keyboard.
1159
de7e2b36
SM
11602012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1161
1162 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1163 * emacs-lisp/cl-macs.el: Provide itself.
1164 (cl--labels-convert-cache): New var.
1165 (cl--labels-convert): New function.
1166 (cl-flet, cl-labels): New implementation with new semantics, relying on
1167 lexical-binding.
1168 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1169 (cl-closure-vars, cl--function-convert-cache)
1170 (cl--function-convert): Move from cl-macs.el.
1171 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1172 rename by removing the "cl-" prefix.
1173 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1174
6fa6c4ae
SM
11752012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1176
1177 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1178 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1179 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1180 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1181 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1182 (cl-hash-table-count): Add old compatibility aliases.
1183
1184 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1185 Use macroexpand-all-environment instead.
1186 (cl--old-macroexpand): New var.
1187 (cl--sm-macroexpand): New function.
1188 (cl-symbol-macrolet): Use it during macro expansion.
1189 (cl--function-convert-cache): New var.
1190 (cl--function-convert): New function, extracted from
1191 cl-macroexpand-all.
1192 (cl-lexical-let): Use it.
1193
1194 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1195 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1196 (cl-member): Remove old alias.
1197
1198 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1199 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1200 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1201 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1202 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1203 (cl-macroexpand-cmacs): Remove var.
1204 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1205 Use macroexpand-all instead.
1206
4dd1c416
SM
12072012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1208
1209 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1210 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1211 (macroexp-copyable-p): New functions and macros.
1212 * emacs-lisp/edebug.el (edebug-unwrap):
1213 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1214 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1215 (pcase--let*): Remove.
1216 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1217 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1218 macroexp-const-p instead.
1219 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1220
1221 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1222 instead of "cl-" for internal definitions. Use macroexp-const-p.
1223 (cl-old-bc-file-form): Remove var.
1224 (cl-const-exprs-p): Remove fun.
1225 (cl-labels, cl-macrolet): Use backquote.
1226 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1227 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1228 (cl-define-setf-expander): Rename from cl-define-setf-method.
1229 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1230
1231 * international/mule-cmds.el: Don't require CL.
1232 (view-hello-file): Don't use `letf'.
1233
ed8bd4d7
SM
12342012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1235
7287f2f3
SM
1236 * tmm.el (tmm-prompt): Use string-prefix-p.
1237 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1238 (tmm-add-prompt): Use minibuffer-completion-help.
1239 (tmm-delete-map): Remove.
1240
ed8bd4d7
SM
1241 * subr.el (kbd): Make it its own function.
1242
7b4cdbf4
SM
12432012-06-07 Stefan Merten <smerten@oekonux.de>
1244
1245 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1246 Silence compiler warnings. Fix versions.
ed8bd4d7 1247 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
7b4cdbf4 1248 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
ed8bd4d7 1249 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
7b4cdbf4
SM
1250 (rst-package-emacs-version-alist): Correct Emacs version to
1251 represent major merge with upstream.
ed8bd4d7 1252 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
7b4cdbf4 1253
2b48d721
GM
12542012-06-06 Glenn Morris <rgm@gnu.org>
1255
1256 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1257 Only print environment variables if set.
1258
fa779ab0
SM
12592012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1260
1261 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1262 (macroexp--cons): Rename from maybe-cons.
1263 (macroexp--accumulate): Rename from macroexp-accumulate.
1264 (macroexp--all-forms): Rename from macroexpand-all-forms.
1265 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1266 (macroexp--expand-all): Rename from macroexpand-all-1.
1267
628299e0
SS
12682012-06-06 Sam Steingold <sds@gnu.org>
1269
1270 * calendar/calendar.el (calendar-in-read-only-buffer):
1271 Call `special-mode' to enable the standard read-only keybindings.
1272
b7bb5838
SM
12732012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1274
1275 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1276 with "loading" messages (bug#11635).
1277
dfb308ba
MA
12782012-06-06 Michael Albinus <michael.albinus@gmx.de>
1279
1280 * files.el (enable-remote-dir-locals): New option.
1281 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1282
0372ee92
MA
1283 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1284 Ensure, that the temp directory is local.
1285
1286 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1287 `temporary-file-directory'.
1288
eed0bb91
MA
1289 * progmodes/python.el (python-send-region): Ensure, that the
1290 temporary file is created also in the remote case.
1291
7a58f64d
GM
12922012-06-06 Glenn Morris <rgm@gnu.org>
1293
f7dd4e98
GM
1294 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1295 (vc-rcs-update-changelog): Use it.
1296
276d5f5d
GM
1297 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
1298
7a58f64d
GM
1299 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1300 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1301 (vc-sccs-diff): Replace use of the external vcdiff script.
1302
daed4003
GM
13032012-06-05 Glenn Morris <rgm@gnu.org>
1304
1305 * ledit.el: Move to obsolete/.
1306
48c455c7
SS
13072012-06-05 Sam Steingold <sds@gnu.org>
1308
1309 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1310 patch (Bug#11140).
1311
57a7d507
SM
13122012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1313
d32926ff
SM
1314 * emacs-list/cust-print.el: Move to obsolete.
1315
53aacf21
SM
1316 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1317 compiler-macro expansion.
1318
57a7d507
SM
1319 Add native compiler-macro support.
1320 * emacs-lisp/macroexp.el (macroexpand-all-1):
1321 Support compiler-macros directly. Properly follow aliases and apply
1322 the compiler macros more thoroughly.
1323 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1324 macroexpand now properly follows aliases.
1325 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1326 (cl-compiler-macroexpand): Use new prop.
1327 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1328
1329 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1330
51a5f9d8
MR
13312012-06-05 Martin Rudalics <rudalics@gmx.at>
1332
1333 * window.el (get-lru-window, get-mru-window, get-largest-window):
1334 New argument NOT-SELECTED to avoid picking the selected window.
1335 (window--display-buffer-1, window--display-buffer-2): Replace by
1336 new function window--display-buffer
1337 (display-buffer-same-window, display-buffer-reuse-window)
57a7d507
SM
1338 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1339 Use window--display-buffer.
51a5f9d8
MR
1340 (display-buffer-use-some-window): Remove temporary dedication
1341 hack by calling get-lru-window and get-largest-window with
1342 NOT-SELECTED argument non-nil. Call window--display-buffer.
1343
08f9f738
GM
13442012-06-05 Glenn Morris <rgm@gnu.org>
1345
1346 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1347 Replace external vcdiff script.
1348
e364a2b7
SM
13492012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1350
1351 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1352
041df390
CY
13532012-06-04 Chong Yidong <cyd@gnu.org>
1354
e364a2b7
SM
1355 * image.el (imagemagick-types-inhibit): Revert last change.
1356 Add INFO and M.
47b36b94 1357 (imagemagick-enabled-types): Remove CIN and EPS*.
041df390 1358
7c1898a7
SM
13592012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1360
1361 * emacs-lisp/cl-lib.el: Rename from cl.el.
1362 * emacs-lisp/cl.el: New compatibility file.
1363 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1364 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1365 to obey the "cl-" prefix.
1366 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1367
0c3461de
GM
13682012-06-03 Glenn Morris <rgm@gnu.org>
1369
1e266c88
GM
1370 * emacs-lisp/authors.el (authors-aliases): Addition.
1371
0c3461de
GM
1372 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1373 Fix :version.
1374
d8a52e15
SM
13752012-06-03 Stefan Merten <smerten@oekonux.de>
1376
1377 * textmodes/rst.el: Add comments.
1378 (rst-transition, rst-adornment): New faces.
1379 (rst-adornment-faces-alist): Make default safe to reevaluate.
1380 Fixes
1381 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1382 Improve customization tags.
1383 (rst-define-level-faces): Clarify meaning.
1384
5205d6f6
CY
13852012-06-03 Chong Yidong <cyd@gnu.org>
1386
1387 * progmodes/compile.el (compilation-mode-line-fail)
7c1898a7
SM
1388 (compilation-mode-line-run, compilation-mode-line-exit):
1389 New faces.
5205d6f6
CY
1390 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1391
757ee657
JD
13922012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1393
7c1898a7
SM
1394 * progmodes/which-func.el (which-func-update-ediff-windows):
1395 New function. Use it in ediff-select-hook (Bug#11478).
757ee657 1396
5f2c76c6
CY
13972012-06-03 Chong Yidong <cyd@gnu.org>
1398
1399 * bindings.el: Remove explicit help text from format-mode-line.
1400 It is now supplied by mode-line-default-help-echo.
1401 (mode-line-front-space, mode-line-end-spaces)
1402 (mode-line-misc-info): New variables.
1403 (mode-line-modes, mode-line-position): Move the default value to
1404 the variable definition.
1405 (mode-line-default-help-echo): New defcustom.
383f7350
CY
1406 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1407 (mode-line-modified-help-echo): New functions.
1408 (mode-line-mule-info, mode-line-modified): Use them.
1409 (mode-line-eol-desc, propertized-buffer-identification):
1410 Consistency fixes for help text.
cbe46e5f
CY
1411 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1412 set-buffer-file-coding-system (Bug#289).
1413 (mode-line-mule-info-help-echo): Update help text.
5f2c76c6 1414
f2d6a3df
SM
14152012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1416
1417 * simple.el (execute-extended-command): Set real-this-command
1418 (bug#11506).
1419
37269466
CY
14202012-06-02 Chong Yidong <cyd@gnu.org>
1421
1422 Remove incorrect uses of "modeline" in comments, docstrings, and
1423 function/variable names (Bug#10329).
1424
1425 * cus-edit.el (mode-line):
1426 * dframe.el (dframe-mouse-hscroll):
1427 * emacs-lisp/re-builder.el:
1428 * emacs-lisp/easy-mmode.el (define-minor-mode):
1429 * frame.el (set-frame-name):
1430 * help.el (lookup-minor-mode-from-indicator):
1431 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1432 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1433 (c-toggle-hungry-state):
1434 * progmodes/antlr-mode.el (antlr-language-alist):
1435 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1436 * progmodes/vhdl-mode.el (vhdl-mode):
1437 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1438 * term/ns-win.el (ns-face-at-pos):
1439 * term/sup-mouse.el (sup-mouse-report):
1440 * textmodes/flyspell.el (flyspell-mode-line-string):
1441 * textmodes/ispell.el (ispell-highlight-face):
1442 * textmodes/reftex-global.el:
1443 * vc/vc-arch.el (vc-arch-mode-line-string):
1444 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1445 * vc/vc-git.el (vc-git-mode-line-string):
1446 * vc/vc-hooks.el (vc-display-status)
1447 (vc-default-mode-line-string):
1448 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1449
1450 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1451
1452 * dired.el (dired-sort-set-mode-line): Rename from
1453 dired-sort-set-modeline. All callers changed.
1454
1455 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1456 eshell-status-in-modeline.
1457
1458 * foldout.el (foldout-mode-line-string): Rename from
1459 foldout-modeline-string. All callers changed.
1460 (foldout-update-mode-line): Rename from foldout-update-modeline.
1461
1462 * subr.el (redraw-modeline): Make into obsolete alias.
1463
1464 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1465 timeclock-modeline-display. Make old name an alias.
1466 (timeclock-update-mode-line): Likewise. All callers changed.
1467 (timeclock-mode-line-display): No need to check before using
1468 add-hook.
1469 (timeclock-relative, timeclock-day-over-hook)
1470 (timeclock-use-elapsed, timeclock-mode-string)
1471 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1472
1473 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1474 crisp-mode-modeline-string.
1475
1476 * play/solitaire.el (solitaire-build-mode-line): Rename from
1477 solitaire-build-modeline. All callers changed.
1478
1479 * play/zone.el (zone-hiding-mode-line): Rename from
1480 zone-hiding-modeline. All callers changed.
1481 (zone): Remove unusued `modeline-hidden-level' property.
1482
1483 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1484 xscheme-modeline-initialize. All callers changed.
1485
1486 * strokes.el (strokes-lighter): Rename from
1487 strokes-modeline-string.
1488
1489 * textmodes/sgml-mode.el (html-face-tag-alist)
1490 (html-tag-face-alist): Use mode-line face instead of obsolete
1491 alias modeline.
1492
42152ee4
SM
14932012-06-02 Stefan Merten <smerten@oekonux.de>
1494
1495 * textmodes/rst.el: Always require `cl'.
4cf9b38d 1496 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
42152ee4 1497
95f520b5
CY
14982012-06-02 Chong Yidong <cyd@gnu.org>
1499
1500 * image.el (imagemagick-enabled-types): Rename from
1501 imagemagick-types-enable. Add many more types.
1502 (imagemagick-types-inhibit): Change default to nil.
1503 (imagemagick-filter-types): Caller changed.
1504
4a5f187a
SM
15052012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1506
03fef3e6
SM
1507 * emacs-lisp/cl-macs.el: Use backquotes.
1508 (cl-transform-function-property): Use eval-and-compile rather than
1509 abusing `require'.
1510 (defstruct): Use declare-function instead of with-no-warnings.
1511
4a5f187a
SM
1512 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1513 (byte-compile-output-docform): Re-add the print-circle bindings.
1514 (byte-compile-fix-header): Use #$ just because it's shorter.
1515 (byte-compile-output-file-form): Remove defun/defmacro.
1516
bd56924f
MR
15172012-06-01 Martin Rudalics <rudalics@gmx.at>
1518
1519 * simple.el (choose-completion): Remove now obsolete binding for
1520 owindow.
1521
046e38ce
MA
15222012-06-01 Michael Albinus <michael.albinus@gmx.de>
1523
1524 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1525 in order to avoid "Stack overflow in regexp matcher".
1526
32d72c2f
GM
15272012-05-31 Glenn Morris <rgm@gnu.org>
1528
1529 * image.el: For clarity, call imagemagick-register-types at
1530 top-level, rather than relying on a custom :initialize.
1531 (imagemagick-types-enable): New option. (Bug#11557)
60b5f187
GM
1532 (imagemagick-filter-types): New function. (Bug#7406)
1533 (imagemagick-register-types): Use imagemagick-filter-types.
32d72c2f
GM
1534 If disabling support, remove elements altogether rather
1535 than using an impossible regexp.
1536 (imagemagick-types-inhibit): Give it the default init function.
1537
dd41169b
SM
15382012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1539
4a5f187a
SM
1540 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1541 Handle arbitrary file name lengths (Bug#11585).
dd41169b 1542
efc00ab1 15432012-05-31 Martin Rudalics <rudalics@gmx.at>
5221ccb9
MR
1544
1545 * desktop.el (desktop-read): Clear previous and next buffers for
1546 all windows and bury *Messages* buffer (bug#11556).
1547
500fcedc
SM
15482012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1549
1550 Add `declare' for `defun'. Align `defmacro's with it.
1551 * emacs-lisp/easy-mmode.el (define-minor-mode)
1552 (define-globalized-minor-mode): Don't autoload the var definitions.
1553 * emacs-lisp/byte-run.el: Use lexical-binding.
1554 (defun-declarations-alist, macro-declarations-alist): New vars.
1555 (defmacro, defun): Use them.
1556 (make-obsolete, define-obsolete-function-alias)
1557 (make-obsolete-variable, define-obsolete-variable-alias):
1558 Use `declare'.
1559 (macro-declaration-function): Mark obsolete.
1560 * emacs-lisp/autoload.el: Use lexical-binding.
1561 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1562
6e8a1786
AM
15632012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1564
1565 * textmodes/ispell.el (ispell-with-no-warnings):
1566 Define as a macro.
500fcedc
SM
1567 (ispell-kill-ispell, ispell-change-dictionary):
1568 Use `called-interactively-p' for Emacs instead of obsolete
6e8a1786
AM
1569 `interactive-p'.
1570
61b108cc
SM
15712012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1572
1573 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1574 (macro-declaration-function): Move var from C code.
1575 (macro-declaration-function): Define function with defalias.
1576 * emacs-lisp/macroexp.el (macroexpand-all-1):
1577 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
1578 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
1579 defun/defmacro any more.
1580 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
1581 Provide fallback for unknown arglist.
1582 (byte-compile-arglist-warn): Change calling convention.
1583 (byte-compile-output-file-form): Move print-vars binding.
1584 (byte-compile-output-docform): Simplify accordingly.
1585 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
1586 (byte-compile-defmacro-declaration): Remove.
1587 (byte-compile-file-form-defmumble): Generalize to defalias.
1588 (byte-compile-output-as-comment): Return byte-positions.
1589 Simplify callers accordingly.
1590 (byte-compile-lambda): Use `assert'.
1591 (byte-compile-defun, byte-compile-defmacro): Remove.
1592 (byte-compile-file-form-defalias):
1593 Use byte-compile-file-form-defmumble.
1594 (byte-compile-defalias-warn): Remove.
1595
6d3f7c2f
SM
15962012-05-29 Stefan Merten <smerten@oekonux.de>
1597
1598 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
61b108cc 1599 possible. Fix authors. Improve comments. Improve loading of `cl'.
6d3f7c2f
SM
1600
1601 (rst-mode-abbrev-table): Merge definition.
1602 (rst-mode): Make sure `font-lock-defaults' is buffer local.
1603 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
1604
6dbaa1c7
UJ
16052012-05-29 Ulf Jasper <ulf.jasper@web.de>
1606
1607 * calendar/icalendar.el
1608 (icalendar-export-region): Export UID properly.
1609
16102012-05-29 Leo <sdl.web@gmail.com>
61b108cc
SM
1611 * calendar/icalendar.el (icalendar-import-format):
1612 Add `icalendar-import-format-uid' (Bug#11525).
6dbaa1c7
UJ
1613 (icalendar-import-format-uid): New.
1614 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
1615 Export UID.
1616
6876a58d
SM
16172012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1618
1619 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
1620 different alternative patterns.
1621 (pcase-codegen): Be more careful to preserve identity.
1622 (pcase--u1): Don't forget to mark vars as used.
1623
1624 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
1625 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
1626 (byte-compile-from-buffer): ...rather than here.
1627
1628 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
1629 functions from byte-compile-function-environment.
1630
46b7967e
TN
16312012-05-29 Troels Nielsen <bn.troels@gmail.com>
1632
1633 * window.el (window-deletable-p): Avoid deleting the root window
1634 of a frame with an active minibuffer.
1635
69d565e2
MR
16362012-05-29 Martin Rudalics <rudalics@gmx.at>
1637
1638 * simple.el (choose-completion): Use quit-window (Bug#11567).
1639
a149fa51
CY
16402012-05-29 Chong Yidong <cyd@gnu.org>
1641
1642 * whitespace.el (whitespace-cleanup): Fix usage of
1643 whitespace-empty-at-bob-regexp (Bug#11492).
1644
2b311310
AH
16452012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1646
1647 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
1648 revert (Bug#11488).
1649
b9cb2387
JL
16502012-05-29 Juri Linkov <juri@jurta.org>
1651
1652 * isearch.el (isearch-mode-map): Bind `M-s _' to
1653 `isearch-toggle-symbol'. Bind `M-s c' to
1654 `isearch-toggle-case-fold'.
1655 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1656 (isearch-forward): Add `M-s _' to the docstring.
1657 (isearch-forward-symbol, isearch-toggle-case-fold)
1658 (isearch-symbol-regexp): New functions. (Bug#11381)
1659
d5e61c1c
JL
16602012-05-29 Juri Linkov <juri@jurta.org>
1661
1662 * isearch.el (isearch-word): Add docstring. (Bug#11381)
1663 (isearch-occur, isearch-search-and-update): If `isearch-word' is
1664 a function, call it to get the regexp.
1665 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1666 property `isearch-message-prefix' instead of the string "word ".
1667 (isearch-search-fun-default): For the case of `isearch-word',
1668 return a lambda that calls re-search-forward/re-search-backward
1669 with a regexp returned by `word-search-regexp' or by the function
1670 in `isearch-word'.
1671
8cbd80f7
JL
16722012-05-29 Juri Linkov <juri@jurta.org>
1673
1674 * isearch.el (isearch-search-fun-default): New function.
1675 (isearch-search-fun): Move default part to the new function
1676 `isearch-search-fun-default'.
1677 (isearch-search-fun-function): Set the default value to
1678 `isearch-search-fun-default'. (Bug#11381)
1679
1680 * comint.el (comint-history-isearch-end):
1681 Use `isearch-search-fun-default'.
1682 (comint-history-isearch-search): Use `isearch-search-fun-default'
1683 and remove spacial case for `isearch-word'.
1684 (comint-history-isearch-wrap): Remove spacial case for
1685 `isearch-word'.
1686
1687 * hexl.el (hexl-isearch-search-function):
1688 Use `isearch-search-fun-default'.
1689
1690 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1691 Use `word-search-regexp' for `isearch-word'.
1692
1693 * misearch.el (multi-isearch-search-fun):
1694 Use `isearch-search-fun-default'.
1695
1696 * simple.el (minibuffer-history-isearch-search):
1697 Use `isearch-search-fun-default' and remove spacial case for
1698 `isearch-word'.
1699 (minibuffer-history-isearch-wrap): Remove spacial case for
1700 `isearch-word'.
1701
1702 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1703 Remove spacial case for `isearch-word'.
1704 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1705
85c8c5b6
AM
17062012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1707
1708 Decrease XEmacs incompatibilities.
1709 * textmodes/flyspell.el (flyspell-check-pre-word-p):
1710 Use `string-match'.
1711 (flyspell-delete-region-overlays): Use alternative definition for
1712 XEmacs.
1713 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1714 (flyspell-word): Use `process-kill-without-query' if XEmacs.
1715 (flyspell-mode-on): Use `interactive-p' if XEmacs.
1716 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1717 `define-obsolete-face-alias' under XEmacs, but old method.
1718
1719 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1720 `with-no-warnings' definition or Emacs alias.
1721 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1722 (ispell-word): Do not use `region-p' if XEmacs.
1723
8cab9efc
AM
17242012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1725
1726 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1727 Check for `ispell-dictionary-base-alist' instead of full
1728 `ispell-dictionary-alist'.
1729 (ispell-init-process): Show spellchecker when starting new Ispell
1730 process.
1731
fda91268
RZ
17322012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1733
1734 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1735 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1736
694ea8e3
JB
17372012-05-27 Juanma Barranquero <lekktu@gmail.com>
1738
1739 * version.el (motif-version-string, gtk-version-string)
1740 (ns-version-string): Declare.
1741
e4d4f539
JL
17422012-05-27 Juri Linkov <juri@jurta.org>
1743
1744 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1745 after the `eval-defun-1' specialcaseing
1746 like in `edebug-eval-defun' (bug#10181).
1747
1748 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1749 like in `eval-defun-1'.
1750
33017faf 17512012-05-27 Eli Zaretskii <eliz@gnu.org>
b30b64b9 1752
fda91268
RZ
1753 * mail/sendmail.el (mail-yank-region):
1754 Recognize rmail-yank-current-message in addition to insert-buffer.
1755 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
b30b64b9
EZ
1756 a *mail* buffer created through rmail-start-mail with sendmail as
1757 mail-user-agent.
1758
33017faf
GM
17592012-05-27 Chong Yidong <cyd@gnu.org>
1760
1761 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1762 Default to 256 (Bug#11267).
1763
1764 * help.el (describe-mode): Doc fix.
1765
04188bb9
GM
17662012-05-26 Glenn Morris <rgm@gnu.org>
1767
38264cc9
GM
1768 * w32-fns.el (w32-init-info): Remove.
1769 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1770
eb7afdad
GM
1771 * info.el (info-initialize): For self-contained NS builds, put the
1772 included info/ directory at the front. (Bug#2791)
1773
04188bb9
GM
1774 * paths.el (Info-default-directory-list): Make it a defcustom,
1775 mainly so that we can use custom-initialize-delay.
1776
a179e3f7
SM
17772012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1778
43416392
SM
1779 * subr.el (buffer-has-markers-at): Mark obsolete.
1780
a179e3f7 1781 * subr.el (lambda): Use declare.
43416392 1782
a179e3f7
SM
1783 * emacs-lisp/lisp-mode.el (lambda):
1784 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
1785
34a008d9
AH
17862012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1787
1788 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
1789
0a3b289f
GM
17902012-05-26 Glenn Morris <rgm@gnu.org>
1791
1792 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1793
758c81e8
GM
17942012-05-25 Glenn Morris <rgm@gnu.org>
1795
f9f334f0
GM
1796 * paths.el: Remove no-byte-compile.
1797 * loadup.el: No need to load paths.el uncompiled.
1798
87eb79c2
GM
1799 * image.el (imagemagick-types-inhibit): Doc fix.
1800
758c81e8
GM
1801 * version.el: Remove no-byte-compile and associated formatting.
1802 * loadup.el: No need to load version.el uncompiled. AFAICS, this
1803 is ancient code from when there was an "inc-vers.el".
1804
e7e85dc0
SM
18052012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1806
1807 * progmodes/gdb-mi.el: Minor style changes.
1808 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1809 Turn into minor modes.
1810 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1811 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1812 (gdb-shell): Remove unneeded let-binding.
1813 (gdb-get-many-fields): Eliminate O(n²) behavior.
1814
f31237a4
EZ
18152012-05-25 Eli Zaretskii <eliz@gnu.org>
1816
1817 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1818 platforms that don't link in fontset.c.
1819
bc1b21bb
JL
18202012-05-25 Juri Linkov <juri@jurta.org>
1821
1822 Use the same diff color scheme as in modern VCSes (bug#10181).
1823
1824 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1825 to avoid confusion with `diff-added' that now uses green colors.
1826 (diff-removed): Use shades of red.
1827 (diff-added): Use shades of green.
1828 (diff-changed): Leave just the yellow color.
1829 (diff-use-changed-face): New variable.
1830 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1831 how to highlight context diff changes.
1832 (diff-refine-change): Use shades of yellow.
1833 (diff-refine-removed): New face that uses shades of red.
1834 (diff-refine-added): New face that uses shades of green.
1835 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1836 `diff-refine-removed' in the call to `smerge-refine-subst'
1837 depending on the value of `diff-use-changed-face'.
1838
1839 * vc/smerge-mode.el (smerge-mine): Use shades of red.
1840 (smerge-other): Use shades of green.
1841 (smerge-base): Use shades of yellow.
1842 (smerge-refined-change): Empty face.
1843 (smerge-refined-removed): New face that uses shades of red.
1844 (smerge-refined-added): New face that uses shades of green.
1845 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
1846 args `props-r' and `props-a', and use them. Doc fix.
1847 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1848 on its value use different faces `smerge-refined-change',
1849 `smerge-refined-removed', `smerge-refined-added' in the call to
1850 `smerge-refine-subst'.
1851
1852 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1853 Add face condition `min-colors 88' with shades of red.
1854 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1855 `min-colors 88' with shades of green.
1856 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1857 `min-colors 88' with shades of yellow.
1858
6df9112c
GM
18592012-05-24 Glenn Morris <rgm@gnu.org>
1860
ead5edc0
GM
1861 * paths.el (prune-directory-list, remote-shell-program): Move to...
1862 * files.el (prune-directory-list, remote-shell-program): ...here.
1863 For the latter, delay initialization, prefer ssh, just search PATH.
1864
f18b81e6
GM
1865 * paths.el (term-file-prefix): Move to faces.el (the only user).
1866 * faces.el (term-file-prefix): Move here, make it a defcustom.
1867
ee2f89a6
GM
1868 * paths.el (news-directory, news-path, news-inews-program):
1869 Move to gnus/nnspool.el.
61a583ca 1870
f8815e4c
GM
1871 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1872
c8f3b42c
GM
1873 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1874 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1875 Make the latter a defcustom, with a delayed initialization.
1876
6df9112c
GM
1877 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1878 These were deleted from Gnus itself late 2010.
1879
5dadff36
JB
18802012-05-22 Juanma Barranquero <lekktu@gmail.com>
1881
9e1701c6
JB
1882 * progmodes/which-func.el (which-func-ff-hook):
1883 Check against user-error, not error.
1884
bd7239f5 1885 * emacs-lisp/edebug.el (top): Do not load or set up loading of
5dadff36
JB
1886 cl-specs.el, which no longer exists.
1887
3290526d
GM
18882012-05-22 Glenn Morris <rgm@gnu.org>
1889
1890 * info.el (info-emacs-bug): New command.
1891 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1892 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1893
ff0c3cfb
GM
18942012-05-21 Glenn Morris <rgm@gnu.org>
1895
1896 * makefile.w32-in (update-subdirs-SH):
1897 * Makefile.in (update-subdirs): Update for moved update-subdirs.
1898
5814f126
SM
18992012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1900
a52c0aa0
SM
1901 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1902
5814f126
SM
1903 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1904 Simplify Maven regexp, and make sure the file can't start with a space
1905 (bug#11517).
1906
b847032c
GM
19072012-05-21 Glenn Morris <rgm@gnu.org>
1908
1909 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1910 Scrap superfluous subshells.
1911
3858bfe7
SM
19122012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1913
1914 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1915 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1916
d14b0029
JB
19172012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
1918
1919 * calc/calc.el (calc-ensure-consistent-units): New variable.
1920
a52c0aa0
SM
1921 * calc/calc-units.el (math-consistent-units-p)
1922 (math-check-unit-consistency): New functions.
1923 (calc-quick-units, calc-convert-units):
1924 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1925 is non-nil.
d14b0029
JB
1926 (calc-extract-units): Fix typo.
1927
60c4db3a
SM
19282012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1929
77f3b62e
SM
1930 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1931
60c4db3a
SM
1932 * textmodes/flyspell.el: Commenting style, plus code simplifications.
1933 (flyspell-default-deplacement-commands): Don't spell check after
1934 repeated window/frame switches (e.g. triggered by mouse-movement).
1935 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1936 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
1937 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
1938 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
1939 Remove unused vars.
1940 (flyspell-get-casechars, flyspell-get-not-casechars):
1941 Simplify; Don't bother removing a ] just to add it back.
1942 * textmodes/ispell.el (ispell-program-name): Use executable-find.
1943
b1a10716
RS
19442012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
1945
1946 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
1947 New functions.
bd7239f5 1948 (math-function-table): Add support for more C functions.
b1a10716 1949
3f1b25b5
AM
19502012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1951
1952 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
1953 (flyspell-debug-signal-word-checked): Protect delay handling for
1954 otherchars against empty otherchars.
1955
b581bb5c
SM
19562012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1957
1958 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
1959 their respective macro declarations.
1960 * skeleton.el (define-skeleton):
1961 * progmodes/compile.el (define-compilation-mode):
1962 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
1963 (define-ibuffer-filter):
1964 * emacs-lisp/generic.el (define-generic-mode):
1965 * emacs-lisp/easy-mmode.el (define-minor-mode)
1966 (define-globalized-minor-mode):
1967 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
1968 * emacs-lisp/byte-run.el (defsubst):
1969 * custom.el (deftheme): Add doc-string metadata.
1970
70b8ef8f
SM
19712012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1972
1973 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
1974
b1198e17
SM
19752012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1976
9abdc45d
SM
1977 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
1978
b1198e17
SM
1979 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
1980 * emacs-lisp/cl-macs.el: Idem.
1981 * emacs-lisp/cl-specs.el: Remove.
1982
4735906a
SM
19832012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1984
1985 Minor renaming of internal CL functions and variables.
1986 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
1987 (cl--position): Rename from cl-position.
1988 (cl--delete-duplicates): Rename from cl-delete-duplicates.
1989 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
1990 (cl--random-state): Rename from *random-state*.
1991
ac348012
SM
19922012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
1993
1994 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
1995 parens around the arg list (bug#11499).
1996
a0a79cde
JL
19972012-05-17 Juri Linkov <juri@jurta.org>
1998
1999 * isearch.el (word-search-regexp, word-search-backward)
2000 (word-search-forward, word-search-backward-lax)
2001 (word-search-forward-lax): Move functions from search.c
2002 (bug#10145, bug#11381).
2003
65034a51
AM
20042012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2005
2006 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
2007 (flyspell-debug-signal-word-checked): Delay for otherchars as for
2008 normal word components.
2009
1a72a195
SM
20102012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
2011
2012 * minibuffer.el (completion--sifn-requote): Fix last change.
2013 (minibuffer-local-must-match-filename-map):
2014 Move define-obsolete-variable-alias before its var.
2015
fdb058c2
SM
20162012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
2017
c41045e6
SM
2018 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
2019
036dfb8b
SM
2020 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
2021 behavior.
2022 (completion--string-equal-p): New function.
2023 (completion--twq-all): Use it to get better assertion failure data.
2024
2473256d
SM
2025 Only handle ".." and '..' quoting in shell-mode (bug#11466).
2026 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
2027 (shell--requote-argument): New functions.
2028 (shell-completion-vars): Use them.
2029 (shell--parse-pcomplete-arguments): Rename from
2030 shell-parse-pcomplete-arguments.
2031 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
2032 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
2033 Obey comint-file-name-quote-list.
2034
fdb058c2
SM
2035 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
2036 (smie-indent-keyword): Use it.
2037
51fa99f1
SM
20382012-05-14 Stefan Merten <smerten@oekonux.de>
2039
2040 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
2041
e18afed7 20422012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
d9d1dfef
SM
2043
2044 * net/rlogin.el (rlogin-mode-map): Fix last change.
2045
e18afed7 20462012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
8633b1f4
JW
2047
2048 * mail/smtpmail.el (smtpmail-send-command): Send the command and
2049 the following \r\n using a single `process-send-string', since the
2050 Lotus SMTP server refuses to accept any commands if they are sent
e18afed7 2051 with two `process-send-string's (Bug#11444).
8633b1f4 2052
e18afed7 20532012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
fe263b8f 2054
fdb058c2
SM
2055 * shell.el (shell-parse-pcomplete-arguments):
2056 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
e18afed7 2057
2d21d7f6
WJ
20582012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2059
e18afed7 2060 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2d21d7f6
WJ
2061 (image-transform-scale, image-transform-right-angle-fudge): New vars.
2062 (image-transform-width, image-transform-fit-width): New functions.
2063 (image-transform-properties): Use them.
2064 (image-transform-check-size): New function.
2065 (image-toggle-display-image): Use it (for testing).
2066 (image-transform-set-rotation): Reduce angle mod 360.
2067 Delete obsolete comment.
2068
7102e6d0
WJ
20692012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2070
2071 * image-mode.el: Fix scaling (bug#11399).
2072 (image-transform-resize): Doc fix.
2073 (image-transform-properties): Default scale is 1 and height should
2074 be an integer.
2075
06bc5e6e
SM
20762012-05-13 Johan Bockgård <bojohan@gnu.org>
2077
2078 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
2079 than hard-coding `car', to fix misbehavior when moving forward.
2080
0ae03b6a
CY
20812012-05-13 Chong Yidong <cyd@gnu.org>
2082
2083 * emacs-lisp/tabulated-list.el (tabulated-list-format)
2084 (tabulated-list-entries, tabulated-list-padding)
2085 (tabulated-list-sort-key): Make permanent-local.
2086
2087 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
2088 (electric-buffer-list): Put electric buffer menu
2089 command descriptions in this docstring, instead of the docstring
2090 of electric-buffer-menu-mode. Code cleanups.
2091 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
2092 Electric-buffer-menu-mode.
2093 (electric-buffer-update-highlight): Minor code cleanup.
2094
205a7391
MA
20952012-05-13 Michael Albinus <michael.albinus@gmx.de>
2096
2097 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
2098 (Bug#11447)
2099
e5bd0a28
SM
21002012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2101
2102 Move define-obsolete-variable-alias before the var's definition.
2103 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
2104 * tooltip.el (tooltip-hook):
2105 * textmodes/reftex-toc.el (reftex-toc-map):
2106 * textmodes/reftex-sel.el (reftex-select-label-map)
2107 (reftex-select-bib-map):
2108 * textmodes/reftex-index.el (reftex-index-map)
2109 (reftex-index-phrases-map):
2110 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
2111 * progmodes/meta-mode.el (meta-mode-map):
2112 * novice.el (disabled-command-hook):
2113 * loadhist.el (unload-hook-features-list):
2114 * frame.el (blink-cursor):
2115 * files.el (find-file-not-found-hooks, write-file-hooks)
2116 (write-contents-hooks):
2117 * emulation/tpu-edt.el (GOLD-map):
2118 * emacs-lock.el (emacs-lock-from-exiting):
2119 * emacs-lisp/generic.el (generic-font-lock-defaults):
2120 * emacs-lisp/chart.el (chart-map):
2121 * dos-fns.el (register-name-alist):
2122 * dired-x.el (dired-omit-files-p):
2123 * desktop.el (desktop-enable):
2124 * cus-edit.el (custom-mode-hook):
2125 * buff-menu.el (buffer-menu-mode-hook):
2126 * bookmark.el (bookmark-read-annotation-text-func)
2127 (bookmark-exit-hooks):
2128 * allout.el (allout-mode-deactivate-hook)
2129 (allout-exposure-change-hook, allout-structure-added-hook)
2130 (allout-structure-deleted-hook, allout-structure-shifted-hook):
2131 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
2132 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
2133 comes before the corresponding variable's definition.
2134
ac59c2f6
CY
21352012-05-12 Chong Yidong <cyd@gnu.org>
2136
2137 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
0d909786
CY
2138 (Buffer-menu-mouse-select): Restore function (Bug#11459).
2139 (Buffer-menu-mode-map): Bind it.
2140 (Buffer-menu--pretty-name): Add a mouse-face property.
ac59c2f6 2141
dee6c9a3
SM
21422012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2143
2171cea5
SM
2144 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2145 (prolog-upper-case-string, prolog-lower-case-string)
2146 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2147 (prolog-use-smie, prolog-smie-grammar): New vars.
2148 (prolog-smie-forward-token, prolog-smie-backward-token)
2149 (prolog-smie-rules): New funs.
2150 (prolog-comment-indent): Remove.
2151 (prolog-mode-variables): Use default comment indentation instead.
2152 Setup SMIE.
2153 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2154 (prolog-mode): Don't call them any more.
2155 (prolog-electric-colon, prolog-electric-dash)
2156 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2157
aa0382bd
SM
2158 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2159
dbacb4bd
SM
2160 * minibuffer.el (completion--twq-all): Again, allow case differences.
2161
13bdd94c
SM
2162 * term.el: Move keymap initialization code to be more idiomatic.
2163 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2164 (term-terminal-menu): Move initialization into declaration.
2165 (term-escape-char): Let the user set it in her .emacs.
2166
ff46c759
SM
2167 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2168 Provide SMIE-based indentation (not enabled by default yet).
2169 (sh-mode-map): Don't bind electric keys.
2170 Use electric-pair-mode instead of skeleton-pair.
2171 (sh-assignment-regexp): Fit within 80 columns.
2172 (sh-indent-supported): Specify actual shell name instead of boolean.
2173 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2174 (sh-maybe-here-document): Use it. Make obsolete.
2175 (sh-electric-here-document-mode) New minor mode.
2176 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2177 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2178 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2179 (sh-smie-rc-grammar, sh-use-smie): New vars.
2180 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2181 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2182 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2183 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2184 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2185 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2186 (sh-set-shell): Use smie-setup if requested.
2187
dee6c9a3
SM
2188 * term.el (term-set-escape-char): Properly set term-escape-char.
2189 See http://stackoverflow.com/questions/10524656.
2190
9f9aa044
CY
21912012-05-10 Chong Yidong <cyd@gnu.org>
2192
2193 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2194 Use url-generic-parse-url, and handle host names and Windows
2195 filenames properly.
2196 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2197 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2198 URL schemes to work on.
2199 (ffap--toggle-read-only): New function.
2200 (ffap-read-only, ffap-read-only-other-window)
2201 (ffap-read-only-other-frame): Use it.
2202 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2203 necessary for ffap-url-unwrap-remote.
2204
836d29b3
DA
22052012-05-10 Dave Abrahams <dave@boostpro.com>
2206
2207 * cus-start.el (create-lockfiles): Add it.
2208
00fd78ed
CY
22092012-05-09 Chong Yidong <cyd@gnu.org>
2210
2211 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2212 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2213
666b903b 22142012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
1cb51c12
SM
2215
2216 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2217
666b903b 22182012-05-09 Chong Yidong <cyd@gnu.org>
18f00515
CY
2219
2220 * ansi-color.el (ansi-color-process-output): Check for validity of
2221 comint-last-output-start before using it. This avoids a bad
2222 interaction with gdb-mi's input/output buffer.
2223
666b903b 22242012-05-09 Glenn Morris <rgm@gnu.org>
fd075e7b
GM
2225
2226 * files.el (dir-locals-read-from-file):
2227 Mention dir-locals in any error message.
2228
666b903b 22292012-05-09 Chong Yidong <cyd@gnu.org>
25f292cd
CY
2230
2231 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2232 package (Bug#11410).
2233
f677562b
CY
2234 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2235 variables into description.
2236
666b903b 22372012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
3d53ee1b
SM
2238
2239 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2240 shell-delimiter-argument-list (bug#11348).
2241 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2242
b499d8d0
JB
22432012-05-09 Juanma Barranquero <lekktu@gmail.com>
2244
8f6b6da8
JB
2245 * textmodes/rst.el: Silence byte-compiler warnings.
2246 (rst-re-alist, rst-reset-section-caches): Move around.
2247 (rst-re): Use `characterp', not `char-valid-p'.
2248 (font-lock-beg, font-lock-end): Declare.
2249
4824146a
JB
2250 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2251 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2252
b499d8d0
JB
2253 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2254
ad89bb83
GM
22552012-05-08 Glenn Morris <rgm@gnu.org>
2256
2257 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2258
8bba5a75
SM
22592012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2260
49ed9c8e
SM
2261 * vc/log-edit.el: Add GNU coding standards highlighting.
2262 (log-edit-font-lock-gnu-style)
2263 (log-edit-font-lock-gnu-keywords): New vars.
2264 (log-edit-font-lock-keywords): New fun.
2265 (log-edit-mode): Don't fold case in font-lock.
2266 (log-edit-font-lock-keywords): Do not assume case-folding.
2267
07d00b56
SM
2268 * imenu.el: Misc cleanup. Make docstrings out of comments.
2269 Use lexical-binding.
2270 (imenu--index-alist, imenu--last-menubar-index-alist)
2271 (imenu-menubar-modified-tick): Use defvar-local.
2272 (imenu--split-menu): Remove unused var.
2273 (imenu--cleanup-seen): Declare as global.
2274 (imenu--cleanup): Use dolist.
2275
8bba5a75
SM
2276 * subr.el (defvar-local): Add debug spec and doc-string position.
2277
5075bdb5
GM
22782012-05-08 Glenn Morris <rgm@gnu.org>
2279
c052c904
GM
2280 * lisp/language/burmese.el, language/cham.el, language/czech.el:
2281 * language/english.el, language/georgian.el, language/greek.el:
2282 * language/japanese.el, language/khmer.el, language/korean.el:
2283 * language/lao.el, language/misc-lang.el, language/romanian.el:
2284 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2285 * language/thai.el, language/utf-8-lang.el:
2286 Remove no-byte-compile setting.
2287
5075bdb5
GM
2288 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2289
06f679a7
AH
22902012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2291
2292 * progmodes/make-mode.el (makefile-browse):
2293 Remove unnecessary interactive. (Bug#11324)
2294
03794570
GM
22952012-05-07 Glenn Morris <rgm@gnu.org>
2296
af8630f4
GM
2297 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2298
03794570
GM
2299 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2300
f0809a9d
SM
23012012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2302
28be5ce7
SM
2303 * loadup.el: Preload newcomment.el.
2304 * newcomment.el: Move autoload-only code to toplevel.
2305
f0809a9d
SM
2306 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2307 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2308 Handle new :right-align column property.
2309 (tabulated-list-print-col): Idem, plus use `display' text-property to
2310 try and preserve alignment for variable pitch fonts.
2311
1241b724
CY
23122012-05-07 Chong Yidong <cyd@gnu.org>
2313
2314 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2315 (tabulated-list-use-header-line): New var.
2316 (tabulated-list-init-header): Use it.
2317 (tabulated-list-print-fake-header): New function.
2318 (tabulated-list-print): Use it.
2319 (tabulated-list-sort-button-map): Add non-header-line commands.
2320 (tabulated-list-init-header): Add column name property to basic
2321 labels as well.
2322 (tabulated-list-col-sort): Handle non-header-line button case.
2323 (tabulated-list--sort-by-column-name): Fix a corner case.
2324
f0809a9d
SM
2325 * buff-menu.el (list-buffers--refresh):
2326 Handle Buffer-menu-use-header-line.
1241b724 2327
e5f9458f
CY
23282012-05-06 Chong Yidong <cyd@gnu.org>
2329
2330 * buff-menu.el: Convert to Tabulated List mode.
2331 (Buffer-menu-buffer+size-width): Make obsolete.
2332 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2333 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2334 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2335 documentation into docstring of buffer-menu.
2336 (Buffer-menu-toggle-files-only): Add an informative message.
2337 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2338 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2339 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2340 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2341 (Buffer-menu-execute, Buffer-menu-select)
2342 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2343 (Buffer-menu-bury): Use Tabulated List machinery.
2344 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2345 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
f0809a9d 2346 Delete.
e5f9458f
CY
2347 (list-buffers--refresh): New function.
2348 (list-buffers-noselect): Use it.
2349 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2350 (Buffer-menu--pretty-file-name): New helper functions.
2351
2352 * loadup.el: Preload tabulated-list.
2353
2354 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2355 tabulated-list-sort-column.
2356 (tabulated-list-init-header): Add the initial aligning space even
2357 if tabulated-list-padding is zero.
2358
e129292c
CS
23592012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2360
2361 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2362 whose cdr is not a cons cell correctly (bug#11038).
2363
6632d361
CY
23642012-05-06 Chong Yidong <cyd@gnu.org>
2365
e129292c
CS
2366 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2367 Accept additional plist in column descriptors.
6632d361
CY
2368 (tabulated-list-init-header): Obey it.
2369 (tabulated-list-get-entry): New function.
2370 (tabulated-list-put-tag): Use it. Use string-width instead of
2371 length.
2372 (tabulated-list--column-number): New function.
2373 (tabulated-list-print): Use it.
e129292c
CS
2374 (tabulated-list-print-col): New function.
2375 Set `tabulated-list-column-name' property on each column's text.
6632d361 2376 (tabulated-list-print-entry): Use it.
e129292c
CS
2377 (tabulated-list-delete-entry, tabulated-list-set-col):
2378 New functions.
6632d361
CY
2379 (tabulated-list-sort-column): New command (Bug#11337).
2380
3cc99f68
CY
2381 * buff-menu.el (list-buffers): Move C-x C-b binding from
2382 buff-menu.el to bindings.el.
2383
2384 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2385 :advertised-binding feature.
2386
52b61776
TN
23872012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2388
2389 * progmodes/compile.el (compilation-internal-error-properties):
2390 Calculate start position correctly when end-col is set but
2391 end-line is not (Bug#11382).
2392
ebfe2597
WJ
23932012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2394
2395 * man.el (Man-unindent): Use text-property-default-nonsticky to
2396 prevent untabify from inheriting face properties (Bug#11408).
2397
6d3f7c2f
SM
23982012-05-05 Stefan Merten <smerten@oekonux.de>
2399
2400 * textmodes/rst.el: Major merge with upstream development up to
2401 Docutils SVN r7399 / rst.el V1.2.1.
2402
2403 Clarify maintainership and authors.
2404
2405 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2406 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2407 (rst-official-version, rst-official-cvs-rev, rst-version)
2408 (rst-package-emacs-version-alist): New functions and variables
2409 for version information.
2410
2411 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2412 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2413 (rst-mode-syntax-table, rst-mode): New and corrected functions
2414 and variables representing reStructuredText features.
2415
2416 (rst-re): New function for reStructuredText regexes. Use in
2417 many places.
2418
2419 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2420 (rst-mode-map): Rebind keys.
2421
2422 (rst-mode-lazy, rst-font-lock-keywords)
2423 (rst-font-lock-extend-region)
2424 (rst-font-lock-extend-region-internal)
2425 (rst-font-lock-extend-region-extend)
2426 (rst-font-lock-find-unindented-line-limit)
2427 (rst-font-lock-find-unindented-line-match)
2428 (rst-adornment-level, rst-font-lock-adornment-level)
2429 (rst-font-lock-adornment-match)
2430 (rst-font-lock-handle-adornment-pre-match-form)
2431 (rst-font-lock-handle-adornment-matcher): Major revision of
2432 font-locking. Integrate with other code. Use `jit-lock-mode'.
2433
2434 (rst-preferred-adornments, rst-adjust-hook)
2435 (rst-new-adornment-down, rst-preferred-bullets)
2436 (rst-preferred-bullets, rst-indent, rst-indent-width)
2437 (rst-indent-field, rst-indent-literal-normal)
2438 (rst-indent-literal-minimized, rst-indent-comment): Change,
2439 extend and improve customization.
2440
2441 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2442 (rst-normalize-cursor-position, rst-get-decoration)
2443 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2444 (rst-rstrip, rst-toc-insert-find-delete-contents)
2445 (rst-shift-fill-region, rst-compute-bullet-tabs)
2446 (rst-debug-print-tabs, rst-debug-mark-found)
2447 (rst-shift-region-guts, rst-shift-region-right)
2448 (rst-shift-region-left, rst-use-char-classes)
2449 (rst-font-lock-keywords-function)
2450 (rst-font-lock-indentation-point)
2451 (rst-font-lock-find-unindented-line-begin)
2452 (rst-font-lock-find-unindented-line-end)
2453 (rst-font-lock-find-unindented-line)
2454 (rst-font-lock-adornment-point, rst-font-lock-level)
2455 (rst-adornment-level-alist): Remove functions and variables.
2456
2457 (rst-compare-adornments, rst-get-adornment-match)
2458 (rst-suggest-new-adornment, rst-get-adornments-around)
2459 (rst-adornment-complete-p, rst-get-next-adornment)
2460 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2461 (rst-straighten-adornments): Standardize function names to
2462 use "adornment" instead of "decoration". Correct callers.
2463 Similar standardizing in many places.
2464
2465 (rst-update-section, rst-adjust, rst-promote-region)
2466 (rst-enumerate-region, rst-bullet-list-region)
2467 (rst-repeat-last-character): Correct use of `interactive'.
2468
2469 (rst-classify-adornment, rst-find-all-adornments)
2470 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2471 (rst-find-leftmost-column, rst-repeat-last-character):
2472 Refactor functions.
2473
2474 (rst-find-title-line, rst-reset-section-caches)
2475 (rst-get-adornments-around, rst-adjust-adornment-work)
2476 (rst-arabic-to-roman, rst-roman-to-arabic)
2477 (rst-insert-list-pos, rst-insert-list-new-item)
2478 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2479 New functions.
2480
2481 (rst-all-sections, rst-section-hierarchy)
2482 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2483 New variables.
2484
2485 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2486 configuration instead of only buffer. Change where necessary.
2487
2488 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2489 (rst-shift-region, rst-adaptive-fill): New functions for
2490 indentation and filling.
2491
2492 (rst-comment-line-break, rst-comment-indent)
2493 (rst-comment-insert-comment, rst-comment-region)
2494 (rst-uncomment-region): New functions for handling comments.
2495
2496 (rst-compile): Quote shell arguments.
2497
2498 (rst-compile-pdf-preview, rst-compile-slides-preview):
2499 Delete temporary files after use.
2500
a43f98b3
GM
25012012-05-05 Glenn Morris <rgm@gnu.org>
2502
48176e8b
GM
2503 * calendar/cal-html.el: Optionally include holidays in the output.
2504 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2505 (cal-html-holidays): New option.
2506 (cal-html-css-default): Add holiday entry.
2507 (holiday-in-range): Autoload it.
2508 (cal-html-htmlify-entry): Add optional class argument.
2509 (cal-html-htmlify-list): Add optional holidays argument.
2510 (cal-html-insert-agenda-days): Include holidays in the output.
2511 (cal-html-one-month): Maybe include holidays.
2512
a43f98b3
GM
2513 * calendar/holidays.el (holiday-in-range):
2514 Move here from cal-tex-list-holidays.
2515 * calendar/cal-tex.el (cal-tex-list-holidays):
2516 Make it an obsolete alias for holiday-in-range. Update all callers.
2517
fef9d149 25182012-05-05 Chong Yidong <cyd@gnu.org>
eceeb5fc
CY
2519
2520 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2521 Nextstep.
2522
248da2f4
RW
25232012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2524
2525 * files.el (file-auto-mode-skip): New var.
2526 (set-auto-mode-1): Use it.
2527
f95e9344
SM
25282012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2529
df96ab1e
SM
2530 * repeat.el: Use lexical-binding.
2531 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2532 (repeat-undo-count): Remove.
2533 (repeat):
2534 * progmodes/octave-mod.el (octave-abbrev-start):
2535 * progmodes/f90.el (f90-abbrev-start):
2536 * face-remap.el (text-scale-adjust):
2537 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2538
5342bb06
SM
2539 * emacs-lisp/pcase.el (pcase--let*): New function.
2540 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2541 a bit more.
2542 (pcase--split-pred): Be more clever about ruling out overlap between
2543 a predicate and some constant pattern.
2544 (pcase--q1): Use `null' instead of (eq foo nil).
2545
f95e9344
SM
2546 * subr.el (setq-local, defvar-local): New macros.
2547 (kbd): Redefine as an alias.
2548 (with-selected-window): Leave unrelated frames alone.
2549 (set-temporary-overlay-map): New function.
2550
71873e2b
SM
25512012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2552
2553 * subr.el (user-error): New function.
2554 * window.el (switch-to-buffer):
2555 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2556 (smerge-match-conflict):
2557 * simple.el (previous-matching-history-element)
2558 (next-matching-history-element, goto-history-element, undo-more)
2559 (undo-start):
2560 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2561 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2562 (next-file, tags-loop-scan, list-tags, complete-tag):
2563 * progmodes/compile.el (compilation-loop):
2564 * mouse.el (mouse-minibuffer-check):
2565 * man.el (Man-bgproc-sentinel, Man-goto-page):
2566 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2567 (Info-history-forward, Info-follow-reference, Info-menu)
2568 (Info-extract-menu-item, Info-extract-menu-counting)
2569 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2570 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2571 (Info-next-reference, Info-prev-reference, Info-index)
2572 (Info-index-next, Info-follow-nearest-node)
2573 (Info-copy-current-node-name):
2574 * imenu.el (imenu--make-index-alist)
2575 (imenu-default-create-index-function, imenu-add-to-menubar):
2576 * files.el (basic-save-buffer, recover-file):
2577 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2578 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2579 (checkdoc-message-text, checkdoc-defun):
2580 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
2581 * cus-edit.el (customize-changed-options, customize-rogue)
2582 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
2583 (custom-variable-mark-to-reset-standard)
2584 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
2585 (custom-file):
2586 * completion.el (check-completion-length):
2587 * comint.el (comint-search-arg)
2588 (comint-previous-matching-input-string-position)
2589 (comint-previous-matching-input)
2590 (comint-replace-by-expanded-history-before-point, comint-send-input)
2591 (comint-copy-old-input, comint-backward-matching-input)
2592 (comint-goto-process-mark, comint-set-process-mark):
2593 * calendar/calendar.el (calendar-cursor-to-date): Use it.
2594 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
2595
8a61ee22
SM
25962012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2597
66408d1e
SM
2598 * dabbrev.el (dabbrev--ignore-case-p): New function.
2599 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
2600 Use it.
2601
8a61ee22
SM
2602 * files.el (automount-dir-prefix): Mark as obsolete.
2603
3c74813a
GM
26042012-05-04 Glenn Morris <rgm@gnu.org>
2605
2606 * patcomp.el, play/bruce.el: Move to obsolete/.
2607
0bfcf5c5
PE
26082012-05-04 Paul Eggert <eggert@cs.ucla.edu>
2609
2610 Fix minor Y10k bugs.
2611 * arc-mode.el (archive-unixdate):
2612 * autoinsert.el (auto-insert-alist):
2613 * calc/calc-forms.el (math-this-year):
2614 * emacs-lisp/copyright.el (copyright-current-year)
2615 (copyright-update-year, copyright):
2616 * tar-mode.el (tar-clip-time-string):
2617 * time.el (display-time-update):
2618 Don't assume years have 4 digits.
2619
78f3273a
CY
26202012-05-04 Chong Yidong <cyd@gnu.org>
2621
2622 * dos-w32.el (file-name-buffer-file-type-alist)
2623 (direct-print-region-use-command-dot-com):
2624 * ffap.el (ffap-menu-regexp):
2625 * find-file.el (ff-special-constructs):
2626 * follow.el (follow-debug):
2627 * forms.el (forms--debug):
2628 * iswitchb.el (iswitchb-all-frames):
2629 * ido.el (ido-all-frames):
2630 * emacs-lisp/timer.el (timer-max-repeats):
2631 * mail/feedmail.el (feedmail-mail-send-hook)
2632 (feedmail-mail-send-hook-queued):
2633 * mail/footnote.el (footnote-signature-separator):
2634 * mail/mailabbrev.el (mail-alias-separator-string)
2635 (mail-abbrev-mode-regexp):
2636 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
2637 * progmodes/idlwave.el (idlwave-libinfo-file)
2638 (idlwave-default-completion-case-is-down)
2639 (idlwave-library-routines): Convert defvars to defcustoms.
2640
2641 * mail/rmail.el (rmail-decode-mime-charset):
2642 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
2643 (idlwave-shell-fix-inserted-breaks)
2644 (idlwave-shell-activate-alt-keybindings)
2645 (idlwave-shell-use-breakpoint-glyph):
2646 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
2647
f7ae6719
SM
26482012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2649
2650 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2651
47086495
WS
26522012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
2653
2654 * progmodes/verilog-mode.el (font-lock-keywords):
2655 Fix mis-highligting auto. Reported by Craig Barner.
2656 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2657 defines from global name space. Reported by Dan Dever.
2658 (verilog-auto-reset, verilog-auto-reset-widths)
2659 (verilog-auto-tieoff): Support using unbased numbers for
2660 AUTORESET and AUTOTIEOFF.
2661 (verilog-submit-bug-report): Update variable list.
2662 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2663 parenthesis from not matching. Reported by Michael Rytting.
2664 (verilog-auto-template-lint): Fix hash error when linting modules
2665 with no used templates.
2666 (verilog-warn, verilog-warn-error)
2667 (verilog-warn-fatal): When non-interactive report multiple
2668 warnings before exiting. Suggested by Brad Dobbie.
2669 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2670 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2671 to report unused template errors. Reported by Brad Dobbie.
2672 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2673 nets, bug438. Reported by Vns Blore.
2674 (verilog-auto-inout-module, verilog-auto-reg)
2675 (verilog-read-decls, verilog-read-sub-decls-sig)
2676 (verilog-signals-edit-wire-reg, verilog-signals-with):
2677 Fix passing of Verilog data types in ANSI input/output ports
2678 such as "output logic" into the AUTOs. Special case "wire" and
2679 "reg" for backwards compatibility presuming Verilog 2001.
2680 (verilog-auto-ascii-enum): Add "auto enum" as alias.
2681 (verilog-preprocess): Fix replication of preprocess output.
2682 Reported by Brad Dobbie.
2683 (verilog-auto-inst-interfaced-ports):
2684 Create verilog-auto-inst-interfaced-ports, bug429.
2685 Reported by Julian Gorfajn.
2686 (verilog-after-save-font-hook)
2687 (verilog-before-save-font-hook): New variable.
2688 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2689 (verilog-save-font-mods): Wrap disabling fontification, reported
2690 by David Rogoff.
2691 (verilog-do-indent, verilog-pretty-declarations-auto)
2692 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2693 Reported by Pierre-David Pfister.
2694 (verilog-set-auto-endcomments): Fix endtask auto comments outside
2695 of class declarations, bug292. Reported by Kevin Heilman.
2696 (verilog-read-decls): Fix 'parameter type' not appearing in
2697 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
2698 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2699 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2700 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2701 Reported by David Kravitz.
2702
27032012-05-03 Michael McNamara <mac@mail.brushroad.com>
2704
2705 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2706 assignment with tests in ifs and for loops.
2707 (verilog-extended-complete-re, verilog-complete-reg): Change so
2708 that DPI inport functions don't look like fuction declarations.
2709 (verilog-pretty-expr): Don't line up assignment
2710 operations to the test and increment in if and for loops
2711 (verilog-extended-complete-re, verilog-complete-reg): Change so
2712 that DPI inport functions don't look like fuction declarations
2713
2e51d4b5
KH
27142012-05-03 Kenichi Handa <handa@m17n.org>
2715
2716 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
c846da43 2717 decoding, and show a warning message without signaling an error
2e51d4b5
KH
2718 (Bug#11282).
2719
2bd785a2
SM
27202012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2721
2722 * emacs-lisp/bytecomp.el
2723 (byte-compile-file-form-custom-declare-variable): Compile all elements,
2724 since cconv.el might have introduced :fun-body, internal-make-closure,
2725 and friends for bytecomp to handle (bug#11391).
2726 * custom.el (defcustom): Avoid ((λ ..) ..).
2727
99d27583
SM
27282012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2729
2730 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2731
55a71479
JB
27322012-05-02 Juanma Barranquero <lekktu@gmail.com>
2733
2734 * notifications.el (dbus-debug):
2735 * term/linux.el (gpm-mouse-enable):
2736 * term/screen.el (xterm-register-default-colors): Declare.
2737
7b97c764
CY
27382012-05-02 Chong Yidong <cyd@gnu.org>
2739
2bc356d7
CY
2740 * cus-start.el (gc-cons-percentage, exec-suffixes)
2741 (dos-display-scancodes, dos-hyper-key, dos-super-key)
2742 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2743 (make-cursor-line-fully-visible, void-text-area-pointer)
2744 (font-list-limit): Add customization data.
2745
7b97c764
CY
2746 * allout.el (allout-exposure-change-functions)
2747 (allout-structure-added-functions)
2748 (allout-structure-deleted-functions)
2749 (allout-structure-shifted-functions): Rename abnormal hooks from
2750 *-hook, and convert to defcustoms.
5d3385a0
JB
2751 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2752 Convert to defcustoms.
7b97c764
CY
2753 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2754
2755 * allout-widgets.el: Hook callers changed.
2756
90207a15 27572012-05-02 Eli Zaretskii <eliz@gnu.org>
91af76bf
EZ
2758
2759 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2760 the yanked message in preference to the default value of
2761 buffer-file-coding-system.
2762
90207a15 27632012-05-02 Martin Rudalics <rudalics@gmx.at>
d9558cad 2764
5d3385a0
JB
2765 * window.el (display-buffer--action-function-custom-type):
2766 Fix entry.
d9558cad 2767
90207a15 27682012-05-02 Alan Mackenzie <acm@muc.de>
09affde0
AM
2769
2770 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2771
d80ac57b
GM
27722012-05-01 Glenn Morris <rgm@gnu.org>
2773
976f7668
GM
2774 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2775
beb83b5a
GM
2776 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
2777
d80ac57b
GM
2778 * cus-edit.el (custom-variable-documentation): Simplify with format.
2779
b593d6a9
AH
27802012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2781 Stefan Monnier <monnier@iro.umontreal.ca>
2782
2783 * simple.el (suggest-key-bindings, execute-extended-command):
2784 Move from keyboard.c.
2785
782fbf2a
CY
27862012-05-01 Chong Yidong <cyd@gnu.org>
2787
2788 * follow.el: Eliminate advice.
2789 (set-process-filter, process-filter, sit-for): Advice deleted.
2790 (follow-mode-off-hook): Obsolete hook removed.
b593d6a9
AH
2791 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2792 Vars deleted.
782fbf2a
CY
2793 (follow-auto): Use a :set function.
2794 (follow-mode): Rewritten. Don't advise process filters.
2795 (follow-switch-to-current-buffer-all, follow-scroll-up)
2796 (follow-scroll-down): Assume follow-mode is bound.
2797 (follow-comint-scroll-to-bottom)
2798 (follow-align-compilation-windows): New functions.
2799 (follow--window-sorter): New function.
2800 (follow-all-followers): Use it to explicitly sort windows by their
2801 positions; don't make assumptions about next-window order.
2802 (follow-windows-start-end, follow-delete-other-windows-and-split)
2803 (follow-calc-win-start): Doc fix.
2804 (follow-windows-aligned-p, follow-select-if-visible): Don't call
2805 vertical-motion unnecessarily.
2806 (follow-adjust-window): New function.
2807 (follow-post-command-hook): Use it.
2808 (follow-call-set-process-filter, follow-call-process-filter)
2809 (follow-intercept-process-output, follow-tidy-process-filter-alist)
2810 (follow-stop-intercept-process-output, follow-generic-filter):
2811 Functions deleted.
2812 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
b593d6a9
AH
2813 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2814 New functions, replacing advice on scroll-bar-* commands.
87233a14 2815 (follow-mwheel-scroll): New function (Bug#4112).
782fbf2a
CY
2816
2817 * comint.el (comint-adjust-point): New function.
b593d6a9
AH
2818 (comint-postoutput-scroll-to-bottom): Use it.
2819 Call follow-comint-scroll-to-bottom for Follow mode buffers.
782fbf2a 2820
290af740
GM
28212012-05-01 Glenn Morris <rgm@gnu.org>
2822
2823 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2824 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2825 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2826 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2827 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2828 Remove no-byte-compile setting.
2829
6eac8dc9
SM
28302012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2831
2832 * minibuffer.el (completion-table-with-quoting): Fix compatibility
2833 all-completions code to not return a number in the last cdr.
2834
9cc7819c
LL
28352012-04-30 Leo Liu <sdl.web@gmail.com>
2836
2837 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2838 read-only error.
2839
c93b886f
CY
28402012-04-29 Chong Yidong <cyd@gnu.org>
2841
2842 * follow.el (follow-calc-win-end): Rewrite to handle partial
2843 screen lines correctly (Bug#8390).
2844 (follow-avoid-tail-recenter): Minor cleanup.
2845
8b6c19f4
SM
28462012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
2847
2848 Avoid the obsolete `assoc' package.
2849 * speedbar.el (speedbar-refresh): Avoid adelete.
2850 (speedbar-file-lists): Simplify and avoid aput.
2851 * man.el (Man--sections, Man--refpages): New vars, replacing
2852 Man-sections-alist and Man-refpages-alist.
2853 (Man-build-section-alist, Man-build-references-alist):
2854 Use them; avoid aput.
2855 (Man--last-section, Man--last-refpage): New vars.
2856 (Man-follow-manual-reference): Use them.
2857 Use the `default' arg of completing-read.
2858 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
2859
c5bb7569
CY
28602012-04-27 Chong Yidong <cyd@gnu.org>
2861
d1d2e2e8
CY
2862 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2863
15cd8efd
CY
2864 * startup.el (x-apply-session-resources): New function.
2865
2866 * term/ns-win.el (ns-initialize-window-system):
2867 * term/w32-win.el (w32-initialize-window-system):
2868 * term/x-win.el (x-initialize-window-system): Use it to properly
2869 set menu-bar-mode and other vars from X resources, even if the
2870 initial frame is not a window-system frame (Bug#2299).
2871
c5bb7569
CY
2872 * subr.el (read-key): Avoid running filter function when setting
2873 up temporary tool bar entries (Bug#9922).
2874
a8e7d6d7 28752012-04-27 Andreas Schwab <schwab@linux-m68k.org>
c4347ab9
AS
2876
2877 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2878 (Bug#11344)
2879
a8e7d6d7 28802012-04-27 Chong Yidong <cyd@gnu.org>
acb71f1d
CY
2881
2882 * select.el (xselect--encode-string): New function, split from
2883 xselect-convert-to-string.
2884 (xselect-convert-to-string): Use it.
2885 (xselect-convert-to-filename, xselect-convert-to-os)
2886 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2887 returned strings are properly encoded (Bug#11315).
2888
a8e7d6d7 28892012-04-27 Chong Yidong <cyd@gnu.org>
d55486c7
CY
2890
2891 * simple.el (delete-active-region): Move to killing custom group.
2892
a8e7d6d7 28932012-04-27 Andreas Schwab <schwab@linux-m68k.org>
581b6788
AS
2894
2895 * progmodes/which-func.el (which-func-current): Quote %
2896 characters for mode-line processing.
2897
578c1d4b 28982012-04-27 Chong Yidong <cyd@gnu.org>
18edb22d
CY
2899
2900 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2901 reaching eob (Bug#11286).
2902
a8e7d6d7 29032012-04-27 Eli Zaretskii <eliz@gnu.org>
9ee9f470
EZ
2904
2905 * progmodes/gdb-mi.el (gdb-control-level): New variable.
2906 (gdb): Make it buffer-local and init to zero.
2907 (gdb-control-commands-regexp): New variable.
2908 (gdb-send): Don't wrap in "-interpreter-exec console" if
2909 gdb-control-level is positive. Increment gdb-control-level
2910 whenever the command matches gdb-control-commands-regexp, and
2911 decrement it each time the command is "end". (Bug#11279)
2912
a8e7d6d7 29132012-04-27 Martin Rudalics <rudalics@gmx.at>
41cfe0cb
MR
2914
2915 * window.el (adjust-window-trailing-edge, enlarge-window)
2916 (shrink-window, window-resize):
2917 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2918 windows (Bug#11276).
2919
b3608390
CY
29202012-04-27 Chong Yidong <cyd@gnu.org>
2921
2922 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
a8e7d6d7 2923 fix "missing prefix" warning. All callers changed.
b3608390 2924
797e6e88
SM
29252012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2926
2927 * emacs-lisp/assoc.el: Move to obsolete/.
2928
e95a67dc
SM
29292012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2930
657c21e4 2931 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
e95a67dc
SM
2932
2933 * term/ns-win.el (ns-define-service):
2934 * progmodes/pascal.el (pascal-goto-defun):
2935 * progmodes/js.el (js--read-tab):
2936 * progmodes/etags.el (tags-lazy-completion-table):
2937 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
2938 * emacs-lisp/ewoc.el (ewoc--wrap):
2939 * emacs-lisp/assoc.el (aput, adelete, amake):
2940 * doc-view.el (doc-view-convert-current-doc):
2941 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
2942
cb3e7ae0
CY
29432012-04-26 Chong Yidong <cyd@gnu.org>
2944
dce04f7f
CY
2945 * image.el (image-type-from-buffer): Only return supported image
2946 type (Bug#9045).
2947
cb3e7ae0
CY
2948 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
2949 value, for symmetry with diff-end-of-hunk.
2950 (diff-split-hunk, diff-find-source-location)
2951 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
2952 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
2953 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
2954 compute the relevant hunk or file properly (Bug#6005).
2955 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
2956
0d42eb3e
SM
29572012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2958
2959 * vc/vc-mtn.el:
2960 * vc/vc-hg.el:
2961 * vc/vc-git.el:
2962 * vc/vc-dir.el:
2963 * vc/vc-cvs.el:
2964 * vc/vc-bzr.el:
2965 * vc/vc-arch.el:
2966 * vc/vc.el: Replace lexical-let by lexical-binding.
2967 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
2968 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
2969 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
2970
f08ae1c9
CY
29712012-04-26 Chong Yidong <cyd@gnu.org>
2972
8b71081d
CY
2973 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
2974 (diff-mode-shared-map): Bind it to / and [remap undo].
2975
f08ae1c9
CY
2976 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
2977 (ediff-window-setup-function): Use it as the default, to set up
2978 windows based on whether the current frame is graphical (Bug#2138).
2979 (ediff-choose-window-setup-function-automatically): Make obsolete.
2980
2981 * vc/ediff-init.el: Always define ediff-pixel-width/height.
2982
ef24141c
SM
29832012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
2984
cc356a5d
SM
2985 * ffap.el: Remove old code for obsolete package.
2986 (ffap-complete-as-file-p): Remove.
2987
b4ff4f1f
SM
2988 Use completion-table-with-quoting for comint and pcomplete.
2989 * comint.el (comint--unquote&requote-argument)
2990 (comint--unquote-argument, comint--requote-argument): New functions.
2991 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
2992 (comint-quote-filename): Use regexp-opt-charset.
2993 (comint--common-suffix, comint--common-quoted-suffix)
2994 (comint--table-subvert): Remove.
2995 (comint-unquote-function, comint-requote-function): New vars.
2996 (comint--complete-file-name-data): Use them with
2997 completion-table-with-quoting.
2998 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
2999 * pcomplete.el (pcomplete-arg-quote-list)
3000 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
3001 (pcomplete-unquote-argument-function): Default to non-nil.
3002 (pcomplete-unquote-argument): Simplify.
3003 (pcomplete--common-quoted-suffix): Remove.
3004 (pcomplete-requote-argument-function): New var.
3005 (pcomplete--common-suffix): New function.
3006 (pcomplete-completions-at-point): Use completion-table-with-quoting
3007 and completion-table-subvert.
3008
79c4eeb4
SM
3009 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
3010 (minibuffer--double-dollars): Preserve properties.
3011 (completion--sifn-requote): New function.
3012 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
3013
ef24141c
SM
3014 * minibuffer.el: Add support for completion of quoted/escaped data.
3015 (completion-table-with-quoting, completion-table-subvert): New funs.
3016 (completion--twq-try, completion--twq-all): New functions.
3017 (completion--nth-completion): New function.
3018 (completion-try-completion, completion-all-completions): Use it.
3019
784e7d6e
LL
30202012-04-25 Leo Liu <sdl.web@gmail.com>
3021
dd2ac746
SM
3022 * progmodes/python.el (python-pdbtrack-get-source-buffer):
3023 Use compilation-message if available to find real filename.
784e7d6e 3024
07875ee7
CY
30252012-04-25 Chong Yidong <cyd@gnu.org>
3026
3027 * vc/diff-mode.el (diff-setup-whitespace): New function.
3028 (diff-mode): Use it.
3029
3030 * vc/diff.el (diff-sentinel):
3031 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
3032 Whitespace mode variables based on diff style (Bug#8612).
3033
5055880d
LL
30342012-04-25 Leo Liu <sdl.web@gmail.com>
3035
daf75653
LL
3036 * progmodes/python.el (python-send-region): Add suffix .py to the
3037 temp file.
3038
5055880d
LL
3039 * files.el (auto-mode-alist): Use javascript-mode instead.
3040
db9b177b
AH
30412012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
3042
ef24141c 3043 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
db9b177b
AH
3044
3045 * soap-client.el (soap-resolve-references-for-sequence-type)
ef24141c 3046 (soap-resolve-references-for-array-type): Hack to prevent self
db9b177b 3047 references, see Bug#9.
ef24141c 3048 (soap-parse-envelope): Report the contents of the 'detail' node
db9b177b 3049 when receiving a fault reply.
ef24141c 3050 (soap-parse-envelope): Report the contents of the entire 'detail' node.
db9b177b
AH
3051
3052 * soap-inspect.el (soap-sample-value-for-simple-type)
ef24141c 3053 (soap-inspect-simple-type): New function.
db9b177b 3054
ef24141c 3055 * soap-client.el (soap-simple-type): New struct.
db9b177b 3056 (soap-default-xsd-types, soap-default-soapenc-types)
ef24141c
SM
3057 (soap-decode-basic-type, soap-encode-basic-type):
3058 support unsignedInt and double basic types.
db9b177b 3059 (soap-resolve-references-for-simple-type)
ef24141c
SM
3060 (soap-parse-simple-type, soap-encode-simple-type): New function.
3061 (soap-parse-schema): Parse xsd:simpleType declarations.
db9b177b
AH
3062
3063 * soap-client.el (soap-default-xsd-types)
ef24141c
SM
3064 (soap-default-soapenc-types): Add integer, byte and anyURI types.
3065 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
3066 the local name of "soapenc:Array".
3067 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
db9b177b
AH
3068 decoding integer, byte and anyURI xsd types.
3069
1fc6097b
CY
30702012-04-25 Chong Yidong <cyd@gnu.org>
3071
3072 * cus-edit.el (custom-buffer-create-internal): Update header text.
3073
afc6df87
EZ
30742012-04-25 Eli Zaretskii <eliz@gnu.org>
3075
3076 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
3077 settings on 'system-type', not on 'window-system'. On MS-Windows,
3078 set interactive-mode on in GDB.
3079
dfbd787f
SM
30802012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3081
3082 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
3083 (ruby-syntax-propertize-regexp): Remove.
3084 (ruby-syntax-propertize-function): Split regexp into chunks.
3085 Match following code directly.
3086
85222d44
DG
30872012-04-24 Dmitry Gutov <dgutov@yandex.ru>
3088
51a8ea2a
DG
3089 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
3090 (ruby-syntax-propertize-regexp): New function.
3091 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
3092 by a special keyword.
3093
85222d44
DG
3094 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
3095 (ruby-syntax-general-delimiters-goto-beg)
3096 (ruby-syntax-propertize-general-delimiters): New functions.
3097 (ruby-syntax-propertize-function): Use them to handle GDL.
3098 (ruby-font-lock-keywords): Move old handling of GDL...
3099 (ruby-font-lock-syntactic-keywords): .. to here.
3100 (ruby-calculate-indent): Adjust indentation for GDL.
3101
b613912b
MA
31022012-04-24 Michael Albinus <michael.albinus@gmx.de>
3103
b5380639
MA
3104 * notifications.el (top): Remove unneeded declarations.
3105 (notifications-specification-version): Change to "1.2".
e43042fe 3106 (notifications-interface, notifications-notify-method)
b613912b
MA
3107 (notifications-close-notification-method): Fix docstring.
3108 (notifications-get-capabilities-method): New defconst.
e43042fe
MA
3109 (notifications-notify): Add :action-items, :resident and
3110 :transient hints. Change "image_data" to "image-data" and
3111 "image_path" to "image-path".
b613912b
MA
3112 (notifications-get-capabilities): New defun.
3113
257440aa
LL
31142012-04-24 Leo Liu <sdl.web@gmail.com>
3115
3116 * progmodes/python.el: Move hideshow setup to the end.
3117
b1bac16e
MR
31182012-04-24 Martin Rudalics <rudalics@gmx.at>
3119
3120 * window.el (handle-select-window): Clear echo area since this is
3121 no more done by read_char (Bug#11304).
3122
d81bd059
SM
31232012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3124
3125 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
3126 and `/ M' to filter-derived-mode.
3127 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
3128 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3129 (ibuffer-mark-by-mode): Use default rather than initial-input.
3130 (ibuffer-filter-by-derived-mode): Autoload and require-match.
3131
c4cf6d91
IA
31322012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
3133
3134 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
3135 (ibuffer-filter-by-derived-mode): New filter.
3136 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
3137
7511ded8
CY
31382012-04-23 Andreas Politz <politza@fh-trier.de>
3139
3140 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3141
775c916b
CY
31422012-04-23 Chong Yidong <cyd@gnu.org>
3143
3144 * cus-edit.el (customize-apropos, customize-apropos-options):
3145 Disable matching of non-option variables (Bug#11176).
3146 (customize-option, customize-option-other-window)
3147 (customize-changed-options): Doc fix.
3148 (customize-apropos-options, customize-apropos-faces)
3149 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3150
3151 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
922d37d3 3152 Fix word list splitting (Bug#11132).
46c71e23
CY
3153 (apropos-symbol, apropos-keybinding, apropos-label)
3154 (apropos-property, apropos-function-button)
3155 (apropos-variable-button, apropos-misc-button): New faces.
3156 (apropos-symbol-face, apropos-keybinding-face)
3157 (apropos-label-face, apropos-property-face, apropos-match-face):
3158 Variables removed (Bug#8396).
3159 (apropos-library-button, apropos-format-plist, apropos-print)
3160 (apropos-print-doc, apropos-describe-plist): Callers changed.
775c916b 3161
2df41f9c
MA
31622012-04-23 Michael Albinus <michael.albinus@gmx.de>
3163
3164 * net/xesam.el (xesam-mode-map): Use let-bound map in
3165 initialization. (Bug#11292)
3166
da00640a
AM
31672012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3168
3169 Preserve ispell session localwords when switching back to
3170 original buffer.
3171
3172 * ispell.el (ispell-buffer-session-localwords): New buffer-local
3173 variable to hold buffer session localwords.
3174 (ispell-kill-ispell): add option 'clear to delete session
3175 localwords.
3176 (ispell-command-loop, ispell-change-dictionary)
3177 (ispell-buffer-local-words): Preserve session localwords when
3178 needed.
3179
3180 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
3181 Preserve session localwords when needed.
3182
f621ccf5
AM
31832012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3184
3185 * ispell.el (ispell-insert-word) Remove unneeded function using
3186 obsolete `translation-table-for-input'.
ef24141c
SM
3187 (ispell-word, ispell-process-line, ispell-complete-word):
3188 Use plain `insert' instead of removed `ispell-insert-word'.
f621ccf5 3189
c2d1019e
CY
31902012-04-22 Chong Yidong <cyd@gnu.org>
3191
3192 * cus-edit.el (custom-variable-menu)
3193 (custom-variable-reset-saved, custom-face-menu)
3194 (custom-face-reset-saved): If there is no saved value, make the
3195 "reset-saved" operation bring back the default (Bug#9509).
3196 (custom-face-state): Properly detect themed faces.
3197
eeddc531
CY
3198 * faces.el (face-spec-set): Stop supporting deprecated form of
3199 third arg.
3200
dcbf5805
MA
32012012-04-22 Michael Albinus <michael.albinus@gmx.de>
3202
3203 Move functions from C to Lisp. Make non-blocking method calls
3204 the default. Implement further D-Bus standard interfaces.
3205
ef24141c
SM
3206 * net/dbus.el (dbus-message-internal): Declare function.
3207 Remove unneeded function declarations.
dcbf5805
MA
3208 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3209 (dbus-message-type-method-return, dbus-message-type-error)
3210 (dbus-message-type-signal): Declare variables. Remove local
3211 definitions.
3212 (dbus-interface-dbus, dbus-interface-peer)
3213 (dbus-interface-introspectable, dbus-interface-properties)
3214 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3215 Adapt docstring.
3216 (dbus-interface-objectmanager): New defconst.
3217 (dbus-call-method, dbus-call-method-asynchronously)
3218 (dbus-send-signal, dbus-method-return-internal)
3219 (dbus-method-error-internal, dbus-register-service)
3220 (dbus-register-signal, dbus-register-method): New defuns, moved
3221 from dbusbind.c
3222 (dbus-call-method-handler, dbus-setenv)
ef24141c
SM
3223 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3224 New defuns.
dcbf5805
MA
3225 (dbus-call-method-non-blocking): Make it an obsolete function.
3226 (dbus-unregister-object, dbus-unregister-service)
3227 (dbus-handle-event, dbus-register-property)
3228 (dbus-property-handler): Obey the new structure of
3229 `bus-registered-objects'.
3230 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3231 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3232 Use `dbus-call-method'.
3233
cf20dee0
CY
32342012-04-22 Chong Yidong <cyd@gnu.org>
3235
3236 * cus-edit.el (custom-commands, custom-reset-menu)
3237 (Custom-reset-standard): Tweak labels.
3238 (custom-reset-button-menu): Change default to t.
3239 (custom-buffer-create-internal): For the custom-reset-button-menu
3240 case, put the revert button first.
3241 (custom-group-subtitle): New face.
3242 (custom-group-value-create): Align docstring to a specific column.
3243
3244 * wid-edit.el (widget-documentation-link-add): Don't handle
3245 indentation in this function.
3246 (widget-documentation-string-indent-to): New function.
3247 (widget-documentation-string-value-create): Use it.
3248
3249 * autorevert.el (auto-revert):
3250 * epg-config.el (epg):
3251 * ibuffer.el (ibuffer):
3252 * mpc.el (mpc):
3253 * ses.el (ses):
3254 * eshell/eshell.el (eshell):
3255 * net/ange-ftp.el (ange-ftp):
3256 * progmodes/ebnf2ps.el (postscript):
3257 * progmodes/flymake.el (flymake):
3258 * progmodes/prolog.el (prolog):
3259 * progmodes/verilog-mode.el (verilog-mode):
3260 * progmodes/which-func.el (which-func):
3261 * term/xterm.el (xterm):
3262 * textmodes/picture.el (picture):
3263 * textmodes/tildify.el (tildify):
3264 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3265 customization buffers.
3266
583e23bd
AM
32672012-04-22 Alan Mackenzie <acm@muc.de>
3268
3269 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3270 Adding a ) can hide the resulting (..) from searches. Fix it.
3271 Bound the backward search to the position of the existing (.
3272
7dd51bf1
JB
32732012-04-21 Juanma Barranquero <lekktu@gmail.com>
3274
3275 * progmodes/verilog-mode.el (verilog-mode): Check whether
3276 which-func-modes is t before adding verilog-mode.
3277 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3278
d64a438f
LL
32792012-04-21 Leo Liu <sdl.web@gmail.com>
3280
7dd51bf1 3281 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
d64a438f 3282
081e8d65
MV
32832012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3284
3285 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3286 filling of the last column of a table (Bug#5635).
3287 (woman-find-next-control-line): New arg, specifying an additional
3288 regexp component for the control line.
3289 (woman2-roff-buffer): Use it.
3290 (woman-break-table): New function.
3291 (woman2-TS): Use it.
3292
32932012-04-21 Chong Yidong <cyd@gnu.org>
3294
3295 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3296 (woman-horizontal-escapes, woman-negative-vertical-space)
3297 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3298 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3299
ed571ccb
SM
33002012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3301
3302 * minibuffer.el (completion-file-name-table): Complete user names.
3303
39773899
LL
33042012-04-20 Leo Liu <sdl.web@gmail.com>
3305
3306 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3307 and pcase-let*.
3308
de6ff46d
CY
33092012-04-20 Chong Yidong <cyd@gnu.org>
3310
3311 * server.el (server-execute): Respect initial-buffer-choice if it
3312 is a string and there are no files to open (Bug#2825).
3313 (server-create-window-system-frame, server-create-tty-frame):
3314 Don't switch buffers here.
2d0e8e61
CY
3315 (server-process-filter): Only try to open a window system frame if
3316 compiled with graphical support (Bug#8314).
de6ff46d 3317
54071013
DN
33182012-04-20 Dan Nicolaescu <dann@gnu.org>
3319
3320 * battery.el (battery-echo-area-format): Display remaining time
3321 for sysfs backend too (Bug#11269).
3322 (battery-linux-sysfs): Fix conditional for the charge.
3323
f30d612a
CY
33242012-04-20 Chong Yidong <cyd@gnu.org>
3325
c07a4c0b 3326 * progmodes/gdb-mi.el (gdb): Revert previous change.
f30d612a
CY
3327 (gdb-inferior-io--init-proc): New function.
3328 (gdb-init-1): Use it.
3329 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3330 responsible for allocating a new pty and hooking it to gdb when
3331 the old pty gets an EIO due to process exit.
3332 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3333 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3334 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3335
2116e93c
EZ
33362012-04-20 Eli Zaretskii <eliz@gnu.org>
3337
3338 * window.el (window-min-size, window-sizable, window-min-delta)
3339 (window-max-delta, window--resizable, window-resizable)
3340 (window-total-size, window-full-height-p, window-full-width-p)
3341 (window-in-direction, window--resize-mini-window, window-resize)
3342 (window--resize-child-windows-normal)
3343 (window--resize-child-windows, window--resize-siblings)
3344 (window--resize-this-window, adjust-window-trailing-edge)
cd0f830c 3345 (enlarge-window, shrink-window): Doc fixes.
2116e93c 3346
c07a4c0b 33472012-04-20 Chong Yidong <cyd@gnu.org>
b668fa6e 3348
ef24141c
SM
3349 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3350 New function to call delete-process on the gdb-inferior buffer's pty.
b668fa6e
CY
3351 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3352 pty process (Bug#11273).
3353 (gdb-update): New arg to suppress talking to the gdb process.
3354 (gdb-done-or-error): Use it.
3355 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3356 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3357 sentinel not being called.
3358
3359 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3360
d02766ab
CY
3361 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3362
c07a4c0b 33632012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
3364
3365 * net/network-stream.el (open-network-stream): Doc fix.
3366
c07a4c0b 33672012-04-20 Chong Yidong <cyd@gnu.org>
2c070447
CY
3368
3369 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3370
c07a4c0b 33712012-04-20 Alan Mackenzie <acm@muc.de>
f0f6bc35
AM
3372
3373 Ensure searching for keywords is case sensitive.
3374
3375 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3376 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3377 (c-defun-name, c-mark-function, c-cpp-define-name)
3378 (c-comment-indent, c-scan-conditionals, c-indent-defun)
c07a4c0b 3379 (c-context-line-break): Bind case-fold-search to nil.
f0f6bc35 3380
ef24141c
SM
3381 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3382 Bind case-fold-search to nil.
f0f6bc35 3383
c07a4c0b 33842012-04-20 Chong Yidong <cyd@gnu.org>
4fc2c72a
CY
3385
3386 * mail/sendmail.el (mail-bury): Call return action with the right
3387 Rmail buffer (Bug#11242).
3388
9a864fa2
CY
3389 * server.el (server-process-filter): Handle corner case where both
3390 tty and nowait options are present (Bug#11102).
3391
539aa513
EZ
33922012-04-20 Eli Zaretskii <eliz@gnu.org>
3393
3394 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
6cf2a23e
EZ
3395 (top level): Put into the executable the ident-style '$Id:' tag on
3396 windows-nt as well.
539aa513 3397
cfc7d5da
SM
33982012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3399
3400 * electric.el (electric-indent-post-self-insert-function): Check that
3401 electric-indent-mode is enabled in current buffer.
3402
5b01685c
JB
34032012-04-19 Juanma Barranquero <lekktu@gmail.com>
3404
3405 * imenu.el (imenu-progress-message): Restore; it is "used" in
3406 erc/erc-imenu.el and net/snmp-mode.el.
3407
4d6769e1
JB
34082012-04-19 Juanma Barranquero <lekktu@gmail.com>
3409
3410 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3411 (mouse-avoidance-nudge-mouse): Remove unused binding.
3412
3413 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3414
3415 * descr-text.el (describe-char):
3416 * progmodes/python.el (python-describe-symbol):
3417 Don't call `toggle-read-only', set `buffer-read-only'.
3418
3419 * imenu.el (imenu-default-goto-function): Mark unused args.
3420 (imenu-progress-message): Remove obsolete macro; all callers changed.
3421
3422 * subr.el (keymap-canonicalize): Remove unused binding.
3423 (read-passwd): Mark unused arg.
3424
3425 * tutorial.el (tutorial--display-changes): Remove unused binding.
3426 (tutorial--save-tutorial-to): Remove unused variable.
3427
3428 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3429 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3430 (package-generate-autoloads, package-menu--generate)
3431 (package-menu--find-upgrades): Remove unused bindings.
3432
3433 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3434 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3435 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3436 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3437 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3438 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3439 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3440 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3441 (cua-delete-char-rectangle): Mark unused args.
3442 (cua-align-rectangle): Remove unused binding.
3443
3444 * mail/rmail.el (compilation--message->loc)
3445 (epa--find-coding-system-for-mime-charset): Declare.
3446
3447 * net/dbus.el (dbus-register-service): Declare.
3448 (dbus-name-owner-changed-handler): Remove unused binding.
3449
3450 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3451 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3452 (nxml-scan-backward-within): Mark unused arg.
3453 (nxml-dynamic-markup-word): Remove unused binding.
3454
3455 * mouse.el (mouse-menu-major-mode-map):
3456 * emacs-lisp/authors.el (authors-scan-change-log)
3457 (authors-add-to-author-list):
3458 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3459 * emacs-lisp/smie.el (smie-auto-fill):
3460 * mail/sendmail.el (mail-bury):
3461 * mail/unrmail.el (unrmail):
3462 * net/tls.el (open-tls-stream):
3463 * textmodes/picture.el (picture-mouse-set-point):
3464 Remove unused bindings.
3465
8c8fc5df
MA
34662012-04-19 Michael Albinus <michael.albinus@gmx.de>
3467
3468 * net/tramp.el (tramp-action-password): Let-bind
3469 `enable-recursive-minibuffers' to t.
3470
a77b0ac9
SS
34712012-04-18 Sam Steingold <sds@gnu.org>
3472
3473 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3474 instead of 'string to accommodate values like [f11].
3475 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3476 * progmodes/gdb-mi.el: Likewise.
3477
12a106a9
LL
34782012-04-18 Leo Liu <sdl.web@gmail.com>
3479
3480 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3481 current buffer.
3482 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3483 LOCAL is nil.
3484
bc6494ef
CY
34852012-04-18 Chong Yidong <cyd@gnu.org>
3486
3487 * simple.el (line-move): Use forward-line if in batch mode
3488 (Bug#11053).
3489
c09c46b2
CS
34902012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3491
3492 * files.el (after-find-file): Do not try to add a final newline if
3493 the buffer is read-only (Bug#11156).
3494
5f6530ea
RS
34952012-04-17 Richard Stallman <rms@gnu.org>
3496
3497 * mail/rmail.el (rmail-start-mail):
3498 Pass (rmail-mail-return...) for the return-action.
3499 Pass (rmail-yank-current-message...) for the yank-action.
3500 (rmail-yank-current-message): New function.
3501 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3502 (rmail-reply): Likewise.
3503 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3504
3505 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
c09c46b2 3506 buffer, not the last. Reject temp buffers. Use the rmail-mode
5f6530ea
RS
3507 buffer, not newbuf.
3508
197b6f3c
JB
35092012-04-17 Juanma Barranquero <lekktu@gmail.com>
3510
3511 * server.el (server-ensure-safe-dir): Simplify.
3512
2311d8e5 35132012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
98fb480e 3514
2311d8e5
GM
3515 * emacs-lisp/smie.el: Provide smarter auto-filling.
3516 (smie-auto-fill): New function.
3517 (smie-setup): Use it.
98fb480e 3518
2311d8e5
GM
3519 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3520
35212012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
8eb5d48f
PH
3522
3523 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3524 (comment-indent): Use it.
3525
2311d8e5 35262012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
4bdf2ad2
VB
3527
3528 * ses.el: The overall change is to add cell renaming, that is
3529 setting fancy names for cell symbols other than name matching
3530 "\\`[A-Z]+[0-9]+\\'" regexp .
2311d8e5 3531 (ses-localvars): Add ses--renamed-cell-symb-list.
4bdf2ad2 3532 (ses-create-cell-variable): New defun.
2311d8e5 3533 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
4bdf2ad2
VB
3534 (ses-relocate-formula): Relocate formulas only for cells the
3535 symbols of which are not renamed, i.e. symbols whose names do not
3536 match regexp "\\`[A-Z]+[0-9]+\\'".
3537 (ses-relocate-all): Relocate values only for cells the symbols of
3538 which are not renamed.
3539 (ses-load): Create cells variables as the (ses-cell ...) are read,
3540 in order to check row col consistency with cell symbol name only
3541 for cells that are not renamed.
3542 (ses-replace-name-in-formula): New defun.
3543 (ses-rename-cell): New defun.
4bdf2ad2 3544
fc72b15c
PO
35452012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3546
3547 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3548 New option (bug#11118).
3549 (perl-calculate-indent): Respect it.
3550
12e10e61
GM
35512012-04-17 Glenn Morris <rgm@gnu.org>
3552
3553 * dired-aux.el (dired-mark-read-string): Doc fix.
3554
30009afd
DA
35552012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3556
3557 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3558 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3559
41f03f4d
GM
35602012-04-17 Glenn Morris <rgm@gnu.org>
3561
3562 * mouse.el (mouse-drag-track):
3563 * speedbar.el (speedbar-frame-mode):
3564 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3565
f45f90f3
LL
35662012-04-16 Leo Liu <sdl.web@gmail.com>
3567
3568 * progmodes/python.el: Trivial cleanup.
3569
94ee8db5
GM
35702012-04-16 Glenn Morris <rgm@gnu.org>
3571
121b8917
GM
3572 * vc/vc.el (vc-string-prefix-p):
3573 * vc/pcvs-util.el (cvs-string-prefix-p):
3574 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3575 * mpc.el (mpc-string-prefix-p):
3576 Make all of these into obsolete aliases for string-prefix-p.
3577 Update callers.
3578 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
3579
1197ecfa
GM
3580 * textmodes/two-column.el: Move custom options to the start.
3581 (frame-width): Remove compat definition.
3582 (2C-associate-buffer, 2C-dissociate):
3583 Use with-current-buffer rather than save-excursion.
3584 (2C-dissociate): Force a mode-line update.
3585 (2C-autoscroll): Use ignore-errors.
3586
099e7202
GM
3587 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
3588 Autoload trivia.
3589
bf350d6a
GM
3590 * emacs-lisp/cl-extra.el (*random-state*):
3591 Remove unnecessary declaration.
3592
0e829eab
GM
3593 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
3594
e3ad7552
GM
3595 * play/cookie1.el (cookie-snarf):
3596 Give an explicit error if input file cannot be read.
3597
68892d27
GM
3598 * play/yow.el (yow-file): Use expand-file-name rather than concat.
3599
20f0c46d
GM
3600 * progmodes/perl-mode.el (c-macro-expand):
3601 Remove unnecessary autoload (it is in loaddefs.el).
3602
5a0978ce
GM
3603 * textmodes/picture.el (picture-desired-column)
3604 (picture-update-desired-column): Convert comments to doc-strings.
3605 (picture-substitute): Remove function.
3606 (picture-mode-map): Initialize in the defvar.
3607
6b955486
GM
3608 * woman.el: Remove eval-after-load for tar-mode.
3609 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
3610 (woman-tar-extract-file): Autoload it.
3611
94ee8db5
GM
3612 * frame.el (automatic-hscrolling): Make this alias obsolete.
3613
177eca34
AM
36142012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3615
3616 * ispell.el (ispell-set-spellchecker-params): Post-process
4be3075e 3617 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3851314b
AM
3618 (ispell-dictionary-base-alist): Revert to original XEmacs
3619 friendly version for default. [:alpha:] will be added in
3620 `ispell-set-spellchecker-params' if needed
177eca34 3621
c505aaeb
CY
36222012-04-16 Chong Yidong <cyd@gnu.org>
3623
3624 * image.el (imagemagick--extension-regexp): New variable.
3625 (imagemagick-register-types): Use it.
3626 (imagemagick-types-inhibit): Add :set function. Allow new value
3627 of t to inhibit all types.
3628
3629 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
3630 so we can preload it.
3631
3632 * loadup.el (fboundp): Preload regexp-opt, needed by
3633 imagemagick-register-types.
3634
60efac0f
CY
36352012-04-15 Chong Yidong <cyd@gnu.org>
3636
3637 * frame.el (scrolling): Remove nearly unused customization group.
3638
3639 * scroll-all.el (scroll-all-mode): Move to windows group.
3640
5dd1713e
CY
36412012-04-15 Chong Yidong <cyd@gnu.org>
3642
3643 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
3644
e6fd457e
CY
36452012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3646
3647 Avoid the use of ((lambda ...) ...) in lexical-binding code.
4d6769e1 3648 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
e6fd457e 3649
e153c136
GM
36502012-04-15 Glenn Morris <rgm@gnu.org>
3651
3652 * simple.el (process-file-side-effects): Doc fix.
3653
e6fd457e 36542012-04-15 Glenn Morris <rgm@gnu.org>
ca7d96c8
GM
3655
3656 * international/mule-cmds.el (set-language-environment): Doc fix.
3657
3603c3b1
JB
36582012-04-14 Juanma Barranquero <lekktu@gmail.com>
3659
3660 * server.el (server-auth-key, server-generate-key): Doc fixes.
3661 (server-get-auth-key): Doc fix. Use `string-match-p'.
3662 (server-start): Reflow docstring.
3663
e6de100c
LI
36642012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
3665
3666 * server.el (server-generate-key): `called-interactively-p'
3667 requires a parameter.
3668
29734c21
MN
36692012-04-14 Michal Nazarewicz <mina86@mina86.com>
3670
3671 * server.el (server-auth-key): New variable.
75f1671a 3672 (server-generate-key, server-get-auth-key): New function.
29734c21
MN
3673 (server-start): Use the new variable and functions to allow
3674 setting a permanent server key (bug#9423).
3675
d65c9521
LL
36762012-04-14 Leo Liu <sdl.web@gmail.com>
3677
3678 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3679
5ae255c7
PE
36802012-04-14 Paul Eggert <eggert@cs.ucla.edu>
3681
3682 Spelling fixes.
3683 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3684 Emacs uses American spelling.
3685
d5e6342e
JB
36862012-04-14 Juanma Barranquero <lekktu@gmail.com>
3687
3688 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3689 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
3690 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3691 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
3692
ab036cd7
SM
36932012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3694
3695 * progmodes/which-func.el (which-func-modes): Change default.
3696
35dc09a1 36972012-04-14 Kim F. Storm <storm@cua.dk>
9557e2be
CY
3698
3699 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3700 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3701
35dc09a1 37022012-04-14 Chong Yidong <cyd@gnu.org>
81927dd2
CY
3703
3704 * custom.el (custom-theme-set-variables): Doc fix.
3705
35dc09a1 37062012-04-14 Glenn Morris <rgm@gnu.org>
8edb942b
GM
3707
3708 * international/mule.el (set-auto-coding-for-load): Doc fix.
3709
35dc09a1 37102012-04-14 Alan Mackenzie <acm@muc.de>
0de3da9f 3711
35dc09a1
GM
3712 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3713 imenu work again for Objective C Mode. Correct the *-index values,
3714 these having been disturbed by a previous change in 2011-08.
57f845ee 3715
0de3da9f
AM
3716 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3717 Correct two search limits.
3718
35dc09a1 37192012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
ede141ac
SM
3720
3721 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3722
35dc09a1 37232012-04-14 Andreas Schwab <schwab@linux-m68k.org>
d0203d61
AS
3724
3725 * international/characters.el: Fix sorting.
3726
35dc09a1 37272012-04-14 Eli Zaretskii <eliz@gnu.org>
cb80bcd1
EZ
3728
3729 * international/characters.el: Add more missing Latin case pairs.
3730
35dc09a1 37312012-04-14 Glenn Morris <rgm@gnu.org>
4a427f58
GM
3732
3733 * files.el (dir-locals-set-class-variables): Doc fix.
3734
35dc09a1 37352012-04-14 Eli Zaretskii <eliz@gnu.org>
9f847f41 3736
3f1b5bf8
EZ
3737 * international/characters.el: Add set-case-syntax-pair call for
3738 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3739 counterpart. (Bug#11209)
3740
9f847f41
EZ
3741 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
3742
35dc09a1 37432012-04-14 Glenn Morris <rgm@gnu.org>
0c2014a3
GM
3744
3745 * calendar/holidays.el (calendar-check-holidays): Doc fix.
3746
35dc09a1 37472012-04-14 Eli Zaretskii <eliz@gnu.org>
e2627d21 3748
35dc09a1
GM
3749 * textmodes/ispell.el (ispell-dictionary-base-alist):
3750 Add data for Hebrew.
e2627d21 3751
35dc09a1 37522012-04-14 Chong Yidong <cyd@gnu.org>
5c14e333 3753
35dc09a1
GM
3754 * net/rcirc.el (rcirc-cmd-quit):
3755 Revert 2012-03-18 change (Bug#11192).
5c14e333 3756
35dc09a1 37572012-04-14 Glenn Morris <rgm@gnu.org>
bf6fa423
GM
3758
3759 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3760
35dc09a1 37612012-04-14 Eli Zaretskii <eliz@gnu.org>
82b24fb2 3762
4517fe3a
SM
3763 * minibuffer.el (completion-in-region-mode-map):
3764 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
82b24fb2 3765
b472a594
VD
37662012-04-13 Vivek Dasmohapatra <vivek@etla.org>
3767
3768 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3769
09b95ce3
MY
37702012-04-13 Masatake YAMATO <yamato@redhat.com>
3771
3772 * minibuffer.el (minibuffer-local-filename-syntax): New variable
3773 to allow `C-M-f' and `C-M-b' to move to the nearest path
3774 separator (bug#9511).
3775
4b63a9ca
LI
37762012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
3777
3778 * avoid.el: Require cl when compiling. And also move the
3779 `provide' to the end.
3780
7b55b8bf
TV
37812012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3782
3783 * avoid.el (mouse-avoidance-banish-position): New variable.
3784 (mouse-avoidance-banish-destination): Use it (bug#10165).
3785
adedaa1f
LL
37862012-04-13 Leo Liu <sdl.web@gmail.com>
3787
3788 * progmodes/which-func.el (which-func-modes): Add objc-mode.
3789
70e74021
KB
37902012-04-13 Ken Brown <kbrown@cornell.edu>
3791
3792 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
ab036cd7 3793 this is no longer needed now that cygstart understands file:// URLs.
70e74021
KB
3794 (browse-url-filename-alist): For the same reason, don't modify
3795 file:// URLs on Cygwin.
3796
e75e89ba
SM
37972012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3798
3799 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3800 the region on shift if the binding is already shifted (bug#11221).
3801
82f289a4
GM
38022012-04-12 Glenn Morris <rgm@gnu.org>
3803
3804 * mail/mailpost.el: Move to obsolete/.
3805
d333dc4c
DA
38062012-04-12 Drew Adams <drew.adams@oracle.com>
3807
3808 * imenu.el (imenu--generic-function): Ignore invisible definitions
3809 (bug#10123).
3810
0d15b5ba
VD
38112012-04-12 Vivek Dasmohapatra <vivek@etla.org>
3812
3813 * hexl.el (hexl-bits): New variable.
3814 (hexl-options): Mention the variable in the doc string.
75f1671a 3815 (hexl-rulerise, hexl-line-displen): New functions.
0d15b5ba 3816 (hexl-mode): Mention the new variable.
75f1671a
JB
3817 (hexl-mode, hexl-current-address, hexl-current-address):
3818 Use the displen.
0d15b5ba
VD
3819 (hexl-ascii-start-column): New function.
3820 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3821 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3822
64a440db
AM
38232012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3824
3825 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3826 '("-i" ENCODING), in 2 separate command-line arguments, to specify
3827 the encoding, as expected by hunspell.
3828
6decb6c2
SM
38292012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3830
3831 * battery.el (battery--linux-sysfs-regexp): New const.
3832 (battery-status-function): Use it. Remove yeeloong special case.
3833 (battery-yeeloong-sysfs): Remove.
3834 (battery-echo-area-format): Remove yeeloong special case.
3835
088be6fb
SM
38362012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3837
6622e416
SM
3838 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3839 Reported by Noah Friedman.
3840
088be6fb
SM
3841 * subr.el (read-passwd): Use read-string.
3842
b49f886e
LMI
38432012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3844
3845 * vcursor.el (vcursor-move): Increase the priority of the overlay
3846 (bug#9663).
3847
a63067fc
DD
38482012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3849
3850 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3851 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3852
ac3cf14a
WS
38532012-04-11 William Stevenson <yhvh2000@gmail.com>
3854
3855 * textmodes/artist.el (artist-mode): Convert artist-mode to use
3856 define-minor-mode (bug#10760).
3857
c4fc691b 38582012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
49a2697c 3859
4d6769e1 3860 * progmodes/grep.el (rgrep): Tweak the find command line so
49a2697c
WJ
3861 that directories matching `grep-find-ignored-files' won't be
3862 pruned (bug#10351).
3863
af23e2e5
CY
38642012-04-11 Chong Yidong <cyd@gnu.org>
3865
3866 * startup.el (command-line): Remove support for long-obsolete
3867 variable font-lock-face-attributes.
3868
ab7ce8c1
GM
38692012-04-11 Glenn Morris <rgm@gnu.org>
3870
3871 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3872
de8c03dc
SM
38732012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3874
3875 * window.el (window--state-get-1): Obey window-point-insertion-type.
3876
050cc68b
LB
38772012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
3878
3879 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3880 to previous function when point is on the first character of a
75f1671a 3881 function. Take care of that in `narrow-to-defun' (bug#6157).
050cc68b 3882
a38c310c
GM
38832012-04-11 Glenn Morris <rgm@gnu.org>
3884
effed0c2
GM
3885 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3886 not just file-errors.
3887
a38c310c
GM
3888 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3889 (vc-bzr-sha1): Use internal sha1.
3890
0221e323
SM
38912012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3892
3893 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3894
43956923
SG
38952012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
3896
3897 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3898 that start in the middle of the line (bug#10496).
3899
6a8c9eaf
DN
39002012-04-10 Dan Nicolaescu <dann@gnu.org>
3901
3902 * battery.el (battery-linux-proc-acpi): Only one battery is
3903 discharged at a time, but that seems to confuse battery.el when
3904 computing `rate-type' for the battery not being discharged
3905 (bug#10332).
3906
1930bf5d
SM
39072012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3908
2a718f6f
SM
3909 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3910
599430d0
SM
3911 * international/quail.el: Use dolist and simplify.
3912 (quail-define-package, quail-update-keyboard-layout)
3913 (quail-define-rules): Use dolist.
3914 (quail-insert-kbd-layout, quail-get-translation): CSE.
3915
a2754b6c
SM
3916 * tmm.el: Use dolist, remove left over hook.
3917 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3918 Use dolist.
3919 (calendar-load-hook): Don't mess with it.
3920
1930bf5d
SM
3921 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3922 Use derived-mode-p. Run the diff asynchronously.
3923
9f67961c
LMI
39242012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3925
3926 * obsolete/mouse-sel.el: Add an Obsolete-since header.
3927
2a8ce227
JB
39282012-04-10 Juanma Barranquero <lekktu@gmail.com>
3929
3930 * misc.el: Display absolute path of loaded DLLs (bug#10424).
3931 (list-dynamic-libraries--loaded): New function.
3932 (list-dynamic-libraries--refresh): Use it.
3933
8f33b5f8
NW
39342012-04-10 Nathan Weizenbaum <nweiz@google.com>
3935
1930bf5d
SM
3936 * progmodes/python.el (python-fill-paragraph):
3937 Make python-fill-region in a multiline string work when font-lock is
8f33b5f8
NW
3938 disabled (bug#7018).
3939
b12f0439
L
39402012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
3941
1930bf5d 3942 * language/european.el (cp775): Add oem/legacy (en)coding on
75f1671a
JB
3943 DOS/MS Windows for the Baltic languages. There are still plenty
3944 of texts written in this encoding/codepage (bug#6519).
b12f0439 3945
57c3bd01
GM
39462012-04-10 Glenn Morris <rgm@gnu.org>
3947
3948 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
3949 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
3950
6c3eab30
FA
39512012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
3952
1930bf5d 3953 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
6c3eab30
FA
3954 next-line "n" and previous-line "p" in order to make recentf more
3955 consistent with ibuffer, dired or org-mode (bug#9387).
3956
24d78a88
LMI
39572012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3958
bc72b5d9
LMI
3959 * image.el (put-image): Return the overlay created instead of the
3960 optional input string (bug#7834). Note that this may break code
3961 that is (for some reason or other) depending on `put-image'
3962 returning the string.
3963
bd2dba5a
LMI
3964 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
3965
74beb59f
LMI
3966 * simple.el (zap-to-char): Allow zapping using input methods
3967 (bug#1580).
3968
24d78a88
LMI
3969 * textmodes/fill.el (fill-region): Leave point and mark where they
3970 were before filling (bug#5399).
3971
263f20cd
GM
39722012-04-09 Glenn Morris <rgm@gnu.org>
3973
3974 * version.el (emacs-bzr-get-version):
3975 Handle lightweight checkouts of local branches.
3976
58d1f797
AS
39772012-04-09 Andreas Schwab <schwab@linux-m68k.org>
3978
263f20cd 3979 * international/characters.el: Recover lost case pairs. (Bug#11209)
58d1f797 3980
b4d3bc10
CY
39812012-04-09 Chong Yidong <cyd@gnu.org>
3982
3983 * custom.el (custom-variable-p): Return nil for non-symbol
3984 arguments instead of signaling an error.
3985 (user-variable-p): Obsolete alias for custom-variable-p.
3986
3987 * apropos.el (apropos-variable):
3988 * files-x.el (read-file-local-variable):
3989 * simple.el (set-variable):
3990 * woman.el (woman-mini-help):
3991 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
3992
fd06db5d
GM
39932012-04-09 Glenn Morris <rgm@gnu.org>
3994
e5fcdb5e
GM
3995 * startup.el (normal-top-level): Don't look for leim-list.el
3996 in places where it will not be found. (Bug#910)
3997
fd06db5d
GM
3998 * international/mule-cmds.el (set-default-coding-systems):
3999 * files.el (normal-mode):
4000 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
4001 This function was removed with ucs-tables.el in 2008.
4002
b39bb7e1
EZ
40032012-04-08 Eli Zaretskii <eliz@gnu.org>
4004
4005 * textmodes/ispell.el (ispell-check-version): For hunspell, set
4006 ispell-encoding8-command to "-i", without a trailing space.
4007 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
4008 separate command-line arguments, to specify the encoding, since
4009 that's how hunspell expects it.
4010
5c5b8e23
GM
40112012-04-08 Glenn Morris <rgm@gnu.org>
4012
4013 * loadup.el: Load bindings before cus-start.
4014 This reduces somewhat the number of "rogue" settings in emacs -Q.
4015
a1ed8b05
GM
40162012-04-07 Glenn Morris <rgm@gnu.org>
4017
4018 * version.el (emacs-bzr-get-version): New function.
dfae128a 4019 (emacs-bzr-version): New variable.
a1ed8b05
GM
4020 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
4021 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
4022
b142f158
EZ
40232012-04-07 Eli Zaretskii <eliz@gnu.org>
4024
dfae128a
GM
4025 * international/uni-bidi.el, international/uni-category.el:
4026 * international/uni-combining.el, international/uni-decimal.el:
4027 * international/uni-decomposition.el, international/uni-digit.el:
4028 * international/uni-lowercase.el, international/uni-mirrored.el:
4029 * international/uni-name.el, international/uni-numeric.el:
4030 * international/uni-titlecase.el, international/uni-uppercase.el:
4031 Update for Unicode 6.1.
b142f158 4032
9078ead6
EZ
40332012-04-07 Eli Zaretskii <eliz@gnu.org>
4034
4035 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
4036
f23d2c7d
LMI
40372012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4038
4039 * window.el (shrink-window): Mention the `window-min-height'
4040 variable in the doc string.
4041
0a0a3573
BG
40422012-04-05 Bastien Guerry <bzg@altern.org>
4043
4044 * color.el (color-lighten-name): Fix typo.
4045
e5248ac9
SM
40462012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4047
4048 * server.el (server--on-display-p): New function.
4049 (server--on-display-p): Use it.
4050
b4243e22
GV
40512012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
4052
4053 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
4054 (bug#11145).
4055
305d9f44
SM
40562012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4057
4058 * comint.el (comint--common-quoted-suffix): Check string boundary
4059 before comparing (bug#11158).
4060 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
4061
3d439cd1
CY
40622012-04-04 Chong Yidong <cyd@gnu.org>
4063
321cc491
CY
4064 * minibuffer.el (completion-extra-properties): Doc fix.
4065
3d439cd1
CY
4066 * subr.el (delayed-warnings-hook): Doc fix.
4067
2d562c0f
DU
40682012-04-04 Daiki Ueno <ueno@unixuser.org>
4069
4070 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
4071 selection (Bug#11159).
4072 (epa-insert-keys): Inform that the default public key will be
4073 exported if no key is selected.
4074
4443f204
RS
40752012-04-04 Richard Stallman <rms@gnu.org>
4076
4077 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
4078
529c06b6
CY
40792012-04-03 Chong Yidong <cyd@gnu.org>
4080
4081 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
4082 mail-insert-file, not its obsolete alias mail-attach-file.
4083
66b907dc
MA
40842012-04-03 Michael Albinus <michael.albinus@gmx.de>
4085
4086 * notifications.el (notifications-notify): Fix docstring.
4087
c0ea195d
GM
40882012-04-02 Glenn Morris <rgm@gnu.org>
4089
4090 * emacs-lisp/authors.el (authors-aliases): Another addition.
4091
5ca64e00
MA
40922012-04-02 Michael Albinus <michael.albinus@gmx.de>
4093
4094 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
4095 `tramp-compat-call-process' instead of `tramp-local-call-process'.
4096 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
4097
42ee526b
CY
40982012-04-01 Chong Yidong <cyd@gnu.org>
4099
4100 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
4101 Handle root directory properly.
4102 (copy-directory): Caller changed.
4103
4104 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4105 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
4106
0b021094
GM
41072012-03-31 Glenn Morris <rgm@gnu.org>
4108
40f86458
GM
4109 * term/xterm.el (xterm-extra-capabilities): Doc fix.
4110
7019c177
GM
4111 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
4112
a1daddd6
GM
4113 * calendar/calendar.el (calendar-window-list)
4114 (calendar-hide-window): Restore. (Bug#11140)
4115 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
4116
0b021094
GM
4117 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
4118
40311efc
TV
41192012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4120
4121 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4122 Check if file is a symlink (Bug#10489).
4123
4124 * files.el (copy-directory): Likewise.
4125
5319014e
CY
41262012-03-30 Chong Yidong <cyd@gnu.org>
4127
4128 * image.el (imagemagick-types-inhibit)
4129 (imagemagick-register-types): Doc fix.
4130
935d1290
AM
41312012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4132
ef24141c
SM
4133 * ispell.el (ispell-get-extended-character-mode):
4134 Disable extended-char-mode for hunspell. hunspell does not support it
75f1671a 4135 and treats ~word as ordinary words in pipe mode.
935d1290 4136
61c6e8fd
GM
41372012-03-30 Glenn Morris <rgm@gnu.org>
4138
4139 * tutorial.el (help-with-tutorial): Ensure local variables don't
4140 happen to make the buffer read-only. (Bug#11127)
4141
81fdff00
SM
41422012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4143
4144 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4145 (perl-calculate-indent): Return `noindent' in strings.
4146
6e7a6ec0
SS
41472012-03-28 Sam Steingold <sds@gnu.org>
4148
4149 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4150 instead of the broken adhockery which does not prevent calendar
4151 buffers from being displayed at random after exit.
4152 (calendar-window-list, calendar-hide-window): Remove the broken
4153 adhockery.
4154
fee88ca0
GM
41552012-03-28 Glenn Morris <rgm@gnu.org>
4156
4157 * replace.el (query-replace-map): Doc fix.
4158
38de3354
AS
41592012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4160
4161 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4162 contents. (Bug#11109)
4163
b973155e
SM
41642012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4165
4166 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4167 (bug#11077).
4168 (avl-tree--check, avl-tree--check-node): New funs.
4169
dcb6e7b3
MR
41702012-03-27 Martin Rudalics <rudalics@gmx.at>
4171
4172 * window.el (switch-to-visible-buffer): New option.
b973155e
SM
4173 (switch-to-prev-buffer, switch-to-next-buffer):
4174 Observe switch-to-visible-buffer. Make sure that checking for a window
dcb6e7b3
MR
4175 showing a buffer already is done on the same frame.
4176
b4fa35fa
GM
41772012-03-27 Glenn Morris <rgm@gnu.org>
4178
4179 * startup.el (mail-host-address): Doc fix.
4180
f9210e18
SM
41812012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4182
4183 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4184 than 197 variables.
4185
c0bf7753
AF
41862012-03-26 Ami Fischman <ami@fischman.org>
4187
4188 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4189
33da7b16
GM
41902012-03-26 Glenn Morris <rgm@gnu.org>
4191
02243d9d
GM
4192 * files.el (save-buffers-kill-emacs): Doc fix.
4193
33da7b16
GM
4194 * startup.el (normal-top-level, command-line, command-line-1):
4195 Give them doc strings.
4196
e5a69fd0
EZ
41972012-03-25 Eli Zaretskii <eliz@gnu.org>
4198
4199 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
b973155e 4200 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
e5a69fd0 4201
9a69676a
CY
42022012-03-25 Chong Yidong <cyd@gnu.org>
4203
4125cb8b
CY
4204 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4205 theme if it was previously enabled before (Bug#11031).
4206
dd470960
CY
4207 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4208 spec with custom-face-get-current-spec if its :shown-value is not
4209 determined yet (Bug#9337).
4125cb8b 4210 (customize-create-theme, custom-theme-revert): Doc fixes.
dd470960 4211
9a69676a
CY
4212 * button.el (button-at): Minor addition to docstring.
4213
6e7e90fa
SL
42142012-03-24 Simon Leinen <simon.leinen@gmail.com>
4215
4216 * vc/vc.el (vc-merge): Fix a prompt.
4217
f06e2758
CY
42182012-03-24 Chong Yidong <cyd@gnu.org>
4219
4220 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4221 point (Bug#9623).
4222
6e7e90fa
SL
4223 * button.el (button-at): Minor addition to docstring.
4224
b9d0879b
SM
42252012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4226
4227 * newcomment.el (comment-choose-indent): No space after BOL.
4228
e71cebb3
SS
42292012-03-22 Sam Steingold <sds@gnu.org>
4230
4231 * window.el (switch-to-prev-buffer): Revert last patch because the
4232 bug turned out to be an advertised feature (Elisp manual 28.14).
4233
335aff35
GM
42342012-03-22 Glenn Morris <rgm@gnu.org>
4235
4236 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4237 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4238
c676576a
LMI
42392012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4240
4241 * net/network-stream.el (network-stream-open-starttls): Make error
4242 message under Windows be less misleading.
4243
126f3d39
LW
42442012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4245
4246 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4247 understands (bug#9942).
4248
64fee311
CY
42492012-03-22 Chong Yidong <cyd@gnu.org>
4250
4251 * simple.el (end-of-visible-line): Handle return value of
4252 next-single-property-change properly (Bug#9371).
4253
a640d29a
KH
42542012-03-22 Kenichi Handa <handa@m17n.org>
4255
4256 * international/quail.el (quail-insert-kbd-layout): Fix previous
4257 change. To avoid unwanted bidi reordering, use
4258 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4259
39675016
DG
42602012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4261
4262 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4263 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4264 (ruby-beginning-of-indent): Be more careful with the difference
4265 between word-boundary and symbol boundary.
4266 (ruby-mode-syntax-table): Make : a symbol constituent.
4267
0a6934fc 42682012-03-21 Andreas Politz <politza@fh-trier.de>
1acad97c 4269
3d008e4f
SM
4270 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4271
0a6934fc
SM
42722012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4273
af67c9d7
SM
4274 * progmodes/etags.el (tags-completion-at-point-function):
4275 Improve last fix.
4276
1acad97c
SM
4277 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4278
e298b5da
SS
42792012-03-21 Sam Steingold <sds@gnu.org>
4280
4281 * progmodes/etags.el (tags-completion-at-point-function):
4282 Avoid the error when point is inside the pattern.
4283
91d82a70
JY
42842012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4285
4286 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4287 line (Bug#10855).
4288
69188b79
CY
42892012-03-21 Drew Adams <drew.adams@oracle.com>
4290
4291 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4292
99fc91fe
AK
42932012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4294
4295 * ido.el (ido-set-current-directory, ido-read-internal)
4296 (ido-choose-completion-string, ido-completion-help): Handle nil
4297 value of ido-completion-buffer (Bug#11008).
4298
087bbb4c
SS
42992012-03-21 Sam Steingold <sds@gnu.org>
4300
4301 * window.el (switch-to-prev-buffer): Do not switch to a visible
4302 window previous buffer, just like with the frame previous buffers.
4303
fb5b8aca
CY
43042012-03-21 Chong Yidong <cyd@gnu.org>
4305
4306 * faces.el (make-face, make-empty-face, copy-face):
4307 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4308 Doc fixes.
4309
dc9924b8
SM
43102012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4311
4312 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4313 (widget-complete): Remove broken use of it.
4314
f0bcceb9
CY
43152012-03-20 Chong Yidong <cyd@gnu.org>
4316
dc9924b8
SM
4317 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4318 Use string-width and truncate-string-width to handle arbitrary
f0bcceb9
CY
4319 characters.
4320
ee52ebf3
TH
43212012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4322
4323 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4324 to draw rectangles, not squares. (Regression introduced by revno
4325 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4326
4c5779ab
CY
43272012-03-18 Chong Yidong <cyd@gnu.org>
4328
4329 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4330 it is not yet defined (for temacs).
4331
15360934
LL
43322012-03-18 Leo Liu <sdl.web@gmail.com>
4333
dc9924b8 4334 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
15360934 4335
d9a8eb66
EZ
43362012-03-17 Eli Zaretskii <eliz@gnu.org>
4337
4338 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4339 (ispell-choices-win-default-height, ispell-silently-savep)
4340 (ispell-dictionary-alist, ispell-encoding8-command)
4341 (ispell-check-version, ispell-aspell-find-dictionary)
4342 (ispell-valid-dictionary-list, ispell-words-keyword)
4343 (ispell-get-word, ispell-internal-change-dictionary)
4344 (ispell-region, ispell-skip-region-list)
4345 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4346 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4347 (ispell-message-text-end, ispell-message)
4348 (ispell-buffer-local-parsing): Doc fix.
4349
f02ff80d
J
43502012-03-13 Jambunathan K <kjambunathan@gmail.com>
4351
4352 * htmlfontify.el: Add support for code block fontification for ODT
4353 export (Bug #9914).
4354 (hfy-optimisations): Define new option
4355 `body-text-only'
4356 (hfy-fontify-buffer): Honor above setting.
4357 (hfy-begin-span, hfy-end-span): New routines factored out form
4358 `hfy-fontify-buffer'.
4359 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4360 that permit insertion of custom tags.
4361 (hfy-fontify-buffer): Use above handlers.
4362 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4363 (hfy-face-to-css): Re-defined to be a variable.
dc9924b8 4364 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
75f1671a 4365 over multiple runs. This is made possible by having the caller let
f02ff80d
J
4366 bind a special variable `hfy-user-sheet-assoc'.
4367 (htmlfontify-string): New defun.
4368 (hfy-compile-face-map): Make sure that the last char in the
4369 buffer is correctly fontified.
4370 (hfy-face-resolve-face): Whitespace only change.
4371
9ac7a13f
EZ
43722012-03-17 Eli Zaretskii <eliz@gnu.org>
4373
4374 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4375 message more clear.
4376
e2b5bdd7
LL
43772012-03-16 Leo Liu <sdl.web@gmail.com>
4378
4379 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4380
2e492df3
AM
43812012-03-16 Alan Mackenzie <acm@muc.de>
4382
4383 Further optimise the handling of large macros.
4384
4385 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4386 limit to a call of `c-literal-limits'.
4387 (c-determine-+ve-limit): New function.
dc9924b8
SM
4388 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4389 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
2e492df3
AM
4390 In CASE 5B, restrict a search limit to 500.
4391 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4392
4393 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4394 Restrict macro bounds to +-500 from after-change's BEG END.
4395
50e94f0c
LL
43962012-03-16 Leo Liu <sdl.web@gmail.com>
4397
4398 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4399
6f09f6ed
AH
44002012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4401
4402 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
dc9924b8 4403 `special-mode' setting of `buffer-read-only'. (Bug#11010)
6f09f6ed 4404
c7e73d51
GM
44052012-03-16 Glenn Morris <rgm@gnu.org>
4406
da986230
GM
4407 * view.el (view-buffer, view-buffer-other-window)
4408 (view-buffer-other-frame): Doc fixes re special mode-class.
4409
0835f01e
GM
4410 * subr.el (eval-after-load): If named feature is provided not from
4411 a file, run after-load forms. (Bug#10946)
4412
c7e73d51
GM
4413 * calendar/calendar.el (calendar-insert-at-column):
4414 Handle non-unit-width characters a bit better. (Bug#10978)
4415
3f2eafd1
CY
44162012-03-15 Chong Yidong <cyd@gnu.org>
4417
4418 * emacs-lisp/ring.el (ring-extend): New function.
4419 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4420
4421 * comint.el (comint-read-input-ring)
4422 (comint-add-to-input-history): Grow comint-input-ring lazily.
4423
103af3fe
SM
44242012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4425
663b1677
SM
4426 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4427 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4428
103af3fe
SM
4429 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4430 (imenu-add-to-menubar): Don't add a redundant index.
4431 (imenu-update-menubar): Handle a dynamically composed keymap.
4432
899cb7cb
KY
44332012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4434
4435 * mail/sendmail.el (mail-encode-header):
4436 Bind rfc2047-encode-encoded-words to nil.
4437
3809f91d
GM
44382012-03-13 Glenn Morris <rgm@gnu.org>
4439
4440 * calendar/calendar.el (calendar-string-spread):
4441 Handle non-unit-width characters a bit better. (Bug#10978)
4442
9e345a01
LL
44432012-03-13 Leo Liu <sdl.web@gmail.com>
4444
4445 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4446 directory and file as argument (Bug#10822).
4447
4a07df36
KS
44482012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4449
4450 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4451 For dynamically generated code, follow $PC.
4452 (gdb-disassembly-handler-custom): Handle no function name case.
4453
4aaa9356
TL
44542012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4455
4456 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4457 * emulation/ws-mode.el (ws-query-replace):
4458 * sort.el (sort-regexp-fields):
4459 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4460
225979da
SM
44612012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4462
4463 * dabbrev.el: Fix cycle completion order (bug#10963).
4464 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4465 (dabbrev-completion): Don't use an obarray; provide
4466 a cycle-sort-function.
4467
e2f1fdab
LL
44682012-03-12 Leo Liu <sdl.web@gmail.com>
4469
dc9924b8 4470 * simple.el (kill-new): Use equal-including-properties for comparison.
e2f1fdab
LL
4471 (kill-do-not-save-duplicates): Doc fix.
4472
b19490ed
SM
44732012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4474
4475 * dabbrev.el: Fix cycle completion (bug#10963).
4476 Use lexical binding and wrap to 80 columns.
4477 (dabbrev-completion): Delay computing the list of completions.
4478
4b05d722
KH
44792012-03-12 Kenichi Handa <handa@m17n.org>
4480
4481 * international/quail.el (quail-insert-kbd-layout): Surround each
4482 row by LRO and PDF instead of inserting many LRMs. Pad the left
4483 and right of each non-spacing marks. Insert invisible space
4484 between lower and upper characters to prevent composition.
4485
dbbc2e69
SM
44862012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4487
4488 * minibuffer.el (minibuffer-complete): Don't get confused when the
4489 function is run twice via different commands (bug#10958).
4490 (complete-with-action): Fix docstring.
4491
292112ed
CY
44922012-03-12 Chong Yidong <cyd@gnu.org>
4493
5d1ac394
CY
4494 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4495 (nxml-completion-at-point-function): New function.
4496 (nxml-mode): Use it.
4497 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4498
292112ed
CY
4499 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4500 Load generated autoloads file before byte compiling (Bug#10970).
4501 (package--make-autoloads-and-compile): New helper fun.
4502
4098f8f7
CS
45032012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4504
4505 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4506
8f754691
MA
45072012-03-11 Michael Albinus <michael.albinus@gmx.de>
4508
4509 * autorevert.el (auto-revert-handler): Ensure, that
4510 file-readable-p is applied only for local files or in
4511 auto-revert-tail-mode.
4512
e29ab36b
AS
45132012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4514
dbbc2e69
SM
4515 * server.el (server-eval-at): Handle non-tcp connections.
4516 Decode result string.
ad0bf5b6 4517
e29ab36b
AS
4518 * server.el (server-msg-size): New constant.
4519 (server-reply-print): New function.
4520 (server-eval-and-print): Use it.
4521 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4522 Handle -print-nonl.
4523
de5939ba
CS
45242012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4525
4526 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4527 (Bug#10987).
4528
0c93eabf
CY
45292012-03-11 Chong Yidong <cyd@gnu.org>
4530
397a688f
CY
4531 * simple.el (goto-line): Doc fix (Bug#9938).
4532
2cc775f9
CY
4533 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4534
0c93eabf
CY
4535 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4536 when finished (Bug#10963).
4537
c491fa41
MR
45382012-03-11 Martin Rudalics <rudalics@gmx.at>
4539
4540 * window.el (split-window-below): Fix bug in case where
4541 split-window-keep-point is nil (Bug#10971).
4542
300e8fa5
JL
45432012-03-11 Juri Linkov <juri@jurta.org>
4544
4545 * replace.el (replace-highlight): Set isearch-word to nil
4546 unconditionally. (Bug#10887)
4547
dbf6c5a1
EZ
45482012-03-10 Eli Zaretskii <eliz@gnu.org>
4549
4550 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4551 mairix-replace-illegal-chars; all callers changed. Don't remove
dc9924b8 4552 ^, ~, and = characters: they are meaningful in mairix search specs.
dbf6c5a1
EZ
4553 (mairix-widget-create-query): Add usage information about mairix
4554 search forms: negating words, searching for substrings, etc.
4555
b9e501de
JP
45562012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4557
4558 * international/fontset.el (font-encoding-alist): Add an entry for
4559 ksx1001 (Bug#5667).
4560
92795c91
RS
45612012-03-10 Richard Stallman <rms@gnu.org>
4562
1694e6c1
RS
4563 * mail/sendmail.el (mail-encode-header):
4564 Set rfc2047-encode-encoded-words.
4565
607e8555
RS
4566 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4567
de3bc99a
RS
4568 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4569 view buffer means not swapped.
4570 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4571 (rmail-write-region-annotate): Error if real text has disappeared.
4572
92795c91
RS
4573 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4574
699bd04e
CY
45752012-03-10 Chong Yidong <cyd@gnu.org>
4576
4577 * emulation/cua-rect.el (cua--init-rectangles):
dbbc2e69
SM
4578 * emulation/cua-base.el (cua--init-keymaps):
4579 Add delete-forward-char to remappings (Bug#9666).
699bd04e 4580
570a1714
MR
45812012-03-10 Martin Rudalics <rudalics@gmx.at>
4582
dbbc2e69
SM
4583 * speedbar.el (speedbar-unhighlight-one-tag-line):
4584 Avoid unhighlighting due to frame switching (Bug#10275).
570a1714 4585
82dcf4e4
CY
45862012-03-10 Chong Yidong <cyd@gnu.org>
4587
7a2c7ca7
CY
4588 * minibuffer.el (completion-in-region, completion-help-at-point):
4589 Give the completion field overlay a high priority (Bug#6830).
4590
82dcf4e4
CY
4591 * dired.el (dired-goto-file): Recognize absolute file name
4592 listings (Bug#7126).
4593 (dired-goto-file-1): New helper function.
4594 (dired-toggle-read-only): Inhibit warnings.
4595
052e28ac
MA
45962012-03-09 Michael Albinus <michael.albinus@gmx.de>
4597
75f1671a 4598 * net/dbus.el (dbus-property-handler): Return empty array if
052e28ac
MA
4599 there are no properties.
4600
95d5e396
LL
46012012-03-09 Leo Liu <sdl.web@gmail.com>
4602
4603 * savehist.el (savehist-printable): Stricter check for string
4604 value (Bug#10937).
4605
3f018d6d
EZ
46062012-03-09 Eli Zaretskii <eliz@gnu.org>
4607
dbbc2e69
SM
4608 * mail/smtpmail.el (smtpmail-send-it):
4609 Bind coding-system-for-write to *-unix, so that FCC files are kept in
3f018d6d
EZ
4610 valid mbox format.
4611
f7fd3d79
GM
46122012-03-09 Glenn Morris <rgm@gnu.org>
4613
4614 * files.el (dir-locals-find-file):
4615 Don't check result is regular, readable.
4616 (dir-locals-read-from-file): Demote errors.
4617
6ff6e72f
EZ
46182012-03-08 Eli Zaretskii <eliz@gnu.org>
4619
dbbc2e69
SM
4620 * international/quail.el (quail-insert-kbd-layout):
4621 Insert invisible LRM characters before each character in a keyboard
6ff6e72f
EZ
4622 layout cell, to prevent their reordering by bidi display engine.
4623 For details, see the discussion in
4624 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
4625
9cec7834
AM
46262012-03-08 Alan Mackenzie <acm@muc.de>
4627
4628 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
4629 the starting position; make it extend the marked region when
4630 invoked repeatedly - all under appropriate circumstances.
4631 Fixes bugs #5525, #10906.
4632
9a40b8d4
GM
46332012-03-08 Glenn Morris <rgm@gnu.org>
4634
4635 * files.el (locate-dominating-file, dir-locals-find-file):
4636 Undo 2012-03-06 change.
4637
7a08ed35
EZ
46382012-03-07 Eli Zaretskii <eliz@gnu.org>
4639
dbbc2e69
SM
4640 * international/quail.el (quail-help):
4641 Force bidi-paragraph-direction be left-to-right. See discussion in
7a08ed35
EZ
4642 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
4643 for the reason.
4644
5aca4f71 46452012-03-07 Michael Albinus <michael.albinus@gmx.de>
6612a284
MA
4646
4647 Avoid superfluous registering of signals. (Bug#10807)
4648
4649 * notifications.el (notifications-on-action-object)
4650 (notifications-on-close-object): New defvars.
4651 (notifications-on-action-signal, notifications-on-closed-signal):
4652 Unregister the signal if not needed any longer.
4653 (notifications-notify): Register `notifications-action-signal' or
4654 `notifications-closed-signal', if :on-action or :on-close has been
4655 passed as argument.
4656
78e8b10a
CY
46572012-03-07 Chong Yidong <cyd@gnu.org>
4658
4659 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4660 non-X platforms.
4661
69481eb8
GM
46622012-03-06 Glenn Morris <rgm@gnu.org>
4663
4664 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4665 (x-disown-selection-internal, x-get-selection-internal):
4666 Doc fix (add arglist signatures). (Bug#10783)
4667
133b8e11
KS
46682012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4669
4670 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4671 Handle breakpoints with no "type".
4672
99a83064
GM
46732012-03-06 Glenn Morris <rgm@gnu.org>
4674
4675 * files.el (locate-dominating-file): Add optional predicate argument.
4676 (dir-locals-find-file): Make use of above change.
4677
17798e78
TTN
46782012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
4679
4680 * info.el (Info-insert-dir): Also try "dir.gz".
4681
eb182446
GM
46822012-03-06 Glenn Morris <rgm@gnu.org>
4683
8f2114ee
GM
4684 * files.el (dir-locals-find-file):
4685 Ignore non-readable or non-regular files. (Bug#10928)
4686
eb182446
GM
4687 * files.el (locate-dominating-file): Doc fix.
4688
24679323
AS
46892012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
4690
4691 * calendar/calendar.el (calendar-set-mode-line):
4692 `getenv' returns a string. (Bug#10951)
4693
01d972a9
LL
46942012-03-05 Leo Liu <sdl.web@gmail.com>
4695
109aa8a9
LL
4696 * simple.el (backward-delete-char-untabify): Constrain point to
4697 field (Bug#10939).
4698
01d972a9
LL
4699 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4700
10607bea
CY
47012012-03-05 Chong Yidong <cyd@gnu.org>
4702
4703 * simple.el (count-words): If called from Lisp, return the word
4704 count, for symmetry with `count-lines'. Arglist changed.
4705 (count-words--message): Args changed. Consolidate counting code
4706 from count-words and count-words-region.
4707 (count-words-region): Caller changed.
4708 (count-lines-region): Make it an obsolete alias.
4709
5dd11cfe
TH
47102012-03-04 Tassilo Horn <tassilo@member.fsf.org>
4711
4712 * saveplace.el (save-place-to-alist)
4713 (save-place-ignore-files-regexp): Allow value nil to disable this
4714 feature.
4715
c349f4e6
CY
47162012-03-04 Chong Yidong <cyd@gnu.org>
4717
4718 * faces.el (face-spec-reset-face): For the default face, reset the
4719 attributes to default values (Bug#10748).
4720
e627be4c
LMI
47212012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4722
4723 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4724 previous patch: Check `message-send-mail-function', and not the
4725 default function (bug#10897).
4726
ebeabff4
MA
47272012-03-04 Michael Albinus <michael.albinus@gmx.de>
4728
a41a6cf4
MA
4729 * notifications.el (notifications-on-action-signal)
4730 (notifications-on-closed-signal): Check for unique service name of
4731 incoming event. Fix error in removing entry.
ebeabff4 4732 (top): Register for signals with wildcard service name.
a41a6cf4 4733 (notifications-notify): Use daemon unique service name for map entries.
ebeabff4 4734
c1ca42b4
CY
47352012-03-04 Chong Yidong <cyd@gnu.org>
4736
dc9924b8 4737 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
c1ca42b4 4738
ea16568d
GM
47392012-03-04 Glenn Morris <rgm@gnu.org>
4740
4741 * abbrev.el (copy-abbrev-table, abbrev-table-p)
4742 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4743 (expand-abbrev, define-abbrev-table): Doc fixes.
4744
fbae4637
LMI
47452012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4746
4747 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4748 `message-default-send-mail-function' and not `send-mail-function'
4749 when doing the prompting for `sendmail-query-once' before sending
4750 in Message buffers (bug#10897).
4751
a1e7225c
LMI
4752 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4753 This is inconsistent with all the other stream functions, which leave
4754 the setting up to the higher levels (if so wanted) (bug#10931).
4755
56d093a9
AM
47562012-03-02 Alan Mackenzie <acm@muc.de>
4757
4758 Depessimize the handling of very large macros.
4759
4760 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4761 (c-macro-cache-syntactic): New variables to implement a one
4762 element macro cache.
4763 (c-invalidate-macro-cache): New function.
4764 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4765 Adapt to use the new cache.
4766 (c-state-safe-place): Use better the cache of safe positions.
4767 (c-state-semi-nonlit-pos-cache)
4768 (c-state-semi-nonlit-pos-cache-limit):
4769 New variables for...
4770 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
4771 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
dbbc2e69
SM
4772 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4773 Use c-state-semi-safe-place.
56d093a9 4774
dbbc2e69
SM
4775 * progmodes/cc-langs.el (c-get-state-before-change-functions):
4776 Add c-invalidate-macro-cache to the C, C++, Obj entries.
56d093a9 4777
817e5c3d
MA
47782012-03-02 Michael Albinus <michael.albinus@gmx.de>
4779
dbbc2e69
SM
4780 * jka-compr.el (jka-compr-call-process):
4781 Apply `file-accessible-directory-p' only when the default directory is
817e5c3d
MA
4782 not remote.
4783
a032a702
MA
47842012-03-01 Michael Albinus <michael.albinus@gmx.de>
4785
4786 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
4787 access of FILE2, if FILE1 does not exist.
4788
99a54f21
MA
4789 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4790 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4791
4792 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4793 Add "PAGER=" to `process-environment'.
4794
f6561e1f
MM
47952012-03-01 Michael R. Mauger <mmaug@yahoo.com>
4796
4797 * progmodes/sql.el: Bug fix
4798 (sql-get-login-ext): Save login values in globals.
4799 (sql-get-login): Use new version of `sql-get-login-ext'.
4800 (sql-interactive-mode): Set global `sql-connection' to nil.
4801 (sql-connect): Set global values for connection.
4802 (sql-product-interactive): Save global values as buffer local.
4803
2d44d9cc
LL
48042012-02-29 Leo Liu <sdl.web@gmail.com>
4805
4806 * abbrev.el (define-abbrevs): Reset sys to nil.
4807
96b49301 48082012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4809
bf7f9bc5
JB
4810 * files.el (file-equal-p): Rename from `files-equal-p'.
4811 Return nil when one or both files don't exist.
96b49301 4812 (file-subdir-of-p): Now only top directory must exists,
4813 return nil if it doesn't.
bf7f9bc5
JB
4814 (copy-directory): No need to test with `file-subdir-of-p' after
4815 creating dir.
4816 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4817 to `file-equal-p'.
96b49301 4818
44e97401
GM
48192012-02-28 Glenn Morris <rgm@gnu.org>
4820
4821 * shell.el (shell-mode):
4822 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4823 * play/landmark.el (landmark-font-lock-face-O):
4824 * play/handwrite.el (handwrite):
4825 * play/gomoku.el (gomoku-O):
4826 * net/browse-url.el (browse-url-browser-display):
4827 * international/mule.el (define-charset):
4828 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4829 * filesets.el (filesets-find-file-delay):
4830 * eshell/em-xtra.el (eshell-xtra):
4831 * eshell/em-unix.el (eshell-grep):
4832 * emulation/viper.el (viper-mode):
4833 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4834 * emacs-lisp/easymenu.el (easy-menu-define):
4835 * calendar/timeclock.el (timeclock-use-display-time):
4836 * bs.el (bs-mode):
4837 * bookmark.el (bookmark-save-flag):
4838 Doc fix (standardize possessive apostrophe usage).
4839
c98c6276
CY
48402012-02-27 Chong Yidong <cyd@gnu.org>
4841
bf7f9bc5
JB
4842 * emulation/viper-cmd.el (viper-intercept-ESC-key):
4843 Fix key-binding lookup for ESC key (Bug#9146).
ecf5f74e 4844
c98c6276
CY
4845 * font-lock.el (font-lock-specified-p): Rename from
4846 font-lock-spec-present. Callers changed.
4847
9c62cd04 48482012-02-27 Daniel Hackney <dan@haxney.org>
8ac9e529 4849
bf7f9bc5
JB
4850 * emacs-lisp/package.el (package-compute-transaction):
4851 Handle holding a package version to t in package-load-list.
8ac9e529 4852
530739c9
MA
48532012-02-26 Michael Albinus <michael.albinus@gmx.de>
4854
4855 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4856 (tramp-get-inode, tramp-get-device): Use cached values.
4857
487915d7
AM
48582012-02-26 Alan Mackenzie <acm@muc.de>
4859
4860 Check there is a font-lock specification before doing initial
4861 fontification.
4862
4863 * font-core.el (font-lock-mode): Move the conditional from
4864 :after-hook to font-lock-initial-fontify.
4865 (font-lock-default-function): Move the check for a specification
4866 to font-lock-spec-present.
4867
dc9924b8 4868 * font-lock.el (font-lock-initial-fontify): Call ...
487915d7
AM
4869 (font-lock-spec-present): New function.
4870
4fd96557
JB
48712012-02-26 Jim Blandy <jimb@red-bean.com>
4872
4873 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4874 (gdb-send): Apply it to the operand of the '-interpreter-exec
4875 console' command, so that we can pass arguments with (say) quotes
4876 in them. Store exact string sent in gdb-debug-log (Bug#10765).
4877
9a4888c0
CY
48782012-02-26 Chong Yidong <cyd@gnu.org>
4879
07498861
CY
4880 * help-fns.el (describe-function-1): Clarify description of
4881 remapping (Bug#10844).
4882
9a4888c0
CY
4883 * files.el (files-equal-p): Doc fix.
4884 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
4885 and quit the loop once a mismatch is found.
4886
ea8fb88d
JB
48872012-02-25 Juanma Barranquero <lekktu@gmail.com>
4888
4889 * bs.el (bs--show-with-configuration): Don't throw an error
4890 if the window cannot be split; otherwise, subsequent calls to
4891 bs-show fail, restoring a stale window config. (Bug#10882)
4892
525795c1
JD
48932012-02-25 Jan Djärv <jan.h.d@swipnet.se>
4894
4895 * term/ns-win.el (global-map): Bind ns-drag-file to
4896 ns-find-file (Bug#5855, Bug#10050).
4897
f008086f
AS
48982012-02-25 Andreas Schwab <schwab@linux-m68k.org>
4899
4900 * calendar/parse-time.el (parse-time-string): Allow extractor to
4901 return nil.
4902
a3fcfa99
MA
49032012-02-25 Michael Albinus <michael.albinus@gmx.de>
4904
91027d08
JB
4905 * net/tramp.el (tramp-file-name-for-operation):
4906 Add `files-equal-p' and `file-subdir-of-p'.
a3fcfa99
MA
4907
4908 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
91027d08
JB
4909 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4910 Add COPY-CONTENTS argument.
a3fcfa99 4911
67b0de11
CY
49122012-02-25 Chong Yidong <cyd@gnu.org>
4913
4914 Add custom groups for VC backends, for consistency with vc-bzr.
4915
4916 * vc/vc-arch.el (vc-arch):
4917 * vc/vc-cvs.el (vc-cvs):
4918 * vc/vc-git.el (vc-git):
4919 * vc/vc-hg.el (vc-hg):
4920 * vc/vc-mtn.el (vc-mtn):
4921 * vc/vc-rcs.el (vc-rcs):
4922 * vc/vc-sccs.el (vc-sccs):
4923 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4924 All relevant defcustoms reassigned.
4925
3c9dfce6
CY
49262012-02-25 Chong Yidong <cyd@gnu.org>
4927
1339bf43
CY
4928 * newcomment.el (comment-styles): Add autoload (Bug#10868).
4929
3c9dfce6
CY
4930 * term/x-win.el (x-initialize-window-system): Reduce default for
4931 x-selection-timeout to 5 seconds (Bug#8869).
4932
25b2e303 49332012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4934
ec70a47d
GM
4935 * files.el (files-equal-p, file-subdir-of-p): New functions.
4936 (copy-directory): Error when trying to copy a directory on itself.
25b2e303 4937 Add missing copy-contents arg to tramp handler.
ec70a47d
GM
4938 * dired-aux.el (dired-copy-file-recursive): Same.
4939 (dired-create-files): Modify destination when source is equal to
4940 dest when copying files.
53a46cd0 4941 Return also when dest is a subdir of source. (Bug#10489)
25b2e303 4942
914260cd
MA
49432012-02-24 Michael Albinus <michael.albinus@gmx.de>
4944
4945 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
4946 (Bug#10874)
4947
2cb228f7
AM
49482012-02-23 Alan Mackenzie <acm@muc.de>
4949
4950 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
4951 parameter "after-hook:" to allow the expansion to run code after
4952 the execution of the mode hooks.
4953
4954 * font-lock.el (font-lock-initial-fontify): New function extracted
91027d08 4955 from font-lock-mode-internal.
2cb228f7 4956
91027d08 4957 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
2cb228f7
AM
4958 :after-hook.
4959
8f0fde21
SM
49602012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4961
3e88618b
SM
4962 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
4963 (completion--cache-all-sorted-completions): New function.
4964 (completion-all-sorted-completions): Use it.
4965 (completion--do-completion, minibuffer-force-complete):
4966 Use it to re-instate the flush hook.
4967
8f0fde21
SM
4968 * icomplete.el (icomplete-completions): Replace last fix with a better
4969 one (bug#10850).
4970
8e911f6f
DG
49712012-02-23 Dmitry Gutov <dgutov@yandex.ru>
4972
4973 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
4974 when it might call us back infinitely (bug#10797).
4975
49fe4321
GM
49762012-02-23 Glenn Morris <rgm@gnu.org>
4977
4978 * minibuffer.el (completion-category-overrides): Doc fix.
4979
b291b572
SM
49802012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
4981
4982 * minibuffer.el (completion-table-with-context): Fix inf-loop.
4983 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
4984
31a9ef2e
GM
49852012-02-23 Glenn Morris <rgm@gnu.org>
4986
5e6e6794 4987 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
31a9ef2e
GM
4988 (authors-obsolete-files-regexps, authors-ignored-files)
4989 (authors-ambiguous-files, authors-renamed-files-alist):
4990 Add more entries.
4991
0bd1e074
JL
49922012-02-23 Juri Linkov <juri@jurta.org>
4993
4994 * isearch.el (isearch-occur): Sync interactive spec with occur's
4995 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
4996
b617673c
JL
4997 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
4998
19e9789e
JL
49992012-02-22 Juri Linkov <juri@jurta.org>
5000
5001 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
5002 (ucs-insert): Doc fix. Check for hex digits in the string.
5003 Don't display `nil' in the error message. (Bug#10857)
5004
f41ce09d
AM
50052012-02-22 Alan Mackenzie <acm@muc.de>
5006
7a71b18d 5007 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
f41ce09d 5008
ac2eceee
GM
50092012-02-22 Glenn Morris <rgm@gnu.org>
5010
5011 * ffap.el (ffap-c-path):
5012 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
5013
abd1f678
CY
50142012-02-22 Chong Yidong <cyd@gnu.org>
5015
5016 * custom.el (load-theme): Doc fix.
5017
f25aef2e
GM
50182012-02-22 Glenn Morris <rgm@gnu.org>
5019
5020 * dired-x.el (dired-guess-shell-alist-default):
5021 Remove escape sequences from nroff output. (Bug#172)
5022
5f8dc2ca
GM
50232012-02-21 Glenn Morris <rgm@gnu.org>
5024
6ff86ec4
GM
5025 * vc/emerge.el (emerge-defvar-local):
5026 Set `permanent-local' property rather than unused `preserved'.
5027
be3223a3 5028 * textmodes/picture.el (picture-delete-char): New alias.
5f8dc2ca
GM
5029 (picture-mode-map): Use it. (Bug#10860)
5030 (picture-mode): Doc fix.
5031
3fe58f4f
JB
50322012-02-21 Juanma Barranquero <lekktu@gmail.com>
5033
5034 * newcomment.el (uncomment-region-default): Remove unused binding.
5035
f9a998c3
GM
50362012-02-21 Glenn Morris <rgm@gnu.org>
5037
5038 * textmodes/picture.el (picture-motion, picture-motion-reverse)
5039 (picture-self-insert, picture-tab-chars): Doc fix.
5040 (picture-mode-map): Fix C-a, C-e.
5041
c6029348
GM
50422012-02-20 Glenn Morris <rgm@gnu.org>
5043
5044 * emacs-lisp/authors.el (authors-aliases): Add another entry.
5045
ab1ce9d7
LL
50462012-02-20 Leo Liu <sdl.web@gmail.com>
5047
5048 * icomplete.el (icomplete-completions): Check FROM arg before
5049 passing to substring (Bug#10850).
5050
0fd40f89
CY
50512012-02-19 Chong Yidong <cyd@gnu.org>
5052
5053 * comint.el: Require ansi-color.
5054 (comint-output-filter-functions): Add ansi-color-process-output.
5055
5056 * ansi-color.el: Don't set comint-output-filter-functions; it is
5057 now in the initial value defined in comint.el.
5058 (ansi-color-apply-face-function): New variable.
5059 (ansi-color-apply-on-region): Use it.
5060 (ansi-color-apply-overlay-face): New function.
5061
5062 * shell.el (shell): No need to require ansi-color.
5063 (shell-mode): Use ansi-color-apply-face-function to highlight
5064 color escapes using font-lock-face property (Bug#10835).
5065
20af2394
CY
50662012-02-19 Chong Yidong <cyd@gnu.org>
5067
5068 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
5069 mode-line formats (Bug#10839).
5070
e23a3fbe
GM
50712012-02-18 Glenn Morris <rgm@gnu.org>
5072
b474519e
GM
5073 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
5074
5075 * mail/undigest.el (unforward-rmail-message): Doc fix.
5076
e23a3fbe
GM
5077 * saveplace.el (save-place-ignore-files-regexp): Add :version.
5078
57939ff4
EZ
50792012-02-18 Eli Zaretskii <eliz@gnu.org>
5080
5081 * international/characters.el (script-list): Sync with the latest
5082 Unicode Character Database.
5083
0c23686e
AS
50842012-02-18 Andreas Schwab <schwab@linux-m68k.org>
5085
5086 * international/titdic-cnv.el: Remove duplicate coding tag.
5087 * language/cham.el: Likewise.
5088 * language/tai-viet.el: Likewise.
5089
6818b449
GM
50902012-02-18 Glenn Morris <rgm@gnu.org>
5091
5092 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
5093 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
5094 (calendar-bahai-all-holidays-flag, calendar-other-dates):
5095 * calendar/diary-lib.el (diary-abbreviated-year-flag):
5096 * calendar/holidays.el (holiday-bahai-holidays)
5097 (calendar-holidays, list-holidays):
5098 Use utf-8 Bahá'í in doc-strings, menus, etc.
5099
0311a3fc
TH
51002012-02-17 Tassilo Horn <tassilo@member.fsf.org>
5101
5102 * saveplace.el (save-place-ignore-files-regexp): New variable
5103 allowing for excluding files from saving their location of point.
5104 The default value matches the temporary commit message editing
5105 files from Git, SVN, Bazaar, and Mercurial.
5106 (save-place-to-alist): Use it.
5107
eb864a71
LM
51082012-02-17 Lawrence Mitchell <wence@gmx.li>
5109 Stefan Monnier <monnier@iro.umontreal.ca>
5110
5111 * newcomment.el (uncomment-region-default): Don't leave extra space
5112 when an arg is provided (bug#8150).
5113
ee0ce425
TZ
51142012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
5115
eb864a71 5116 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
ee0ce425 5117
95ddf442
GM
51182012-02-17 Glenn Morris <rgm@gnu.org>
5119
5120 * net/socks.el: Require network-stream. (Bug#10599)
5121
48dd1e39 51222012-02-17 Kenichi Handa <handa@m17n.org>
c406be43
KH
5123
5124 * international/charprop.el:
5125 * international/uni-name.el:
5126 * international/uni-old-name.el:
5127 * international/uni-comment.el: Regenerate.
5128
d68cd087
GM
51292012-02-16 Glenn Morris <rgm@gnu.org>
5130
5131 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
5132 Interactively in calendar buffer, give an error if not on a date.
5133
13932042
GM
51342012-02-15 Glenn Morris <rgm@gnu.org>
5135
5136 * shell.el (shell-delimiter-argument-list):
5137 Revert 2011-02-17 change. (Bug#8027)
5138
c3a70e2b
CY
51392012-02-15 Chong Yidong <cyd@gnu.org>
5140
60236b0d
CY
5141 * minibuffer.el (completion-at-point-functions): Doc fix.
5142
c3a70e2b
CY
5143 * custom.el (defcustom): Doc fix; note use of defvar.
5144
9f26dc24
GM
51452012-02-15 Glenn Morris <rgm@gnu.org>
5146
5147 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5148 Doc fixes.
5149
6546b134
GM
51502012-02-14 Glenn Morris <rgm@gnu.org>
5151
5152 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5153
d29b2b4c
LI
51542012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5155
5156 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5157 way the ports list is computed.
835bdcba
LI
5158 (smtpmail-query-smtp-server): Prompt the user for a port number if
5159 we can't connect to any of the standard ports (bug#10810).
d29b2b4c 5160
08dcdbc9
TZ
51612012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5162
5163 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5164
2605051a
GM
51652012-02-13 Glenn Morris <rgm@gnu.org>
5166
5167 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5168
7ee99f32
TZ
51692012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5170
5171 * net/gnutls.el (gnutls-trustfiles): New variable.
5172 (gnutls-negotiate): Use it.
5173
5f0af64f
LI
51742012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5175
5176 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5177 does its stuff if Gnus is running.
5178
c14fcc95
AM
51792012-02-13 Alan Mackenzie <acm@muc.de>
5180
5181 Fix a loop in c-set-fl-decl-start.
5182
7a71b18d 5183 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
c14fcc95
AM
5184 c-backward-syntactic-ws actually moves backwards.
5185
142b4d90
LL
51862012-02-13 Leo Liu <sdl.web@gmail.com>
5187
5188 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5189 beginning so that all \C-o chars are removed.
5190
fa9958a6
TZ
51912012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5192
dc9924b8 5193 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
fa9958a6 5194
0bc5886a
AM
51952012-02-12 Alan Mackenzie <acm@muc.de>
5196
5197 Fix infinite loop with long macros.
4d6769e1 5198 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
0bc5886a 5199
d4bd55e7
CY
52002012-02-12 Chong Yidong <cyd@gnu.org>
5201
5202 * window.el (display-buffer): Doc fix (Bug#10785).
5203
66f3fe22
GM
52042012-02-12 Glenn Morris <rgm@gnu.org>
5205
bd7da63e
GM
5206 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5207 (x-disown-selection-internal, x-get-selection-internal):
5208 Sync docs with the xselect.c versions.
5209
66f3fe22
GM
5210 * allout-widgets.el: Add missing license notice.
5211
3e0d2fa7
GM
52122012-02-11 Glenn Morris <rgm@gnu.org>
5213
cfecdf09
GM
5214 * select.el (x-get-selection-internal, x-own-selection-internal)
5215 (x-disown-selection-internal):
5216 * x-dnd.el (x-get-selection-internal): Update declarations.
5217
6d216d7f
GM
5218 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5219
2bed3f04
GM
5220 * window.el (window-sides-slots):
5221 * tool-bar.el (tool-bar-position):
5222 * term/xterm.el (xterm-extra-capabilities):
5223 * ses.el (ses-self-reference-early-detection):
5224 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5225 (verilog-auto-wire-type)
5226 (verilog-auto-delete-trailing-whitespace)
5227 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5228 (verilog-auto-tieoff-declaration):
5229 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5230 (sql-oracle-statement-starters, sql-oracle-scan-on):
5231 * progmodes/prolog.el (prolog-align-comments-flag)
5232 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5233 (prolog-left-indent-regexp, prolog-paren-indent-p)
5234 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5235 (prolog-types, prolog-mode-specificators)
5236 (prolog-determinism-specificators, prolog-directives)
5237 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5238 (prolog-electric-dot-flag)
5239 (prolog-electric-dot-full-predicate-template)
5240 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5241 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5242 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5243 (prolog-program-switches, prolog-prompt-regexp)
5244 (prolog-debug-on-string, prolog-debug-off-string)
5245 (prolog-trace-on-string, prolog-trace-off-string)
5246 (prolog-zip-on-string, prolog-zip-off-string)
5247 (prolog-use-standard-consult-compile-method-flag)
5248 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5249 (prolog-imenu-max-lines, prolog-info-predicate-index)
5250 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5251 (prolog-char-quote-workaround):
5252 * progmodes/cc-vars.el (c-defun-tactic):
5253 * net/tramp.el (tramp-encoding-command-interactive)
5254 (tramp-local-end-of-line):
5255 * net/soap-client.el (soap-client):
5256 * net/netrc.el (netrc-file):
5257 * net/gnutls.el (gnutls):
5258 * minibuffer.el (completion-category-overrides)
5259 (completion-cycle-threshold)
5260 (completion-pcm-complete-word-inserts-delimiters):
5261 * man.el (Man-name-local-regexp):
5262 * mail/feedmail.el (feedmail-display-full-frame):
5263 * international/characters.el (glyphless-char-display-control):
5264 * eshell/em-ls.el (eshell-ls-date-format):
5265 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5266 (lisp-lambda-list-keyword-parameter-indentation)
5267 (lisp-lambda-list-keyword-parameter-alignment):
5268 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5269 * dired-x.el (dired-omit-verbose):
5270 * cus-theme.el (custom-theme-allow-multiple-selections):
5271 * calc/calc.el (calc-highlight-selections-with-faces)
5272 (calc-lu-field-reference, calc-lu-power-reference)
5273 (calc-note-threshold):
5274 * battery.el (battery-mode-line-limit):
5275 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5276 (archive-7z-update):
5277 * allout.el (allout-prefixed-keybindings)
5278 (allout-unprefixed-keybindings)
5279 (allout-inhibit-auto-fill-on-headline)
5280 (allout-flattened-numbering-abbreviation):
5281 * allout-widgets.el (allout-widgets-auto-activation)
5282 (allout-widgets-icons-dark-subdir)
5283 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5284 (allout-widgets-theme-dark-background)
5285 (allout-widgets-theme-light-background)
5286 (allout-widgets-item-image-properties-emacs)
5287 (allout-widgets-item-image-properties-xemacs)
5288 (allout-widgets-run-unit-tests-on-load)
5289 (allout-widgets-time-decoration-activity)
5290 (allout-widgets-hook-error-post-time)
5291 (allout-widgets-track-decoration):
5292 Add missing :version tags to new defcustoms and defgroups.
5293
5fec1b8e
GM
5294 * progmodes/sql.el (sql-ansi-statement-starters)
5295 (sql-oracle-statement-starters): Add custom type.
5296
3e0d2fa7
GM
5297 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5298 (prolog-system-version): Give it a type.
5299
90b671e2
EZ
53002012-02-11 Eli Zaretskii <eliz@gnu.org>
5301
5302 * term/pc-win.el (x-select-text, x-selection-owner-p)
5303 (x-own-selection-internal, x-disown-selection-internal)
5304 (x-get-selection-internal): Sync doc strings and argument lists
5305 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5306
5eac0c02
LL
53072012-02-11 Leo Liu <sdl.web@gmail.com>
5308
5309 * progmodes/python.el (python-end-of-statement): Fix infinite
5310 loop. (Bug#10788)
5311
f82cb659
GM
53122012-02-10 Glenn Morris <rgm@gnu.org>
5313
5314 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5315 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5316
cc26d239
LI
53172012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5318
5319 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5320 about SMTP before checking the From header.
5321
91027d08 5322 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
cc26d239
LI
5323 into own function for reuse by emacsbug.el.
5324
1be3ca5a
LL
53252012-02-10 Leo Liu <sdl.web@gmail.com>
5326
5327 * subr.el (condition-case-unless-debug): Rename from
5328 condition-case-no-debug. All callers changed.
5329 (with-demoted-errors): Fix caller.
5330
5331 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5332 * nxml/rng-valid.el (rng-do-some-validation):
5333 * emacs-lisp/package.el (package-refresh-contents)
5334 (package-menu-execute):
5335 * desktop.el (desktop-create-buffer):
91027d08 5336 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
1be3ca5a 5337
b011fbfe
GM
53382012-02-10 Glenn Morris <rgm@gnu.org>
5339
b2096d72
GM
5340 * textmodes/bibtex.el:
5341 Add missing :version tags for new/changed defcustoms.
5342
b011fbfe
GM
5343 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5344
4c7e65bf
LI
53452012-02-09 Lars Ingebrigtsen <larsi@rusty>
5346
5347 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5348 (smtpmail-via-smtp): Use it, or fall back on the From address.
5349 (smtpmail-send-it): Ditto.
5350
f3934f6f
SM
53512012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5352
5353 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5354 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5355 (byte-compile-tmp-var): New const.
5356 (byte-compile-defvar): Use it to minimize .elc size.
5357 Just use `defvar' rather than simulate it (bug#10761).
5358
a075a2c5
GM
53592012-02-09 Glenn Morris <rgm@gnu.org>
5360
cf3aa21b
GM
5361 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5362
354998cd
GM
5363 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5364 Add :version tags.
5365
dc9924b8
SM
5366 * progmodes/compile.el (compilation-error-screen-columns)
5367 (compilation-first-column, compilation-filter-start): Doc fixes.
83274125 5368
dab3703d
GM
5369 * vc/log-view.el (log-view-toggle-entry-display):
5370 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5371
3f88cd72
GM
5372 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5373 (report-emacs-bug-can-use-xdg-email):
5374 (report-emacs-bug-insert-to-mailer): Doc fixes.
5375 (report-emacs-bug): Message fix.
5376
d95b247d
GM
5377 * net/browse-url.el (browse-url-can-use-xdg-open)
5378 (browse-url-xdg-open): Doc fixes.
5379
a075a2c5
GM
5380 * electric.el (electric-indent-mode, electric-pair-mode)
5381 (electric-layout-rules, electric-layout-mode): Doc fixes.
5382 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5383
ffb6157e
MR
53842012-02-08 Martin Rudalics <rudalics@gmx.at>
5385
5386 * server.el (server-unselect-display): Don't inadvertently kill
5387 the current buffer. (Bug#10729)
5388
e1ac4066
GM
53892012-02-08 Glenn Morris <rgm@gnu.org>
5390
34e8a2da
GM
5391 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5392 (sql-list-table): Doc fixes.
5393
b4ac6e8c
GM
5394 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5395 Comment out (does nothing).
5396
e1ac4066
GM
5397 * completion.el (dynamic-completion-mode):
5398 * dirtrack.el (dirtrack-debug-mode):
5399 * electric.el (electric-layout-mode):
5400 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5401 * face-remap.el (text-scale-mode, buffer-face-mode):
5402 * iimage.el (iimage-mode):
5403 * image-mode.el (image-transform-mode):
5404 * minibuffer.el (completion-in-region-mode):
5405 * scroll-lock.el (scroll-lock-mode):
5406 * simple.el (next-error-follow-minor-mode):
5407 * tar-mode.el (tar-subfile-mode):
5408 * tooltip.el (tooltip-mode):
5409 * vcursor.el (vcursor-use-vcursor-map):
5410 * wid-browse.el (widget-minor-mode):
5411 * emulation/tpu-edt.el (tpu-edt-mode):
5412 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5413 * international/iso-ascii.el (iso-ascii-mode):
5414 * language/thai-util.el (thai-word-mode):
5415 * mail/supercite.el (sc-minor-mode):
5416 * net/goto-addr.el (goto-address-mode):
5417 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5418 * progmodes/cwarn.el (cwarn-mode):
5419 * progmodes/flymake.el (flymake-mode):
5420 * progmodes/glasses.el (glasses-mode):
5421 * progmodes/hideshow.el (hs-minor-mode):
5422 * progmodes/pascal.el (pascal-outline-mode):
5423 * textmodes/enriched.el (enriched-mode):
5424 * vc/smerge-mode.el (smerge-mode):
5425 Doc fixes (minor mode argument).
5426
5e0d957f
EZ
54272012-02-07 Eli Zaretskii <eliz@gnu.org>
5428
5429 * ls-lisp.el (ls-lisp-sanitize): New function.
5430 (ls-lisp-insert-directory): Use it to fix or remove any elements
5431 in file-alist with missing attributes. (Bug#4673)
5432
98d7371e
AM
54332012-02-07 Alan Mackenzie <acm@muc.de>
5434
5435 Fix spurious recognition of c-in-knr-argdecl.
5436
5437 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5438 putative K&R region.
5439
667ced3a
AM
54402012-02-07 Alan Mackenzie <acm@muc.de>
5441
eb864a71
LM
5442 * progmodes/cc-engine.el (c-forward-objc-directive):
5443 Prevent looping in "#pragma mark @implementation".
667ced3a 5444
5b77774d
MA
54452012-02-07 Michael Albinus <michael.albinus@gmx.de>
5446
5447 * notifications.el (notifications-on-closed-signal): Make `reason'
5448 optional. (Bug#10744)
5449
af008560
GM
54502012-02-07 Glenn Morris <rgm@gnu.org>
5451
60d47423
GM
5452 * emacs-lisp/easy-mmode.el (define-minor-mode):
5453 Doc fixes for the macro and the mode it defines.
5454
dd605cc4
GM
5455 * image.el (imagemagick-types-inhibit): Doc fix.
5456
af008560
GM
5457 * cus-start.el (imagemagick-render-type): Add it.
5458
5cc59a37
LI
54592012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5460
4d6769e1
JB
5461 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5462 Set the default at load time, too, so that `font-lock-fontify-buffer'
5463 can be called without setting up the entire mode first. This fixes
5464 a bug in `mm-inline-text' with C MIME parts.
5cc59a37 5465
9a6dd747
CY
54662012-02-06 Chong Yidong <cyd@gnu.org>
5467
2d16b285
CY
5468 * simple.el (list-processes--refresh): Delete exited processes
5469 (Bug#8094).
5470
171e9b6e
CY
5471 * comint.el (comint-next-prompt): next-single-char-property-change
5472 and prev-single-char-property-change never return nil (Bug#8657).
5473
9a6dd747
CY
5474 * custom.el (defcustom): Doc fix (Bug#9711).
5475
aa4589a7
CY
54762012-02-05 Chong Yidong <cyd@gnu.org>
5477
5c2a252f
CY
5478 * cus-edit.el (custom-variable-reset-backup): Quote the value
5479 before storing it in the customized-value property (Bug#6712).
4aab9006 5480 (custom-display): Add a customization type tag.
983b9602 5481 (custom-buffer-create-internal): Improve tooltip message.
5c2a252f 5482
aa4589a7
CY
5483 * wid-edit.el (widget-field-value-get): New optional arg to
5484 suppress trailing whitespace truncation.
5485 (character): Use it (Bug#2689).
5486
1ff980ae
AS
54872012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5488
5489 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5490 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5491
03988c98
CY
54922012-02-05 Chong Yidong <cyd@gnu.org>
5493
eeb6cc88
CY
5494 * cus-edit.el (custom-variable-value-create): For mismatched
5495 types, show the current value (Bug#7600).
5496
03988c98
CY
5497 * custom.el (defcustom): Doc fix.
5498
f8cdeef0
GM
54992012-02-05 Glenn Morris <rgm@gnu.org>
5500
5501 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5502
0696d255
JB
55032012-02-05 Juanma Barranquero <lekktu@gmail.com>
5504
5505 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5506 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5507 (pp-last-sexp): Use `looking-at-p'.
5508
34c99998
GM
55092012-02-04 Glenn Morris <rgm@gnu.org>
5510
8f05da42
GM
5511 * files.el (revert-buffer):
5512 Doc fix (mention revert-buffer-in-progress-p).
5513
f160676e
GM
5514 * emacs-lisp/ert-x.el (ert-simulate-command):
5515 Check deferred-action-list (which is obsolete) is bound.
5516
c7291ad9
GM
5517 * subr.el (with-wrapper-hook): Doc fixes.
5518
34c99998
GM
5519 * simple.el (filter-buffer-substring-functions)
5520 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5521
6283a7d3
LL
55222012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5523
5524 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5525 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5526
e96e3013
LL
55272012-02-04 Leo Liu <sdl.web@gmail.com>
5528
5529 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5530
8ded50f2
GM
55312012-02-04 Glenn Morris <rgm@gnu.org>
5532
82ff1d13
GM
5533 * image.el (image-extension-data): Add obsolete alias.
5534
987a0a16
GM
5535 * isearch.el (isearch-update): Doc fix.
5536
ea32ef46
GM
5537 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5538
8ded50f2
GM
5539 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5540
eea14f31
GM
55412012-02-03 Glenn Morris <rgm@gnu.org>
5542
5543 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5544 (image-animate-timeout): Doc fix.
5545
5546 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5547
12f381b7
GM
55482012-02-02 Glenn Morris <rgm@gnu.org>
5549
953cebf5
GM
5550 * server.el (server-auth-dir): Doc fix.
5551 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5552
12f381b7
GM
5553 * subr.el (run-mode-hooks): Doc fix.
5554
953a8c3b
JL
55552012-02-02 Juri Linkov <juri@jurta.org>
5556
5557 * image-mode.el (image-toggle-display-image): Remove tautological
5558 `major-mode' from the `derived-mode-p' test.
5559
c5d3843c
KH
55602012-02-02 Kenichi Handa <handa@m17n.org>
5561
9f6e692e 5562 * composite.el (compose-region): Cancel previous change.
c5d3843c 5563
159462d4 55642012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
5565
5566 * composite.el (compose-region, compose-string): Signal error for
5567 a null string component (Bug#6988).
5568
9f562668
CY
55692012-02-01 Chong Yidong <cyd@gnu.org>
5570
e2cef717
CY
5571 * view.el (view-buffer-other-window, view-buffer-other-frame):
5572 Handle special modes like view-buffer (Bug#10650).
5573 (view-buffer): Simplify.
5574
9f562668
CY
5575 * frame.el (set-frame-font): Tweak meaning of third argument.
5576
9f6e692e
JB
5577 * dynamic-setting.el (font-setting-change-default-font):
5578 Use set-frame-font (Bug#9982).
9f562668 5579
781acb9f
GM
55802012-02-01 Glenn Morris <rgm@gnu.org>
5581
6035be52
GM
5582 * progmodes/compile.el (compilation-internal-error-properties):
5583 Respect compilation-first-column in the "*compilation*" buffer.
5584
781acb9f
GM
5585 * emacs-lisp/easy-mmode.el (define-minor-mode):
5586 Relax :variable's test for a named function.
5587
abbceb00
AM
55882012-01-31 Alan Mackenzie <acm@muc.de>
5589
5590 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
5591 off by one error.
5592
fce3fdeb
CY
55932012-01-31 Chong Yidong <cyd@gnu.org>
5594
5595 * frame.el (set-frame-font): New arg ALL-FRAMES.
5596
5597 * menu-bar.el (menu-set-font): Use set-frame-font.
5598
5599 * faces.el (face-spec-reset-face): Don't apply unspecified
5600 attribute values to the default face.
5601
47893581
JB
56022012-01-31 Juanma Barranquero <lekktu@gmail.com>
5603
5604 * progmodes/cwarn.el (cwarn): Remove dead link.
5605 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
5606 Remove * from defcustom docstrings.
5607 (turn-on-cwarn-mode): Make obsolete.
5608 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
5609 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
5610
e58e988a
GM
56112012-01-31 Glenn Morris <rgm@gnu.org>
5612
60dc2671 5613 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
6c9b47ae 5614 Fix :variable handling of mode a symbol not equal to modefun.
60dc2671 5615 Allow named functions to be used as the cdr of :variable.
e58e988a 5616
7a3f511d
GM
56172012-01-30 Glenn Morris <rgm@gnu.org>
5618
5619 * emacs-lisp/authors.el (authors-fixed-entries):
5620 Remove reference to deleted file rnewspost.el.
5621
cb882333
JB
56222012-01-29 Juanma Barranquero <lekktu@gmail.com>
5623
5624 * window.el (window-with-parameter): Remove unused variable `windows'.
5625 (window--side-check): Remove unused variable `code'.
5626 (window--resize-siblings): Remove unused variable `first'.
5627 (adjust-window-trailing-edge): Remove unused variable `failed'.
5628 (window-deletable-p, window--delete): Remove unused variable `buffer'.
5629 Use `let', not `let*'.
5630 (balance-windows-2): Remove unused variable `found'.
5631 (window--state-put-2): Remove unused variable `splits'.
5632 (window-state-put): Remove unused variable `selected'.
5633 (same-window-p): Use `string-match-p'.
5634 (display-buffer-assq-regexp): Remove unused variable `value'.
5635 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5636 Mark argument ALIST as ignored.
5637 (pop-to-buffer): Remove unused variable `old-window'.
5638
907201af
EZ
56392012-01-29 Eli Zaretskii <eliz@gnu.org>
5640
5641 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
5642 and .lzma compressed files.
5643
ea162670
CY
56442012-01-29 Chong Yidong <cyd@gnu.org>
5645
5b95ee8a
CY
5646 * frame.el (window-system-default-frame-alist): Doc fix.
5647
ea162670
CY
5648 * dynamic-setting.el (font-setting-change-default-font): Don't
5649 change the default face if SET-FONT argument is non-nil (Bug#9982).
5650
d6e6f4b1
SB
56512012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
5652
5653 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5654
0f29fa41 56552012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
6b25e4e2
SE
5656
5657 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5658 breakpoints in files outside current directory (Bug#6098).
5659
db174434
CY
56602012-01-29 Chong Yidong <cyd@gnu.org>
5661
6b25e4e2
SE
5662 * progmodes/python.el: Require ansi-color at top-level.
5663
6df6ae42
JB
5664 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5665 Define and use in Emacs Lisp mode (Bug#9360).
db174434
CY
5666 (lisp-mode-abbrev-table): Add doc.
5667 (lisp-mode-variables): Don't set local-abbrev-table.
5668 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5669
e70ee681
RW
56702012-01-28 Roland Winkler <winkler@gnu.org>
5671
5672 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5673
ace88aa2
RW
56742012-01-28 Roland Winkler <winkler@gnu.org>
5675
5676 * textmodes/bibtex.el (bibtex-entry-alist): New function.
5677 (bibtex-set-dialect): Use it. Either set global values of
5678 dialect-dependent variables or bind these variables buffer-locally
5679 (Bug#10254).
5680 (bibtex-mode): Call bibtex-set-dialect via
5681 hack-local-variables-hook.
eb864a71
LM
5682 (bibtex-dialect): Update docstring.
5683 Add safe-local-variable predicate.
ace88aa2
RW
5684 (bibtex-entry-alist, bibtex-field-alist): Initialize via
5685 bibtex-set-dialect.
5686 (bibtex-mode-map): Define menu for each dialect.
5687 (bibtex-entry): Fix docstring.
5688
93376c5b
CY
56892012-01-28 Chong Yidong <cyd@gnu.org>
5690
5691 * eshell/esh-arg.el (eshell-quote-argument): New function.
5692
5693 * eshell/esh-ext.el (eshell-invoke-batch-file):
5694 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5695 first arg to eshell-parse-command (Bug#10523).
5696
4372494f
DA
56972012-01-28 Drew Adams <drew.adams@oracle.com>
5698
5699 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5700 `default-directory' is non-nil.
5701
4d4ec1f8
EZ
57022012-01-28 Eli Zaretskii <eliz@gnu.org>
5703
5704 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5705 line that displays system-configuration-options. (Bug#9924)
5706
7c188927
DA
57072012-01-28 Drew Adams <drew.adams@oracle.com>
5708
5709 * descr-text.el (describe-char): Show information about POS, in
5710 addition to information about the character at POS. Improve and
5711 update the doc string. Change "code point" to "code point in
5712 charset", to avoid confusion with the character's Unicode code
5713 point shown above that. (Bug#10129)
5714
e0da685a
EZ
57152012-01-28 Eli Zaretskii <eliz@gnu.org>
5716
5717 * descr-text.el (describe-char): Show the raw character, not only
5718 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
5719 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5720 for the reasons.
5721
70550acf
PH
57222012-01-28 Phil Hagelberg <phil@hagelb.org>
5723
eb864a71
LM
5724 * emacs-lisp/package.el (package-install):
5725 Run package-refresh-contents if there is no archive yet (Bug#9798).
70550acf 5726
0ce8e868
CY
57272012-01-28 Chong Yidong <cyd@gnu.org>
5728
cb882333
JB
5729 * emacs-lisp/package.el (package-maybe-load-descriptor):
5730 New function, split from package-maybe-load-descriptor.
0ce8e868
CY
5731 (package-maybe-load-descriptor): Use it.
5732 (package-download-transaction): Fully load required packages
5733 inside the loop, so that `require' calls work (Bug#10593).
5734 (package-install): No need to call package-initialize now.
5735
2e7f3bea
CY
57362012-01-28 Chong Yidong <cyd@gnu.org>
5737
6e9bad14
CY
5738 * simple.el (deactivate-mark): Doc fix (Bug#8614).
5739
f823b8ca
CY
5740 * tooltip.el (tooltip-mode): Doc fix.
5741 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5742
2680c309
CY
5743 * frame.el (set-cursor-color): Doc fix (Bug#352).
5744
d7a9e63b
CY
5745 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5746 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5747
2e7f3bea
CY
5748 * cus-edit.el (custom-buffer-create-internal): Fix search button
5749 action (Bug#10542).
2ae01800 5750 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
2e7f3bea 5751
fc4f7a23
EW
57522012-01-27 Eduard Wiebe <usenet@pusto.de>
5753
5754 * dired.el (dired-mark-files-regexp):
5755 Include any subdirectory components. (Bug#10445)
5756
7dd37071
ML
57572012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
5758
5759 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5760 Handle [host]:port syntax. (Bug#10533)
5761
a268160b
AH
57622012-01-27 Alex Harsanyi <harsanyi@mac.com>
5763
5764 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5765
e43273ef
GM
57662012-01-26 Glenn Morris <rgm@gnu.org>
5767
5768 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5769 * term.el (term-raw-escape-map): Use Control-X-prefix.
5770 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
5771
1edf595d
MR
57722012-01-25 Martin Rudalics <rudalics@gmx.at>
5773
5774 * window.el (window-state-get, window--state-get-1): Don't deal
5775 with fixed-sizeness of windows. Simplify code.
5776
fa8eafef
JC
57772012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
5778
6df6ae42
JB
5779 * window.el (window--state-get-1, window--state-put-2):
5780 Don't save and restore the mark.
fa8eafef 5781
0b21c100
CY
57822012-01-25 Chong Yidong <cyd@gnu.org>
5783
5784 * custom.el (custom-variable-p): Doc fix.
5785
5ae1a6c8
GM
57862012-01-25 Glenn Morris <rgm@gnu.org>
5787
40047858
GM
5788 * dired.el (dired-goto-file): Handle some of the more common
5789 characters that `ls -b' escapes. (Bug#10596)
5790
5ddce96c
GM
5791 * progmodes/compile.el (compilation-next-error-function):
5792 Respect compilation-first-column in the "*compilation*" buffer.
5793 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
5794
5ae1a6c8
GM
5795 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
5796
b559f1a9
GM
57972012-01-24 Glenn Morris <rgm@gnu.org>
5798
5799 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
5800
6725d21a
JD
58012012-01-24 Julien Danjou <julien@danjou.info>
5802
5803 * color.el (color-rgb-to-hsl): Fix value computing.
5804 (color-hue-to-rgb): New function.
5805 (color-hsl-to-rgb): New function.
5806 (color-clamp, color-saturate-hsl, color-saturate-name)
5807 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5808 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5809
70df4bbe
GM
58102012-01-24 Glenn Morris <rgm@gnu.org>
5811
5812 * vc/vc-rcs.el (vc-rcs-create-tag):
5813 * vc/vc-sccs.el (vc-sccs-create-tag):
5814 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
5815
802a2ae2
ML
58162012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
5817
5818 * eshell/esh-util.el (eshell-read-hosts-file):
5819 Skip comment lines. (Bug#10549)
5820
d7128bb1
ML
5821 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
5822
d1a5c3b4
JB
58232012-01-23 Juanma Barranquero <lekktu@gmail.com>
5824
2724d9c7
JB
5825 * subr.el (display-delayed-warnings): Doc fix.
5826 (collapse-delayed-warnings): New function to collapse identical
5827 adjacent warnings.
5828 (delayed-warnings-hook): Add it.
d1a5c3b4 5829
a5509865
MA
58302012-01-22 Michael Albinus <michael.albinus@gmx.de>
5831
5832 * net/tramp.el (tramp-action-login): Set connection property "login-as".
5833
a5509865
MA
5834 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5835 (tramp-default-user-alist): Don't add "pscp".
5836 (tramp-do-copy-or-rename-file-out-of-band): Use connection
5837 property "login-as", if set. (Bug#10530)
5838
cc6d5805
MA
58392012-01-21 Michael Albinus <michael.albinus@gmx.de>
5840
5841 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5842 "plink1" and "psftp". (Bug#10530)
5843
58442012-01-21 Kenichi Handa <handa@m17n.org>
71784361
KH
5845
5846 * international/mule-cmds.el (prefer-coding-system): Show a
5847 warning message if the default value of file-name-coding-system
5848 was not changed.
5849
f0960428
JC
58502012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5851
cb882333
JB
5852 * windmove.el (windmove-reference-loc):
5853 Fix windmove-reference-loc miscalculation.
f0960428 5854
dd6f2a63
JB
58552012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
5856
5857 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5858 default unit.
5859
7b447e9b
GM
58602012-01-21 Glenn Morris <rgm@gnu.org>
5861
117a9ea1
GM
5862 * international/mule.el (auto-coding-alist): Add .tbz.
5863
7b447e9b
GM
5864 * files.el (local-enable-local-variables): Doc fix.
5865 (inhibit-local-variables-regexps): Rename from
5866 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
5867 Doc fix. Add some extensions from auto-coding-alist.
5868 (inhibit-local-variables-suffixes):
5869 Rename from inhibit-first-line-modes-suffixes. Doc fix.
5870 (inhibit-local-variables-p):
5871 New function, extracted from set-auto-mode-1.
5872 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
5873 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
5874 (hack-local-variables): Doc fix. Make the mode-only case
5875 respect enable-local-variables and friends.
5876 Respect inhibit-local-variables-regexps for file-locals, but
5877 not for directory-locals.
5878 (set-visited-file-name):
5879 Take account of inhibit-local-variables-regexps.
5880 Whether it applies may change as the file name is changed.
5881 * jka-cmpr-hook.el (jka-compr-install):
5882 * jka-compr.el (jka-compr-uninstall):
5883 Update for inhibit-first-line-modes-suffixes name change.
5884
dd6e3cdd
MR
58852012-01-20 Martin Rudalics <rudalics@gmx.at>
5886
5887 * help-macro.el (make-help-screen): Temporarily restore original
5888 binding for minor-mode-map-alist (Bug#10454).
5889
0d0deb38
JD
58902012-01-19 Julien Danjou <julien@danjou.info>
5891
5892 * color.el (color-name-to-rgb): Use the white color to find the max
5893 color component value and return correctly computed values.
5894 (color-name-to-rgb): Add missing float conversion for max value.
5895
34a02f46
MR
58962012-01-19 Martin Rudalics <rudalics@gmx.at>
5897
5898 * window.el (window--state-get-1, window-state-get): Do not use
eb864a71
LM
5899 special state value for window-persistent-parameters.
5900 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
34a02f46
MR
5901 (window--state-put-2): Reset all window parameters to nil before
5902 assigning values of persistent parameters.
5903
606c44c4
AM
59042012-01-18 Alan Mackenzie <acm@muc.de>
5905
5906 Eliminate sluggishness and hangs in fontification of "semicolon
5907 deserts".
5908
cb882333
JB
5909 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5910 Change value 10000 -> 3000.
606c44c4
AM
5911 (c-state-safe-place): Reformulate so it doesn't stack up an
5912 infinite number of wrong entries in c-state-nonlit-pos-cache.
5913 (c-determine-limit-get-base, c-determine-limit): New functions to
5914 determine backward search limits disregarding literals.
5915 (c-find-decl-spots): Amend commenting.
5916 (c-cheap-inside-bracelist-p): New function which detects "={".
5917
5918 * progmodes/cc-fonts.el
5919 (c-make-font-lock-BO-decl-search-function): Give a limit to a
5920 backward search.
5921 (c-font-lock-declarations): Fix an occurrence of point being
5922 undefined. Check additionally for point being in a bracelist or
5923 near a macro invocation without a semicolon so as to avoid a
5924 fruitless time consuming search for a declarator. Give a more
5925 precise search limit for declarators using the new
5926 c-determine-limit.
5927
f3860cea
GM
59282012-01-18 Glenn Morris <rgm@gnu.org>
5929
5930 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5931 (set-auto-mode): Doc fixes.
5932
1db03b16
GM
59332012-01-17 Glenn Morris <rgm@gnu.org>
5934
0e6038be
GM
5935 * isearch.el (search-nonincremental-instead): Fix doc typo.
5936
1db03b16
GM
5937 * dired.el (dired-insert-directory): Handle newlines in directory name.
5938 (dired-build-subdir-alist): Unescape newlines in directory name.
5939
4cb0aa75
MA
59402012-01-17 Michael Albinus <michael.albinus@gmx.de>
5941
5942 * net/tramp.el (tramp-local-end-of-line): New defcustom.
5943 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
5944 (tramp-action-terminal): Use it. (Bug#10530)
5945
1d00653d
SM
59462012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
5947
5948 * minibuffer.el (completion--replace): Strip properties (bug#10062).
5949
6a6ee00d
MR
59502012-01-16 Martin Rudalics <rudalics@gmx.at>
5951
5952 * window.el (window-state-ignored-parameters): Remove variable.
5953 (window--state-get-1): Rename argument MARKERS to IGNORE.
5954 Handle persistent window parameters. Make copy of clone-of
5955 parameter only if requested. (Bug#10348)
5956 (window--state-put-2): Install a window parameter only if it has
5957 a non-nil value or an existing parameter shall be overwritten.
5958
97912def
MA
59592012-01-15 Michael Albinus <michael.albinus@gmx.de>
5960
5961 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
5962
688070a5
EZ
59632012-01-14 Eli Zaretskii <eliz@gnu.org>
5964
5965 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
5966 don't pass the (nil) value of `upnode' to string-match.
5967
301afadc
CY
59682012-01-14 Chong Yidong <cyd@gnu.org>
5969
5970 * startup.el (command-line): Fix X resource class for cursorColor.
04877ddb 5971 Fix values recognized by the cursorBlink resource.
301afadc 5972
9e5788aa
PE
59732012-01-14 Paul Eggert <eggert@cs.ucla.edu>
5974
5975 * epg.el (epg--make-temp-file): Avoid permission race condition
5976 when running on old Emacs versions (bug#10403).
5977
3cdb7f5a
GM
59782012-01-14 Glenn Morris <rgm@gnu.org>
5979
5980 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
5981
8c82b1b4
AM
59822012-01-13 Alan Mackenzie <acm@muc.de>
5983
5984 Fix filling for when filladapt mode is enabled.
5985
5986 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
5987 c-mask-paragraph, pass in `fill-paragraph' rather than
5988 `fill-region-as-paragraph'. (This is a reversion of a previous
5989 change.)
eb864a71
LM
5990 * progmodes/cc-mode.el (c-basic-common-init):
5991 Make fill-paragraph-handle-comment buffer local and set it to nil.
8c82b1b4 5992
e517eda4
GM
59932012-01-13 Glenn Morris <rgm@gnu.org>
5994
1498536e
GM
5995 * dired.el (dired-switches-escape-p): New function.
5996 (dired-insert-directory): Use dired-switches-escape-p.
5997 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
5998
e517eda4
GM
5999 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
6000
328f984d
GM
60012012-01-12 Glenn Morris <rgm@gnu.org>
6002
6003 * mail/sendmail.el (mail-mode): Update paragraph-separate for
6004 changes in adaptive-fill-regexp. (Bug#10276)
6005
2cc769a8
AM
60062012-01-11 Alan Mackenzie <acm@muc.de>
6007
6008 Fix Emacs bug #10463 - put `widen's around the critical spots.
6009
1d00653d 6010 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
2cc769a8
AM
6011 widen around each invocation of c-state-pp-to-literal. Remove an
6012 unused let variable.
6013
e52c37fa
GM
60142012-01-11 Glenn Morris <rgm@gnu.org>
6015
6016 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
09044622 6017 Doc fix.
e52c37fa 6018
96f8741e
CY
60192012-01-10 Chong Yidong <cyd@gnu.org>
6020
1d00653d
SM
6021 * net/network-stream.el (network-stream-open-starttls):
6022 Avoid emitting a confusing error message when the server gives a bad
96f8741e
CY
6023 response to the capability command.
6024
b09a806e
GM
60252012-01-10 Glenn Morris <rgm@gnu.org>
6026
6027 * mail/unrmail.el (unrmail): Tweak previous change.
6028
7655cb66
CY
60292012-01-09 Chong Yidong <cyd@gnu.org>
6030
6031 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
6032
9d5a8f0b
AM
60332012-01-08 Alan Mackenzie <acm@muc.de>
6034
6035 Optimise font locking in long enum definitions.
6036
6037 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
6038 arm to a cond form to handle enums.
6039 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
6040 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
6041
9a0115ab 60422012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6bb72cbd
PE
6043
6044 * files.el (move-file-to-trash): Preserve default file modes on error.
a0562b3d 6045 (Bug#10401)
6bb72cbd 6046
f186bb95
LMI
60472012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6048
29232a68
LMI
6049 * faces.el (set-face-attribute): Clarify the meaning of the nil
6050 frame (bug#10294).
6051
4e5d086d
LMI
6052 * subr.el (with-selected-frame): Mention that the selected frame
6053 is restored (bug#9980).
6054
8e66aebe
LMI
6055 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
6056 (bug#9759).
6057
cd394be1 6058 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
f186bb95
LMI
6059 (password-read): Don't autoload unused function.
6060
adf4e762
JB
60612012-01-07 Juanma Barranquero <lekktu@gmail.com>
6062
6063 * progmodes/which-func.el (which-func-mode): Turn into a
6064 non-interactive function and mark as obsolete (bug#10428).
6065
89bd9ccd
CY
60662012-01-06 Chong Yidong <cyd@gnu.org>
6067
6068 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
6069 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
6070 functions, along with 1 and -1.
6071
4afee9d5
EZ
60722012-01-06 Eli Zaretskii <eliz@gnu.org>
6073
6074 * time.el (display-time-load-average)
6075 (display-time-default-load-average): Doc fixes. See the thread
6076 starting at
6077 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
6078 for the details.
6079
536aea70
GM
60802012-01-06 Glenn Morris <rgm@gnu.org>
6081
665ae865
GM
6082 * mail/unrmail.el (unrmail): Give an explicit error if the input file
6083 has no messages. (Bug#10377)
6084
c869783d
GM
6085 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
6086 than Info-edit. (Bug#10385)
6087
2bb4227e
GM
6088 * time.el (display-time-load-average, display-time-next-load-average):
6089 Doc fixes.
6090
7d5944b9
GM
6091 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
6092 local setting of buffer-read-only to the input buffer. (Bug#10419)
6093
536aea70
GM
6094 * calendar/calendar.el (calendar-mode):
6095 Locally set scroll-margin to 0. (Bug#10379)
6096
7dccca16
UM
60972012-01-06 Ulrich Mueller <ulm@gentoo.org>
6098
6099 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
6100
afbb7930
GM
61012012-01-05 Glenn Morris <rgm@gnu.org>
6102
6103 * eshell/em-unix.el (diff-no-select): Autoload it.
6104 (eshell/diff): Use diff-no-select. (Bug#10420)
6105
04482335
CY
61062012-01-05 Chong Yidong <cyd@gnu.org>
6107
7baca3bc
CY
6108 * shell.el (shell-dynamic-complete-functions): Revert last change.
6109 (shell-command-completion-function): New function.
6110 (shell-completion-vars): Use it to implement
6111 shell-completion-execonly (Bug#10417).
6112
04482335
CY
6113 * custom.el (enable-theme): Don't set custom-safe-themes.
6114
1d00653d
SM
6115 * cus-theme.el (custom-theme-merge-theme):
6116 Ignore custom-enabled-themes and custom-safe-themes.
04482335 6117
bb5aa5d6
MM
61182012-01-05 Michael R. Mauger <mmaug@yahoo.com>
6119
6120 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
6121 first prompt in `sql-interacive-mode'.
6122 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
04482335 6123 keywords.
6df6ae42 6124 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
bb5aa5d6
MM
6125 (sql-product-interactive): Bug fix: Set `sql-buffer' in
6126 context of original buffer. Invoke `sql-login-hook'.
6127
a7183d7c
EZ
61282012-01-04 Eli Zaretskii <eliz@gnu.org>
6129
6130 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
6131 letters in cite-prefix.
6132
a1eacd1e
LMI
61332012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6134
6135 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
6136
787cdb34
CY
61372012-01-03 Chong Yidong <cyd@gnu.org>
6138
1d00653d
SM
6139 * shell.el (shell-dynamic-complete-functions):
6140 Put pcomplete-completions-at-point, so as to try
787cdb34
CY
6141 comint-filename-completion first (Bug#10417).
6142
30710442
RS
61432012-01-02 Richard Stallman <rms@gnu.org>
6144
6145 * battery.el (battery-status-function):
6146 Detect when to use battery-yeeloong-sysfs.
6147 (battery-echo-area-format): Add string for Yeeloong.
6148 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6149 (battery-yeeloong-sysfs): New function.
6150
f75bfc33
CY
61512012-01-02 Chong Yidong <cyd@gnu.org>
6152
6153 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6154 (dirtrack): Merge code for handling relative filenames in prompt
6155 from shell-dir-cookie-watcher.
6156 (dirtrack-debug-message): New arg to avoid excess format calls.
6157
6158 * shell.el (shell-dir-cookie-re): Variable deleted.
6159 (shell-dir-cookie-watcher): Function deleted.
6160 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6161 with dirtrack-mode.
6162
651e947e
EZ
61632012-01-01 Eli Zaretskii <eliz@gnu.org>
6164
1d00653d
SM
6165 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6166 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
651e947e
EZ
6167 libgnutls-26.dll.
6168
94d4c7dc
AS
61692011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6170
6171 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6172
8d43f3cd
EZ
61732011-12-31 Eli Zaretskii <eliz@gnu.org>
6174
6175 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6176 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6177
98c8795a
MA
61782011-12-29 Michael Albinus <michael.albinus@gmx.de>
6179
6180 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6181 also for alternative shells.
6182 (tramp-open-connection-setup-interactive-shell): Check, whether
6183 the shell is a busybox.
6184 (tramp-send-command): Don't suppress multiple prompts for
6185 busyboxes, it hurts.
6186
51281b32
CY
61872011-12-28 Chong Yidong <cyd@gnu.org>
6188
6189 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6190 (gdb-get-source-file): Move mode line update to
6191 gdb-get-source-file (Bug#10087).
6192
2170cb53
CY
61932011-12-25 Chong Yidong <cyd@gnu.org>
6194
6195 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6196 gud-gdb-marker-filter without taking it as an argument.
6197 (gud-gdb-run-command-fetch-lines): Caller changed.
6198 (gud-gdb-completion-function): New variable.
6199 (gud-gdb-completion-at-point): Use it.
6200 (gud-gdb-completions-1): Split from gud-gdb-completions.
6201
6202 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6203 function as separate arguments.
6204 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6205 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6206 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6207 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6208 (gdb-stopped, def-gdb-auto-update-trigger)
6209 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
b81d40f0
JB
6210 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6211 Callers changed.
2170cb53
CY
6212 (gud-gdbmi-completions): New function.
6213 (gdb): Use it for generating the completion table.
6214
be8b11bb
AM
62152011-12-24 Alan Mackenzie <acm@muc.de>
6216
6217 Introduce a mechanism to widen the region used in context font
1d00653d 6218 locking. Use this to protect declarations from losing their contexts.
be8b11bb 6219
1d00653d
SM
6220 * progmodes/cc-langs.el (c-before-font-lock-functions):
6221 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
b81d40f0 6222 (c-before-context-fontification-functions): New defvar, a list of
be8b11bb
AM
6223 functions to be run just before context (etc.) font locking.
6224
6225 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
b81d40f0 6226 New, functionality extracted from
be8b11bb 6227 c-neutralize-syntax-in-and-mark-CPP.
b81d40f0 6228 (c-in-after-change-fontification): New variable.
be8b11bb
AM
6229 (c-after-change): Set c-in-after-change-fontification.
6230 (c-set-fl-decl-start): Rejig its interface, so it can be called
6231 from both after-change and context fontifying.
b81d40f0
JB
6232 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6233 New functions.
6234 (c-standard-font-lock-fontify-region-function): New variable.
6235 (c-font-lock-fontify-region): New function.
be8b11bb 6236
341cf6ac
JL
62372011-12-24 Juri Linkov <juri@jurta.org>
6238
6239 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6240 (Bug#10348)
6241
bffcee0a
MA
62422011-12-23 Michael Albinus <michael.albinus@gmx.de>
6243
6244 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6245 existence of source file. (Bug#10325)
6246
cb5e207c
AM
62472011-12-23 Alan Mackenzie <acm@muc.de>
6248
6249 Fix unstable fontification inside templates.
6250
b81d40f0
JB
6251 * progmodes/cc-langs.el (c-before-font-lock-functions):
6252 Newly created from the singular version. The (c c++ objc) entry now
cb5e207c
AM
6253 additionally has c-set-fl-decl-start. The other languages (apart
6254 from AWK) have that as a single entry.
6255
b81d40f0
JB
6256 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6257 The functionality for "local" declarations has been extracted to
cb5e207c
AM
6258 c-set-fl-decl-start.
6259
b81d40f0
JB
6260 * progmodes/cc-mode.el (c-common-init, c-after-change):
6261 Changes due to pluralisation of c-before-font-lock-functions.
cb5e207c
AM
6262 (c-set-fl-decl-start): New function, extracted from
6263 c-font-lock-enclosing-decls and enhanced.
6264
60ff536c
JB
62652011-12-23 Juanma Barranquero <lekktu@gmail.com>
6266
6267 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6268
1c4757d6
JL
62692011-12-22 Juri Linkov <juri@jurta.org>
6270
6271 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6272
d031f2c7
CY
62732011-12-22 Chong Yidong <cyd@gnu.org>
6274
6275 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6276
bace743a
DA
62772011-12-21 Drew Adams <drew.adams@oracle.com>
6278
6279 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6280
728a1f2b
JC
62812011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6282
6283 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6284
0d373f73
TZ
62852011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6286
fec0aaa4
TZ
6287 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6288 highlighting and support. Fix up comments for capitalization.
6289 (cfengine-mode-debug): New var.
6290 (cfengine3-mode): Change the modeline indicator to "CFE3".
6291 (cfengine3-font-lock-keywords): Improve defun highlighting.
6292 (cfengine2-actions): Rename from `cfengine-actions'.
6293 (cfengine2-font-lock-keywords): Rename from
6294 `cfengine-font-lock-keywords'.
6295 (cfengine2-imenu-expression): Rename from
6296 `cfengine-imenu-expression'.
6297 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6298 (cfengine2-beginning-of-defun): Rename from
6299 `cfengine-beginning-of-defun'.
6300 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6301 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6302 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6303 modeline indicator to "CFE2".
6304 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6305 (cfengine-mode-abbrevs): Mark obsolete.
0d373f73 6306
bc86f573
CY
63072011-12-21 Chong Yidong <cyd@gnu.org>
6308
6309 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6310 filename argument.
6311
d45ba96b
MR
63122011-12-20 Martin Rudalics <rudalics@gmx.at>
6313
6314 * window.el (window-normalize-buffer-to-display): Remove.
6315 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6316
a6198c90
CY
63172011-12-19 Chong Yidong <cyd@gnu.org>
6318
6319 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6320 Don't signal an error in a predicate function; return non-nil.
6321 (vc-dir-mark-file): Move the error here.
6322 (vc-dir-mark-unmark): If acting on the region, keep going if one
6323 of the entries cannot be marked/unmarked.
6324 (vc-dir-mark-all-files): If current entry is a directory, mark
6325 only child files, as documented.
6326
34c5fb55
VB
63272011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6328
6329 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6330 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6331 addition.
6332
c803b2b7
JD
63332011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6334
6335 * term/ns-win.el (ns-get-selection-internal)
6336 (ns-store-selection-internal): Declare.
1154d12e
JB
6337 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6338 Declare as obsolete.
6339 (ns-get-pasteboard, ns-paste-secondary):
6340 Use ns-get-selection-internal.
6341 (ns-set-pasteboard, ns-copy-including-secondary):
6342 Use ns-store-selection-internal.
c803b2b7 6343
9cff91f8 63442011-12-17 Chong Yidong <cyd@gnu.org>
99a289d9
CY
6345
6346 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
9cff91f8 6347 (vc-deduce-fileset): Doc fix.
99a289d9 6348
f16c898a
AS
63492011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6350
6351 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6352
763237c4
SS
63532011-12-13 Sam Steingold <sds@gnu.org>
6354
6355 * man.el (Man-getpage-in-background): When running under a
6356 window-system, ignore $MANWIDTH and $COLUMNS.
6357
5fc1c122
KH
63582011-12-15 Kenichi Handa <handa@m17n.org>
6359
6360 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6361 (setup-ethiopic-environment-internal): Comment out key-binding for
6362 ethio-toggle-punctuation.
6363
13d49cbb
AM
63642011-12-13 Alan Mackenzie <acm@muc.de>
6365
898169a2
AM
6366 Add the switch statement to AWK Mode.
6367
7a71b18d 6368 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
898169a2
AM
6369 "default" to the keywords regexp.
6370
7a71b18d 6371 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
898169a2 6372 expression as the rest.
1d00653d
SM
6373 (c-nonlabel-token-key): Allow string literals for AWK.
6374 Refactor for the other modes.
898169a2 6375
13d49cbb 6376 Large brace-block initialisation makes CC Mode slow: Fix.
1d00653d 6377 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
13d49cbb
AM
6378 routines. Limit backward searching in c-font-lock-enclosing.decl.
6379
6380 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6381 pp-state and literal type in addition to the limits.
1d00653d 6382 (c-state-safe-place): New defun, extracted from c-state-literal-at.
13d49cbb 6383 (c-state-literal-at): Use the above new defun.
1d00653d
SM
6384 (c-slow-in-literal, c-fast-in-literal): Remove.
6385 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
13d49cbb
AM
6386
6387 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6388 being in a literal. Add a limit for backward searching.
6389
6390 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6391 c-slow-in-literal.
6392
15e0efc7
SM
63932011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6394
6395 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6396
454592a6
MR
63972011-12-13 Martin Rudalics <rudalics@gmx.at>
6398
6399 * window.el (delete-other-windows): Use correct frame in call to
6400 window-with-parameter.
6401
87393f26
DP
64022011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6403
6404 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6405 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6406 (makefile-gmake-statements, makefile-makepp-statements):
6407 Use it and add new makepp keywords.
6408 (makefile-makepp-font-lock-keywords): Add new patterns.
6409 (makefile-match-function-end): Match new [...] and [[...]].
6410
11636b22
JB
64112011-12-11 Juanma Barranquero <lekktu@gmail.com>
6412
6413 * ses.el (ses-call-printer-return, ses-cell-property-get)
6414 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6415 (ses-create-cell-variable, ses-reset-header-string)
6416 (ses-cell-set-formula, ses-repair-cell-reference-all)
6417 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6418 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6419 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6420 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6421 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6422 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6423 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6424 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6425 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6426 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6427 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6428 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6429
cf018193
VB
64302011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6431
6432 * ses.el: The overall change is to add cell renaming, that is
6433 setting fancy names for cell symbols other than name matching
6434 "\\`[A-Z]+[0-9]+\\'" regexp .
6435 (ses-create-cell-variable): New defun.
6436 (ses-relocate-formula): Relocate formulas only for cells the
6437 symbols of which are not renamed, i.e. symbols whose names do not
6438 match regexp "\\`[A-Z]+[0-9]+\\'".
6439 (ses-relocate-all): Relocate values only for cells the symbols of
6440 which are not renamed.
6441 (ses-load): Create cells variables as the (ses-cell ...) are read,
6442 in order to check row col consistency with cell symbol name only
6443 for cells that are not renamed.
6444 (ses-replace-name-in-formula): New defun.
6445 (ses-rename-cell): New defun.
6446
ee957461
CY
64472011-12-11 Chong Yidong <cyd@gnu.org>
6448
6449 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6450 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6451
9a9e9ef0
MR
64522011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6453
6454 * window.el (other-window): Fix docstring.
6455
92a8eba5
EZ
64562011-12-10 Eli Zaretskii <eliz@gnu.org>
6457
6458 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
1d00653d
SM
6459 `from' or `to' address before taking its substring.
6460 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
92a8eba5
EZ
6461 encoded name is chopped in the middle of the encoded string, and
6462 thus displayed encoded.
6463
e152e577
JB
64642011-12-10 Juanma Barranquero <lekktu@gmail.com>
6465
6466 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6467
e5d84bfe
EZ
64682011-12-10 Eli Zaretskii <eliz@gnu.org>
6469
6470 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6471 to use texinfo-update-node and commands that call it if the
6472 Texinfo file uses @node lines without next/prev/up pointers.
b8830d28 6473 Correct outdated description about texinfo-master-menu.
e5d84bfe
EZ
6474 (texinfo-all-menus-update, texinfo-master-menu)
6475 (texinfo-update-node, texinfo-every-node-update)
6476 (texinfo-multiple-files-update): Doc fix. Warn against updating
6477 all the @node lines.
6478 (texinfo-master-menu): Only call texinfo-update-node if the prefix
b8830d28
EZ
6479 argument is numeric. Explain better in the doc string what the
6480 function really does.
6481 (texinfo-insert-master-menu-list): Improve the error message
6482 displayed if there's no menu in the Top node.
6483 (Bug#2975) See also this thread:
e5d84bfe
EZ
6484 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6485
1d84e9bb
MG
64862011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6487
6488 * speedbar.el (speedbar-supported-extension-expressions):
6489 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6490
382c953b
JB
64912011-12-09 Juanma Barranquero <lekktu@gmail.com>
6492
6493 * printing.el (pr-mode-alist):
6494 * simple.el (filter-buffer-substring-functions)
6495 (completion-list-insert-choice-function):
6496 * window.el (window-with-parameter, window-atom-root)
6497 (window-sides-slots, window-size-fixed, window-min-delta)
6498 (window-max-delta, window--resize-mini-window)
6499 (window--resize-child-windows-normal, window-tree)
6500 (delete-other-windows, quit-window, split-window)
6501 (display-buffer-record-window, special-display-buffer-names)
6502 (special-display-regexps, special-display-popup-frame)
6503 (same-window-p, split-window-sensibly)
6504 (display-buffer-overriding-action, display-buffer-alist)
6505 (display-buffer-base-action, display-buffer, switch-to-buffer)
6506 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6507 (fit-window-to-buffer, recenter-positions)
6508 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6509 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6510 and remove unneeded backslashes in docstrings.
6511
39c9faef
SM
65122011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6513
98449af8
SM
6514 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6515
39c9faef
SM
6516 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6517 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6518 end in ".mk".
6519 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6520 when reading the makefile (bug#10116).
6521
86ed9fdc
SM
65222011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6523
6524 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6525 (bug#10116).
6526
5580f89d
GM
65272011-12-06 Glenn Morris <rgm@gnu.org>
6528
6529 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6530
28d3917c
CY
65312011-12-06 Chong Yidong <cyd@gnu.org>
6532
6533 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6534
a98edce9
JB
65352011-12-06 Juanma Barranquero <lekktu@gmail.com>
6536
6537 * textmodes/table.el (table-shorten-cell): Fix typo.
6538
e65adfac
CG
65392011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6540
6541 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6542
71cc0b74
EZ
65432011-12-05 Eli Zaretskii <eliz@gnu.org>
6544
6545 * descr-text.el (describe-char): Fix display of strong
6546 right-to-left characters and directional embeddings and overrides.
6547
6548 * simple.el (what-cursor-position): Fix display of codepoints of
6549 strong right-to-left characters.
6550
315bc30d
CY
65512011-12-05 Chong Yidong <cyd@gnu.org>
6552
6553 * faces.el (read-color): Doc fix.
6554
58a70b94
GM
65552011-12-05 Glenn Morris <rgm@gnu.org>
6556
6557 * align.el (align--set-marker): Add doc-string.
6558 Don't try to move something that is not a marker. (Bug#10216)
6559
5158face
GM
65602011-12-04 Glenn Morris <rgm@gnu.org>
6561
6562 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6563 overly zealous deletion of trailing whitespace.
6564
520fca41
JB
65652011-12-04 Juanma Barranquero <lekktu@gmail.com>
6566
6567 * server.el (server-delete-client): On Windows, do not try to delete
6568 the only terminal.
6569 (server-process-filter): On Windows, treat requests for a tty frame as
6570 if they were for a GUI frame if the running server is in GUI mode.
6571
5e605a2e
GM
65722011-12-03 Glenn Morris <rgm@gnu.org>
6573
6574 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6575
5c3fe83f
SM
65762011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6577
6f5e57e7
SM
6578 * electric.el: Streamline electric-indent's hook.
6579 (electric-indent-chars): Revert to simple list.
6580 (electric-indent-functions): New var.
6581 (electric-indent-post-self-insert-function): Use it.
6582
5c3fe83f
SM
6583 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
6584 there's no inferior buffer (bug#10196).
6585 (prolog-consult-compile): Don't use toggle-read-only.
6586
6bdac736
MA
65872011-12-02 Michael Albinus <michael.albinus@gmx.de>
6588
6589 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
6590 interrupt. (Bug#10187)
6591
6131ba7f
SM
65922011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6593
99c79fee
SM
6594 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
6595 (bug#9160).
6596
6131ba7f
SM
6597 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
6598 (bug#10191).
6599
cb0a02ea
JL
66002011-12-02 Juri Linkov <juri@jurta.org>
6601
6602 * info.el (Info-search): Display "end of manual" when Isearch
6603 reaches the end of single-file Info manual. (Bug#9918)
6604
66e0570c
EZ
66052011-12-02 Eli Zaretskii <eliz@gnu.org>
6606
6607 * isearch.el (isearch-message-prefix): Run the input method part
6608 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
6609
02b16839
JL
66102011-12-02 Juri Linkov <juri@jurta.org>
6611
6612 * isearch.el (isearch-occur): Use `word-search-regexp' for
6613 `isearch-word'.
6614 (isearch-search-and-update): Add condition for `isearch-word' and
6615 call `word-search-regexp'. (Bug#10145)
6616
0b950688
GM
66172011-12-01 Glenn Morris <rgm@gnu.org>
6618
6619 * eshell/em-hist.el (eshell-hist-initialize):
6620 Handle eshell-history-size nil and HISTSIZE set or unset.
e8087a76 6621 (eshell-history-file-name, eshell-history-size): Fix custom type.
0b950688 6622
9505c3c7
SM
66232011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6624
6625 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
6626
1bbe96b2 66272011-12-01 Michael McNamara <mac@mail.brushroad.com>
6288f0ca 6628
a1beca85
SM
6629 * progmodes/verilog-mode.el (verilog-pretty-expr):
6630 Rework verilog-pretty-expr to handle new assignment operators in system
6288f0ca
WS
6631 verilog, such as += *= and the like.
6632 (verilog-assignment-operator-re): Regular expression to find the
6633 assigment operator in a verilog assignment.
6634 (verilog-assignment-operation-re): Regular expression to find an
6635 assignment statement for pretty-expr.
6636 (verilog-in-attribute-p): Query returns true if point is in an
6637 attribute context; used to skip these for expression line up from
6638 pretty-expr.
6639 (verilog-in-parameter-p): Query returns true if point is in an
6640 parameter definition context; used to skip these for expression
6641 line up from pretty-expr.
6642 (verilog-in-parenthesis-p): Query returns true if point is in a
6643 parenthetical expression, specifically ( ) but not [ ] or { };
6644 used by pretty-expr.
6645 (verilog-just-one-space): If there is no space, don't add one.
6646 (verilog-get-lineup-indent-2): Specifically skip just attribute
6647 contexts for expression lineup, rather than skipping all
6648 parenthetical expressions.
6649 (verilog-calculate-indent): Fix comment, and fix indent.
6650 (verilog-do-indent): Indent declarations in lists (suggested by
6651 Joachim Lechner).
6652 (verilog-mode-abbrev-table): Populate abbrev mode with the various
6653 skeleton items.
6654 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6655 by Alain Mellan).
6656
1bbe96b2 66572011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6288f0ca
WS
6658
6659 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6660 parameters with embedded comments. Reported by Ray Stevens.
6661 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6662 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6663 Reported by Tim Holt.
6664 (verilog-auto): Fix AUTOing a upper module then AUTOing module
6665 instantiated by upper module causing wrong expansion until AUTOed a
6666 second time. Reported by K C Buckenmaier.
6667 (verilog-diff-auto): Fix showing .* as a difference when
6668 `verilog-auto-star-save' off. Reported by Dan Dever.
6669 (verilog-auto-reset, verilog-read-always-signals)
6670 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6671 temporary signals in reset list if
6672 verilog-auto-reset-blocking-in-non is nil, and match assignment
a1beca85
SM
6673 style to each signal's assignment type, bug381.
6674 Reported by Thomas Esposito.
6288f0ca
WS
6675 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6676 (verilog-uvm-statement-re): Support UVM indentation and
6677 highlighting, with old OVM keywords only.
a1beca85 6678 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
1d00653d
SM
6679 Support AUTOTIEOFF creating non-wire data types.
6680 Suggested by Jonathan Greenlaw.
6288f0ca
WS
6681 (verilog-auto-insert-lisp, verilog-delete-to-paren)
6682 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6683 (verilog-inject-sense, verilog-read-inst-pins)
a1beca85
SM
6684 (verilog-read-sub-decls, verilog-read-sub-decls-line):
6685 Fix mismatching parenthesis inside commented out code when deleting
382c953b 6686 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6288f0ca
WS
6687 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6688 non-numeric vector width. Reported by Alex Reed.
6689 (verilog-auto-ascii-enum): Add "onehot" option to work around not
382c953b 6690 detecting signals with parameter widths. Reported by Alex Reed.
a1beca85
SM
6691 (verilog-auto-delete-trailing-whitespace):
6692 With `verilog-auto-delete-trailing-whitespace' remove trailing
6288f0ca
WS
6693 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
6694 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6695 Fix verilog-scan-cache corruption when running user AUTO expansion
6696 hooks that call indentation routines.
6697 (verilog-simplify-range-expression): Fix typo ignoring lower case
6698 identifiers.
6699 (verilog-delete-auto): Fix delete-autos to also remove user created
6700 automatics, as long as they start with AUTO.
6701 (verilog-batch-diff-auto, verilog-diff-auto)
6702 (verilog-diff-function): Add `verilog-diff-auto' and bind to
6703 "C-c?" to report differences in AUTO expansion, ignoring spaces.
6704 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6705 (verilog-in-paren-quick, verilog-re-search-backward-quick)
a1beca85
SM
6706 (verilog-re-search-forward-quick, verilog-syntax-ppss):
6707 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6288f0ca
WS
6708 is disabled and its cache will get corrupt, causing AUTOS not to
6709 expand. Instead use only -quick functions.
6710 (verilog-scan-region): Fix scanning over escaped quotes.
6711 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6712 (verilog-re-search-backward-quick)
6713 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6714 related functions now ignore strings, to fix misparsing of strings
6715 with magic comments embedded in them.
a1beca85
SM
6716 (verilog-read-auto-template):
6717 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6718 Reported by Brad Dobbie.
6719 (verilog-read-auto-template):
6720 Fix 'verilog-auto-inst-template-numbers' with comments.
6288f0ca 6721 Reported by Brad Dobbie.
6288f0ca
WS
6722 (verilog-auto-inst, verilog-auto-inst-param)
6723 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6724 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
6725 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
a1beca85
SM
6726 debugging templates without merge conflicts, bug357.
6727 Reported by Brad Dobbie.
6728 (verilog-read-auto-template):
6729 Fix verilog-auto-inst-template-numbers with multiple templates.
6288f0ca
WS
6730 Reported by Brad Dobbie.
6731 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6732 abbrevs so user won't be asked to save.
6733 (verilog-read-auto-lisp-present): Fix to start at beginning of
6734 buffer in case called outside of verilog-auto.
6735 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6736 to "X-2". Reported by Matthew Myers.
6737 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6738 all inputs from module templates. Reported by Leith Johnson.
6739 (verilog-module-inside-filename-p): Fix locating programs as with
6740 modules.
6741 (verilog-auto-inst-port): Fix vl-width expressions when using
6742 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
6743 (verilog-decls-get-regs, verilog-decls-get-signals,
6744 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6745 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6746 verilog-read-decls): Combine reg and wire structures into one var
6747 structure to represent SystemVerilog concepts.
6748 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6749 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
a1beca85
SM
6750 (verilog-auto-wire-type, verilog-insert-definition):
6751 Add verilog-auto-wire-type and AUTOLOGIC to support using
6288f0ca
WS
6752 SystemVerilog "logic" keyword instead of "wire"/"reg".
6753 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6754 to declares outputs that also have assignments (presumably in an
a1beca85
SM
6755 ifdef or generate if so there's not a driver conflict).
6756 Reported by Matthew Myers.
6757 (verilog-auto-declare-nettype, verilog-insert-definition):
6758 Add verilog-auto-declare-nettype to fix declarations using
6288f0ca
WS
6759 `default_nettype none. Reported by Julian Gorfajn.
6760 (verilog-read-always-signals-recurse, verilog-read-decls)
6761 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6762 malformed end statement, bug325. Reported by Joshua Wise and
6763 Andrew Drake.
6764 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6765 (verilog-inst-comment-re): Fix not deleting Interfaced comment
1d00653d
SM
6766 when expanding .* in interfaces, bug320.
6767 Reported by Pierre-David Pfister.
6288f0ca 6768 (verilog-read-module-name): Fix import statements between module
1d00653d
SM
6769 name and open parenthesis, bug317.
6770 Reported by Pierre-David Pfister.
6288f0ca
WS
6771 (verilog-simplify-range-expression): Fix simplification of
6772 multiplications inside AUTOWIRE connections, bug303.
6773 (verilog-auto-inst-port): Support parameter expansion in
6774 multidimensional arrays.
6775 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6776 after "assert property". Reported by Julian Gorfajn.
6777 (verilog-simplify-range-expression): Fix "couldn't merge" errors
6778 with multiplication, bug303.
6779 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
6780 Reported by Jan Frode Lonnum.
6781
1bbe96b2
GM
67822011-11-30 Juanma Barranquero <lekktu@gmail.com>
6783
6784 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
6785 (hfy-shell-file-name, hfy-shell):
6786 * international/fontset.el (x-decompose-font-name): Fix typos.
6787
67882011-11-29 Ken Brown <kbrown@cornell.edu>
6789
6790 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6791 (gdb-version): Remove defvar.
6792 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6793 (gdb-gud-context-command, gdb-non-stop-handler)
6794 (gdb-current-context-command, gdb-stopped): Use it.
6795 (gdb-init-1): Enable pretty printing here.
6131ba7f
SM
6796 (gdb-non-stop-handler): Don't enable pretty-printing here.
6797 Check to see if the target supports non-stop mode; if not, turn off
1bbe96b2
GM
6798 non-stop mode. Use the following.
6799 (gdb-check-target-async): New defun.
6800 (gud-watch, gdb-stopped): Fix whitespace.
6801 (gdb-get-source-file): Don't try to display the source file if
6802 `gdb-main-file' is nil.
6803
68042011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6805
6806 * align.el: Try to generate fewer markers (bug#10047).
6807 (align--set-marker): New macro.
6808 (align-region): Use it.
6809
c935221f
SM
68102011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6811
6812 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6813
e70b5064
CY
68142011-11-29 Chong Yidong <cyd@gnu.org>
6815
6816 * indent.el (indent-for-tab-command, indent-according-to-mode):
6817 Doc fix.
6818 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
6819
f3af92b7
MA
68202011-11-29 Michael Albinus <michael.albinus@gmx.de>
6821
6822 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6823 aware of remote file names. (Bug#10124)
6824
ed472be9
CY
68252011-11-29 Chong Yidong <cyd@gnu.org>
6826
6827 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6828
24510c22
SM
68292011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6830
6831 * files.el (find-file): Don't use force-same-window (bug#10144).
6832 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6833 use pop-to-buffer if the selected window can't be used.
6834 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6835
c60c3703
EZ
68362011-11-28 Eli Zaretskii <eliz@gnu.org>
6837
6838 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6839 special-mode-map.
6840
e95def75
CY
68412011-11-28 Chong Yidong <cyd@gnu.org>
6842
6843 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6844
c3f1c606
NR
68452011-11-27 Nick Roberts <nickrob@snap.net.nz>
6846
6847 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6848 gdb-get-source-file-list on gdb-create-source-file-list.
6849
00db469c
EZ
68502011-11-26 Eli Zaretskii <eliz@gnu.org>
6851
6852 * whitespace.el (whitespace-newline): Use a different foreground
6853 color for 16-color light-background displays.
6854
4ad3bc2a
CY
68552011-11-24 Chong Yidong <cyd@gnu.org>
6856
6857 * window.el (display-buffer--special-action): Doc fix.
6858
e9fce1ac
JB
68592011-11-25 Juanma Barranquero <lekktu@gmail.com>
6860
6861 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6862 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6863 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6864 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6865 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6866 (avl-tree-stack-first):
6867 * emacs-lisp/cconv.el (cconv--analyse-use):
6868 * net/gnutls.el (gnutls-negotiate): Fix typos.
6869
cb825e5d
GM
68702011-11-24 Glenn Morris <rgm@gnu.org>
6871
3adbe224
GM
6872 * lpr.el (lpr-windows-system, lpr-lp-system):
6873 * mail/binhex.el (binhex-begin-line):
6874 * progmodes/grep.el (grep-history, grep-find-history):
6875 * textmodes/flyspell.el:
6876 * vc/pcvs-defs.el (cvs-global-menu):
6877 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6878 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6879 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6880
321decc8
GM
6881 * net/tls.el: Fix case of "GnuTLS".
6882
420b63ad
GM
6883 * paths.el (rmail-file-name): Format doc-string for make-docfile.
6884
cb825e5d
GM
6885 * version.el (emacs-build-system): Give it a doc-string.
6886
a0649f08
JL
68872011-11-24 Juri Linkov <juri@jurta.org>
6888
6889 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6890
c0bc0fd4
GM
68912011-11-24 Glenn Morris <rgm@gnu.org>
6892
6893 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6894 if called on a non-mime message just toggle the headers. (Bug#8006)
6895
20db1522
JB
68962011-11-24 Juanma Barranquero <lekktu@gmail.com>
6897
6898 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6899 (allout-lead-with-comment-string, allout-structure-deleted-hook)
6900 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6901 (allout-rebullet-heading, allout-open-sibtopic)
6902 (allout-toggle-current-subtree-encryption)
6903 (allout-toggle-subtree-encryption, allout-encrypt-string)
6904 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6905 (allout-distinctive-bullets-string, allout-auto-activation):
6906 * window.el (window-normalize-buffer-to-display):
6907 * progmodes/verilog-mode.el (verilog-batch-indent):
6908 * textmodes/bibtex.el (bibtex-field-braces-opt)
6909 (bibtex-field-strings-opt):
6910 * vc/cvs-status.el (cvs-tree-merge):
6911 Fix typos.
6912
7262a87c
MA
69132011-11-23 Michael Albinus <michael.albinus@gmx.de>
6914
6915 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6916 `non-essential' to t, in order to avoid remote connections.
6917
283430a1
EZ
69182011-11-23 Eli Zaretskii <eliz@gnu.org>
6919
a1beca85
SM
6920 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6921 On MS-DOS and MS-Windows, compare with loaddefs.el
283430a1
EZ
6922 case-insensitively.
6923
d2992a38
ML
69242011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6925
6926 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
6927
50419064
GM
69282011-11-23 Glenn Morris <rgm@gnu.org>
6929
da94eca1
GM
6930 * paths.el (rmail-file-name): Reformat the doc-string so that it
6931 is picked up.
6932
9aac4de2
GM
6933 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6934 (rmail-auto-file): Ignore case in the "special" field names,
6935 as mail-fetch-field does for all others.
6936
8038d2d2
GM
6937 * mail/rmail.el (rmail-forward):
6938 * mail/rmailkwd.el (rmail-set-label):
6939 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
6940 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
6941
f3fe222a
GM
6942 * mail/rmail.el (rmail-current-message): Doc fix.
6943
50419064
GM
6944 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
6945
28109f49
SM
69462011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
6947
6948 * server.el (server-eval-and-print): Allow C-g (bug#6585).
6949
394c65f1
GM
69502011-11-22 Glenn Morris <rgm@gnu.org>
6951
6952 * mail/rmailmm.el (test-rmail-mime-handler)
6953 (test-rmail-mime-bulk-handler)
6954 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
6955
f2a0aa3a
JL
69562011-11-21 Juri Linkov <juri@jurta.org>
6957
1154d12e
JB
6958 * calc/calc.el (calc-read-key-sequence):
6959 Let-bind `input-method-function' to nil. (Bug#10018)
f2a0aa3a 6960
9c34a344
LMI
69612011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
6962
6963 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
6964 Tell the caller that the next line needs recomputation, even
6965 though it doesn't start a sexp (bug#10094).
6966
f04a3be9
SM
69672011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
6968
6969 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
6970
7978747f
SM
69712011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6972
f04a3be9
SM
6973 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
6974 Use force-same-window.
7978747f 6975
fe7a3057
JB
69762011-11-20 Juanma Barranquero <lekktu@gmail.com>
6977
6978 * descr-text.el (describe-char-unicode-data):
6979 * json.el (json-string-escape):
6980 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
6981 (Footnote-unicode, Footnote-style-p):
6982 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
6983
24901d61
CY
69842011-11-20 Chong Yidong <cyd@gnu.org>
6985
6986 * window.el (replace-buffer-in-windows): Restore interactive spec.
6987
bac7ff22
SM
69882011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
6989
24f3d7b9
SM
6990 * electric.el (electric-indent-mode): Fix last change (too optimistic).
6991
bac7ff22
SM
6992 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
6993 (byte-compile-global-not-obsolete-vars): New var.
6994 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
6995 Use it.
6996 (byte-compile-warn-obsolete): Align text with the one in *Help*.
6997
cd1181db
JB
69982011-11-20 Juanma Barranquero <lekktu@gmail.com>
6999
7000 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
7001 * progmodes/pascal.el (electric-pascal-equal):
7002 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
7003 * xml.el (xml-substitute-special): Fix typos.
7004
7fb18e9e
GM
70052011-11-20 Glenn Morris <rgm@gnu.org>
7006
7007 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
7008 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
7009 Doc fixes.
7010 (rmail-decode-mime-charset): Mark as obsolete.
7011
7012 * mail/rmailsum.el (rmail-message-regexp-p-1):
7013 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
7014 Before using mime functions, check they are set. (Bug#10077)
7015
d5a6b3ba
JL
70162011-11-19 Juri Linkov <juri@jurta.org>
7017
7018 * info.el (Info-finder-find-node): Use `package--builtins' instead
7019 of `package-alist'. Use node names formed by the pattern "Keyword "
7020 and the keyword name.
7021
e981b61f
AS
70222011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7023
1d00653d 7024 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
e981b61f 7025
3ffbc301
JL
70262011-11-19 Juri Linkov <juri@jurta.org>
7027
7028 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
7029 that calls `revert-buffer' on all Info buffers. (Bug#9915)
7030 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
7031 `old-history', `old-history-forward'. Add let-binding
7032 `window-selected'. Remove calls to `kill-buffer',
7033 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
7034 before calling `Info-find-node', so `Info-find-node-2' will reread
7035 the Info file. Restore window positions only when `window-selected'
7036 is non-nil.
7037
30c62133
JL
70382011-11-19 Juri Linkov <juri@jurta.org>
7039
7040 * isearch.el (isearch-lazy-highlight-new-loop):
7041 Remove condition `(not isearch-error)'. (Bug#9918)
7042
7043 * misearch.el (multi-isearch-search-fun): Add condition
7044 `(not bound)' to ignore lazy-highlighting search.
7045 Add the search-failed message "end of multi" when the end of
7046 multi-sequence is reached. Uncapitalize the search-failed
7047 message "Repeat for next buffer".
7048
7049 * info.el (Info-search): Add the search-failed message
7050 "end of the manual" when the end of the manual is reached
7051 in Isearch mode.
7052
645ca9cf
JL
70532011-11-19 Juri Linkov <juri@jurta.org>
7054
7055 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
7056 Use non-destructive `remove' instead of `delete' because
7057 `Info-history-list' stored to `Info-isearch-initial-history-list' in
7058 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
7059
df754f66
JL
70602011-11-19 Juri Linkov <juri@jurta.org>
7061
7062 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
7063 to nil instead of binding `search-ring' and `regexp-search-ring'.
7064 (Bug#9185)
7065
0e23d96a
EZ
70662011-11-19 Eli Zaretskii <eliz@gnu.org>
7067
7068 * simple.el (line-move): Force movement by logical lines for any
7069 hscrolled window, not only when auto-hscroll-mode is on.
7070 (line-move-visual): Update doc string to that effect. (Bug#10076)
7071
8a6ccb66
AS
70722011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7073
7074 * language/european.el (macintosh): Define as alias for mac-roman.
7075
49ae5b39
EZ
70762011-11-19 Eli Zaretskii <eliz@gnu.org>
7077
7078 * mail/rmailmm.el (rmail-mime-display-header)
7079 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
7080 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
7081 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
7082 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
7083 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
7084 of a raw aref.
7085 (rmail-mime-entity-segment): To get past the tagline, move forward
7086 2 more lines, to account for the 2 empty lines that precede and
7087 follow the line with the buttons.
7088 (rmail-mime-update-tagline): Move one more line, to get past the
7089 empty line that follows the buttons in the tagline. (Bug#9520)
7090
c56cad4a
MR
70912011-11-19 Martin Rudalics <rudalics@gmx.at>
7092
7093 * window.el (window-max-delta-1, window-min-delta-1)
7094 (window-min-size-1, window-state-get-1, window-state-put-1)
7095 (window-state-put-2): Use "window--" prefix.
7096
cbe71af3
SM
70972011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7098
2ad52c60
SM
7099 * emacs-lisp/smie.el: Improve warnings and conflict detection.
7100 (smie-warning-count): New var.
7101 (smie-set-prec2tab): Use it.
7102 (smie-bnf->prec2): Improve warnings. Add docstring.
7103 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
7104 (smie-bnf--set-class): New function.
7105 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
7106 corner case.
7107
6944dbc1
SM
7108 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
7109 (compilation-error-properties, compilation-move-to-column):
7110 Handle compilation-first-column while in the target buffer.
7111
c400c4d7
SM
7112 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
7113 Don't hardcode point-min==1.
7114
6dbe3e96
SM
7115 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
7116 (eshell-rewrite-for-command): Remove workaround.
7117 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
7118 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
7119 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
7120
cbe71af3
SM
7121 * files-x.el (modify-file-local-variable): Obey commenting conventions.
7122
a8e1496d
GM
71232011-11-17 Glenn Morris <rgm@gnu.org>
7124
7125 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7126 Ignore buffer-local generated-autoload-file if it is the same
7127 as the global value. (Bug#10049)
7128
df85d315
JB
71292011-11-17 Juanma Barranquero <lekktu@gmail.com>
7130
7131 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
7132 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
7133 (reftex-toc-previous-heading, reftex-toc-max-level)
7134 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
7135 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
7136 (reftex-toc-do-promote, reftex-toc-promote-prepare)
7137 (reftex-toc-promote-action, reftex-toc-extract-section-number)
7138 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
7139 (reftex-toc-rename-label, reftex-toc-visit-location)
7140 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7141 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7142 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7143 leaving "*toc*" only for references to the buffer.
7144
a0c2d0ae
MR
71452011-11-17 Martin Rudalics <rudalics@gmx.at>
7146
7147 * window.el (window-resize, delete-window, split-window):
7148 Replace window-splits by window-combination-resize.
1d00653d 7149 * cus-start.el (window-splits): Replace by window-combination-resize.
a0c2d0ae 7150
35c0bac8
GM
71512011-11-17 Glenn Morris <rgm@gnu.org>
7152
7153 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7154 Make bash entry derive from sh entry, not shell entry.
7155
d0c8fc8a
MA
71562011-11-16 Michael Albinus <michael.albinus@gmx.de>
7157
7262a87c
MA
7158 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7159 local file name.
7160
7877f373
JB
71612011-11-16 Juanma Barranquero <lekktu@gmail.com>
7162
7163 * menu-bar.el (menu-bar-file-menu):
7164 * printing.el (pr-ps-utility):
7165 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7166 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7167 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7168 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7169 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7170 (icalendar--convert-cyclic-to-ical)
7171 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7172 (icalendar--convert-ical-to-diary)
7173 (icalendar--convert-recurring-to-diary)
7174 (icalendar--convert-non-recurring-all-day-to-diary)
7175 (icalendar-import-format-sample):
7176 * progmodes/idlw-shell.el (idlwave-shell-mode):
7177 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7178 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7179 (vhdl-ps-print-init): Fix typos.
7180
10649b82
KM
71812011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7182
9d0cfcd6
GM
7183 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7184 FSF and collapse date sequence, obscure author/maintainer email address
7185 better, remove extra version line, track relocation of author's webpage.
10649b82 7186
9d0cfcd6
GM
7187 * progmodes/python.el (python-pdbtrack-input-prompt)
7188 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7189 regular python pdb prompts. Adjustments shamelessly taken exactly as
7190 suggested in EmacsWiki page (tiny change):
7191 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
8642c216 7192
58179cce
JB
71932011-11-16 Juanma Barranquero <lekktu@gmail.com>
7194
7195 * expand.el (expand-pos, expand-index, expand-point):
7196 Remove redundant info from docstring.
7197 (expand-add-abbrevs): Doc fix.
7198 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7199 (expand-sample-perl-mode-expand-list): Fix typos.
7200
7201 * net/dbus.el (dbus-event-member-name):
7202 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7203 * term/pc-win.el (msdos-create-frame-with-faces):
7204 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7205
b6f67890
MR
72062011-11-16 Martin Rudalics <rudalics@gmx.at>
7207
7208 * window.el (split-window, window-state-get-1)
7209 (window-state-put-1, window-state-put-2): Rename occurrences of
7210 window-nest to window-combination-limit.
1d00653d 7211 * cus-start.el (window-nest): Rename to window-combination-limit.
b6f67890 7212
ce7ddba0
CY
72132011-11-16 Chong Yidong <cyd@gnu.org>
7214
7215 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7216 regexp (Bug#10033).
7217
3ae704f4
SM
72182011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7219
7220 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7221 `completing-read' will remove *Completions* and will preserve
7222 current-buffer for us.
7223 (tmm-add-prompt): Users of *Completions* will always (re)set its
7224 major mode.
7225 (tmm-old-comp-map): Remove.
7226
6ad1cdde
GM
72272011-11-16 Glenn Morris <rgm@gnu.org>
7228
7229 * mail/rmailedit.el: Require rmailmm when compiling.
7230 (rmail-old-mime-state): New declaration.
7231 (rmail-edit-current-message): If editing a mime message,
7232 edit the "raw" message from the mbox buffer.
7233 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7234
d20faa20
GM
72352011-11-15 Glenn Morris <rgm@gnu.org>
7236
7237 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7238 which wasn't being used. Add optional arg to force given state.
7239 (rmail-mime): Add optional arg to force given state.
7240
c7015153
JB
72412011-11-15 Juanma Barranquero <lekktu@gmail.com>
7242
7243 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7244 * frame.el (display-mm-dimensions-alist):
7245 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7246 (outline-move-subtree-down):
7247 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7248 (newsticker--treeview-do-get-node):
7249 * net/quickurl.el (quickurl-list-buffer-name):
7250 * progmodes/dcl-mode.el (dcl-mode):
7251 * progmodes/gdb-mi.el (gdb-mapcar*):
7252 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7253
45261b50
GM
72542011-11-15 Glenn Morris <rgm@gnu.org>
7255
7256 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7257 in a boolean sense, so just make it a boolean, and fix the doc.
7258 (rmail-show-mime-function, rmail-mime-feature)
7259 (rmail-require-mime-maybe): Doc fixes.
7260 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7261
7262 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7263
0d26e0b6
JB
72642011-11-15 Juanma Barranquero <lekktu@gmail.com>
7265
7266 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7267 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7268 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7269 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7270
447f30f6
GM
72712011-11-15 Glenn Morris <rgm@gnu.org>
7272
672b871d
GM
7273 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7274 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7275 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7276 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7277 (rmail-mime, rmail-show-mime): Doc fixes.
7278
f6aa5bb1
GM
7279 * term/ns-win.el (mode-line-frame-identification):
7280 Leave it alone. (Bug#10051)
7281
947cd66b
GM
7282 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7283
447f30f6
GM
7284 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7285 Handle empty buffers. (Bug#9978)
7286
0b381c7e
JB
72872011-11-14 Juanma Barranquero <lekktu@gmail.com>
7288
7289 * international/mule.el (define-charset):
7290 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7291 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7292 * progmodes/verilog-mode.el (verilog-backward-token):
7293 * textmodes/ispell.el (lookup-words):
7294 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7295
71e027ac
GM
72962011-11-14 Glenn Morris <rgm@gnu.org>
7297
56632ce4
GM
7298 * progmodes/executable.el
7299 (executable-make-buffer-file-executable-if-script-p):
7300 Handle file-modes returning nil.
7301
40500957
GM
7302 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7303 message - not necessary, and causes problems. (Bug#9831)
7304
071c2340
GM
7305 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7306
d3cfca60
GM
7307 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7308
71e027ac
GM
7309 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7310 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7311 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7312
89d61221
MR
73132011-11-12 Martin Rudalics <rudalics@gmx.at>
7314
7315 * window.el (window-resize, delete-window): Use window-splits
7316 variable instead of function.
7317 (window-state-get-1, window-state-put-2, window-state-put):
7318 Don't deal with windows' splits status.
7319
98282f6f
GM
73202011-11-12 Glenn Morris <rgm@gnu.org>
7321
7322 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7323 (apropos-documentation): Doc fixes.
7324
40a8bdf6
JB
73252011-11-11 Juanma Barranquero <lekktu@gmail.com>
7326
7327 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7328 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7329
65bd19ff
SM
73302011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7331
7332 * electric.el (electric-indent-post-self-insert-function): Make it
7333 possible for a char to only indent in some circumstances.
7334 (electric-indent-mode): Simplify.
7335
54f9154c
MR
73362011-11-11 Martin Rudalics <rudalics@gmx.at>
7337
7338 * window.el (windows-with-parameter): Remove unused function.
7339 (windows-at-side): Rename to window-at-side-list.
7340 (window-check, window-atom-check, window-atom-check-1)
5e92ca23
MR
7341 (window-side-check, window-size-ignore, window-size-fixed-1)
7342 (window-in-direction-2): Prefix with "window--".
7343 (window-tree-1): Rename to window--subtree, fix doc-string.
54f9154c 7344
68cbc58b
GM
73452011-11-11 Glenn Morris <rgm@gnu.org>
7346
7347 * subr.el (eval-after-load): If FILE is already loaded,
7348 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7349
b2621720
GM
73502011-11-10 Glenn Morris <rgm@gnu.org>
7351
9a4de110
GM
7352 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7353 Call svn via vc-svn-command rather than vc-do-command.
7354 (vc-svn-command): Add --non-interactive. (Bug#9993)
7355 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7356
b2621720
GM
7357 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7358 Add toggle-read-only. (Bug#7292)
7359 * files.el (toggle-read-only): Mention that it should only
7360 be used interactively. (Bug#10006)
7361
1dce7193
SM
73622011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7363
d9ac1a1e
SM
7364 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7365 Adjust regexp for OCaml warnings.
7366
0c325082
SM
7367 * electric.el (electric-pair-post-self-insert-function): Let user
7368 turn it off buffer-locally (bug#9932).
7369
90132c14
SM
7370 * progmodes/python.el (python-beginning-of-statement):
7371 Rewrite (bug#2703).
7372
1dce7193
SM
7373 * progmodes/compile.el: Better handle TABs (bug#9749).
7374 (compilation-internal-error-properties)
7375 (compilation-next-error-function): Obey the target buffer's
7376 compilation-error-screen-columns.
7377
c4e7c63a
JB
73782011-11-09 Juanma Barranquero <lekktu@gmail.com>
7379
7380 * progmodes/meta-mode.el: Remove obsolete comments.
7381 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7382 Fix typos in docstrings.
7383
2cffd681
MR
73842011-11-09 Martin Rudalics <rudalics@gmx.at>
7385
7386 * window.el (window-size-fixed-p): Rewrite doc-string.
1dce7193 7387 (window-resizable-p): Rename to window--resizable-p. Update callers.
2cffd681
MR
7388 (window--resizable): New function. Make all callers of
7389 window-resizable call window--resizable instead.
7390 (window-resizable): Rewrite in terms of window--resizable.
7391
0edcba87
GM
73922011-11-08 Glenn Morris <rgm@gnu.org>
7393
7394 * progmodes/delphi.el (delphi-mode-syntax-table):
7395 Let define-derived-mode define a proper syntax table. (Bug#9994)
7396
4b0d61e3
SM
73972011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7398
7399 * window.el: Stay away from defsubst.
7400 (window-list-no-nils): Remove.
7401 (window-state-get-1, window-state-get): Use backquote instead.
7402
cd394be1 74032011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
fcbcac2e 7404
4b0d61e3 7405 * emacs-lisp/find-func.el (find-function-read):
fcbcac2e 7406 Fix incorrect use of default argument in `completing-read'.
7407
e1c2c6f2
MR
74082011-11-08 Martin Rudalics <rudalics@gmx.at>
7409
7410 * window.el (display-buffer-function, special-display-function):
7411 Mention display-buffer-record-window but do not mention
7412 help-setup parameter in doc-strings.
b3f4a882 7413 (window-min-delta): Fix doc-string typo.
e1c2c6f2 7414
105216ed
CY
74152011-11-08 Chong Yidong <cyd@gnu.org>
7416
7417 * window.el (window-total-height, window-total-width): Doc fix.
7418 (window-body-size): Move from C.
7419 (window-body-height, window-body-width): Move to C.
7420
0a9f9ab5
SM
74212011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7422
7423 * window.el: Make special-display like display-buffer-alist (bug#9532).
7424 (display-buffer--special-action): New function, morphed
7425 from display-buffer--special.
7426 (display-buffer): Use it to handle special-display-buffers at higher
7427 priority (just after display-buffer-alist).
7428 (display-buffer-fallback-action, display-buffer--other-frame-action)
7429 (pop-to-buffer-same-window): Remove display-buffer--special.
7430
a769dd15
GM
74312011-11-07 Glenn Morris <rgm@gnu.org>
7432
7433 * calendar/cal-menu.el (cal-menu-set-date-title):
7434 Do nothing if not in a calendar. (Bug#9976)
7435
05a61ee3
SM
74362011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7437
7438 * files.el (find-file): Always use selected-window.
7439
be7f5545
MR
74402011-11-07 Martin Rudalics <rudalics@gmx.at>
7441
7442 * window.el (window-combinations): Make WINDOW argument
7443 mandatory. Rewrite doc-string.
7444 (walk-window-subtree, window-atom-check, window-min-delta)
7445 (window-max-delta, window--resize-this-window)
7446 (window--resize-root-window-vertically, window-tree)
7447 (balance-windows, window-state-put): Rewrite doc-strings as to
7448 not mention the term "subwindow".
7449 (window--resize-subwindows-skip-p): Rename to
7450 window--resize-child-windows-skip-p.
7451 (window--resize-subwindows-normal): Rename to
7452 window--resize-child-windows-normal.
7453 (window--resize-subwindows): Rename to
7454 window--resize-child-windows.
7455 (window-or-subwindow-p): Rename to window--in-subtree-p.
7456
3c6702ef
ML
74572011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7458
7459 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7460 Ensure that mbox format messages end in two newlines (Bug#9974).
7461
49745b39
CY
74622011-11-06 Chong Yidong <cyd@gnu.org>
7463
7464 * window.el (window-combination-p): Function deleted; its
7465 side-effect is not used in any existing code.
7466 (window-combinations, window-combined-p): Call window-*-child
7467 directly.
7468
24300f5f
CY
74692011-11-05 Chong Yidong <cyd@gnu.org>
7470
7471 * window.el (window-valid-p): Rename from window-any-p.
447f16b8
CY
7472 (window-size-ignore, window-state-get): Callers changed.
7473 (window-normalize-window): Rename from window-normalize-any-window.
7474 New arg LIVE-ONLY, replacing window-normalize-live-window.
1dce7193 7475 (window-normalize-live-window): Delete.
447f16b8
CY
7476 (window-combination-p, window-combined-p, window-combinations)
7477 (walk-window-subtree, window-atom-root, window-min-size)
7478 (window-sizable, window-sizable-p, window-size-fixed-p)
7479 (window-min-delta, window-max-delta, window-resizable)
7480 (window-resizable-p, window-full-height-p, window-full-width-p)
7481 (window-current-scroll-bars, window-point-1, set-window-point-1)
7482 (window-at-side-p, window-in-direction, window-resize)
7483 (adjust-window-trailing-edge, maximize-window, minimize-window)
7484 (window-deletable-p, delete-window, delete-other-windows)
7485 (record-window-buffer, unrecord-window-buffer)
7486 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7487 (quit-window, split-window, window-state-put)
7488 (set-window-text-height, fit-window-to-buffer)
7489 (shrink-window-if-larger-than-buffer): Callers changed.
24300f5f 7490
89bd5ee1
EZ
74912011-11-04 Eli Zaretskii <eliz@gnu.org>
7492
53479029
EZ
7493 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7494 rfc2047-decode-string.
7495 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7496 warnings.
7497
89bd5ee1
EZ
7498 * window.el (window-body-height, window-body-width): Mention in
7499 the doc string that the return values are in frame's canonical
7500 units. (Bug#9949)
7501
bd17fdee
AM
75022011-11-03 Alan Mackenzie <acm@muc.de>
7503
7504 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7505 change in cc-engine.el.
7506
acc825c5
SM
75072011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7508
7509 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7510
1885e5b8
MR
75112011-11-02 Martin Rudalics <rudalics@gmx.at>
7512
7513 * window.el (quit-window): Call unrecord-window-buffer after
7514 showing another buffer in the window. (Bug#9937)
acc825c5 7515 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
1885e5b8 7516
ebe06da9
JB
75172011-11-02 Juanma Barranquero <lekktu@gmail.com>
7518
7519 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7520 Accept status with more than 9 shelves. (Bug#9935)
7521 Reported by Colin D Bennett <colin@gibibit.com>.
7522
4ee88440
MR
75232011-11-01 Martin Rudalics <rudalics@gmx.at>
7524
7525 * help.el (with-help-window): Don't reference
7526 temp-buffer-show-specifiers in doc-string.
7527
08e1d82c
AS
75282011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7529
7530 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7531 menu-item.
7532
84bd6e9e
VJL
75332011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7534
7535 * whitespace.el: New version 13.2.2.
7536 (whitespace-newline-mode): Disable properly. Reported by Sarah
7537 <EmacsWiki>.
7538
dba0634a
UJ
75392011-10-30 Ulf Jasper <ulf.jasper@web.de>
7540
7541 * net/newst-treeview.el: Remove "Time-stamp".
7542 (newsticker--group-manage-orphan-feeds): Do not call
7543 newsticker--treeview-tree-update.
db22a3c2
JB
7544 (newsticker-treeview-update, newsticker-treeview):
7545 Call newsticker--treeview-tree-update if necessary.
dba0634a 7546
3d8daefe
MR
75472011-10-30 Martin Rudalics <rudalics@gmx.at>
7548
7549 * window.el (window-iso-combination-p, window-iso-combined-p)
acc825c5
SM
7550 (window-iso-combinations): Remove "iso-" infix.
7551 Suggested by Chong Yidong.
3d8daefe
MR
7552 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7553 (window-max-delta-1, window-resize, window--resize-siblings)
7554 (window--resize-this-window, adjust-window-trailing-edge)
7555 (split-window, balance-windows-1)
7556 (shrink-window-if-larger-than-buffer):
7557 * calendar/calendar.el (calendar-generate-window):
db22a3c2 7558 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
3d8daefe 7559
1bc4c3ae
SM
75602011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7561
7562 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7563 in place (bug#9907).
7564 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7565 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7566 (eshell-structure-basic-command, eshell-rewrite-while-command)
7567 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7568 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7569 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7570 (eshell-do-pipelines-synchronously, eshell-eval-command):
7571 Use backquotes and prefer setq to set.
7572 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7573 (eshell-macrop): Use functionp.
c1e2f5fa 7574 (eshell-do-eval): Handle multiple expressions in `while' body.
1bc4c3ae 7575
30b65d9c
CY
75762011-10-30 Chong Yidong <cyd@gnu.org>
7577
7578 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
7579 instead of set-mark (Bug#9810).
7580
2d197ffb
CY
75812011-10-30 Chong Yidong <cyd@gnu.org>
7582
7583 * window.el (split-window-below, split-window-right): Rename from
7584 split-window-above-each-other and split-window-side-by-side
7585 respectively. All callers changed.
7586 (split-window-sensibly, split-window-sensibly): Use them.
7587 (split-window-keep-point): Doc fix.
7588
7589 * isearch.el: Add isearch-scroll property to split-window-below
7590 and split-window-right.
7591
7592 * follow.el (follow-mode):
7593 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7594 * progmodes/ada-xref.el (ada-gdb-application):
7595 * emulation/vip.el (vip-buffer-in-two-windows):
7596 * image-dired.el (image-dired-dired-with-window-configuration):
7597 * dired-x.el (dired-do-find-marked-files):
7598 * dired.el (dired-pop-to-buffer):
7599 * bs.el (bs--show-with-configuration):
7600 * vc/emerge.el (emerge-setup-windows):
7601 * textmodes/two-column.el (2C-two-columns):
7602 * textmodes/reftex-toc.el (reftex-toc):
7603 * progmodes/gdb-mi.el (gdb-setup-windows):
7604 * progmodes/fortran.el (fortran-window-create):
7605 * net/newst-treeview.el (newsticker--treeview-window-init):
7606 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
7607 * emulation/tpu-edt.el (tpu-gold-map):
7608 * emulation/crisp.el (crisp-mode-map):
7609 * calendar/calendar.el (calendar-basic-setup): Callers changed.
7610
38bb2ca8
CY
76112011-10-29 Chong Yidong <cyd@gnu.org>
7612
aa4de341
CY
7613 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
7614
e1eb5385
CY
7615 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
7616
5d2ece3c
CY
7617 * textmodes/flyspell.el (flyspell-word): Fix char offset for
7618 forged Ispell output (Bug#7904).
7619
38bb2ca8
CY
7620 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
7621
d0af9f77
SM
76222011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7623
7624 * doc-view.el: Avoid ugly errors about not finding nil.
7625 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
7626 (doc-view-dvipdf-program, doc-view-unoconv-program)
7627 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
7628 Avoid nil or absolute file name as default value.
7629 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
7630
52bedd34
AM
76312011-10-28 Alan Mackenzie <acm@muc.de>
7632
db22a3c2 7633 * progmodes/cc-defs.el (c-version): -> 5.32.2.
52bedd34 7634
7e43cfa5
AM
76352011-10-28 Alan Mackenzie <acm@muc.de>
7636
7637 Amend the handling of c-beginning/end-of-defun in nested declaration
7638 scopes.
7639
52bedd34
AM
7640 * progmodes/cc-vars.el (c-defun-tactic): Move here from
7641 cc-langs.el. Change it to a defcustom.
7e43cfa5 7642
52bedd34
AM
7643 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
7644 cc-vars.el.
7e43cfa5 7645
d0af9f77
SM
7646 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7647 Prevent "class foo : bar" being spuriously recognized as a label.
7e43cfa5 7648
52bedd34 7649 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
acc825c5 7650 Add parameter `inclusive' (to include enclosing braces in the region).
7e43cfa5
AM
7651 (c-widen-to-enclosing-decl-scope): New function.
7652 (c-while-widening-to-decl-block): New macro.
7653 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7654 outward for defun boundaries, and correspondingly change symbol
7655 `respect-enclosure' to `go-outward'.
7656 (c-declaration-limits): Change algorithm to report only the "innermost"
7657 defun's boundaries.
7658
1a2ce9ee
DD
76592011-10-28 Deniz Dogan <deniz@dogan.se>
7660
7661 * net/rcirc.el (rcirc-mode): Use hard newlines.
7662
bc97a826
AM
76632011-10-28 Alan Mackenzie <acm@muc.de>
7664
7665 Amend to indent and fontify macros "which include their own semicolon"
7666 correctly, using the "virtual semicolon" mechanism.
7667
52bedd34 7668 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
bc97a826 7669
d0af9f77 7670 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7877f373 7671 Recode to scan one line at a time rather than having \n and \r
58179cce 7672 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
bc97a826 7673 (c-forward-label): Amend for virtual semicolons.
58179cce 7674 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
bc97a826 7675
52bedd34
AM
7676 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7677 of the new C macros.
bc97a826 7678
52bedd34 7679 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
acc825c5
SM
7680 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7681 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
bc97a826
AM
7682 (c-opt-cpp-macro-define): Make into a full language variable.
7683 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7684 AWK Mode (including \n, \r) removed, no longer needed.
7685
d0af9f77
SM
7686 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7687 Invoke c-make-macro-with-semi-re.
bc97a826 7688
52bedd34
AM
7689 * progmodes/cc-vars.el (c-macro-with-semi-re):
7690 (c-macro-names-with-semicolon): New variables.
58179cce 7691 (c-make-macro-with-semi-re): New function.
bc97a826 7692
7a6c0941
SM
76932011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7694
7695 * vc/log-edit.el: Fill empty field rather than adding new one.
7696 (log-edit-add-field): New function.
7697 (log-edit-insert-changelog): Use it.
7698
b0c4cdcf
ML
76992011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7700
7701 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7702
ee1f1da9
SM
77032011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7704
7705 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7706 (gdb--check-interpreter): New function.
7707 (gdb): Use it.
7708
51bc5f8b
GM
77092011-10-27 Glenn Morris <rgm@gnu.org>
7710
416a2c45
GM
7711 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7712 (least-positive-float, least-negative-float)
7713 (least-positive-normalized-float, least-negative-normalized-float)
7714 (float-epsilon, float-negative-epsilon):
7715 Remove unnecessary declarations.
7716
7717 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7718 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7719 (least-positive-float, least-negative-float)
7720 (least-positive-normalized-float, least-negative-normalized-float)
7721 (float-epsilon, float-negative-epsilon): Add doc-strings,
7722 based on those in cl.texi.
7723
51bc5f8b
GM
7724 * files.el (set-visited-file-name): If the major-mode changed,
7725 reload the local variables. (Bug#9796)
7726
15de15c6
CY
77272011-10-27 Chong Yidong <cyd@gnu.org>
7728
7729 * subr.el (change-major-mode-after-body-hook): New hook.
7730 (run-mode-hooks): Run it.
7731
ee1f1da9
SM
7732 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7733 Use change-major-mode-before-body-hook.
15de15c6
CY
7734
7735 * simple.el (fundamental-mode):
7736 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7737 change introducing fundamental-mode-hook.
7738
5430d399
JB
77392011-10-26 Juanma Barranquero <lekktu@gmail.com>
7740
acc825c5 7741 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
5430d399 7742
ad74a69e
MA
77432011-10-26 Michael Albinus <michael.albinus@gmx.de>
7744
7745 * ido.el (ido-file-name-all-completions-1): Do not require
c7015153 7746 tramp.el explicitly. (Bug#7583)
ad74a69e 7747
71d4c2a5
SM
77482011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7749
7750 * progmodes/octave-mod.el:
7751 * progmodes/octave-inf.el: Update maintainer.
7752
b1f6fa26
CY
77532011-10-26 Chong Yidong <cyd@gnu.org>
7754
7755 * subr.el (with-wrapper-hook): Rewrite doc.
7756
3f04efd6
MA
77572011-10-25 Michael Albinus <michael.albinus@gmx.de>
7758
7759 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
ad74a69e 7760 filenames "/method:foo:". (Bug#9793)
3f04efd6 7761
410488d3
SM
77622011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7763
7764 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7765 (bug#9865).
7766
c1ebb47e
GM
77672011-10-24 Glenn Morris <rgm@gnu.org>
7768
7769 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
7770
7f5c46c7
MA
77712011-10-24 Michael Albinus <michael.albinus@gmx.de>
7772
7773 * notifications.el: Add the requirement of a running D-Bus session
7774 bus to the Commentary.
7775
db2440b6
JL
77762011-10-24 Juri Linkov <juri@jurta.org>
7777
7778 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7779 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
7780 (Bug#9364)
7781
feecf435
JL
77822011-10-24 Juri Linkov <juri@jurta.org>
7783
7784 * info.el (Info-following-node-name-re): Add newline to the list
7785 of allowed characters for leading space. (Bug#9824)
7786
a3839de2
SM
77872011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7788
acc825c5
SM
7789 * progmodes/octave-inf.el (inferior-octave-mode-map):
7790 Fix C-c C-h binding.
a3839de2
SM
7791 * progmodes/octave-mod.el (octave-help): Remove.
7792
09388e76
MA
77932011-10-23 Michael Albinus <michael.albinus@gmx.de>
7794
7795 Sync with Tramp 2.2.3.
7796
7797 * net/tramp-cache.el (top): Pacify byte-compiler using
7798 `init-file-user' and `site-run-file'.
7799
7800 * net/trampver.el: Update release number.
7801
86c60681
CY
78022011-10-23 Chong Yidong <cyd@gnu.org>
7803
7804 * files.el (toggle-read-only): Remove obsolete comment about
7805 version control.
7806
7807 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7808 for toggle-read-only. Note that this hasn't called vc-next-action
7809 since 2008-05-02, though it wasn't documented at the time.
7810
a3839de2
SM
7811 * vc/ediff-init.el (ediff-toggle-read-only-function):
7812 Use toggle-read-only.
86c60681 7813
cd5495ff
AM
78142011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
7815
7816 Fix bug #9560, sporadic wrong indentation; improve instrumentation
7817 of c-parse-state.
7818
00b77525 7819 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
a3839de2 7820 correct faulty logical expression.
cd5495ff
AM
7821 (c-parse-state-state, c-record-parse-state-state):
7822 (c-replay-parse-state-state): New defvar/defuns.
7823 (c-debug-parse-state): Use new functions.
7824
42ee24ed
MR
78252011-10-22 Martin Rudalics <rudalics@gmx.at>
7826
7827 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
53ebff1f 7828 last fix. Use window-in-direction correctly.
42ee24ed 7829
a7dee7e7
CY
78302011-10-21 Chong Yidong <cyd@gnu.org>
7831
7832 * progmodes/idlwave.el (idlwave-mode):
7833 * progmodes/vera-mode.el (vera-mode): No need to set
a3839de2
SM
7834 require-final-newline; that's done in prog-mode.
7835 Suggested by Stefan Monnier.
a7dee7e7 7836
e07b9a6d
MR
78372011-10-21 Martin Rudalics <rudalics@gmx.at>
7838
7839 * mouse.el (mouse-drag-window-above)
7840 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7841 (mouse-drag-mode-line-1, mouse-drag-header-line)
7842 (mouse-drag-vertical-line-rightward-window): Remove.
7843 (mouse-drag-line): New function.
7844 (mouse-drag-mode-line, mouse-drag-header-line)
7845 (mouse-drag-vertical-line): Call mouse-drag-line.
7846 * window.el (window-at-side-p, windows-at-side): New functions.
7847
7e1361d9
UM
78482011-10-21 Ulrich Mueller <ulm@gentoo.org>
7849
7850 * tar-mode.el (tar-grind-file-mode):
7851 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
7852
30fcaf3a
CY
78532011-10-21 Chong Yidong <cyd@gnu.org>
7854
7855 * progmodes/idlwave.el (idlwave-mode):
a3839de2
SM
7856 * progmodes/vera-mode.el (vera-mode):
7857 Use mode-require-final-newline.
30fcaf3a 7858
516eddb0
GM
78592011-10-20 Glenn Morris <rgm@gnu.org>
7860
db22a3c2 7861 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
516eddb0 7862
10d5f513
CS
78632011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
7864
7865 * emulation/cua-base.el (cua-set-mark): Fix case of string.
7866
ac6c8639
CY
78672011-10-20 Chong Yidong <cyd@gnu.org>
7868
7869 * emulation/cua-base.el (cua-mode):
7870 * mail/footnote.el (footnote-mode):
7871 * mail/mailabbrev.el (mail-abbrevs-mode):
7872 * net/xesam.el (xesam-minor-mode):
7873 * progmodes/bug-reference.el (bug-reference-mode):
7874 * progmodes/cap-words.el (capitalized-words-mode):
7875 * progmodes/compile.el (compilation-minor-mode)
7876 (compilation-shell-minor-mode):
7877 * progmodes/gud.el (gud-tooltip-mode):
7878 * progmodes/hideif.el (hide-ifdef-mode):
7879 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7880 * progmodes/subword.el (subword-mode):
7881 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7882 * progmodes/which-func.el (which-function-mode):
7883 * term/tvi970.el (tvi970-set-keypad-mode):
7884 * term/vt100.el (vt100-wide-mode):
7885 * textmodes/flyspell.el (flyspell-mode):
7886 * textmodes/ispell.el (ispell-minor-mode):
7887 * textmodes/nroff-mode.el (nroff-electric-mode):
7888 * textmodes/paragraphs.el (use-hard-newlines):
7889 * textmodes/refill.el (refill-mode):
7890 * textmodes/reftex.el (reftex-mode):
7891 * textmodes/rst.el (rst-minor-mode):
7892 * textmodes/sgml-mode.el (html-autoview-mode)
7893 (sgml-electric-tag-pair-mode):
7894 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7895 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7896 * emulation/crisp.el (crisp-mode):
7897 * emacs-lisp/eldoc.el (eldoc-mode):
7898 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7899 minor mode behavior.
7900
aa42ab43
JL
79012011-10-19 Juri Linkov <juri@jurta.org>
7902
7903 * descr-text.el (describe-char): Add #x2010 and #x2011 to
7904 the list of hard-coded chars with escape-glyph face.
7905
89400f1d
SM
79062011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7907
7908 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7909
305c07f6
MA
79102011-10-19 Michael Albinus <michael.albinus@gmx.de>
7911
7912 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7913 running process.
7914
13754b54
GM
79152011-10-19 Glenn Morris <rgm@gnu.org>
7916
7917 * vc/vc-bzr.el (vc-bzr-after-dir-status):
7918 Ignore ignored files. (Bug#9726)
7919
06e21633
CY
79202011-10-19 Chong Yidong <cyd@gnu.org>
7921
7922 Doc fix for minor modes, stating that an omitted argument enables
7923 the mode unconditionally when called from Lisp.
7924
7925 * abbrev.el (abbrev-mode):
7926 * allout.el (allout-mode):
7927 * autoinsert.el (auto-insert-mode):
7928 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7929 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7930 (global-auto-revert-mode):
7931 * battery.el (display-battery-mode):
7932 * composite.el (global-auto-composition-mode)
7933 (auto-composition-mode):
7934 * delsel.el (delete-selection-mode):
7935 * desktop.el (desktop-save-mode):
7936 * dired-x.el (dired-omit-mode):
7937 * dirtrack.el (dirtrack-mode):
7938 * doc-view.el (doc-view-minor-mode):
7939 * double.el (double-mode):
7940 * electric.el (electric-indent-mode, electric-pair-mode):
7941 * emacs-lock.el (emacs-lock-mode):
7942 * epa-hook.el (auto-encryption-mode):
7943 * follow.el (follow-mode):
7944 * font-core.el (font-lock-mode):
7945 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
7946 * help.el (temp-buffer-resize-mode):
7947 * hilit-chg.el (highlight-changes-mode)
7948 (highlight-changes-visible-mode):
7949 * hi-lock.el (hi-lock-mode):
7950 * hl-line.el (hl-line-mode, global-hl-line-mode):
7951 * icomplete.el (icomplete-mode):
7952 * ido.el (ido-everywhere):
7953 * image-file.el (auto-image-file-mode):
7954 * image-mode.el (image-minor-mode):
7955 * iswitchb.el (iswitchb-mode):
7956 * jka-cmpr-hook.el (auto-compression-mode):
7957 * linum.el (linum-mode):
7958 * longlines.el (longlines-mode):
7959 * master.el (master-mode):
7960 * mb-depth.el (minibuffer-depth-indicate-mode):
7961 * menu-bar.el (menu-bar-mode):
7962 * minibuf-eldef.el (minibuffer-electric-default-mode):
7963 * mouse-sel.el (mouse-sel-mode):
7964 * msb.el (msb-mode):
7965 * mwheel.el (mouse-wheel-mode):
7966 * outline.el (outline-minor-mode):
7967 * paren.el (show-paren-mode):
7968 * recentf.el (recentf-mode):
7969 * reveal.el (reveal-mode, global-reveal-mode):
7970 * rfn-eshadow.el (file-name-shadow-mode):
7971 * ruler-mode.el (ruler-mode):
7972 * savehist.el (savehist-mode):
7973 * scroll-all.el (scroll-all-mode):
7974 * scroll-bar.el (scroll-bar-mode):
7975 * server.el (server-mode):
7976 * shell.el (shell-dirtrack-mode):
7977 * simple.el (auto-fill-mode, transient-mark-mode)
7978 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
7979 (line-number-mode, column-number-mode, size-indication-mode)
7980 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
7981 * strokes.el (strokes-mode):
7982 * time.el (display-time-mode):
7983 * t-mouse.el (gpm-mouse-mode):
7984 * tool-bar.el (tool-bar-mode):
7985 * tooltip.el (tooltip-mode):
7986 * type-break.el (type-break-mode-line-message-mode)
7987 (type-break-query-mode):
7988 * view.el (view-mode):
7989 * whitespace.el (whitespace-mode, whitespace-newline-mode)
7990 (global-whitespace-mode, global-whitespace-newline-mode):
7991 * xt-mouse.el (xterm-mouse-mode): Doc fix.
7992
a3839de2
SM
7993 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7994 Fix autogenerated docstring.
06e21633 7995
5214e501
JL
79962011-10-19 Juri Linkov <juri@jurta.org>
7997
7998 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
7999 by checking environment variables "DESKTOP_SESSION" and
8000 "XDG_CURRENT_DESKTOP". (Bug#9779)
8001
195f8db9
JL
80022011-10-19 Juri Linkov <juri@jurta.org>
8003
8004 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
8005 (browse-url-chromium-program, browse-url-chromium-arguments):
8006 New defcustoms.
8007 (browse-url-default-browser): Check for `browse-url-chromium' and
8008 call `browse-url-chromium-program'.
8009 (browse-url-chromium): New command. (Bug#9779)
8010
343a34ff
JB
80112011-10-18 Juanma Barranquero <lekktu@gmail.com>
8012
8013 * facemenu.el (list-colors-duplicates): On Windows, detect more
8014 duplicates by assuming that only colors matching "^System" are
8015 special "system colors". (Bug#9722)
8016
6978a151
SM
80172011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8018
8019 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
8020 to distinguish the author from the committer.
8021
6a80b297
MA
80222011-10-18 Michael Albinus <michael.albinus@gmx.de>
8023
8024 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
8025
b31a5677
JK
80262011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
8027
8028 * international/mule.el (sgml-html-meta-auto-coding-function):
8029 Add support for detecting encoding in HTML5 specified only as
8030 <meta charset="UTF-8">. Implementation just makes http-equiv and
8031 content-type parts from HTML4 encoding string optional. (Bug#9716)
8032
80c6d77f
GM
80332011-10-18 Glenn Morris <rgm@gnu.org>
8034
8035 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
8036
08b0fee8
CY
80372011-10-18 Chong Yidong <cyd@gnu.org>
8038
8039 * faces.el (cursor): Doc fix.
8040
67e729a5
CY
80412011-10-17 Chong Yidong <cyd@gnu.org>
8042
8043 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
8044
343a34ff 80452011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
87e478b3
RB
8046
8047 * dirtrack.el (dirtrack): Support shell buffers with path
8048 prefixes, e.g. tramp-based remote shells. (Bug#9647)
8049
0bc06380
TZ
80502011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
8051
8052 * json.el: Bump version to 1.3 and note change in History.
8053 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
8054
8b79f3e0
SM
80552011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8056
5a7c536b
SM
8057 * comint.el (comint-insert-input, comint-send-input)
8058 (comint-get-old-input-default, comint-backward-matching-input)
8059 (comint-next-prompt): Use nil instead of `input' for field property of
8060 past user input (bug#114).
8061
96a8a0df
SM
8062 * minibuffer.el (completion--replace): Inherit surrounding properties
8063 (bug#114).
8064 (minibuffer-complete-and-exit): Use it.
8065
8b79f3e0
SM
8066 * comint.el (comint--table-subvert): Quote the all-completions output
8067 (bug#9160).
8068
b8f7ff0d
MR
80692011-10-17 Martin Rudalics <rudalics@gmx.at>
8070
8b79f3e0 8071 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
4e5c3d2b 8072
b8f7ff0d 8073 * menu-bar.el (menu-bar-file-menu): Add entry for making new
d912bdcf 8074 window on right of selected. (Bug#9350) Reword other window
b8f7ff0d
MR
8075 entries and separate them from frame entries.
8076
c235b555
GM
80772011-10-15 Glenn Morris <rgm@gnu.org>
8078
8079 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
8080 Doc fixes.
8081
6bbfa6e1
CY
80822011-10-15 Chong Yidong <cyd@stupidchicken.com>
8083
8b79f3e0
SM
8084 * net/network-stream.el (network-stream-open-starttls):
8085 Improve detection of failure due to lack of TLS support.
ec5c990d 8086
6bbfa6e1
CY
8087 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
8088 putting the input text in front and in bold.
8089
98488977
SM
80902011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8091
3d1337be
SM
8092 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
8093
ee0b45e4
SM
8094 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
8095 empty buffer.
8096
98488977
SM
8097 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
8098 unread-command-events rather than pushing yet-another event.
8099
186f4720
EZ
81002011-10-14 Eli Zaretskii <eliz@gnu.org>
8101
8102 * mail/sendmail.el (sendmail-query-once): Improve the wording of
8103 the explanation of the possible choices. Make the options passed
8104 to completing-read shorter.
8105
8b7a997c
AM
81062011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8107
8108 * textmodes/flyspell.el (flyspell-large-region): Make sure
8109 extended character mode is used if defined (Bug#1339).
8110
12587bbb
EZ
81112011-10-13 Eli Zaretskii <eliz@gnu.org>
8112
8113 * simple.el (what-cursor-position): Fix the display of the
e7e2364b
EZ
8114 character info for LRE, LRO, RLE, and RLO characters by appending
8115 an invisible PDF.
12587bbb 8116
bad41229
SM
81172011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8118
8119 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
8120 even in case of error; add debug spec; simplify data flow.
8121 (with-timeout-handler): Remove.
8122
28dbc92f
MA
81232011-10-12 Michael Albinus <michael.albinus@gmx.de>
8124
8125 Fix Bug#6019, Bug#9315.
8126
8127 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
8128 complete `buffer-file-name', the local file name part could look
8129 remotely (for example on VMS).
8130
8131 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
8132 `tramp-run-real-handler'.
8133 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
8134 already quoted by '"'.
8135
8136 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
8137 Let `file-name-handler-alist' be nil, the local file name part
8138 could look remotely (for example on VMS).
8139
e1b0b23a
SM
81402011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8141
8142 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8143 from here...
8144 (flyspell-post-command-hook): ...to here.
8145
a120bde9
SM
81462011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8147
8148 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8149 if not needed.
8150 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8151 using completion. Protect against "slow" callers.
8152 Remove the "message hack".
8153
7ce7717b
JL
81542011-10-11 Juri Linkov <juri@jurta.org>
8155
8156 * isearch.el (isearch-lazy-highlight-word): New variable.
8157 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8158 Use it. (Bug#9727)
8159
c02ee9d6
GM
81602011-10-11 Glenn Morris <rgm@gnu.org>
8161
8162 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8163 like f90-previous-statement does.
8164
93e616fd 81652011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8166
1f190e73 8167 * eshell/eshell.el (eshell-command): History should be saved
c02ee9d6
GM
8168 only in interactive use, to avoid error.
8169
af7b6078
SM
81702011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * minibuffer.el (completion-file-name-table): Fix last change,
8173 i.e. ignore normal errors but not the other ones.
8174
0563dae9
MR
81752011-10-10 Martin Rudalics <rudalics@gmx.at>
8176
8177 * window.el (special-display-buffer-names)
8178 (special-display-regexps): Remove some remnants of earlier
8179 changes from doc-strings.
366ca7f3
MR
8180 (quit-windows-on): New function.
8181
8182 * vc/vc.el (vc-revert, vc-rollback):
8183 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8184 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
9ac13c31 8185 (Bug#6183) (Bug#7074) (Bug#7447)
0563dae9 8186
49677495
MR
81872011-10-09 Martin Rudalics <rudalics@gmx.at>
8188
8189 * window.el (frame-auto-hide-function): Add version tag.
8190 (Bug#9699)
8191
56f2d1e1
MA
81922011-10-09 Michael Albinus <michael.albinus@gmx.de>
8193
8194 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8195 condition.
8196
112a6592
LL
81972011-10-09 Leo Liu <sdl.web@gmail.com>
8198
8199 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8200 (Bug#9701)
8201
0812589b
GM
82022011-10-08 Glenn Morris <rgm@gnu.org>
8203
8204 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8205 before the first code statement zero indent. (Bug#9690)
8206
b2b0776e
CY
82072011-10-08 Chong Yidong <cyd@stupidchicken.com>
8208
8209 * simple.el (count-words-region): Always count in the region.
8210 Report the number of lines and characters too.
8211 (count-words): New command, which counts in the buffer if the
8212 region is inactive, as count-words-region used to.
8213 (count-words--message): New function. Handle plurals.
8214 (count-lines-region): Make it an alias for count-words-region.
8215
8216 * bindings.el (esc-map): Replace count-lines-region with
8217 count-words-region.
8218
c557cd6b
MR
82192011-10-08 Martin Rudalics <rudalics@gmx.at>
8220
8221 * window.el (window--delete): Delete dedicated frame
8222 unconditionally when argument KILL is non-nil. (Bug#9699)
235ce86f 8223 (switch-to-buffer): Fix doc-string typo.
c557cd6b 8224
61a57ef4 82252011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8226
3a7d293b 8227 * eshell/eshell.el (eshell-command): Avoid using hooks.
61a57ef4 8228
c3833279
CY
82292011-10-07 Chong Yidong <cyd@stupidchicken.com>
8230
8231 * bindings.el ([M-left],[M-right]): Bind to left-word and
8232 right-word respectively.
8233
21ce8245
GM
82342011-10-07 Glenn Morris <rgm@gnu.org>
8235
8236 * cus-start.el (debug-on-quit): Fix custom type.
8237
6d823bb2
LMI
82382011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8239
0181e193
LMI
8240 * subr.el (define-key-after): Clarify that the function is not
8241 useful for non-menu keymaps.
8242
6d823bb2
LMI
8243 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8244
8e3459ce 82452011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8246
21ce8245 8247 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8e3459ce 8248 in current minibuffer (Fix bug with recursive minibuffers).
8249
a1c2d21e
CY
82502011-10-06 Chong Yidong <cyd@stupidchicken.com>
8251
8252 * progmodes/gdb-mi.el (gdb): Doc fix.
8253
5a4cf282
MR
82542011-10-05 Martin Rudalics <rudalics@gmx.at>
8255
8256 * window.el (frame-auto-hide-function): New option replacing
8257 frame-auto-delete. Suggested by Stefan Monnier.
8258 (window--delete): Call frame-auto-hide-function instead of
8259 investigating frame-auto-delete.
c96111ea
MR
8260 (window-point-1, set-window-point-1): New functions.
8261 (window-in-direction, record-window-buffer, window-state-get-1)
8262 (display-buffer-record-window): Use window-point-1 instead of
8263 window-point.
8264 (set-window-buffer-start-and-point): Use set-window-point-1.
5a4cf282 8265
9854542e
SM
82662011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8267
8268 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8269
8943cfb0
GM
82702011-10-05 Glenn Morris <rgm@gnu.org>
8271
8272 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8273 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8274
647ab967
LL
82752011-10-05 Leo Liu <sdl.web@gmail.com>
8276
8277 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8278 works with buffer object.
8279
3ddfbced
SM
82802011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8281
8282 * mpc.el (mpc-tool-bar-map): Add labels.
8283
bdfa5dd2
GM
82842011-10-04 Glenn Morris <rgm@gnu.org>
8285
8286 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8287
0e2070b5
MR
82882011-10-04 Martin Rudalics <rudalics@gmx.at>
8289
8290 * window.el (window--delete): New function.
8291 (frame-auto-delete): Resuscitate option.
8292 (bury-buffer, replace-buffer-in-windows)
8293 (quit-window): Rewrite using window--delete.
8294 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8295 Pass display-buffer-mark-dedicated to window--display-buffer-2
8296 (Bug#9639).
8297
3dc61a09
SM
82982011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8299
915a9b64
SM
8300 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8301 returns a list (bug#9554). Add remote file name completion.
8302 * comint.el (comint--table-subvert): Curry and get quote&unquote
8303 functions as arguments.
8304 (comint--complete-file-name-data): Adjust call accordingly.
8305 * pcomplete.el (pcomplete--table-subvert): Remove.
8306 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8307
3dc61a09
SM
8308 * minibuffer.el (completion-table-case-fold): Use currying.
8309 (completion--styles-type, completion--cycling-threshold-type):
8310 New constants.
8311 (completion-styles, completion-category-overrides)
8312 (completion-cycle-threshold): Use them.
8313 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8314 completion-table-case-fold.
8315
8ea0a993
SB
83162011-10-03 Stephen Berman <stephen.berman@gmx.net>
8317
8318 * minibuffer.el (completion-category-overrides): Fix type of styles
8319 and add more user friendly tags (bug#9660).
8320
8c24b7f6
SM
83212011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8322
8323 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8324 (mule-input-method-string): New widget.
8325 (default-input-method, language-info-custom-alist): Use it.
8326
428fe61a
SM
83272011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8328
32c1fffd
SM
8329 * pcomplete.el: Require comint.
8330 (pcomplete--common-suffix): Remove.
8331 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8332 (pcomplete--table-subvert): Sync with comint--table-subvert.
8333 (pcomplete--entries): Use comint-completion-file-name-table.
8334 * comint.el (comint-unquote-filename): Simplify.
8335 (comint-completion-file-name-table): New function (bug#9616).
8336 (comint--complete-file-name-data): Use it.
8337
428fe61a
SM
8338 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8339 (pcmpl-gnu-tar-buffer): Remove.
8340 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
9aaf2b9c
GM
8341 around. Make sure pcomplete-suffix-list is only changed temporarily.
8342 Don't look inside the tar's file if it's too large.
428fe61a 8343
04c52e2f
CY
83442011-10-01 Chong Yidong <cyd@stupidchicken.com>
8345
ce3cefcc
CY
8346 * cus-edit.el (custom-mode-map):
8347 * epa.el (epa-key-list-mode-map):
8348 * man.el (Man-mode-map):
8349 * startup.el (splash-screen-keymap):
8350 * simple.el (special-mode-map): Use scroll-up-command and
8351 scroll-down-command.
8352
8353 * progmodes/idlw-help.el (idlwave-help-mode-map):
8354 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8355 * net/newst-plainview.el (newsticker-mode-map):
8356 * emulation/ws-mode.el (wordstar-mode-map):
8357 * emulation/vi.el (vi-com-map):
8358 * calc/calc-graph.el (calc-graph-show-dumb):
8359 * term/sun.el (terminal-init-sun):
8360 * term/ns-win.el (global-map):
8361 * progmodes/grep.el (grep-mode-map):
8362 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8363 * mail/rmail.el (rmail-mode-map):
8364 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8365
04c52e2f
CY
8366 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8367 custom-safe-themes as special.
8368
79adf8c8
JD
83692011-10-01 Julien Danjou <julien@danjou.info>
8370
8371 * notifications.el (notifications-notify): Fix docstring.
8372
63bd50d3
PS
83732011-10-01 Per Starbäck <per@starback.se>
8374
8375 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8376
199e4c7e
MR
83772011-09-30 Martin Rudalics <rudalics@gmx.at>
8378
8379 * startup.el (command-line-1): Fix last fix by inserting
8380 initial-scratch-message into *scratch* before displaying it.
cbc5ee22 8381 (Bug#9605) and (Bug#9636)
199e4c7e 8382
fe5f08dd
EZ
83832011-09-29 Eli Zaretskii <eliz@gnu.org>
8384
8385 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8386 window is hscrolled, move by logical lines. (Bug#9607)
8387 (line-move-visual): Update the doc string to the above effect.
8388
b5516bbd
MR
83892011-09-29 Martin Rudalics <rudalics@gmx.at>
8390
ccee00c0
MR
8391 * window.el (display-buffer-record-window): When WINDOW is the
8392 selected window use `point' instead of `window-point'. (Bug#9626)
8393
b5516bbd
MR
8394 * startup.el (command-line-1): Use insert-before-markers when
8395 inserting initial-scratch-message. (Bug#9605)
ccee00c0 8396
b5516bbd
MR
8397 * help.el (help-window): Remove variable.
8398
52aa0014
GM
83992011-09-29 Glenn Morris <rgm@gnu.org>
8400
8401 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8402
df9a7357
JB
84032011-09-29 Juanma Barranquero <lekktu@gmail.com>
8404
8405 * descr-text.el (describe-char-categories): Accept category
8406 descriptions more than one line long.
8407
a8406c20
SM
84082011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8409
88d9610c
SM
8410 * simple.el (delete-trailing-whitespace): Fix last change.
8411
a5daf810
SM
8412 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8413 Don't confuse "y => 3" as the beginning of a `y' operation.
8414
a8406c20
SM
8415 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8416 object has more than 4 slots (bug#9613).
8417
a239d4e9
JB
84182011-09-28 Juanma Barranquero <lekktu@gmail.com>
8419
8420 * subr.el (with-output-to-temp-buffer):
8421 * net/quickurl.el (quickurl, quickurl-browse-url):
8422 Fix typos in docstrings.
8423
693fbdb6
EZ
84242011-09-27 Eli Zaretskii <eliz@gnu.org>
8425
8426 * minibuffer.el (completion-styles)
8427 (completion-category-overrides): Cross reference each other in doc
8428 strings.
8429
8b457e28
GM
84302011-09-27 Glenn Morris <rgm@gnu.org>
8431
8432 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8433 to split-string. (Bug#9606)
8434
85a16208
LMI
84352011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8436
8437 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8438 (bug#9615).
8439
502f9ebd
CY
84402011-09-27 Chong Yidong <cyd@stupidchicken.com>
8441
8442 * emacs-lisp/package.el (list-packages): Fix echo area message.
8443
7690bdea
LL
84442011-09-27 Leo Liu <sdl.web@gmail.com>
8445
8446 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8447
e2ee6f30
MA
84482011-09-25 Michael Albinus <michael.albinus@gmx.de>
8449
8450 * net/dbus.el (dbus-unregister-object): Don't release services for
8451 registered signals. (Bug#9581)
8452
f3f98342
TZ
84532011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8454
8455 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8456 function that picks between cfengine 2 and 3 support
8457 automatically. Update docs accordingly.
8458
dd7aa8dd
KH
84592011-09-22 Kenichi Handa <handa@m17n.org>
8460
8461 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8462 ZERO.
8463 (indian-itrans-v5-table-for-tamil): New variable.
8464 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8465
3f2b07f8
KM
84662011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8467
8468 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8469 that's true if the current command involved collapsing of text.
8470 It's reset to false at the beginning of the next command.
8471 (allout-post-command-business): Move the cursor to the beginning
8472 of entry if the cursor is hidden and collapsing activity just
8473 happened.
8474
371d6a61
CY
84752011-09-24 Chong Yidong <cyd@stupidchicken.com>
8476
8477 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8478 tracking (Bug#9541).
8479
2ac2721a
UJ
84802011-09-24 Ulf Jasper <ulf.jasper@web.de>
8481
8482 * net/newst-reader.el (newsticker-html-renderer)
1154d12e
JB
8483 (newsticker-show-news): Automatically load html rendering package
8484 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8485 because w3m-fill-column is let-bound" and the error "Symbol's value
8486 as variable is void: w3m-fill-column".
2ac2721a 8487
fac7ae53
MA
84882011-09-24 Michael Albinus <michael.albinus@gmx.de>
8489
8490 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8491 Release services only if they are defined. (Bug#9581)
8492
e08b633b
RS
84932011-09-23 Richard Stallman <rms@gnu.org>
8494
e488d29c
RS
8495 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8496 distinguish start of paragraph from start of its text.
8497
19c38752
RS
8498 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8499
e08b633b
RS
8500 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8501 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8502 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8503
0a39f27e
AS
85042011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8505
8506 * international/mule-diag.el (mule-diag): Insert a newline after
8507 each fontset description.
8508
db4e950d
SM
85092011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * simple.el (delete-trailing-whitespace):
8512 Document last change; simplify.
8513
eca3f3ea
PW
85142011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8515
d68e189a
PW
8516 * simple.el (delete-trailing-whitespace): Also delete
8517 extra newlines at the end of the buffer.
8518
eca3f3ea
PW
8519 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8520 (picture-newline): Use forward-line so as to ignore fields.
8521
01c157cc
SM
85222011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8523
8524 * subr.el (with-wrapper-hook): Fix edebug spec.
8525
022de23e
LMI
85262011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8527
8528 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8529 (bug#4538).
8530
91683089
MA
85312011-09-23 Michael Albinus <michael.albinus@gmx.de>
8532
eca3f3ea
PW
8533 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8534 Fix nasty bug using wrong cached values.
91683089 8535
5bdd6fa4
AM
85362011-09-23 Alan Mackenzie <acm@muc.de>
8537
8538 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8539
97adfb97
CY
85402011-09-23 Chong Yidong <cyd@stupidchicken.com>
8541
8542 * window.el (pop-to-buffer): Ensure right window is selected if we
8543 chose another frame.
8544
d4ef2b50
EZ
85452011-09-22 Eli Zaretskii <eliz@gnu.org>
8546
8547 * simple.el (what-cursor-position): Use get-char-property-change
8548 and next-single-char-property-change, to be able to show display
8549 properties that come from overlays as well as text properties.
8550
72258fe5
CY
85512011-09-22 Chong Yidong <cyd@stupidchicken.com>
8552
8553 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8554
8555 * cmuscheme.el (run-scheme, switch-to-scheme):
8556 * cus-edit.el (customize-group, custom-buffer-create)
8557 (customize-browse):
8558 * info.el (info):
8559 * shell.el (shell):
8560 * mail/sendmail.el (mail):
8561 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8562
8f098516
RS
85632011-09-22 Richard Stallman <rms@gnu.org>
8564
8565 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8566 move back only to line beg, don't move back over blank lines.
8567
e74f1bb6
MA
85682011-09-22 Michael Albinus <michael.albinus@gmx.de>
8569
8570 * files.el (copy-directory): Set directory attributes only in case
8571 they could be retrieved from the source directory. (Bug#9565)
8572
bfeef8b6
DK
85732011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8574
8575 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8576 (hs-find-block-beginning, hs-hide-level-recursive):
8577 Ignore strings as well as comments. (Bug#9502)
8578
7e423bb8
AS
85792011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
8580
8581 * progmodes/sql.el (sql-comint-postgres):
8582 Convert port number to a string. (Bug#9566)
8583
b4d72fcf
MR
85842011-09-22 Martin Rudalics <rudalics@gmx.at>
8585
8586 * window.el (quit-window): Undedicate window when switching to
8587 previous buffer. Reported by Thierry Volpiatto
8588 <thierry.volpiatto@gmail.com>.
7f80c86d
MR
8589 (special-display-popup-frame): When popping up a new frame reset
8590 its previous buffers to nil. Simplify code.
b4d72fcf 8591
a7b88dc6
MA
85922011-09-21 Michael Albinus <michael.albinus@gmx.de>
8593
8594 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
8595 and process filter, as done also in `shell-command'.
8596
cf4eacfd
MR
85972011-09-21 Martin Rudalics <rudalics@gmx.at>
8598
eca3f3ea 8599 * window.el (set-window-buffer-start-and-point):
1154d12e
JB
8600 Call set-window-start with NOFORCE argument t.
8601 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
cf4eacfd
MR
8602 (quit-window): Reword doc-string. Handle new format of
8603 quit-restore parameter. Don't delete window if it has a
8604 previous buffer we can show instead of the present one.
8605 (display-buffer-record-window): Rewrite using a new format for
8606 the quit-restore window parameter
8607 (special-display-popup-frame, display-buffer-same-window)
8608 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8609 (display-buffer-pop-up-window, display-buffer-use-some-window):
8610 Adapt symbol passed to display-buffer-record-window.
8611 * help.el (help-window-setup): Handle new format of quit-restore
8612 parameter.
8613
8d28cb95
SM
86142011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8615
94ab793f
SM
8616 * faces.el (face-list): Fix docstring (bug#9564).
8617
8d28cb95
SM
8618 * window.el (display-buffer--action-function-custom-type):
8619 Don't include internal functions in the Custom interface.
8620
3820edeb
JL
86212011-09-20 Juri Linkov <juri@jurta.org>
8622
8623 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
8624 (Info-forward-node, Info-backward-node, Info-next-preorder)
8625 (Info-last-preorder): Use it. (Bug#9528)
8626
5147931d
JL
86272011-09-20 Juri Linkov <juri@jurta.org>
8628
8629 * info.el (Info-last-preorder): Visit last menu item only when
8630 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
8631
cf499a1a
JD
86322011-09-20 Julien Danjou <julien@danjou.info>
8633
8634 * password-cache.el (password-cache-remove): Remove entries even if the
8635 value is nil, so that password with a nil value (negative caching) is
8636 possible to invalidate.
8637
f84e2fe2
LM
86382011-09-20 Lawrence Mitchell <wence@gmx.li>
8639
8640 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
8641 all whitespace around breakpoint. (Bug#9553)
8642 (f90-find-breakpoint): Only break at whitespace inside a comment.
8643
78054a46
SM
86442011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8645
8646 * minibuffer.el (completion-file-name-table): Keep track of errors.
8647 (completion-table-with-predicate): Handle the case where pred1 is nil.
8648 * pcomplete.el (pcomplete-completions-at-point): Simplify.
8649
345083b2
SM
86502011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8651
e24e27be
SM
8652 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8653 (debugger-return-value): Signal an error if the debugging context does
8654 not await any return value.
8655
345083b2
SM
8656 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8657 * image-mode.el (image-toggle-display-text)
8658 (image-toggle-display-image): Stay away from evil `intangible'.
8659
08d355e3
LL
86602011-09-19 Leo Liu <sdl.web@gmail.com>
8661
8662 * replace.el (occur-revert-arguments): Make it permanent-local.
8663 (occur-mode): Don't call font-lock-defontify.
8664
f01da43f
CY
86652011-09-19 Chong Yidong <cyd@stupidchicken.com>
8666
8667 * net/ldap.el (ldap-search-internal): Don't push empty search
8668 result (Bug#9508).
8669
b6072fa6
SM
86702011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8671
8672 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8673
443d6696
MA
86742011-09-19 Michael Albinus <michael.albinus@gmx.de>
8675
8676 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8677 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8678
7cc6e154
JL
86792011-09-18 Juri Linkov <juri@jurta.org>
8680
8681 * buff-menu.el (Buffer-menu-mode-map):
8682 * dired.el (dired-mode-map):
8683 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8684 (lisp-interaction-mode-map):
8685 * emacs-lisp/package.el (package-menu-mode-map):
8686 * epa.el (epa-key-list-mode-map):
8687 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8688 (menu-bar-options-menu):
8689 * outline.el (outline-mode-menu-bar-map):
8690 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8691 * vc/vc-dir.el (vc-dir-menu-map):
8692 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8693 Capitalize non-function content words in menu item strings.
8694
8695 * dired.el (dired-mode-map): Add menu item for
8696 `image-dired-dired-toggle-marked-thumbs'.
8697
80302a81
JL
86982011-09-18 Juri Linkov <juri@jurta.org>
8699
8700 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8701 to `isearch-case-fold-search' and restore its original value
8702 after the `isearch-mode' call.
8703
46c5cf66
JL
87042011-09-18 Juri Linkov <juri@jurta.org>
8705
8706 * progmodes/grep.el (grep-process-setup): Don't check code for 1
8707 because `zgrep' returns 1 for successful matches (bug#9226).
8708
d18b513b
JL
87092011-09-18 Juri Linkov <juri@jurta.org>
8710
8711 * info.el (Info-extract-menu-node-name): Check the second match
8712 for empty string (second test-case of bug#9528).
8713 (Info-last-preorder): Let-bind `Info-history' to nil to not add
8714 intermediate nodes to the history (first test-case of bug#9528).
8715
72753f87
JL
87162011-09-18 Juri Linkov <juri@jurta.org>
8717
8718 * info.el (Info-mode-syntax-table): New variable.
1154d12e 8719 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
72753f87 8720
c9384295
JL
87212011-09-18 Juri Linkov <juri@jurta.org>
8722
1154d12e
JB
8723 * info.el (Info-file-supports-index-cookies):
8724 Increment line-beginning-position's arg from 3 to 4 because makeinfo
8725 outputs one more line for long file names (bug#4142).
c9384295 8726
d473dce8
CY
87272011-09-18 Chong Yidong <cyd@stupidchicken.com>
8728
8729 * newcomment.el (comment-normalize-vars): If prompting for
8730 comment-start, set comment-start-skip too (Bug#8424).
8731
2176854d
JB
87322011-09-18 Johan Bockgård <bojohan@gnu.org>
8733
8734 * icomplete.el: Fix previous fix of Bug#5849.
8735 (icomplete-mode): Don't set completion-show-inline-help.
8736 (icomplete-minibuffer-setup): Set completion-show-inline-help
8737 locally during icompletion.
8738
3aace4e4
CY
87392011-09-18 Chong Yidong <cyd@stupidchicken.com>
8740
c940224f
CY
8741 * woman.el (woman2-process-escapes): Don't delete unrecognized
8742 escapes (Bug#7843).
8743
3aace4e4
CY
8744 * files.el (inhibit-first-line-modes-regexps): Add image files.
8745 (hack-local-variables-prop-line): Return nil for malformed
8746 prop-lines (Bug#9044).
8747
710dec63
MA
87482011-09-18 Michael Albinus <michael.albinus@gmx.de>
8749
8750 * net/tramp.el (top): Don't require 'shell.
8751 (tramp-methods): Fix docstring.
8752 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8d28cb95
SM
8753 Return complete remote file name. Handle "smb" case.
8754 Use `tramp-tmpdir', if defined for the respective method.
710dec63
MA
8755 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8756
8757 * net/tramp-compat.el (top): Require 'shell.
8758
8759 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8760 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8761 `tramp-current-host'.
8762 (tramp-get-remote-tmpdir): Remove.
8763
8764 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8765 `tramp-tmpdir' entries.
8766 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8767 (tramp-smb-handle-file-attributes): Ignore errors.
8768 (tramp-smb-wait-for-output): Check also for process end.
8769
5d5ac8ec
LMI
87702011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8771
8772 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8773 when sending QUIT (bug#9312).
8774
8c0f49f0
CY
87752011-09-17 Chong Yidong <cyd@stupidchicken.com>
8776
8777 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
8778 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
8779 occur-mode-display-occurrence.
8780 (occur-edit-mode): Add usage message.
8781 (occur-cease-edit): New command.
8782 (occur-after-change-function): Use text properties to find the
8783 position of the prefix text.
8784 (occur-engine): Set stickiness of prefix text properties.
8785
8f1383f7
GM
87862011-09-17 Glenn Morris <rgm@gnu.org>
8787
8788 * progmodes/etags.el (complete-tag):
8789 Fix call to completion-in-region. (Bug#9526)
8790
744ba0e3
JL
87912011-09-17 Juri Linkov <juri@jurta.org>
8792
8793 * textmodes/ispell.el (ispell-word): Add to the error message
8794 the word, ispell program name and current dictionary (bug#9121).
8795 (ispell-tex-arg-end): Capitalize "error" in the error message.
8796
d9bbf400
AS
87972011-09-17 Andreas Schwab <schwab@linux-m68k.org>
8798
8799 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8800 check. (Bug#4251)
8801
8da11505
JL
88022011-09-17 Juri Linkov <juri@jurta.org>
8803
8804 * window.el (window-safe-min-height, window-safe-min-width):
8805 Fix typos (followup to bug#9522).
8806
a91adc7e
SJ
88072011-09-17 Sven Joachim <svenjoac@gmx.de>
8808
8809 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8810
064f328a
EZ
88112011-09-16 Eli Zaretskii <eliz@gnu.org>
8812
8813 * simple.el (line-move): If goal-column is set, move by logical
8814 lines, not by display lines. (Bug#971)
8815 (next-line, previous-line, goal-column, line-move-visual): Doc fix
8816 to reflect the above change.
8817
e69df516
SM
88182011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8819
8820 * image.el (imagemagick-register-types): Use regexp-opt.
8821
cbb0f9ab
CY
88222011-09-15 Chong Yidong <cyd@stupidchicken.com>
8823
8824 * window.el (display-buffer-base-action): Rename from
8825 display-buffer-default-action. Make default value empty.
8826 (display-buffer-overriding-action): Convert to defvar.
8827 (display-buffer-fallback-action): New var.
8828
25322144
CY
88292011-09-15 Chong Yidong <cyd@stupidchicken.com>
8830
8831 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8832 declaration.
8833 (package--add-to-archive-contents): If there is a duplicate entry
8834 with an older version, remove it.
8835 (package-menu-mark-delete, package-menu-mark-install)
8836 (package-menu-mark-unmark): Make unused args optional.
e69df516
SM
8837 (package-menu-mark-obsolete-for-deletion):
8838 Use package-menu-get-status instead of a regexp search.
25322144
CY
8839 (package-menu-get-status): Use tabulated-list-entry.
8840 (package-menu-mark-upgrades): New command.
d770725a 8841 (package-menu-mode-map): Bind it to U. Add it to menu bar.
25322144
CY
8842 (package-menu-execute): Do installation before deletion.
8843 (package-menu-refresh, package-menu-execute): Use derived-mode-p
8844 instead of checking major-mode.
8845 (package-menu--find-upgrades): New function.
8846
7520339c
LMI
88472011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8848
8849 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8850 passwords in the log buffer.
65a046c4
LMI
8851 (smtpmail-process-filter): Update the process marker so that the
8852 "broken by peer" status message is inserted in the right place.
7520339c 8853
d3c30954
SM
88542011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8855
3fe48822
SM
8856 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8857 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8858 bibtex-completion-at-point-function.
8859 (bibtex-completion-at-point-function): Use them.
8860
1b8b3954
SM
8861 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8862
d3c30954
SM
8863 * mpc.el (mpc-constraints-tag-lookup): New function.
8864 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8865 also to browser "album|playlist".
8866
72779976
JL
88672011-09-14 Juri Linkov <juri@jurta.org>
8868
8869 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
8870 (isearch-edit-string): Use length of `isearch-string' when
8871 `isearch-fail-pos' returns nil.
8872 (isearch-message): Remove duplicate code and call
8873 `isearch-fail-pos' with arg `t'.
8874
a0bf2bcd
CY
88752011-09-14 Chong Yidong <cyd@stupidchicken.com>
8876
17bb0a2d
CY
8877 * replace.el (occur-mode-goto-occurrence): Don't force using other
8878 window (Bug#9499).
8879
a0bf2bcd
CY
8880 * dired-aux.el (dired-do-chmod): Don't provide initial input.
8881
f678e0b6
MR
88822011-09-14 Martin Rudalics <rudalics@gmx.at>
8883
8884 * window.el (display-buffer-window): Remove.
8885 (display-buffer-record-window): Use help-setup window parameter
8886 instead of variable display-buffer-window.
8887 (display-buffer-function, special-display-buffer-names)
8888 (special-display-function): Mention help-setup parameter instead
8889 of display-buffer-window in doc-string.
d3c30954
SM
8890 * help.el (help-window-setup): New argument help-window.
8891 Use help-window-setup parameter instead of display-buffer-window.
f678e0b6
MR
8892 Reword some messages.
8893 (with-help-window): Pass window used for displaying the buffer
8894 to help-window-setup. Don't set display-buffer-window.
8895
8e39b2e8
GM
88962011-09-13 Glenn Morris <rgm@gnu.org>
8897
8898 * emacs-lisp/debug.el (debugger-make-xrefs):
8899 Preserve point. (Bug#9462)
8900
85e9c04b
CY
89012011-09-13 Chong Yidong <cyd@stupidchicken.com>
8902
8903 * window.el (window-deletable-p): Use next-frame.
8904
1b36ed6a
MR
89052011-09-13 Martin Rudalics <rudalics@gmx.at>
8906
8907 * window.el (window-auto-delete): Remove.
8908 (window-deletable-p): Remove argument FORCE. Don't deal with
e4769531 8909 dedication and previous buffers.
1b36ed6a
MR
8910 (switch-to-prev-buffer): Don't delete window.
8911 (delete-windows-on): Delete a window's frame if and only if the
8912 window is dedicated.
8913 (replace-buffer-in-windows): Delete buffer's window or frame if
8914 and only if window is dedicated.
8915 (quit-window): Handle quit-restore as before last change.
4d61f28d 8916 (bury-buffer): Delete window only if window-deletable-p returns t.
1b36ed6a 8917
ef8ef9fb
CY
89182011-09-13 Chong Yidong <cyd@stupidchicken.com>
8919
8920 * window.el (window-deletable-p): Never delete the last frame on a
8921 given terminal.
8922
b2cba41e
GM
89232011-09-13 Glenn Morris <rgm@gnu.org>
8924
8925 * help.el (describe-key-briefly): Copy previous standard-output change.
8926
51553db6 89272011-09-13 PJ Weisberg <pj@irregularexpressions.net>
e3ce671f
PW
8928
8929 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
8930
b7556719
GM
89312011-09-13 Glenn Morris <rgm@gnu.org>
8932
8933 * emacs-lisp/lisp-mode.el (lisp-indent-function):
8934 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8935
64b51947
CY
89362011-09-12 Chong Yidong <cyd@stupidchicken.com>
8937
8938 * dired-aux.el (dired-mark-read-string): Don't return default
8939 value on empty input (Bug#9361).
8940 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
8941 Omit initial minibuffer contents.
8942 (dired-do-chmod): Signal an error on empty input.
8943 (dired-mark-read-string): Don't return default on empty input.
8944
8945 * files.el (file-modes-symbolic-to-number): Doc fix.
8946
393a301e
SM
89472011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
8948
8949 * international/mule-cmds.el (ucs-completions): Remove.
8950 (read-char-by-name): Use complete-with-action instead; add metadata.
8951
fa5660f9
CY
89522011-09-11 Chong Yidong <cyd@stupidchicken.com>
8953
8954 * window.el (display-buffer--action-function-custom-type)
8955 (display-buffer--action-custom-type): New vars.
8956 (display-buffer-alist, display-buffer-default-action)
8957 (display-buffer-overriding-action): Add defcustom types.
8958
4a592f66
CY
8959 * frame.el (delete-other-frames): Doc fix (Bug#276).
8960
73d56dbd
LMI
89612011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8962
8963 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
8964
37ac18a3
CY
89652011-09-11 Chong Yidong <cyd@stupidchicken.com>
8966
8967 Change modes that used same-window-* vars to use switch-to-buffer.
8968
8969 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
8970 Use switch-to-buffer.
8971
8972 * cus-edit.el (customize-group, custom-buffer-create)
393a301e
SM
8973 (customize-browse, custom-buffer-create-other-window):
8974 Use switch-to-buffer or switch-to-buffer-other-window.
37ac18a3
CY
8975
8976 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
8977 (Info-prev, Info-up, Info-speedbar-goto-node)
8978 (info-display-manual): Use switch-to-buffer.
8979 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
8980
8981 * mail/sendmail.el (mail): Use switch-to-buffer.
8982 (mail-recover): Use switch-to-buffer-other-window.
8983
8984 * cmuscheme.el (run-scheme, switch-to-scheme):
8985 * ielm.el (ielm):
8986 * shell.el (shell):
8987 * net/rlogin.el (rlogin):
8988 * net/telnet.el (telnet, rsh):
8989 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
8990
10195bd6
AS
89912011-09-11 Andreas Schwab <schwab@linux-m68k.org>
8992
8993 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
8994
b322f63a
LMI
89952011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
8996
39d7fed6
LMI
8997 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
8998 so don't mention it (bug#9301).
ba5a81f1 8999 (dired-sort-toggle-or-edit): Clarify string further.
39d7fed6 9000
ee0e9f11
LMI
9001 * faces.el (face-spec-set-match-display): Make `(type graphic)'
9002 match `x', `w32' and `ns', like the manual says (bug#9029).
9003
0b1c89c1 9004 * subr.el (eval-after-load): Doc string clarification (bug#9125).
da9fcb93
LMI
9005 (process-kill-buffer-query-function): Mention the buffer name in
9006 the query.
0b1c89c1 9007
77549ea8
LMI
9008 * image-mode.el (image-next-line): The line parameter is mandatory
9009 (bug#9258).
9010
803ef892
LMI
9011 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
9012 which can be useful (bug#9301).
9013
12980837
LMI
9014 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
9015
91054f8f
LMI
9016 * subr.el (match-string): Mention that the current buffer should
9017 be the same as the search was done in (bug#9282).
9018
b322f63a
LMI
9019 * facemenu.el: Disable the remove-* commands if the mark isn't
9020 active (bug#9162).
9021
3199b96f
CY
90222011-09-10 Chong Yidong <cyd@stupidchicken.com>
9023
9024 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
9025 of display-buffer.
9026 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
9027
9028 * replace.el (occur-mode-goto-occurrence)
9029 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
9030 and display-buffer.
9031
9032 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
9033 display-buffer.
9034
9035 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
9036 special-display and same-window variables.
9037 (mail-other-window): Use switch-to-buffer-other-window.
9038 (mail-other-frame): USe switch-to-buffer-other-frame.
9039
393a301e
SM
9040 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
9041 Use display-buffer-other-frame.
3199b96f
CY
9042 (gdb-display-gdb-buffer): Use pop-to-buffer.
9043
9044 * progmodes/gud.el (gud-goto-info): Use info-other-window.
9045
9046 * progmodes/python.el: Don't set same-window-buffer-names.
9047
9048 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
9049
9050 * window.el (display-buffer-alist): Add *Python*.
9051
8319e0bf
CY
90522011-09-10 Chong Yidong <cyd@stupidchicken.com>
9053
9054 * window.el (display-buffer-alist): Add entry for buffers
9055 previously handled same-window-*.
9056 (display-buffer-alist, display-buffer-default-action)
9057 (display-buffer-overriding-action): Mark as risky.
9058 (display-buffer-alist): Document action function changes.
9059 (display-buffer--same-window-action)
9060 (display-buffer--other-frame-action): New variables.
9061 (switch-to-buffer, display-buffer-other-frame): Use them.
9062 (display-buffer): Rename reuse-frame entry to reusable-frames.
9063 (display-buffer-reuse-selected-window): Function deleted.
9064 (display-buffer-reuse-window): Handle reusable-frames alist entry.
9065 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
9066 (display-buffer-special): New function.
9067 (display-buffer--maybe-pop-up-frame-or-window): Rename from
9068 display-buffer-reuse-or-pop-window. Split off special-display
9069 part into display-buffer-special.
9070 (display-buffer-use-some-window): Don't perform any special
9071 pop-up-frames handling.
9072 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
393a301e 9073 (display-buffer--maybe-same-window): Rename from
0d3ff375 9074 display-buffer-maybe-same-window.
8319e0bf 9075
919a69aa
CY
9076 * info.el: Don't set same-window-regexps.
9077 (info-setup): New function.
9078 (info-other-window, info): Call it.
9079
9080 * cus-edit.el: Don't set same-window-regexps.
9081 (customize-group): New argument.
9082 (customize-group-other-window): Use it.
9083 (customize-face, customize-face-other-window): Likewise.
9084 (custom-buffer-create-other-window): Use pop-to-buffer directly.
9085
8319e0bf
CY
9086 * net/rlogin.el:
9087 * net/telnet.el:
9088 * progmodes/gud.el: Don't set same-window-regexps.
9089
9090 * cmuscheme.el:
9091 * ielm.el:
9092 * shell.el:
9093 * mail/sendmail.el:
9094 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
9095
25173000
JL
90962011-09-10 Juri Linkov <juri@jurta.org>
9097
9098 * isearch.el (isearch-edit-string): Remove obsolete mention of
9099 `C-w' (`isearch-yank-word-or-char') from docstring.
9100 (isearch-query-replace): Fix typo in docstring (bug#9466).
9101
056e44ef
JL
91022011-09-10 Juri Linkov <juri@jurta.org>
9103
9104 * paren.el (show-paren-function): Don't show escaped parens.
9105 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
9106
c3760c17
EZ
91072011-09-10 Eli Zaretskii <eliz@gnu.org>
9108
9109 * mail/sendmail.el (mml-to-mime, mml-attach-file)
9110 (mm-default-file-encoding): Remove autoload forms, they are
9111 replaced with autoload cookies in mml.el and mm-encode.el.
9112 (mail-add-attachment): New command.
9113 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
9114 (mail-mode): Mention mail-insert-file and mail-add-attachment in
9115 the doc string.
9116 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
9117
fece895e
RT
91182011-09-10 Reuben Thomas <rrt@sc3d.org>
9119
e69df516
SM
9120 * simple.el (count-words-region): Use buffer if there's no region
9121 (bug#9429).
fece895e 9122
5e68ce4a
JL
91232011-09-09 Juri Linkov <juri@jurta.org>
9124
9125 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
9126 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
9127 (wdired-isearch-filter-read-only): New function. (Bug#6362)
9128
0a6b9622
AM
91292011-09-09 Alan Mackenzie <acm@muc.de>
9130
9131 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
9132 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
9133
14a29deb
EZ
91342011-09-09 Eli Zaretskii <eliz@gnu.org>
9135
9136 Fix for Savannah bug#9392.
9137 * simple.el (mail-encode-mml): New defvar.
9138
9139 * mail/rmail.el (mail-encode-mml): Add a defvar.
9140 (rmail-enable-mime-composing): Default to t.
9141 (rmail-forward): Use MIME method of forwarding only if both
9142 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9143 Set mail-encode-mml non-nil if the MIME method was used.
9144
9145 * mail/sendmail.el (mml-to-mime): Add autoload form.
9146 (mail-encode-mml): Add a defvar.
9147 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9148 to nil.
9149 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9150 message through mml-to-mime, and reset mail-encode-mml to nil.
9151
28c45130
GM
91522011-09-09 Glenn Morris <rgm@gnu.org>
9153
9154 * woman.el (woman-if-body): When processing an .el block,
9155 do not delete the next .el block as well. (Bug#9447)
69f4b618 9156 (woman-special-characters): Add oq, cq, and hy characters.
28c45130 9157
9b1c252e
MR
91582011-09-08 Martin Rudalics <rudalics@gmx.at>
9159
9160 * window.el (window-deletable-p): Make sure window is live before
9161 invoking window-prev-buffers.
9162
567457e3
LL
91632011-09-08 Leo Liu <sdl.web@gmail.com>
9164
9165 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9166
97f05794
JL
91672011-09-08 Juri Linkov <juri@jurta.org>
9168
9169 * progmodes/compile.el (compilation-environment): Make it
9170 a defcustom (bug#8340).
9171
8b0874b5
MR
91722011-09-08 Martin Rudalics <rudalics@gmx.at>
9173
9174 * window.el (frame-auto-delete): Rename to window-auto-delete.
9175 Make it control auto-deletion of windows and/or frames.
9176 (window-deletable-p): New argument FORCE. Rewrite conditions
5e617bc2 9177 for deleting window/frame. (Bug#9419)
8b0874b5
MR
9178 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9179 Rewrite handling of case when window/frame can be deleted.
9180 (delete-windows-on): Call window-deletable-p with new FORCE
5e617bc2 9181 argument t. (Bug#9456)
8b0874b5 9182
4feb6e73
CY
91832011-09-07 Chong Yidong <cyd@stupidchicken.com>
9184
9185 * help-mode.el (help-mode): Restore autoload.
9186
91ab9c13
JL
91872011-09-07 Juri Linkov <juri@jurta.org>
9188
9189 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9190 `compilation-environment'. Set buffer-local
9191 `compilation-environment' to `thisenv' later after (funcall mode).
9192 (Bug#8340)
9193
9194 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9195 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9196 instead of replacing its value. (Bug#8340)
9197
0527e251
JL
91982011-09-07 Juri Linkov <juri@jurta.org>
9199
9200 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9201 based on text properties put by `grep-filter' instead of matching
9202 escape sequences.
9203 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9204 to the value of `grep-error-screen-columns' (bug#9438).
9205
249f792c
JL
92062011-09-07 Juri Linkov <juri@jurta.org>
9207
9208 * simple.el (next-error-highlight, next-error-highlight-no-select):
9209 Doc fix (bug#9432).
9210
ff7271b9
OT
92112011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9212
9213 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9214 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9215
183fc730
LL
92162011-09-07 Leo Liu <sdl.web@gmail.com>
9217
9218 * net/rcirc.el (rcirc-mode): Conditionally initialize
9219 rcirc-input-ring.
9220
77694924
SM
92212011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9222
9223 * emacs-lisp/find-func.el (find-function-C-source): Only set
9224 find-function-C-source-directory after checking that we found a source
9225 file there (bug#9440).
9226
d809b8eb
AM
92272011-09-06 Alan Mackenzie <acm@muc.de>
9228
9229 * isearch.el (isearch-other-meta-char): Wherever a key list is
9230 unread, "unread" the prefix arg, too. This fixes bug #8901.
9231
453de99f
OG
92322011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9233
9234 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9235
90439906
JL
92362011-09-05 Juri Linkov <juri@jurta.org>
9237
9238 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9239
f62bd846
JL
92402011-09-05 Juri Linkov <juri@jurta.org>
9241
9242 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9243 keeping point where processing of grep matches begins, and
9244 continue to delete remaining escape sequences from the same point.
9245 (grep-filter): Make leading zero optional in "0?1;31m" because
9246 git-grep emits "\033[1;31m" escape sequences unlike expected
9247 "\033[01;31m" as GNU Grep does (bug#9408).
9248 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9249
045820ec
JL
92502011-09-05 Juri Linkov <juri@jurta.org>
9251
9252 * subr.el (y-or-n-p): Capitalize "yes".
9253
f5e29b9b
MA
92542011-09-04 Michael Albinus <michael.albinus@gmx.de>
9255
9256 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9257 `tramp-cache-unload-hook' where appropriate.
9258 (tramp-methods): Rename `tramp-remote-sh' to
9259 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9260 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9261
9262 * net/tramp-sh.el (top): Don't require 'shell.
9263 (tramp-methods): Add `tramp-remote-shell' and
9264 `tramp-remote-shell-args' entries.
9265 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9266 (tramp-sh-handle-shell-command): Remove.
9267 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9268 Use `tramp-remote-shell'.
9269
2784c434
CY
92702011-09-03 Chong Yidong <cyd@stupidchicken.com>
9271
393a301e 9272 * mail/sendmail.el (sendmail-query-once-function): Delete.
2784c434
CY
9273 (sendmail-query-once): Save directly to send-mail-function.
9274 Update message-send-mail-function too.
9275
9276 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9277
464cdf56
CS
92782011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9279
9280 * progmodes/python.el (python-mode-map): Use correct function to
9281 start python interpreter from menu-bar (as reported by Geert
9282 Kloosterman).
9283 (inferior-python-mode-map): Fix typo.
393a301e 9284 (python-shell-map): Remove.
464cdf56 9285
d37e5c87
DD
92862011-09-03 Deniz Dogan <deniz@dogan.se>
9287
9288 * net/rcirc.el (rcirc-print): Simplify code for
9289 rcirc-scroll-show-maximum-output. There is no need to walk
9290 through all windows to find the right one.
9291
f3ada0ee
CS
92922011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9293
9294 * help.el (help-return-method): Doc fix.
9295
1f3c99ca
MR
92962011-09-03 Martin Rudalics <rudalics@gmx.at>
9297
9298 * window.el (window-deletable-p): Don't return a non-nil value
9299 when there's a buffer that was shown in the window before.
9300 (Bug#9419)
393a301e
SM
9301 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9302 Set window's previous buffers to nil.
1f3c99ca 9303
a3cf097f
EZ
93042011-09-03 Eli Zaretskii <eliz@gnu.org>
9305
9306 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9307 newline before and after the tag line, so it doesn't interfere
9308 with determining the paragraph direction of bidirectional text.
9309
3d03de90
LL
93102011-09-03 Leo Liu <sdl.web@gmail.com>
9311
9312 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9313
c3313451
CY
93142011-09-02 Chong Yidong <cyd@stupidchicken.com>
9315
393a301e 9316 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
c3313451
CY
9317 (pop-to-buffer): Change interactive spec. Pass second argument
9318 directly to display-buffer.
9319 (display-buffer): Fix interactive spec. Use functionp to
9320 distinguish between a function and a list of functions.
9321
9322 * abbrev.el (edit-abbrevs):
9323 * arc-mode.el (archive-extract):
9324 * autoinsert.el (auto-insert):
9325 * bookmark.el (bookmark-bmenu-list):
9326 * files.el (find-file):
9327 * view.el (view-buffer):
9328 * progmodes/compile.el (compilation-goto-locus):
9329 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9330
89894cd8
CY
93312011-09-02 Chong Yidong <cyd@stupidchicken.com>
9332
9333 * window.el (display-buffer-alist): Doc fix.
9334 (display-buffer): Add docstring. Don't treat
9335 display-buffer-default specially.
9336 (display-buffer-reuse-selected-window)
9337 (display-buffer-same-window, display-buffer-maybe-same-window)
9338 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9339 (display-buffer-pop-up-window)
9340 (display-buffer-reuse-or-pop-window)
9341 (display-buffer-use-some-window): New functions.
9342 (display-buffer-default-action): Use them.
393a301e 9343 (display-buffer-default): Delete.
89894cd8
CY
9344 (pop-to-buffer-1): Fix choice of actions.
9345
ae0bc9fb
SM
93462011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9347
9348 * minibuffer.el (completion--insert-strings): Don't get confused by
9349 completion entries that end with an LF char.
9350
e9d90883
EZ
93512011-09-01 Eli Zaretskii <eliz@gnu.org>
9352
9353 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9354
437014c8
CY
93552011-09-01 Chong Yidong <cyd@stupidchicken.com>
9356
9357 * window.el (display-buffer): Restore interactive spec.
ae0bc9fb
SM
9358 (display-buffer-same-window, display-buffer-other-window):
9359 New functions.
437014c8
CY
9360 (pop-to-buffer-1): New function. Use the above.
9361 (pop-to-buffer, pop-to-buffer-same-window): Use it.
ae0bc9fb 9362 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
437014c8
CY
9363
9364 * view.el (view-buffer-other-window, view-buffer-other-frame):
9365 Just use pop-to-buffer.
9366
a5e063d5
TV
93672011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9368
9369 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9370
793d32bb
WH
93712011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9372
9373 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9374
d65e4c15
RS
93752011-08-31 Richard Stallman <rms@gnu.org>
9376
9377 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9378 of the separation of rmail-view-buffer from rmail-buffer.
9379 If you say no to "replace original", the decrypt is in the
9380 view buffer. If you say yes, the decrypt goes into the
9381 rmail buffer also.
9382
f818cd2a
MR
93832011-08-31 Martin Rudalics <rudalics@gmx.at>
9384
9385 * window.el (display-buffer-window): Rewrite doc-string.
9386 (display-buffer-record-window): New function.
9387 (display-buffer-macro-specifiers)
9388 (display-buffer-even-window-sizes, display-buffer-set-height)
9389 (display-buffer-set-width, display-buffer-in-window)
9390 (display-buffer-reuse-window, display-buffer-split-specifiers)
9391 (display-buffer-side-specifiers, display-buffer-split-window-1)
9392 (display-buffer-split-window, display-buffer-split-atom-window)
9393 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9394 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9395 (display-buffer-other-window-means-other-frame)
9396 (display-buffer-normalize-special)
9397 (display-buffer-normalize-default)
9398 (display-buffer-normalize-argument)
9399 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9400 (display-buffer-normalize-specifiers, display-buffer-frame)
9401 (display-buffer-same-window, display-buffer-same-frame)
9402 (display-buffer-other-window)
9403 (display-buffer-same-frame-other-window)
9404 (display-buffer-other-frame, pop-to-buffer-same-window)
9405 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9406 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9407 (switch-to-buffer-same-frame)
9408 (switch-to-buffer-other-window-same-frame)
9409 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9410 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9411 (display-buffer-alist-set): Remove.
9412 (display-buffer-function, special-display-buffer-names)
ae0bc9fb
SM
9413 (special-display-regexps, special-display-function):
9414 In doc-string refer to display-buffer-window and quit-restore
f818cd2a
MR
9415 parameter.
9416 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9417 (special-display-frame-alist, special-display-popup-frame)
9418 (same-window-buffer-names, same-window-regexps, same-window-p)
9419 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9420 (split-window-preferred-function, split-height-threshold)
9421 (split-width-threshold, window-splittable-p)
9422 (split-window-sensibly, window--try-to-split-window)
9423 (window--frame-usable-p, even-window-heights)
9424 (window--even-window-heights, window--display-buffer-1)
ae0bc9fb
SM
9425 (window--display-buffer-2, display-buffer-other-frame):
9426 Restore old Emacs 23 code, order and doc-strings where applicable.
f818cd2a
MR
9427 (display-buffer-default, display-buffer-assq-regexp): New functions.
9428 (display-buffer-alist): Rewrite doc-string.
9429 (display-buffer-default-action)
9430 (display-buffer-overriding-action): New variables.
9431 (display-buffer, switch-to-buffer): Rewrite.
9432 (pop-to-buffer): Restore Emacs 23 behavior but use
9433 window-normalize-buffer-to-display.
9434 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9435 Restore Emacs 23 behavior but use
9436 window-normalize-buffer-to-switch-to.
9437 (pop-to-buffer-same-window): Rewrite.
ae0bc9fb
SM
9438 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9439 Rewrite using Emacs 23 options.
f818cd2a 9440
5bc3b51d
MA
94412011-08-31 Michael Albinus <michael.albinus@gmx.de>
9442
9443 * net/tramp.el (tramp-root-regexp): Remove.
9444 (tramp-completion-file-name-regexp-unified)
9445 (tramp-completion-file-name-regexp-separate)
9446 (tramp-completion-file-name-regexp-url): Don't use leading volume
9447 letter on win32 systems. (Bug#5303, Bug#9311)
ae0bc9fb
SM
9448 (tramp-drop-volume-letter): Simplify definition.
9449 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
5bc3b51d 9450
b1a4f8e1
SM
94512011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9452
9453 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9454 (bug#9356).
9455
5664fa7b
RT
94562011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9457
b1a4f8e1 9458 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
5664fa7b 9459
9a45d6c3
JL
94602011-08-29 Juri Linkov <juri@jurta.org>
9461
9462 * isearch.el (isearch-done): Don't display message "Mark saved"
9463 when arg `edit' is non-nil to prevent its flicker in the echo area.
9464
fb87e0fb
CY
94652011-08-28 Chong Yidong <cyd@stupidchicken.com>
9466
9467 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9468 obsolete packages for deletion.
9469
09ac1c2a
CS
94702011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9471
9472 * help-mode.el (help-mode-map): Add special-mode-map to parent.
5e617bc2 9473 (help-mode): Derive help-mode from special-mode. Don't invoke
09ac1c2a
CS
9474 view-mode from help-mode.
9475 (help-xref-override-view-map): Remove.
9476 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9477 view-mode is not used anymore.
9478
7a1ff57f
CY
94792011-08-28 Chong Yidong <cyd@stupidchicken.com>
9480
9481 * server.el (server-port): Doc fix.
9482
b9696605
CY
9483 * cus-theme.el (custom-theme-choose-mode): Inherit from
9484 special-mode (Bug#9124).
9485 (custom-theme-choose-mode-map): Add special-mode to parent.
9486
ef8cdf8c
AM
94872011-08-28 Alan Mackenzie <acm@muc.de>
9488
9489 * progmodes/cc-fonts.el
9490 (c-make-font-lock-BO-decl-search-function): New function.
9491 (c-basic-matchers-after - "Fontify the clauses after various
9492 keywords"): Extract the three keyword lists for the 3 erroneous
9493 constructs from the list of four, and use the new function above
9494 in place of an old one.
9495
27de4e20
DD
94962011-08-28 Deniz Dogan <deniz@dogan.se>
9497
9498 * net/rcirc.el (rcirc-insert-prev-input)
9499 (rcirc-insert-next-input): Remove unused argument.
9500
356a3681
SM
95012011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9502
9503 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9504
3fc9b218
AM
95052011-08-27 Alan Mackenzie <acm@muc.de>
9506
9507 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9508 handle function pointer parameters properly.
9509
538a061c
MR
95102011-08-27 Martin Rudalics <rudalics@gmx.at>
9511
9512 * window.el (display-buffer-reuse-window): Fix case where
9513 selected window was reused with non-nil OTHER-WINDOW argument.
9514 (Bug#9381)
9515
35b1c40c
DD
95162011-08-27 Deniz Dogan <deniz@dogan.se>
9517
9518 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9519 oftc's NickServ messages.
9520
2f6a3e79
GM
95212011-08-27 Glenn Morris <rgm@gnu.org>
9522
9523 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9524
7254299e
CY
95252011-08-26 Chong Yidong <cyd@stupidchicken.com>
9526
9527 * emacs-lisp/package.el (package-install): Call package-initialize
9528 if called interactively.
9529
f8ccf167
LL
95302011-08-26 Leo Liu <sdl.web@gmail.com>
9531
9532 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9533
3e8cd5ce
JL
95342011-08-25 Juri Linkov <juri@jurta.org>
9535
9536 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9537 `search-whitespace-regexp' (bug#9364).
9538
93eb7113
JL
95392011-08-25 Juri Linkov <juri@jurta.org>
9540
9541 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9542 `regexp-search-ring' to their global values to protect from
9543 updating by `read-from-minibuffer' (bug#9185).
9544
f65d1611
JL
95452011-08-25 Juri Linkov <juri@jurta.org>
9546
9547 * textmodes/ispell.el (ispell-command-loop): Add newline
9548 at the end of the "Use option `i'..." line.
9549
f1cf7a31
JL
95502011-08-25 Juri Linkov <juri@jurta.org>
9551
9552 * battery.el (display-battery-mode): If `battery-status-function'
9553 or `battery-mode-line-format' is nil, display the message and set
9554 `display-battery-mode' to nil (bug#9363).
9555
0c95fcf7
EZ
95562011-08-25 Eli Zaretskii <eliz@gnu.org>
9557
9558 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9559 bidi-string-mark-left-to-right; they are unnecessary now.
9560
a2ebe600
DD
95612011-08-25 Deniz Dogan <deniz@dogan.se>
9562
9563 * net/quickurl.el: Documentation typo fixes.
9564
e4ed06f1
CY
95652011-08-25 Chong Yidong <cyd@stupidchicken.com>
9566
9567 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9568
e5f1c99e
GM
95692011-08-25 Glenn Morris <rgm@gnu.org>
9570
b2948976
GM
9571 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9572
e5f1c99e
GM
9573 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9574 (smtpmail-via-smtp): Handle nil response from smtp.
9575
f22f4808
JL
95762011-08-24 Juri Linkov <juri@jurta.org>
9577
9578 * proced.el (proced-marked): Inherit from `error' instead of
9579 `font-lock-warning-face'.
9580
9581 * ibuffer.el (ibuffer-marked-face): Change default face from
9582 `font-lock-warning-face' to `warning'.
9583 (ibuffer-deletion-face): Change default face from
9584 `font-lock-type-face' to `error'.
9585
9586 * battery.el (battery-update): Use the face `error' instead of
9587 `font-lock-warning-face' (bug#6117).
9588
6a93965e
JL
95892011-08-24 Juri Linkov <juri@jurta.org>
9590
9591 * faces.el (success): Change face color from "Green3" to
9592 "ForestGreen" on light background (bug#9353).
9593
1ed43b09
CY
95942011-08-24 Chong Yidong <cyd@stupidchicken.com>
9595
5664fa7b
RT
9596 * window.el (quit-window): Rename from quit-restore-window.
9597 Use same arglist as old quit-window.
1ed43b09
CY
9598 (frame-auto-delete): Doc fix.
9599
9600 * view.el (view-mode-exit): Use quit-window.
9601
11dcdbb2
JL
96022011-08-24 Juri Linkov <juri@jurta.org>
9603
9604 * isearch.el (isearch-ring-adjust1): Start visiting previous
9605 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
9606 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
9607 for empty search string (when the last search string is reused
9608 automatically) to adjust the isearch ring to the last element and
9609 prepare the correct index for further M-p commands (bug#9185).
9610
de62b4df
KH
96112011-08-24 Kenichi Handa <handa@m17n.org>
9612
9613 * international/ucs-normalize.el: If decomposition property of
9614 CHAR is the default one (i.e. a list of CHAR itself), treat it as
9615 nil.
9616 (nfd, nfkd): Likewise.
9617
963b492b
SM
96182011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9619
9620 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
9621 from process filters aren't reliably transmitted to the surrounding
9622 accept-process-output.
9623 (mpc-proc-check): New function.
9624 (mpc-proc-sync): Use it (bug#8293)
9625
93b6b5e1
SM
96262011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9627
9628 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
9629 Add compatibility functions (bug#9313).
9630
bca633fb
EZ
96312011-08-23 Eli Zaretskii <eliz@gnu.org>
9632
b177498a
EZ
9633 * cus-start.el (all): Add entry for bidi-paragraph-direction.
9634
6df6ae42 9635 * international/uni-bidi.el: Regenerate.
bca633fb 9636
0902a04e
KH
96372011-08-23 Kenichi Handa <handa@m17n.org>
9638
9639 * international/charprop.el:
9640 * international/uni-bidi.el:
9641 * international/uni-category.el:
9642 * international/uni-combining.el:
9643 * international/uni-comment.el:
9644 * international/uni-decimal.el:
9645 * international/uni-decomposition.el:
9646 * international/uni-digit.el:
9647 * international/uni-lowercase.el:
9648 * international/uni-mirrored.el:
9649 * international/uni-name.el:
9650 * international/uni-numeric.el:
9651 * international/uni-old-name.el:
9652 * international/uni-titlecase.el:
9653 * international/uni-uppercase.el: Regenerate.
9654
3bbf23bc
MR
96552011-08-23 Martin Rudalics <rudalics@gmx.at>
9656
9657 * help.el (help-window-setup): Fix message displayed when other
9658 window is reused. (Bug#9341)
9659
b3fd59bd
SM
96602011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9661
1802e444
SM
9662 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9663 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9664
b3fd59bd
SM
9665 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9666 Mark obsolete.
9667 * shell.el (shell-parse-pcomplete-arguments): New function.
9668 (shell-completion-vars): Use it instead (bug#9160).
9669
4eb61348
SM
96702011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9671
867cab74
SM
9672 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9673 strings and comments (bug#9333).
9674
4eb61348
SM
9675 * emacs-lisp/debug.el (debug-arglist): New function.
9676 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
9677 (debug-on-entry-1): Handle interpreted closures (bug#9120).
9678
262a1439
JL
96792011-08-22 Juri Linkov <juri@jurta.org>
9680
56ee679c
JL
9681 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9682 Revert regexp that highlights output switches to its old
9683 pre-2010-10-28 value and remove one `?' from it (bug#9319).
9684
262a1439
JL
9685 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9686 to check for empty output (bug#9226).
9687
f13f86fb
CY
96882011-08-22 Chong Yidong <cyd@stupidchicken.com>
9689
9690 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9691 symbol-constituent as the default, as that stops font-lock from
9692 working properly (Bug#8843).
9693
c65c9622
LMI
96942011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9695
9696 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9697 `coding-system-for-*' around the process open call to avoid
9698 auth-source side effects.
e7f2c178 9699 (smtpmail-try-auth-methods): Expand the secret password.
7185da52
LMI
9700 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9701 probe hangs.
c65c9622 9702
23a8a5ab
CY
97032011-08-21 Chong Yidong <cyd@stupidchicken.com>
9704
ff98b2dd
CY
9705 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9706
23a8a5ab
CY
9707 * emacs-lisp/find-func.el (find-function-noselect): New arg
9708 lisp-only.
9709
9710 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9711 signal an error for built-in functions (Bug#6664).
9712
f5e3c598
LMI
97132011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9714
9715 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9716 (smtpmail-try-auth-methods): Use it.
9717
a3f2468a
CY
97182011-08-21 Chong Yidong <cyd@stupidchicken.com>
9719
2c34e8da
CY
9720 * font-lock.el (font-lock-fontify-region)
9721 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9722 (font-lock-default-unfontify-buffer)
9723 (font-lock-default-fontify-region)
9724 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9725
b3fd59bd
SM
9726 * progmodes/compile.el (compilation-error-properties):
9727 Fix confusion between file struct and message struct (Bug#9319).
02e5c89e
CY
9728 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9729 `ant' regexp.
ee31aabc 9730
a3f2468a
CY
9731 * net/browse-url.el (browse-url-firefox): Don't call
9732 browse-url-firefox-sentinel unless using -remote (Bug#9328).
9733
8e999f70
GM
97342011-08-20 Glenn Morris <rgm@gnu.org>
9735
c21a496a
GM
9736 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9737
59ee0542
GM
9738 * tutorial.el (tutorial--default-keys): Update some default bindings.
9739
8e999f70
GM
9740 * files.el (hack-local-variables): Fully ignore case for "mode:".
9741
e3715033
AM
97422011-08-20 Alan Mackenzie <acm@muc.de>
9743
9744 Resolve invalid use of a regexp in regexp-opt.
9745
4d61f28d
JB
9746 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9747 detection for a java annotation.
e3715033 9748
4d61f28d 9749 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
e3715033
AM
9750 detection for a java annotation.
9751
4d61f28d
JB
9752 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9753 handling for java.
e3715033
AM
9754 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9755
04ed2e9c
CY
97562011-08-20 Chong Yidong <cyd@stupidchicken.com>
9757
9758 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9759 (Bug#9274).
9760
826cee64
AM
97612011-08-20 Alan Mackenzie <acm@muc.de>
9762
58179cce 9763 Fontify CPP expressions correctly when starting in the middle of
826cee64
AM
9764 such a construct. Mainly for when jit-lock etc. starts a chunk
9765 here.
9766
58179cce 9767 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
826cee64 9768 variable.
58179cce 9769 (c-make-font-lock-search-form): New function, extracted from
826cee64
AM
9770 c-make-font-lock-search-function.
9771 (c-make-font-lock-search-function): Use the above function.
9772 (c-make-font-lock-context-search-function): New function.
9773 (c-cpp-matchers): Enhance the preprocessor expression case with
9774 the above function
9775 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9776 which takes an expression.
9777
9778 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
9779
13009bd8
MR
97802011-08-20 Martin Rudalics <rudalics@gmx.at>
9781
9782 * window.el (display-buffer-reuse-window)
9783 (display-buffer-pop-up-window): Don't reuse or split a side
9784 window.
9785
9234ff7f
GM
97862011-08-19 Glenn Morris <rgm@gnu.org>
9787
9788 * files.el (hack-local-variables-prop-line, hack-local-variables):
5e617bc2 9789 Downcase "Mode:". (Bug#9331)
9234ff7f 9790
f635daa1
CY
97912011-08-18 Chong Yidong <cyd@stupidchicken.com>
9792
9793 * international/characters.el: Add L and R categories.
9794
9795 * subr.el (bidi-string-mark-left-to-right): Rename from
9796 string-mark-left-to-right. Use category search.
9797
9798 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9799
bc987f8b
JL
98002011-08-18 Juri Linkov <juri@jurta.org>
9801
9802 * faces.el (error, warning, success): New faces with definitions
9803 copied from old default values of `font-lock-warning-face',
9804 `compilation-warning', `compilation-info' (bug#6117).
9805
9806 * font-lock.el (font-lock-warning-face): Inherit from `error'.
9807
9808 * progmodes/compile.el (compilation-error): Inherit from `error'.
9809 (compilation-warning): Inherit from `warning'.
9810 (compilation-info): Inherit from `success'.
9811
9812 * dired.el (dired-marked): Inherit from `warning'.
9813 (dired-flagged): Inherit from `error'.
9814
57173b96
LMI
98152011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9816
3e79eb87
LMI
9817 * mail/smtpmail.el (auth-source): Require to avoid problems with
9818 binding variables (bug#9298). Also clean up some unused
9819 autoloads.
9820
b3fd59bd
SM
9821 * net/network-stream.el (network-stream-open-starttls):
9822 Support using starttls.el without using gnutls-cli.
57173b96 9823
02b404de
JL
98242011-08-17 Juri Linkov <juri@jurta.org>
9825
9826 * progmodes/grep.el (rgrep): Handle the case when
9827 `grep-find-command' is a cons cell (bug#9278).
9828
8c9177f2
MR
98292011-08-17 Martin Rudalics <rudalics@gmx.at>
9830
9831 * window.el (display-buffer-pop-up-frame): Run frame creation
9832 function with BUFFER current (as special-display-popup-frame
9833 does). Reported by Drew Adams.
9834
3644a0ab
DU
98352011-08-17 Daiki Ueno <ueno@unixuser.org>
9836
9837 * epa-mail.el: Simplify GnuPG group expansion using
9838 epg-expand-group.
9839 (epa-mail-group-alist, epa-mail-group-modtime)
9840 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9841 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9842 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9843 Remove.
9844
5e617bc2 98452011-08-16 Feng Li <fengli@gmail.com> (tiny change)
7c643369
FL
9846
9847 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9848
9c4aeabf
AM
98492011-08-16 Alan Mackenzie <acm@muc.de>
9850
9851 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9852 Correct, to avoid the inside of macros.
9853
3a99bf64
RS
98542011-08-16 Richard Stallman <rms@gnu.org>
9855
04963aa8
RS
9856 * epa-mail.el: Handle GnuPG group definitions.
9857 (epa-mail-group-alist, epa-mail-group-modtime)
9858 (epa-mail-gnupg-conf-file): New variables.
9859 (epa-mail-parse-groups, epa-mail-sync-groups)
9860 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9861 (epa-mail-expand-recipients): New functions.
9862 (epa-mail-encrypt): Call epa-mail-expand-recipients.
9863
177549d0
RS
9864 * mail/rmail.el (rmail-epa-decrypt): New command.
9865
fe38beef
RS
9866 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9867 Don't bind buffer-read-only, just inhibit-read-only.
3a99bf64
RS
9868 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9869 (epa-decrypt-armor-in-region): Make error message clearer.
9870
934eacb9
SM
98712011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9872
9873 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9874 and "a2b" to "ab" for `prefix'.
9875
d024fb4e
CY
98762011-08-14 Chong Yidong <cyd@stupidchicken.com>
9877
9878 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9879 filter groups.
de148fee
CY
9880 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
9881 Fourquet (Bug#8804).
d024fb4e 9882
62f1ca49
JB
98832011-08-12 Juanma Barranquero <lekktu@gmail.com>
9884
9885 * startup.el (argi): Declare as global variable (bug#9275).
9886
9ccaaa4b
CY
98872011-08-12 Chong Yidong <cyd@stupidchicken.com>
9888
9889 * subr.el (string-mark-left-to-right): Search the entire string
9890 for RTL script, not just the terminating character. Doc fix.
9891
a3dae87a
SM
98922011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9893
6cd18349
SM
9894 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9895 New function.
9896 (js--regexp-literal, js-syntax-propertize-function): Remove.
9897 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9898 (js-mode-map): Don't rebind electric keys.
9899 (js-insert-and-indent): Remove.
9900 (js-mode): Setup electric-layout and electric-indent instead.
9901
a3dae87a
SM
9902 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9903
9d5cb631
DU
99042011-08-12 Daiki Ueno <ueno@unixuser.org>
9905
9906 * epa.el (epa-progress-callback-function): Fix the logic of
9907 displaying progress.
9908 * epa-file.el (epa-file-insert-file-contents): Make progress
9909 display more user-friendly.
9910 (epa-file-write-region): Ditto.
9911
3e26a4a2
CY
99122011-08-10 Chong Yidong <cyd@stupidchicken.com>
9913
9914 * subr.el (string-mark-left-to-right): New function.
9915
9916 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9917 Use string-mark-left-to-right.
9918 (list-buffers-noselect): Caller changed.
9919
a3dae87a
SM
9920 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9921 Use string-mark-left-to-right.
3e26a4a2
CY
9922 (tabulated-list-print): Recenter after moving point.
9923
ac8cf6e6
JL
99242011-08-10 Juri Linkov <juri@jurta.org>
9925
9926 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9927 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9928 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9929
8d96c9a4
CY
99302011-08-09 Chong Yidong <cyd@stupidchicken.com>
9931
9932 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9933 (Bug#7554).
9934
7be1c708 99352011-08-09 Andreas Schwab <schwab@linux-m68k.org>
29bbcfa7
AS
9936
9937 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
9938 character. (Bug#6594)
9939
37e11a63
CY
99402011-08-08 Chong Yidong <cyd@stupidchicken.com>
9941
839dde57
CY
9942 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
9943 (image-dired--with-db-file): New macro.
9944 (image-dired-write-tags, image-dired-remove-tag)
9945 (image-dired-create-gallery-lists, image-dired-write-comments)
9946 (image-dired-get-comment, image-dired-mark-tagged-files)
9947 (image-dired-list-tags, image-dired-gallery-generate): Use it.
9948 (image-dired-gallery-generate): Use insert-file-contents.
9949
37e11a63
CY
9950 * time.el (display-time-world-list, display-time-world-display):
9951 * time-stamp.el (time-stamp-string):
9952 * vc/add-log.el (add-change-log-entry): Use setenv instead of
9953 set-time-zone-rule (Bug#7337).
9954
0b4946c4
DU
99552011-08-08 Daiki Ueno <ueno@unixuser.org>
9956
9957 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
9958 (epg-error-to-string, epg-errors-to-string): New function.
9959 (epg-wait-for-completion): Reverse errors list.
9960 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
9961 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
9962 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
9963 (epg-sign-keys, epg-generate-key-from-file)
9964 (epg-generate-key-from-string): Format errors by using
9965 epg-errors-to-string (bug#9255).
9966 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
9967
75bfc667
JL
99682011-08-07 Juri Linkov <juri@jurta.org>
9969
9970 * faces.el (list-faces-display): Remove extra angle bracket
9971 from `help-mode-map'.
9972
9973 * info.el (Info-history-toc-nodes): Doc fix.
9974
9975 * longlines.el (longlines-mode): Doc fix.
9976
673e08bb
SM
99772011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
9978
4640dd88
SM
9979 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
9980 of statements and in a few more cases (bug#9183).
9981
673e08bb
SM
9982 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
9983 New functions.
9984 (cl-transform-lambda): Use them (bug#9239).
9985
89b3f019
MR
99862011-08-05 Martin Rudalics <rudalics@gmx.at>
9987
9988 * window.el (display-buffer-same-window)
9989 (display-buffer-same-frame, display-buffer-other-window)
9990 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
9991 (pop-to-buffer-other-window)
9992 (pop-to-buffer-same-frame-other-window)
9993 (pop-to-buffer-other-frame): Make them defuns.
9994 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
9995
640c8776
SM
99962011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
9997
9998 * subr.el (make-composed-keymap): Move from C. Change calling
9999 convention, and improve docstring to bring attention to a subtle point.
10000 * minibuffer.el (completing-read-default): Adjust accordingly.
10001
63648a95
MA
100022011-08-03 Michael Albinus <michael.albinus@gmx.de>
10003
10004 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10005 (tramp-open-shell): Use `tramp-shell-quote-argument'.
10006
10007 * net/trampver.el: Update release number.
10008
b796c9b7
SM
100092011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10010
10011 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
10012 "in" (bug#9190).
10013
2239d7d5
LMI
100142011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10015
e07dd7c3
LMI
10016 * mail/sendmail.el (sendmail-query-once): Restore the current
10017 buffer after querying (bug#9074).
10018
0e6a2bd7
LMI
10019 * dired.el (dired-flagged): Use different faces for marked and
10020 flagged files (bug#6117).
10021
ce887515
LMI
10022 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
10023 (bug#4433).
10024
92f2affc
LMI
10025 * ido.el (ido-mode): Switch off the message if called
10026 non-interactively.
10027
57d5aff0
LMI
10028 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
10029 before 587, since it appears that that's more likely to work for
10030 more people.
10031
98cd6c18 10032 * cus-edit.el (custom-file): When running under emacs -q, always
e1dbe924 10033 refuse to save the customizations, even if the .emacs file doesn't
98cd6c18
LMI
10034 exist.
10035
b96dec83
LMI
10036 * info.el: Remove the `Info-beginning-of-buffer' function
10037 (bug#8325).
10038
b796c9b7
SM
10039 * net/network-stream.el (network-stream-open-starttls):
10040 Use `starttls-available-p' to see whether starttls.el can be used.
2239d7d5 10041
d90e2ea0
MR
100422011-08-01 Martin Rudalics <rudalics@gmx.at>
10043
10044 * window.el (display-buffer-in-window): Don't set dedicated status
10045 of window here (Bug#9215).
10046 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10047 (display-buffer-pop-up-side-window)
b796c9b7 10048 (display-buffer-in-side-window): Set dedicated status of window here.
d90e2ea0 10049
cca09170
SM
100502011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10051
10052 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
10053 before binding generated-autoload-file.
10054
027b979c
DD
100552011-08-01 Deniz Dogan <deniz@dogan.se>
10056
10057 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
10058
3c7ee4f3
MA
100592011-07-30 Michael Albinus <michael.albinus@gmx.de>
10060
10061 Sync with Tramp 2.2.2.
10062
10063 * net/trampver.el: Update release number.
10064
2cc8e51a
JL
100652011-07-30 Juri Linkov <juri@jurta.org>
10066
10067 * dired-aux.el (dired-touch-initial): Remove function.
10068 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
10069 current time, and `default' to the last modification time of the
10070 current marked file (bug#6887).
10071
a514d856
JM
100722011-07-28 Jose E. Marchesi <jemarch@gnu.org>
10073
10074 * simple.el (goto-line): Use string-to-number to provide a
2cc8e51a 10075 numeric argument to read-number (bug#9163).
a514d856 10076
8a7eddd7
MA
100772011-07-27 Michael Albinus <michael.albinus@gmx.de>
10078
10079 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
10080 connection process, it could be nil.
10081
1ddd96f5
LL
100822011-07-27 Leo Liu <sdl.web@gmail.com>
10083
10084 Simplify url handling in rcirc-mode.
10085
10086 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
10087 (rcirc-browse-url-at-mouse): Remove.
10088 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
10089
b248a85d
AM
100902011-07-26 Alan Mackenzie <acm@muc.de>
10091
10092 Fontify bitfield declarations properly.
10093
10094 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
10095 (c-symbol-chars): Now exported as a lang variable.
10096 (c-not-primitive-type-keywords): New lang variable.
10097
10098 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
10099 QT keyword "more" to prevent "more slots: ...." being spuriously
58179cce 10100 parsed as a bitfield declaration.
b248a85d 10101
b796c9b7
SM
10102 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10103 Refactor and enhance to handle bitfield declarations.
b248a85d
AM
10104 (c-punctuation-in): New function.
10105 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
10106 declarations properly.
10107
68575ab0
UJ
101082011-07-26 Ulf Jasper <ulf.jasper@web.de>
10109
10110 * calendar/icalendar.el (icalendar--all-events): Take care of
10111 multiple vcalendars in a single file.
b796c9b7 10112 (icalendar--convert-float-to-ical): Checkdoc fixes.
68575ab0 10113
0f0a88b9
DD
101142011-07-25 Deniz Dogan <deniz@dogan.se>
10115
10116 * image.el (insert-image): Clarifying docstring.
10117
0b3f36df
MA
101182011-07-24 Michael Albinus <michael.albinus@gmx.de>
10119
10120 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
10121 `tramp-send-command-and-check' if there is no error.
10122 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
10123
a9901f61
AM
101242011-07-22 Alan Mackenzie <acm@muc.de>
10125
10126 Prevent cc-langs.elc being loaded at run time.
10127
10128 * progmodes/cc-mode.el: Remove two autoload forms which loaded
10129 cc-langs.
10130
4d61f28d 10131 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
a9901f61
AM
10132 "(require 'cc-langs)". Quote a form so it will evaluate at
10133 (cc-mode's) compilation time.
10134
11d074b2
MA
101352011-07-22 Michael Albinus <michael.albinus@gmx.de>
10136
10137 * net/tramp.el (tramp-file-name-handler): Avoid recursive
10138 loading. (Bug#9114)
10139
938b94c8
MR
101402011-07-21 Martin Rudalics <rudalics@gmx.at>
10141
10142 * window.el (display-buffer-pop-up-window)
10143 (display-buffer-pop-up-side-window)
10144 (display-buffer-in-side-window): Call display-buffer-set-height
10145 and display-buffer-set-width after setting the new window's
b796c9b7 10146 buffer so `fit-window-to-buffer' and friends work on the right buffer.
938b94c8 10147
bfa4f190
SS
101482011-07-20 Sam Steingold <sds@gnu.org>
10149
10150 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10151 (etags-tags-included-tables): Call `convert-standard-filename' on
10152 the file names contained in TAGS so that windows Emacs can handle
10153 TAGS files created by cygwin ctags.
10154
8ca42262
LMI
101552011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10156
10157 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10158 which apparently didn't work.
10159
5db2afd2 101602011-07-19 Roland Winkler <winkler@gnu.org>
2ecab2b5 10161
5db2afd2
RW
10162 * proced.el (proced-send-signal): For *Marked Processes* buffer
10163 put point at beginning of buffer.
10164
92e15d10
SB
101652011-07-19 Stephen Berman <stephen.berman@gmx.net>
10166
10167 * proced.el (proced-format): Make header lines align with the text
10168 (bug#1779).
10169
1bfd59e5
LMI
101702011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10171
10172 * view.el (view-buffer): Allow running in `special' modes if we're
10173 visiting a file (bug#8615).
10174
f5aae37c
MR
101752011-07-19 Martin Rudalics <rudalics@gmx.at>
10176
10177 * window.el (display-buffer-alist-of-strings-p)
b796c9b7
SM
10178 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10179 New functions.
f5aae37c
MR
10180 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10181 more accurately.
10182
bf2c1571
AM
101832011-07-18 Alan Mackenzie <acm@muc.de>
10184
10185 Fontify declarators properly when, e.g., a jit-lock chunk begins
10186 inside a declaration.
10187
10188 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10189
b796c9b7
SM
10190 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10191 New function.
bf2c1571
AM
10192 (c-complex-decl-matchers): Insert reference to
10193 c-font-lock-enclosing-decls.
10194
10195 * progmodes/cc-engine.el (c-backward-single-comment):
10196 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10197 to nil around calls to (forward-comment -1).
10198
4e190b80
LMI
101992011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10200
12dc863d
LMI
10201 * image.el (put-image): Doc typo fix.
10202
a762e966
LMI
10203 * progmodes/etags.el (tags-search): Doc typo fix.
10204
4e190b80
LMI
10205 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10206 password if we get errors 550 to 554.
10207
f019fb21
LMI
102082011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10209
b796c9b7 10210 * net/gnutls.el (gnutls-log-level): Remove.
750c33f7 10211
81746738
LMI
10212 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10213 indentation character (bug#6380).
10214
3ee3a1b5
LMI
10215 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10216
c82f64de
LMI
10217 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10218 to clarify what the problem is (bug#4291).
10219
f019fb21
LMI
10220 * simple.el (current-kill): Clarify what
10221 `interprogram-paste-function' does (bug#7500).
ca425c7c
LMI
10222 (auto-fill-mode): Document `auto-fill-function' in relation to
10223 `auto-fill-mode' (bug#2470).
f019fb21 10224
0794775d
LM
102252011-07-16 Lawrence Mitchell <wence@gmx.li>
10226
10227 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10228 method if slot is read-only (bug#9035).
10229
be39b8cc
MR
102302011-07-16 Martin Rudalics <rudalics@gmx.at>
10231
b796c9b7 10232 * frame.el (select-frame-set-input-focus): New argument NORECORD.
be39b8cc 10233 * window.el (pop-to-buffer): Select window used even if it was
b796c9b7
SM
10234 selected before, see discussion of (Bug#8615), (Bug#6954).
10235 Pass argument NORECORD on to select-frame-set-input-focus.
be39b8cc 10236
6ccf7859
GM
102372011-07-15 Glenn Morris <rgm@gnu.org>
10238
10239 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
03ea5b87 10240 Respect help-form.
6ccf7859 10241
87e86684
LM
102422011-07-09 Lawrence Mitchell <wence@gmx.li>
10243
10244 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10245 (gnutls-negotiate): Use it.
10246
d6066239
LMI
102472011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10248
b796c9b7
SM
10249 * net/gnutls.el (gnutls-negotiate):
10250 Upcase `gnutls-algorithm-priority'.
d6066239 10251
bd23ebc0
GM
102522011-07-15 Glenn Morris <rgm@gnu.org>
10253
c65bca65
GM
10254 * jka-compr.el (jka-compr-verbose): Move from here...
10255 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10256 Add missing :version tag.
10257 * info.el: No need to require jka-compr when compiling.
bd23ebc0 10258
478615cc
LMI
102592011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10260
7b41decb
LMI
10261 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10262 (gnutls-negotiate): Use it.
10263
dbc44fcd
LMI
10264 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10265
06789f97
LMI
10266 * info.el (Info-beginning-of-buffer): New command.
10267 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10268 announcing `b' as the key (bug#8325).
ab896c37 10269 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
06789f97 10270
c39da690
LMI
10271 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10272
3aa5f34b
LMI
10273 * international/mule-cmds.el
10274 (describe-specified-language-support): Make the error message
10275 clearer (bug#8905).
10276
4bf0979f
LMI
10277 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10278
478615cc
LMI
10279 * isearch.el (isearch-barrier): Add a doc string, since it's
10280 mentioned in a function doc string (bug#8678).
10281
75c68aa1
MR
102822011-07-15 Martin Rudalics <rudalics@gmx.at>
10283
10284 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10285 buffer argument (Bug#9083) and self-identifying label argument.
10286
a7c33da2
GM
102872011-07-15 Glenn Morris <rgm@gnu.org>
10288
10289 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10290
2f5c6024
LMI
102912011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10292
10293 * man.el (Man-fontify-manpage): Fix message when formatting the
10294 man page (bug#7929).
10295
0bb23927 102962011-07-14 Eli Zaretskii <eliz@gnu.org>
cce4b0a7
EZ
10297
10298 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10299 argument LRM; if non-nil, append an invisible LRM character to the
10300 buffer name.
10301 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10302 last argument non-nil, when formatting buffer names.
0bb23927
EZ
10303 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10304 paragraph direction.
cce4b0a7 10305
621ef9ab
LMI
103062011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10307
d1583c48
LMI
10308 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10309 the man page name (bug#7929).
10310
6a57fb5f
LMI
10311 * image.el (put-image): Mention the `put-image' overlay property
10312 (bug#7834).
10313
d7956b14
LMI
10314 * scroll-bar.el (set-scroll-bar-mode): Mention that
10315 `scroll-bar-mode' lists the values (bug#7772).
10316
5b2d4a66
LMI
10317 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10318 command (bug#7729).
10319
7509a874
LMI
10320 * rect.el (apply-on-rectangle): Return the point after the last
10321 operation.
10322 (string-rectangle): Go to the point after the last operation
10323 (bug#7522).
10324
4fe74b19
LMI
10325 * printing.el (pr-toggle-region): Clarify the documentation
10326 slightly (bug#7493).
10327
b796c9b7
SM
10328 * time.el (display-time-update):
10329 Allow `display-time-mail-function' to return nil (bug#7158).
10330 Fix suggested by Detlev Zundel.
ab283561 10331
fc233c9d
LMI
10332 * vc/diff.el (diff): Clarify the order the file names are read
10333 (bug#7111).
10334
43f5740b
LMI
10335 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10336 the doc string (bug#7015).
10337
f2182a76
LMI
10338 * font-lock.el (font-lock-maximum-decoration): Mention what
10339 numeric levels mean (bug#6935).
10340
621ef9ab
LMI
10341 * startup.el (initial-buffer-choice): Don't mention the `none'
10342 selection, which is against policy.
10343
adc47434
MR
103442011-07-14 Martin Rudalics <rudalics@gmx.at>
10345
b796c9b7
SM
10346 * window.el (display-buffer-normalize-special):
10347 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
adc47434 10348
7e5bfb8f
EZ
103492011-07-14 Eli Zaretskii <eliz@gnu.org>
10350
10351 * subr.el (version<, version<=, version=): Mention "-CVS" and
10352 "-12345" alpha version numbers.
10353
27fa387a
CY
103542011-07-14 Chong Yidong <cyd@stupidchicken.com>
10355
10356 * bindings.el: Add advertised binding for set-mark-command
10357 (Bug#5772).
10358
8bdfa064
CY
103592011-07-14 Chong Yidong <cyd@stupidchicken.com>
10360
10361 * bindings.el (mode-line-other-buffer):
10362 * bookmark.el (bookmark-bmenu-2-window):
10363 * bs.el (bs-cycle-next, bs-cycle-previous):
10364 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10365 switch-to-buffer.
10366
10367 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
b796c9b7 10368 Delete.
8bdfa064 10369
5eba16a3
JB
103702011-07-14 Juanma Barranquero <lekktu@gmail.com>
10371
10372 * follow.el (follow-debug-message, follow-redisplay):
10373 * jka-cmpr-hook.el (with-auto-compression-mode):
10374 Fix typos in docstrings.
10375
15853710
LMI
103762011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10377
a28e4607
LMI
10378 * subr.el (with-silent-modifications): Clarify somewhat what the
10379 macro inhibits (bug#6525).
10380
15853710
LMI
10381 * simple.el (eval-expression): Note what it does if called
10382 interactively (bug#6495).
10383
bee0fcef
CY
103842011-07-13 Chong Yidong <cyd@stupidchicken.com>
10385
b796c9b7
SM
10386 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10387 Use pop-to-buffer buffer-or-name if it is nil.
bee0fcef
CY
10388
10389 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10390 Remove switch-to-buffer.
10391
58274504
LMI
103922011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10393
bd2fcc8d
LMI
10394 * files.el (make-directory): Clarify that an error will be raised
10395 if there's an error (bug#6397).
10396
0f04b32c
LMI
10397 * startup.el (initial-buffer-choice): Add `none' as a choice
10398 (bug#6234).
10399
465c5fc8
LMI
10400 * subr.el (add-hook): Clarify section about buffer-local hooks
10401 (bug#6218).
10402
58274504
LMI
10403 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10404
bead9a43
JB
104052011-07-13 Juanma Barranquero <lekktu@gmail.com>
10406
10407 * tabify.el (untabify): Preserve the current column so that point
10408 doesn't move (bug#6032).
10409
3af98a7b
LMI
104102011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10411
b796c9b7
SM
10412 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10413 Rewrite to avoid awkward possessive "s" (bug#5986).
3af98a7b 10414
6240145a
GM
104152011-07-13 Glenn Morris <rgm@gnu.org>
10416
10417 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10418 (dired-insert-directory): Give a message the first time
10419 if ls is found not to support --dired.
10420
1d8c2ccc
LMI
104212011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10422
10423 * simple.el (toggle-truncate-lines): Clarify what is toggled
10424 (bug#5580). Text by Drew Adams.
10425
5fc4038e
CY
104262011-07-13 Chong Yidong <cyd@stupidchicken.com>
10427
10428 * simple.el (blink-matching-open): Make the error message from the
10429 last change less verbose.
10430
bf6012e5
DN
104312011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10432
10433 * font-lock.el (font-lock-comment-face): Use the high contrast
10434 "yellow" color for font-lock-comment-face on low color terminals
10435 using a dark background color (bug#4221).
10436
343c3b5a
LMI
104372011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10438
7e9505c5
LMI
10439 * dired.el (dired-insert-set-properties): Make the doc string
10440 reflect what it does now (bug#5325).
10441
c26fdcf5
LMI
10442 * simple.el (blink-matching-open): Say that we were unable to find
10443 the match within the limit, if we're limited (bug#5122).
10444
bb388cc5
LMI
10445 * international/mule-cmds.el (prefer-coding-system): Add an
10446 example (bug#4869).
10447
343c3b5a
LMI
10448 * progmodes/etags.el (tags-search): Document `file-list-form'
10449 (bug#4731).
10450
2a517d45
LM
104512011-07-13 Lawrence Mitchell <wence@gmx.li>
10452
10453 * net/browse-url.el (browse-url-default-browser)
10454 (browse-url-browser-function): Make the default browser choice a
10455 bit more logical (bug#4300). Also clean up the doc string.
10456
b6c78ef2
JB
104572011-07-13 Juanma Barranquero <lekktu@gmail.com>
10458
10459 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10460 binary endings (bug#4440).
10461
1c4dd947
LMI
104622011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10463
a2014063
LMI
10464 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10465 which can be pretty annoying (bug#8971).
10466
9c9c2d88
LMI
10467 * jka-compr.el (jka-compr-verbose): New variable, and use
10468 throughout (bug#8971).
10469
1c4dd947
LMI
10470 * info.el (Info-find-file): Fall back on the installation
10471 directory if we can't find the info node anywhere else.
10472
a1c9f41b
SO
104732011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10474
10475 * vc/vc.el (vc-revert-file):
10476 Don't set file time-stamp in the past. (Bug#5181)
10477
536f3d36
LMI
104782011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10479
7152b011
LMI
10480 * files.el (after-find-file): Give a better error message when
10481 trying to find a symlink that points to a file that doesn't exist
10482 (bug#4398).
10483
536f3d36
LMI
10484 * progmodes/cc-vars.el: Remove (probably) misleading comment
10485 (bug#4396).
10486
460c0fba
JB
104872011-07-12 Johan Bockgård <bojohan@gnu.org>
10488
10489 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10490
7a6bda45
CY
104912011-07-12 Chong Yidong <cyd@stupidchicken.com>
10492
10493 * mouse-sel.el: Hack restoring functionality, while keeping
10494 compatibility with 2010-07-03 changes to mouse selection.
10495 (mouse-sel-primary-overlay): New var.
10496 (mouse-sel-selection-alist): Use it.
10497 (mouse-sel-mode): Doc fix; remove points that are default features
10498 of mouse.el.
10499
c79598ef
JB
105002011-07-12 Johan Bockgård <bojohan@gnu.org>
10501
10502 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10503 Fix previous fix (bug#2490).
10504
ff8be6ef
RW
105052011-07-12 Roland Winkler <winkler@gnu.org>
10506
b796c9b7
SM
10507 * textmodes/bibtex.el (bibtex-initialize):
10508 Use pop-to-buffer-same-window.
ff8be6ef
RW
10509 (bibtex-search-entries): Fix interactive call.
10510
296ba3ee
LMI
105112011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10512
f5242a02 10513 * progmodes/compile.el (compilation-error-regexp-alist-alist):
b796c9b7
SM
10514 Fontise bytecomp Error lines more correctly (bug#2490).
10515 Fix suggested by Johan Bockgård.
f5242a02 10516
296ba3ee
LMI
10517 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10518
10519 * dired-x.el (dired-guess-default): Use `delete-dups'.
10520
f69fd0d2
CY
105212011-07-12 Chong Yidong <cyd@stupidchicken.com>
10522
10523 * dired.el (dired-mark-prompt):
10524 * dired-aux.el (dired-read-shell-command): Doc fix.
10525
eab5dc07
LMI
105262011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10527
b796c9b7
SM
10528 * mail/sendmail.el (sendmail-query-once):
10529 Use `customize-save-variable' unconditionally, now that it works under
9988520a
LMI
10530 emacs -Q.
10531
10532 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10533
eab5dc07
LMI
10534 * cus-edit.el (custom-file): Take an optional no-error variable.
10535 (customize-save-variable): Set the variable, and give a warning if
10536 running under "emacs -q".
10537
a1e65d42
JB
105382011-07-11 Juanma Barranquero <lekktu@gmail.com>
10539
10540 * loadhist.el (unload-feature-special-hooks):
10541 Add `auto-coding-functions', `fill-nobreak-predicate' and
10542 `find-directory-functions' (bug#5327).
10543
1d52da10
LMI
105442011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10545
be958f1d
LMI
10546 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10547
5bedb26c
LMI
10548 * cus-edit.el (custom-guess-name-alist): -alist variables should
10549 use the `alist' type (bug#3120). Suggested by Drew Adams.
10550
1d52da10
LMI
10551 * printing.el: Add documentation to all the `pr-toggle-' commands.
10552
cd394be1 105532011-07-11 Leo Liu <sdl.web@gmail.com>
481a51b6
LL
10554
10555 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10556 backends where it makes sense (bug#2623).
10557
dcc88d8a
LMI
105582011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10559
c3de9feb
LMI
10560 * dired-x.el (dired-guess-default): Remove duplicate shell command
10561 entries (bug#2028).
8a93078b 10562 (dired-guess-default): Fix grammar in doc string (bug#2028).
eea84fe5 10563 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
c3de9feb 10564
dcc88d8a
LMI
10565 * subr.el (remove-duplicates): New conveniency function.
10566
505e3645
LMI
105672011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10568
10569 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10570 (bug#1526).
10571
105722011-07-10 Martin Rudalics <rudalics@gmx.at>
10573
10574 * window.el (display-buffer-normalize-default): Don't invert
10575 meaning of even-window-heights. Reported by Eli Zaretskii
10576 <eliz@gnu.org>.
10577
455e4fa1
BR
105782011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
10579
10580 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
10581
8e0bc3e9
CY
105822011-07-10 Chong Yidong <cyd@stupidchicken.com>
10583
10584 * window.el (display-buffer): Fix arguments to
10585 display-buffer-reuse-window in last change.
10586
fa7c3228
CY
10587 * faces.el (link): Use a less saturated blue on light backgrounds.
10588
10589 * startup.el (fancy-startup-text, fancy-about-text)
10590 (fancy-startup-tail): Use font-lock faces, for background safety.
10591
c0a7f300
BN
105922011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
10593
b796c9b7
SM
10594 * emulation/viper-cmd.el (viper-change-state-to-vi):
10595 Limit triggering of abbrev expansion (Bug#9038).
c0a7f300 10596
4dc2a129
MR
105972011-07-09 Martin Rudalics <rudalics@gmx.at>
10598
10599 * window.el (display-buffer-default-specifiers): Remove.
10600 (display-buffer-macro-specifiers): Remove default specifiers.
10601 (display-buffer-alist): Default to nil.
b796c9b7 10602 (display-buffer-reuse-window): New optional argument other-window.
4dc2a129
MR
10603 (display-buffer-pop-up-window): Allow splitting internal
10604 windows. Check whether a live window was created.
10605 (display-buffer-other-window-means-other-frame)
10606 (display-buffer-normalize-arguments): Rename to
10607 display-buffer-normalize-argument and rewrite. Set the
10608 other-window specifier.
10609 (display-buffer-normalize-special): New function.
10610 (display-buffer-normalize-options): Rename to
10611 display-buffer-normalize-default and rewrite.
10612 (display-buffer-normalize-options-inhibit): Remove.
10613 (display-buffer-normalize-specifiers): Rewrite.
10614 (display-buffer): Process other-window specifier and call
10615 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
10616 more faithfully.
b796c9b7 10617 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
4dc2a129 10618 (display-buffer-alist-set): Don't handle 'unset default values.
b796c9b7
SM
10619 (display-buffer-in-window, display-buffer-alist-set):
10620 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
4dc2a129
MR
10621 <tassilo@member.fsf.org>.
10622
2d43b8c9
LL
106232011-07-09 Leo Liu <sdl.web@gmail.com>
10624
10625 * register.el (insert-register): Restore accidental change on
10626 2011-06-26. (Bug#9028)
10627
7f9b7c53
GM
106282011-07-09 Glenn Morris <rgm@gnu.org>
10629
10630 * subr.el (remq): Handle the empty list. (Bug#9024)
10631
f042cfd8
AS
106322011-07-08 Andreas Schwab <schwab@linux-m68k.org>
10633
10634 * mail/sendmail.el (send-mail-function): No longer delay custom
10635 initialization.
10636 * custom.el (custom-initialize-delay): Doc fix.
10637
856b2f11
SM
106382011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10639
10640 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
10641
afae1d68
MA
106422011-07-08 Michael Albinus <michael.albinus@gmx.de>
10643
10644 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
10645 human-friendly prompt.
10646
0757af94
SM
106472011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10648
10649 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10650 provided by a particular plugin.
10651
d760b731
LMI
106522011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10653
10654 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10655 save customizations (with "emacs -Q"), just set the variable
10656 instead of erroring out.
10657
10658 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10659
cd79ce90
JL
106602011-07-08 Juri Linkov <juri@jurta.org>
10661
10662 * arc-mode.el (archive-zip-expunge, archive-zip-update)
10663 (archive-zip-update-case): Use 7z if found by `executable-find'.
10664 The order of searching the available programs is the same as in
10665 `archive-zip-extract' (bug#8968).
10666
14cc04aa
CY
106672011-07-07 Chong Yidong <cyd@stupidchicken.com>
10668
10669 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10670 (menu-bar-options-menu): Tweak descriptions.
10671
0a1848ec
LMI
106722011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10673
10674 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10675 menu items into verb phrases (bug#1421). Also refill to fit under
10676 80 columns.
10677
f5bd0689
CY
106782011-07-07 Chong Yidong <cyd@stupidchicken.com>
10679
538e85c6
CY
10680 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10681 (Info-read-node-name): Doc fix (Bug#1084).
10682
f5bd0689
CY
10683 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10684 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10685 (end-of-sexp, beginning-of-sexp)
10686 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10687 (forward-symbol, forward-same-syntax, word-at-point)
10688 (sentence-at-point): Doc fix (Bug#1144).
10689
56ec5115
LMI
106902011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10691
f3f8e37f
LMI
10692 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10693 should cover it (bug#1281).
10694
0757af94 10695 * cus-edit.el (custom-show): Mark as obsolete.
af0905c8 10696
e9fce1ac 10697 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
12b9eb35
LMI
10698 negotiation fails, then possibly try again with a non-encrypted
10699 connection (bug#9017).
10700
56ec5115
LMI
10701 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10702 be used.
10703
c2f9aec8
RS
107042011-07-07 Richard Stallman <rms@gnu.org>
10705
10706 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10707 property, and handle its changed format.
10708 Look for the correct line number.
10709 Use file's line contents (but not past first =) to find
10710 correct line in message.
10711
ef7b981d 107122011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
10713
10714 * international/characters.el (build-unicode-category-table):
10715 Delete it.
0757af94 10716 (unicode-category-table): Set it by unicode-property-table-internal.
c805dec0 10717
0757af94 10718 * international/mule-cmds.el (char-code-property-alist): Move to
c805dec0
KH
10719 to src/chartab.c.
10720 (get-char-code-property): Call unicode-property-table-internal to
10721 load a file. Call get-unicode-property-internal where necessary.
10722 (put-char-code-property): Call unicode-property-table-internal to
10723 load a file. Call put-unicode-property-internal where necessary.
10724 put-unicode-property-internal where necessary.
0757af94
SM
10725 (char-code-property-description):
10726 Call unicode-property-table-internal to load a file.
c805dec0
KH
10727
10728 * international/charprop.el:
10729 * international/uni-bidi.el:
10730 * international/uni-category.el:
10731 * international/uni-combining.el:
10732 * international/uni-comment.el:
10733 * international/uni-decimal.el:
10734 * international/uni-decomposition.el:
10735 * international/uni-digit.el:
10736 * international/uni-lowercase.el:
10737 * international/uni-mirrored.el:
10738 * international/uni-name.el:
10739 * international/uni-numeric.el:
10740 * international/uni-old-name.el:
10741 * international/uni-titlecase.el:
10742 * international/uni-uppercase.el: Regenerate.
10743
10744 * loadup.el: Load international/charprop.el before
10745 international/characters.
10746
e14b388a
CY
107472011-07-07 Chong Yidong <cyd@stupidchicken.com>
10748
10749 * window.el (next-buffer, previous-buffer): Signal an error if
10750 called from a minibuffer window.
10751
10752 * bindings.el: Revert 2011-07-04 change.
10753
354cf0ba
RS
107542011-07-06 Richard Stallman <rms@gnu.org>
10755
10756 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10757 (rmail-mime-insert-bulk, rmail-mime-insert-text):
10758 Treat markers like ints.
10759 (rmail-mime-entity): Doc fix.
10760
a48868a7
LMI
107612011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10762
4906cd3d
LMI
10763 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10764 defcustom again for backwards compatibility.
10765
e0457abe
LMI
10766 * simple.el (shell-command-on-region): Fill.
10767
d67f7e1f
LMI
10768 * dired-aux.el (dired-kill-line): Add a doc string.
10769
fe204702
LMI
10770 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10771 to "\\sw\\|\\s_" (bug#358).
10772
a48868a7
LMI
10773 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10774 (dired-unmark-backward): Ditto.
10775 (dired-flag-backup-files): Ditto.
10776
10777 * dired-x.el (dired-mark-sexp): Ditto.
10778
aa8a705c
RS
107792011-07-06 Richard Stallman <rms@gnu.org>
10780
10781 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
10782 (rmail-mime-entity): New arg TRUNCATED.
10783 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
10784 New functions.
10785 (rmail-mime-save): Warn if entity is truncated.
10786 (rmail-mime-toggle-hidden): Likewise, for showing.
10787 (rmail-mime-process-multipart): Record when an entity is truncated.
10788
a9a936b9
RS
10789 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10790 if ENTITY is a string.
10791
1f2b92cb
LMI
107922011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10793
f4f73198 10794 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
0757af94
SM
10795 of faces when `M-C-x'-ing their definitions (bug#8378).
10796 Also clean up the code slightly.
f4f73198 10797
12b16734 10798 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
da6062e6 10799 because that makes the colors go away.
12b16734 10800
f0691d22
LMI
10801 * mail/sendmail.el (send-mail-function): Change the default to
10802 `sendmail-query-once'.
9e87df06 10803 (sendmail-query-once): Add an autoload cookie.
f0691d22 10804
1f2b92cb
LMI
10805 * net/network-stream.el (network-stream-open-starttls): Try using
10806 a plain connection even if the server offered STARTTLS, and we
10807 kinda wanted to use it, if Emacs doesn't have any STARTTLS
10808 capability. This should make smtpmail.el work in slightly more
10809 configurations.
10810
1cdd2a1b
MA
108112011-07-06 Michael Albinus <michael.albinus@gmx.de>
10812
10813 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10814 New defun.
10815 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10816
fbcc67e2
MM
108172011-07-06 Michael R. Mauger <mmaug@yahoo.com>
10818
10819 * progmodes/sql.el: Version 3.0
0757af94 10820 (sql-product-alist): Add product :completion-object,
fbcc67e2 10821 :completion-column, and :statement attributes.
0757af94 10822 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
fbcc67e2 10823 (sql-mode-syntax-table): Mark all punctuation.
0757af94 10824 (sql-font-lock-keywords-builder): Temporarily remove fallback on
fbcc67e2
MM
10825 ansi keywords.
10826 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
0757af94 10827 (sql-mode-oracle-font-lock-keywords): Improve.
fbcc67e2
MM
10828 (sql-oracle-show-reserved-words): New function for development.
10829 (sql-product-font-lock): Simplify for source code buffers.
10830 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10831 New functions.
10832 (sql-highlight-product): Set product specific syntax table.
0757af94
SM
10833 (sql-mode-map): Add statement movement functions.
10834 (sql-ansi-statement-starters, sql-oracle-statement-starters):
10835 New variable.
fbcc67e2
MM
10836 (sql-statement-regexp, sql-beginning-of-statement)
10837 (sql-end-of-statement, sql-signum): New functions.
0757af94 10838 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
fbcc67e2
MM
10839 (sql-show-sqli-buffer): Bug fix.
10840 (sql-interactive-mode): Store connection data as buffer local.
0757af94 10841 (sql-connect): Add NEW-NAME parameter. Redesign interaction
fbcc67e2
MM
10842 with sql-interactive-mode.
10843 (sql-save-connection): Save buffer local settings.
0757af94 10844 (sql-connection-menu-filter): Change menu entry name.
fbcc67e2
MM
10845 (sql-product-interactive): Bug fix.
10846 (sql-preoutput-hold): New variable.
10847 (sql-interactive-remove-continuation-prompt): Bug fixes.
10848 (sql-debug-redirect): New variable.
10849 (sql-str-literal): New function.
10850 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
0757af94 10851 Redesign.
fbcc67e2
MM
10852 (sql-oracle-save-settings, sql-oracle-restore-settings)
10853 (sql-oracle-list-all, sql-oracle-list-table): New functions.
10854 (sql-completion-object, sql-completion-column)
10855 (sql-completion-sqlbuf): New variables.
10856 (sql-build-completions-1, sql-build-completions)
10857 (sql-try-completion): New functions.
10858 (sql-read-table-name): Use them.
10859 (sql-contains-names): New buffer local variable.
10860 (sql-list-all, sql-list-table): Use it.
10861 (sql-oracle-completion-types): New variable.
10862 (sql-oracle-completion-object, sql-sqlite-completion-object)
10863 (sql-postgres-completion-object): New functions.
10864
d4eaeab1
GM
108652011-07-06 Glenn Morris <rgm@gnu.org>
10866
10867 * window.el (pop-to-buffer): Doc fix.
10868
322b7dab 108692011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
a1d3a912
CY
10870
10871 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10872
322b7dab 108732011-07-06 Chong Yidong <cyd@stupidchicken.com>
0484d600 10874
322b7dab 10875 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
4f8f657f 10876
322b7dab 10877 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
8f43cbf3 10878
605dd5bf
CY
108792011-07-05 Chong Yidong <cyd@stupidchicken.com>
10880
10881 * button.el (button): Inherit from link face. Suggested by Dan
10882 Nicolaescu.
10883
7dbfa719
SM
108842011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10885
3db614b0
SM
10886 * progmodes/gdb-mi.el: Fit in 80 columns.
10887 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10888 switch-to-buffer.
10889
7dbfa719
SM
10890 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10891 if imenu is simply not configured (bug#8941).
10892
919d884a
KM
108932011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
10894
10895 * allout.el (allout-post-undo-hook): New allout outline-change
10896 event hook to signal undo activity.
10897 (allout-post-command-business): Run allout-post-undo-hook if an
10898 undo just occurred.
7dbfa719
SM
10899 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10900 * allout-widgets.el (allout-widgets-after-undo-function):
10901 Ensure the integrity of the current item's decoration after it has been
919d884a
KM
10902 in the vicinity of an undo.
10903 (allout-widgets-mode): Include allout-widgets-after-undo-function
10904 on the new allout-post-undo-hook.
10905
450a0f09
SM
109062011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10907
10908 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10909 Let define-derived-mode define it.
10910 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10911 cycles of abbrev-table inheritance (bug#8998).
10912
2de69e00
RW
109132011-07-05 Roland Winkler <winkler@gnu.org>
10914
10915 * textmodes/bibtex.el: Add support for biblatex.
10916 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10917 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10918 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10919 (bibtex-entry-alist, bibtex-field-alist): New variables.
10920 (bibtex-entry-field-alist): Obsolete alias for
10921 bibtex-BibTeX-entry-alist.
10922 (bibtex-entry-alist, bibtex-field-alist): New widgets.
10923 (bibtex-set-dialect): New command.
10924 (bibtex-entry-type, bibtex-entry-head)
450a0f09
SM
10925 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10926 Bind via bibtex-set-dialect.
2de69e00
RW
10927 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10928 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10929 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10930 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10931 Define via bibtex-set-dialect.
450a0f09
SM
10932 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10933 Obey bibtex-no-opt-remove-re.
2de69e00
RW
10934 (bibtex-vec-push, bibtex-vec-incr): New functions.
10935 (bibtex-format-entry, bibtex-field-list)
10936 (bibtex-print-help-message, bibtex-validate)
10937 (bibtex-search-entries): Use new format of bibtex-entry-alist.
10938
2dcdbdd9
SM
109392011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10940
10941 * progmodes/compile.el (compilation-goto-locus):
10942 * net/tramp-cmds.el (tramp-append-tramp-buffers):
10943 * bs.el (bs-cycle-next, bs-cycle-previous):
10944 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
10945 * bindings.el (mode-line-other-buffer):
10946 * autoinsert.el (auto-insert):
10947 * arc-mode.el (archive-extract):
10948 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
10949
b27640fe
JB
109502011-07-05 Juanma Barranquero <lekktu@gmail.com>
10951
10952 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
10953 Fix check of `emacs-lock-unlockable-modes'.
10954 Coerce true values of `emacs-lock--try-unlocking' to t.
10955
53bbe3ad
JB
109562011-07-05 Juanma Barranquero <lekktu@gmail.com>
10957
10958 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
10959 * emacs-lock.el: New file.
10960
1d3cdbc7
JD
109612011-07-05 Julien Danjou <julien@danjou.info>
10962
10963 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
10964 than `boundp' to check if face is set.
10965
9173deec
JB
109662011-07-05 Juanma Barranquero <lekktu@gmail.com>
10967
10968 * register.el (registerv-make):
10969 * window.el (window-min-height): Fix typos in docstrings.
10970
869795d6
JD
109712011-07-05 Jan Djärv <jan.h.d@swipnet.se>
10972
9173deec 10973 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
869795d6
JD
10974 Update doc string.
10975
b768cdcd
JB
109762011-07-04 Juanma Barranquero <lekktu@gmail.com>
10977
10978 * server.el (server-execute): Catch quit and call
10979 `server-return-error' to pass the error back to emacsclient and
10980 close the connection (bug#8942).
10981
13aa217b
KM
109822011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
10983
10984 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
10985 insecure exception for current topic. Also note that auto-saves
10986 are handled differently.
10987
5d3385a0 10988 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
13aa217b
KM
10989 State variables for tracking auto-save inhibition situation.
10990
10991 (allout-write-contents-hook-handler): Rename from
10992 'allout-write-file-hook-handler', and describe how it depends on
10993 write-contents-functions sensitivity to non-nil value to prevent
10994 file write.
10995
10996 (allout-auto-save-hook-handler): Remove. auto-save does not check
10997 this in individual buffers, only in the starting buffer, so this
10998 is not the right way for us to inhibit auto-save in a buffer
10999 according to its condition.
11000
11001 (allout-mode): Use new allout-write-contents-hook-handler, and
11002 only with write-contents-functions. Remove auto-save provisions -
11003 they're implemented elsewhere.
11004
11005 (allout-before-change-handler): If undo is in progress, note that
11006 for attention of allout-post-command-business.
11007
11008 (allout-post-command-business): If the command we're following was
11009 an undo, check for change in the status of encrypted items and
11010 adjust auto-save inhibitions accordingly.
11011
11012 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
11013 according to whether there are or aren't any plain-text topics
11014 pending encryption.
11015
2dcdbdd9 11016 (allout-inhibit-auto-save-info-for-decryption):
1154d12e
JB
11017 Adjust buffer-saved-size and some allout state to inhibit auto-saves
11018 if there are plain-text topics pending encryption.
13aa217b
KM
11019
11020 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
11021 buffer-saved-size and some allout state to not inhibit auto-saves
11022 if there are no longer any plain-text topics pending encryption.
11023
0757af94
SM
11024 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
11025 No longer provide for exemption of the current topic.
13aa217b 11026
ac89b32c
JL
110272011-07-04 Juri Linkov <juri@jurta.org>
11028
11029 Add 7z operations to delete and save changed members (bug#8968).
11030 * arc-mode.el (archive-7z-expunge, archive-7z-update):
11031 New defcustoms.
11032 (archive-7z-write-file-member): New function.
11033 (archive-7z-summarize): Fix the number of dashes in the
11034 listing output.
11035
8fa39615
SM
110362011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11037
11038 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
11039 (bug#8958).
11040
2f11b3f1
CY
110412011-07-04 Chong Yidong <cyd@stupidchicken.com>
11042
d66fef2b
CY
11043 * bindings.el: Ignore next-buffer and previous-buffer in
11044 minibuffer-local-map.
11045
2f11b3f1
CY
11046 * font-lock.el (font-lock-builtin-face): Change light background
11047 color to dark slate blue (Bug#6693).
11048
f932a347
WD
110492011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
11050
11051 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
11052
c8af70e1
SM
110532011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11054
11055 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
11056 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11057 Add switch-to-buffer.
11058
f158badc
LMI
110592011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11060
11061 * isearch.el (isearch-search-fun-function): Clarify further the
11062 meaning of the function returned.
11063
6d95bd46
MA
110642011-07-04 Michael Albinus <michael.albinus@gmx.de>
11065
11066 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
11067
11068 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
11069 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
11070 Use it.
11071 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
11072 `tramp-default-remote-path' does not exist.
11073 (tramp-send-command-and-read): New optional argument NOERROR.
11074 (tramp-open-connection-setup-interactive-shell)
11075 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
11076 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
11077 (tramp-process-sentinel): Flush also process' connection property.
11078 (tramp-sh-handle-start-file-process): Do not set process
11079 sentinel. It is done now ...
11080 (tramp-maybe-open-connection): ... here. (Bug#8929)
11081
909e6b67
MK
110822011-07-04 MON KEY <monkey@sandpframing.com>
11083
11084 * play/animate.el (animate-string): Doc fixes and allow changing
11085 the buffer name (bug#5417).
11086
110872011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11088
c8af70e1 11089 * play/animate.el (animation-buffer-name): Rename from *animate*.
909e6b67 11090
f34755dc
PE
110912011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11092
396cec72
PE
11093 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
11094 This is simpler and helps future-proof the code.
11095 (timer-until): Use time-subtract and float-time.
08235028 11096 (timer--time-less-p): Use time-less-p.
f34755dc 11097
56e6cc31
JB
110982011-07-04 Juanma Barranquero <lekktu@gmail.com>
11099
3abb79e5
JB
11100 * type-break.el (timep): Use the value of `float-time' to avoid a
11101 byte-compiler warning.
11102
56e6cc31
JB
11103 * server.el (server-eval-and-print): Return any result, even nil.
11104
7b9430b4
PE
111052011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11106
11107 * type-break.el: Accept time formats that the builtins accept.
11108 (timep, type-break-time-difference): Accept any format that
11109 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
11110 This is simpler and helps future-proof the code.
11111 (type-break-time-difference): Round rather than ignoring
11112 subseconds components.
11113
3034e9e7
LMI
111142011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11115
11116 * info.el (Info-apropos-matches): Make non-interactive, since it
11117 doesn't seem to do anything useful as a command (bug#8829).
11118
1485f4c0
CY
111192011-07-03 Chong Yidong <cyd@stupidchicken.com>
11120
11121 * frame.el (frame-background-mode, frame-set-background-mode):
c8af70e1 11122 Move from faces.el.
1485f4c0
CY
11123 (frame-default-terminal-background): New function.
11124
11125 * custom.el (custom-push-theme): Don't record faces in `changed'
11126 theme; this doesn't work correctly for per-frame face settings.
11127 (disable-theme): Use face-set-after-frame-default to reset faces.
11128 (custom--frame-color-default): New function.
11129
9fa3dd45
LMI
111302011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11131
c8af70e1 11132 * dired.el (dired-flagging-regexp): Remove unused variable
9fa3dd45
LMI
11133 (bug#8769).
11134
6cbbc20c
KR
111352011-03-29 Kevin Ryde <user42@zip.com.au>
11136
11137 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11138 `perl-Test2' extend to match possible "fail #N" rep count
11139 (bug#8377).
11140
c7f98048
LMI
111412011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11142
65676592
LMI
11143 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11144 `smtpmail-via-smtp' now returns the error instead of nil.
11145
c7f98048
LMI
11146 * isearch.el (isearch-search-fun-function): Clarify the doc string
11147 (bug#8101).
11148
56e6cc31 111492011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
9a51c6c7
RK
11150
11151 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11152 unnecessary spaces (bug#8987).
11153
2b216704
LMI
111542011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11155
11156 * net/network-stream.el (open-network-stream): Use the
11157 :end-of-capability command thoughout.
11158
111592011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11160
11161 * net/network-stream.el (open-network-stream): Add the
11162 :end-of-capability command parameter, used by pop3.el.
11163
36adf6ce
LMI
111642011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11165
1ca0da0e
LMI
11166 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11167
fc00f69c
LMI
11168 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11169 for list)" (bug#6475).
11170
28fd8759 11171 * files.el (file-expand-wildcards): Ignore non-readable
8350f087 11172 sub-directories while trying to find matches instead of signaling
28fd8759
LMI
11173 an error (bug#6297).
11174
0dd8b6da
LMI
11175 * man.el (Man-reference-regexp): Allow matching possible
11176 word-wrapped references (bug#6289).
11177
ce1438d6
LMI
11178 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11179 for consistency with the other vc buffers (bug#6197).
11180 (vc-checkin): Ditto.
11181
11182 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11183
36adf6ce
LMI
11184 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11185
e83cc1f7
LMI
111862011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11187
8a20ca4c
LMI
11188 * custom.el (defcustom): Clarify that :set is only used in the
11189 Customize user interface (bug#6089).
11190
83319045
LMI
11191 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11192 associated with a file, refuse to run instead of erroring out
11193 (bug#6084).
11194
a8392169
LMI
11195 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11196 the doc string, since it appears that using `fill-column' always
11197 controls the width (bug#7845).
11198
e83cc1f7
LMI
11199 * simple.el (shell-command-on-region): Say where the error output
11200 went if `shell-command-default-error-buffer' is set (bug#6857).
11201
e47ca23b
KM
112022011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11203
11204 * allout.el (allout-yank-processing): Adjust cursor position for
11205 backwards-deleted space.
11206
11207 (allout-rebullet-heading): Register changes with
11208 allout-exposure-changed-hook, so the modified topic is properly
11209 decorated.
11210
5cf56143
LMI
112112011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11212
08549772
LMI
11213 * minibuffer.el (completion-in-region): Document PREDICATE
11214 (bug#7136).
11215
48e96771
LMI
11216 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11217 of keyword/argument pairs (bug#6904).
11218
c8af70e1
SM
11219 * replace.el (multi-occur):
11220 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
5cf56143 11221
e17d05e2
LMI
112222011-07-02 Drew Adams <drew.adams@oracle.com>
11223
11224 * dired.el (dired-mark-if): Make the message about whether it's
11225 marking or unmarking clearer (bug#8523).
11226
063b0e45
LMI
112272011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11228
11229 * disp-table.el (display-table-print-array): New function.
11230 (describe-display-table): Use it to print the vectors more pretty
11231 (Bug#8859).
11232
28545e04
MR
112332011-07-02 Martin Rudalics <rudalics@gmx.at>
11234
11235 * window.el (window-state-get-1): Don't assign clone numbers.
11236 Add clone-of item to list of window parameters.
11237 (window-state-put-2): Don't process clone numbers.
11238 (display-buffer-alist): Fix doc-string.
11239
3349e122
SM
112402011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11241
11242 * subr.el (remq): Don't allocate if it's not needed.
11243 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11244 (keymap--merge-bindings): New functions.
11245 (keymap-canonicalize): Use them to refine the canonicalization.
11246 * minibuffer.el (minibuffer-local-completion-map)
11247 (minibuffer-local-must-match-map): Move initialization from C.
11248 (minibuffer-local-filename-completion-map): Move initialization from C;
11249 don't inherit from anything here.
11250 (minibuffer-local-filename-must-match-map): Make obsolete.
11251 (completing-read-default): Use make-composed-keymap to combine
11252 minibuffer-local-filename-completion-map with either
11253 minibuffer-local-must-match-map or
11254 minibuffer-local-filename-completion-map.
11255
d224ac83
GM
112562011-07-01 Glenn Morris <rgm@gnu.org>
11257
3de63bf8
GM
11258 * type-break.el (type-break-time-sum): Use dolist.
11259
d224ac83
GM
11260 * textmodes/flyspell.el (flyspell-word-search-backward):
11261 Replace CL function.
11262
1a1e3f32
SM
112632011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11264
fe3f64d5
SM
11265 * mouse.el (mouse--strip-first-event): New function.
11266 (function-key-map): Use it to map fringe clicks to normal clicks
11267 by default.
11268
eb604e34
SM
11269 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11270 (vc-bzr-revision-completion-table): Add support for annotate and date.
11271
1a1e3f32
SM
11272 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11273 inherit from parent.
11274
5bd35902
LMI
112752011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11276
ace6c69c 11277 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
26bde865 11278 (dired-show-file-type): Doc fixup (bug#8818).
ace6c69c 11279
191e2bed
LMI
11280 * dired.el (dired-mode): Fix up the doc string as suggested by
11281 Drew Adams (bug#8817).
11282
5bd35902
LMI
11283 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11284 cookie, since the manual says that it should be possible to add
11285 this function to `find-file-hook' (bug#8709).
11286
eee8207a
TZ
112872011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11288
11289 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11290 here. Noted Ted Zlatanov as the maintainer.
11291 (cfengine-common-settings, cfengine-common-syntax): New functions
11292 to set up common things between `cfengine-mode' and
11293 `cfengine3-mode'.
11294 (cfengine3-mode): New mode.
11295 (cfengine3-defuns cfengine3-defuns-regex
11296 (cfengine3-class-selector-regex cfengine3-category-regex)
11297 (cfengine3-vartypes cfengine3-font-lock-keywords)
11298 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
eb604e34 11299 (cfengine3-indent-line): Add from cfengine3.el.
eee8207a 11300
36b148cf
MA
113012011-07-01 Michael Albinus <michael.albinus@gmx.de>
11302
11303 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11304
11305 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11306
0bf4ba9a
MR
113072011-07-01 Martin Rudalics <rudalics@gmx.at>
11308
11309 * window.el (same-window-buffer-names, same-window-regexps)
11310 (same-window-p, special-display-frame-alist)
11311 (special-display-popup-frame, special-display-function)
11312 (special-display-buffer-names, special-display-regexps)
11313 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11314 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11315 (split-window-preferred-function, split-height-threshold)
11316 (split-width-threshold, even-window-heights)
11317 (display-buffer-mark-dedicated, window-splittable-p)
11318 (split-window-sensibly, window-safely-shrinkable-p):
11319 Un-obsolete.
11320 (display-buffer): Don't spread args with function specifier
11321 because special-display-popup-frame won't like it.
11322
35837f51
PE
113232011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11324
d0672f86
PE
11325 Time-stamp simplifications and fixes.
11326 These improve accuracy slightly, and future-proof the code
11327 against some potential changes to current-time format.
11328
b9444d97
PE
11329 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11330 by using time-since and float-time.
11331
0ef923dc
PE
11332 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11333 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11334 + NNN microseconds".
11335
2f81380d
PE
11336 * type-break.el (type-break-time-sum): Rewrite using time-add.
11337
845b5c3e
PE
11338 * play/hanoi.el (hanoi-current-time-float): Remove.
11339 All uses replaced by float-time.
11340
ee6f1be0
PE
11341 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11342 This yields a more-accurate answer.
11343 (rng-time-to-float): Remove; no longer needed.
11344
fe955043
PE
11345 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11346
5777162a
PE
11347 * calendar/timeclock.el (timeclock-seconds-to-time):
11348 Defalias to seconds-to-time, since they're the same thing.
11349
3103f8b6 11350 * emacs-lisp/elp.el (elp-elapsed-time):
e2bac5f6 11351 * emacs-lisp/benchmark.el (benchmark-elapse):
35837f51
PE
11352 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11353
0e61a35f
SM
113542011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11355
11356 * window.el (bury-buffer): Don't iconify the only frame.
11357 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11358 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11359
ddd63a1e
CY
113602011-07-01 Chong Yidong <cyd@stupidchicken.com>
11361
0e61a35f
SM
11362 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11363 Add mouse-yank-primary.
ddd63a1e 11364
055f4923
TZ
113652011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11366
11367 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11368
6a2fb145
SM
113692011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11370
11371 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11372 (find-library-name): Use it to find relative load names when provided
11373 absolute file name (bug#8803).
11374
fd4983f2
LMI
113752011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11376
887d14ad
LMI
11377 * textmodes/flyspell.el (flyspell-word): Consider words that
11378 differ only in case as potential doublons (bug#5687).
11379
c53dc7fc
LMI
11380 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11381 Remove two rather uninteresting debugging-like messages to make
11382 debbugs.el more silent.
11383
fd4983f2
LMI
11384 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11385 a password-like phrase.
11386
7a71b18d 113872011-06-30 Masatake YAMATO <yamato@redhat.com>
b14c0c55
AM
11388
11389 * progmodes/cc-guess.el: New file.
11390
6a2fb145 11391 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
b14c0c55
AM
11392
11393 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11394 derived from `c-basic-common-init'.
11395
11396 * progmodes/cc-mode.el (top-level): Require cc-guess.
11397 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11398
1fa280a3
LM
113992011-06-30 Lawrence Mitchell <wence@gmx.li>
11400
11401 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11402
e6597158
AM
114032011-06-30 Alan Mackenzie <acm@muc.de>
11404
1fa280a3
LM
11405 * progmodes/cc-engine.el (c-guess-continued-construct):
11406 Correct the handling of template-args-cont, particularly for when font
e6597158
AM
11407 lock is disabled. Name this case as "CASE G".
11408
68ba37fb
KM
114092011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11410
11411 * allout.el (allout-yank-processing): Fix injection of extra space
11412 between bullet and non-whitespace character in first topic when
11413 pasting, ensuring that the actual spacing in the pasted topic
11414 following the bullet char is preserved. This extra space was
11415 causing pasted encrypted topics to get a decrypted status even
11416 when the content was actually still encrypted. Now the decryption
11417 status from before the paste is preserved.
11418
11419 (allout-flag-region): Set all allout overlays so they evaporate
11420 when reduced to zero length (evanescent), to prevent overlay
11421 leakage.
11422
887a0b34
GM
114232011-06-30 Glenn Morris <rgm@gnu.org>
11424
94b9acce
GM
11425 * w32-fns.el (w32-charset-info-alist): Declare.
11426
1d9b46d4
GM
11427 * find-dired.el (find-grep-options): Simplify.
11428
cc232200
GM
11429 * term/ns-win.el (ns-set-resource): Declare.
11430
28e77c46
GM
11431 * ses.el (row, col): Declare dynamic variables honestly.
11432
887a0b34
GM
11433 * textmodes/reftex-parse.el (index-tags): Declare.
11434
658d8eb8
CY
114352011-06-30 Chong Yidong <cyd@stupidchicken.com>
11436
11437 * cus-edit.el (customize-push-and-save): New function.
11438
11439 * files.el (hack-local-variables-confirm): Use it.
11440
1fa280a3
LM
11441 * custom.el (load-theme): New arg NO-CONFIRM.
11442 Use customize-push-and-save (Bug#8720).
658d8eb8
CY
11443 (custom-enabled-themes): Doc fix.
11444
11445 * cus-theme.el (customize-create-theme)
11446 (custom-theme-merge-theme): Callers to load-theme changed.
11447
bb617717
LMI
114482011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11449
d61bdd5d
LMI
11450 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11451 short URLs have at least one dot in them (bug #7614).
11452
bb617717
LMI
11453 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11454 nil, because using a pty is apparently too slow (bug #895).
11455
2f31f37a
LMI
114562011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11457
11458 * mail/sendmail.el (sendmail-query-once): New function.
11459 (sendmail-query-once-function): New variable.
11460
3076b24e
GM
114612011-06-29 Glenn Morris <rgm@gnu.org>
11462
faf2a174
GM
11463 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11464
3076b24e
GM
11465 * ses.el (top-level): Require cl when compiling.
11466 (ses-set-localvars): Fix error statement.
11467 Call it at compile time to silence a storm of warnings.
11468
5386012d
MR
114692011-06-29 Martin Rudalics <rudalics@gmx.at>
11470
11471 * window.el (normalize-live-buffer): Rename to
11472 window-normalize-buffer.
11473 (normalize-live-frame): Rename to window-normalize-frame.
11474 (normalize-any-window): Rename to window-normalize-any-window.
11475 (normalize-live-window): Rename to window-normalize-live-window.
11476 (make-window-atom): Rename to window-make-atom.
11477 (window-resize-reset): Rename to window--resize-reset.
11478 (window-resize-reset-1): Rename to window--resize-reset-1.
11479 (resize-mini-window): Rename to window--resize-mini-window.
11480 (resize-subwindows-skip-p): Rename to
11481 window--resize-subwindows-skip-p.
11482 (resize-subwindows-normal): Rename to
11483 window--resize-subwindows-normal.
11484 (resize-subwindows): Rename to window--resize-subwindows.
11485 (resize-other-windows): Rename to window--resize-siblings.
11486 (resize-this-window): Rename to window--resize-this-window.
11487 (resize-root-window): Rename to window--resize-root-window.
11488 (resize-root-window-vertically): Rename to
11489 window--resize-root-window-vertically.
11490 (normalize-buffer-to-display): Rename to
11491 window-normalize-buffer-to-display.
11492 (normalize-buffer-to-switch-to): Rename to
11493 window-normalize-buffer-to-switch-to.
11494 Correspondingly update all callers of the functions listed
11495 above.
11496 (display-buffer-alist, display-buffer-normalize-arguments)
11497 (display-buffer-normalize-options, display-buffer)
11498 (display-buffer-alist-set): Use "function" instead of
11499 "fun-with-args".
11500
1176868d
CY
115012011-06-28 Chong Yidong <cyd@stupidchicken.com>
11502
11503 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11504 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11505 debbugs.gnu.org. Mention acknowledgment email.
11506
20a7a65f
LMI
115072011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11508
11509 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11510 buffer multibyteness, since it shouldn't matter.
11511
5f45cca5
MR
115122011-06-28 Martin Rudalics <rudalics@gmx.at>
11513
11514 * window.el (display-buffer-in-side-window): Handle dedicated
11515 windows as in display-buffer-reuse-window.
11516 (display-buffer-normalize-alist): Use value of override
11517 specifier.
11518 (display-buffer-normalize-specifiers): Use value of
11519 other-window-means-other-frame specifier.
11520 (display-buffer-alist): Rewrite some texts in widgets.
11521 (display-buffer): Spread arguments when calling function
11522 specified by fun-with-args.
11523
ad85fe1f
DD
115242011-06-28 Deniz Dogan <deniz@dogan.se>
11525
1fa280a3
LM
11526 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11527 Unnest `let'.
da68c4c8 11528
ad85fe1f
DD
11529 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11530 selectors (Bug#5732).
ec49bd31 11531 (css-proprietary-nmstart-re): Use `regexp-opt'.
ad85fe1f 11532
a08cc025
JA
115332011-06-27 Jari Aalto <jari.aalto@cante.net>
11534
11535 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11536 (eshell-ls-date-format): New defcustom.
11537 (eshell-ls-file): Use it.
11538
e2b551c5
SM
115392011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11540
11541 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11542
8982b231
KY
115432011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11544
11545 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11546 (ange-ftp-make-tmp-name): New arg.
11547 (ange-ftp-file-local-copy): Use it.
11548
36c9fa27
J
115492011-06-27 Jambunathan K <kjambunathan@gmail.com>
11550
11551 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11552 no-conversion (Bug#8870).
11553
d68443dc
MR
115542011-06-27 Martin Rudalics <rudalics@gmx.at>
11555
11556 * window.el (window-right, window-left, window-child)
11557 (window-child-count, window-last-child)
11558 (window-iso-combination-p, walk-window-tree-1)
11559 (window-atom-check-1, window-tree-1, delete-window)
11560 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11561 new naming conventions - window-vchild, window-hchild,
11562 window-next and window-prev are now called window-top-child,
11563 window-left-child, window-next-sibling and window-prev-sibling
11564 respectively.
d615d6d2
MR
11565 (resize-window-reset): Rename to window-resize-reset.
11566 (resize-window-reset-1): Rename to window-resize-reset-1.
11567 (resize-window): Rename to window-resize.
11568 (window-min-height, window-min-width)
11569 (resize-mini-window, resize-this-window, resize-root-window)
11570 (resize-root-window-vertically, adjust-window-trailing-edge)
11571 (enlarge-window, shrink-window, maximize-window)
11572 (minimize-window, delete-window, quit-restore-window)
11573 (split-window, balance-windows, balance-windows-area-adjust)
11574 (balance-windows-area, window-state-put-2)
11575 (display-buffer-even-window-sizes, display-buffer-set-height)
11576 (display-buffer-set-width, set-window-text-height)
11577 (fit-window-to-buffer): Rename all "resize-window" prefixed
11578 calls to use the "window-resize" prefix convention.
11579 (display-buffer-alist): Fix symbol for label specifier.
11580 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
11581 corresponding specifier.
11582 Reported by Juanma Barranquero <lekktu@gmail.com>.
d68443dc 11583
b6458526
VB
115842011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11585
11586 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
11587 convention.
11588 (ses-call-printer): Does not pass an empty string to formatter when the
11589 cell is empty to keep from barking printer Calc math-format-value.
11590
d31fd9ac
RS
115912011-06-27 Richard Stallman <rms@gnu.org>
11592
43d5bf84
RS
11593 * battery.el (battery-mode-line-limit): New variable.
11594 (battery-update): Handle it.
11595
d31fd9ac
RS
11596 * mail/rmailmm.el (rmail-mime-process-multipart):
11597 Handle truncated messages.
11598
819a6054
GM
115992011-06-27 Glenn Morris <rgm@gnu.org>
11600
11601 * progmodes/flymake.el (flymake-err-line-patterns):
11602 Allow for column numbers in the ant/javac pattern. (Bug#8866)
11603
cedc73f2
VB
116042011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11605
819a6054 11606 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
cedc73f2
VB
11607 (ses--clean-!, ses--clean-_): New functions.
11608 (ses-range): Add configurability of readout order, and conversion
11609 to Calc vector.
11610
5e5d49b6
VB
11611 * ses.el (ses-repair-cell-reference-all): New function.
11612 (ses-cell-symbol): Set macro as safe, so that it can be used in
11613 formulas.
11614
56e6cc31 11615 * ses.el: Update cycle detection algorithm.
90ca8b49 11616 (ses-localvars): Add ses--Dijkstra-attempt-nb and
819a6054 11617 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
90ca8b49
VB
11618 (ses-set-localvars): New function.
11619 (ses-make-cell): Add property-list as a cell element.
11620 (ses-cell-property-get-fun, ses-cell-property-get)
11621 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
819a6054
GM
11622 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
11623 New functions.
90ca8b49
VB
11624 (ses-cell-property-set, ses-cell-property-pop)
11625 (ses-cell-property-get-handle): New macro.
11626 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
11627 New aliases, used for code readability.
11628 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
11629 cycle detection.
11630 (ses-self-reference-early-detection): New defcustom.
fac916bf 11631 (ses-formula-references): Robustify against self-referring cells.
90ca8b49
VB
11632 (ses-mode): Use ses-set-localvars.
11633 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
11634 before lauching the update processing.
11635 (ses-initialize-Dijkstra-attempt): New function.
11636 (ses-recalculate-cell): Update for cycle detection based on
11637 Dijkstra algorithm.
11638
2bb63e81
VB
11639 * ses.el: Fix commenting and indenting convention.
11640
c9d29fb8
SM
116412011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11642
11643 * bs.el (bs-cycle-next): Complete last change.
11644
d8e4b68b
JB
116452011-06-27 Drew Adams <drew.adams@oracle.com>
11646
11647 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
11648
40098786
LMI
116492011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11650
c9d29fb8
SM
11651 * net/network-stream.el (network-stream-open-starttls):
11652 Don't re-get capabilities unless we've reestablished connection.
f6ab314e
LMI
11653 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11654
40098786
LMI
11655 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11656 to binary to possibly avoid line encoding issues on Windows (among
11657 other things).
11658
468d09d4
LMI
116592011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11660
11661 * net/network-stream.el (open-network-stream): Return an :error
11662 saying what the problem was, if possible.
11663
11664 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11665 server.
11666
11667 * net/network-stream.el (network-stream-open-starttls): If we
11668 wanted to use STARTTLS, and the server offered it, but we weren't
11669 able to because we had no STARTTLS support, then close the connection.
11670 (open-network-stream): Return an :error element, if present.
11671
16f07dd7
CY
116722011-06-26 Chong Yidong <cyd@stupidchicken.com>
11673
88821ca0
CY
11674 * hl-line.el (hl-line-sticky-flag): Doc fix.
11675 (global-hl-line-sticky-flag): New option (Bug#8323).
11676 (global-hl-line-highlight): Obey it.
11677
16f07dd7
CY
11678 * vc/vc.el (vc-revert-show-diff): Default to t.
11679
6b5ccddf
KM
116802011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
11681
c9d29fb8
SM
11682 * allout-widgets.el (allout-widgets-post-command-business):
11683 Stop decorating intermediate isearch matches. They're not being
6b5ccddf
KM
11684 undecorated when an isearch is continued past, and isearch
11685 automatically collapses them. This leads to "widget leaks", where
11686 decorated items accumulate in collapsed areas. Lines with lots of
c9d29fb8
SM
11687 hidden widgets can slow down cursor travel, substantially.
11688 Too much complicated machinery would be needed to ensure undecoration,
6b5ccddf
KM
11689 so we're doing without this nicety.
11690
11691 (allout-widgets-tally-string): Don't try to do a hash-table-count
11692 of allout-widgets-tally when it's nil. This eliminates spurious "Error
11693 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11694 *Messages* when allout-widgets-maintain-tally is t.
11695
355f2e07
MR
116962011-06-26 Martin Rudalics <rudalics@gmx.at>
11697
11698 * window.el (display-buffer-normalize-argument): Rename to
11699 display-buffer-normalize-arguments. Handle special meaning of
6b5ccddf
KM
11700 LABEL argument. Respect special-display-function when popping up
11701 a new frame. Fix code searching for a window showing the buffer
11702 on another frame.
c9d29fb8
SM
11703 (display-buffer-normalize-specifiers):
11704 Call display-buffer-normalize-arguments.
355f2e07
MR
11705 (display-buffer-in-window): Don't undedicate the window if its
11706 buffer remains the same.
11707 Reported by Drew Adams <drew.adams@oracle.com>.
11708 (display-buffer-alist): Add choice for same-window macro
11709 specfier.
11710 (display-buffer): Mention special meaning of LABEL argument in
11711 doc-string. Fix quoting. Don't pop up a new frame even as
11712 fallback.
11713
7ca8fc42
JB
117142011-06-26 Juanma Barranquero <lekktu@gmail.com>
11715
11716 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11717 avoid deleting the current window in some cases (bug#8911).
11718
bc312254
AS
117192011-06-26 Andreas Schwab <schwab@linux-m68k.org>
11720
11721 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11722 (Bug#8934)
11723
2db18f3f
LMI
117242011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11725
c9d29fb8
SM
11726 * net/network-stream.el (network-stream-open-starttls):
11727 Use built-in TLS support if `gnutls-available-p' is true.
2db18f3f
LMI
11728 (network-stream-open-tls): Ditto.
11729
6302e0d3
LL
117302011-06-26 Leo Liu <sdl.web@gmail.com>
11731
11732 * register.el (registerv): New struct.
11733 (registerv-make): New function.
c9d29fb8
SM
11734 (jump-to-register, describe-register-1, insert-register):
11735 Support the jump-func, print-func and insert-func slot of a registerv
6302e0d3
LL
11736 struct. (Bug#8415)
11737
5fdd4046
CY
117382011-06-26 Chong Yidong <cyd@stupidchicken.com>
11739
2afef60a
CY
11740 * vc/vc.el (vc-revert-show-diff): New defcustom.
11741 (vc-diff-internal): New arg specifying diff buffer.
11742 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
11743 reuse an existing *vc-diff* buffer (Bug#8927).
11744
5fdd4046
CY
11745 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11746
e93db24a
GM
117472011-06-26 Glenn Morris <rgm@gnu.org>
11748
11749 * progmodes/f90.el (f90-critical-indent): New option.
11750 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11751 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11752 (f90-mode): Doc fix.
11753 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11754 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11755 (f90-beginning-of-block, f90-next-block, f90-indent-region)
11756 (f90-match-end): Handle block, critical.
11757
eefff499
GM
117582011-06-25 Glenn Morris <rgm@gnu.org>
11759
f6ba4cc9
GM
11760 * calendar/diary-lib.el (diary-included-files): Doc fix.
11761 (diary-include-files): New function, extracted from
11762 diary-include-other-diary-files and diary-mark-included-diary-files.
11763 (diary-include-other-diary-files, diary-mark-included-diary-files):
11764 Just call diary-include-files.
11765 (diary-mark-entries): Reset diary-included-files on first call.
11766
16712304
GM
11767 * calendar/diary-lib.el (diary-mark-entries)
11768 (diary-mark-included-diary-files):
11769 Visit included diary-files in temp buffers.
11770
5d8e0d43
GM
11771 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11772 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11773 (f90-start-block-re, f90-imenu-generic-expression)
11774 (f90-looking-at-program-block-start, f90-no-block-limit):
11775 Add support for submodules.
11776
ccf7a5d5
GM
11777 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11778 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
eefff499 11779
11fdef7d 117802011-06-25 Eli Zaretskii <eliz@gnu.org>
638e9005
EZ
11781
11782 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
11783 buffer-file-type before setting its value, to avoid disastrous
eefff499 11784 global effects on decoding files for DOS/Windows systems. (Bug#8780)
638e9005 11785
74f53697
JB
117862011-06-25 Juanma Barranquero <lekktu@gmail.com>
11787
11788 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11789
11790 * ses.el (ses-unload-function):
11791 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11792
11793 * proced.el (proced-unload-function):
11794 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11795
18a4ce5e
AR
117962011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
11797
11798 * server.el (server-create-window-system-frame): Add parameters arg.
11799 (server-process-filter): Doc fix. Handle frame-parameters.
11800
519d22cc
JB
118012011-06-25 Juanma Barranquero <lekktu@gmail.com>
11802
11803 Fix bug#8730, bug#8781.
11804
11805 * loadhist.el (unload--set-major-mode): New function.
11806 (unload-feature): Use it.
11807
11808 * progmodes/python.el (python-after-info-look): Add autoload cookie.
11809 (python-unload-function): New function.
11810
c206f5b0
SM
118112011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11812
11813 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11814
f9ad64f3
GS
118152011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
11816
11817 * net/browse-url.el (browse-url-firefox-program): Add icecat to
11818 the candidates list.
11819
7d0da90e
JB
118202011-06-24 Juanma Barranquero <lekktu@gmail.com>
11821
11822 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11823
14b4e83d
RS
118242011-06-23 Richard Stallman <rms@gnu.org>
11825
11826 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11827 (rmail-variables): Set next-error-move-function.
11828 (rmail-what-message): Take argument POS.
11829 (rmail-next-error-move): New function.
11830
273d2baf
SM
118312011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11832
11833 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11834 messages for adjacent non-terminals.
11835
56c2cc9a
RS
118362011-06-23 Richard Stallman <rms@gnu.org>
11837
11838 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
f444564c 11839 (rmail-show-message-1): Preserve buffer modified flag.
8050daa1
RS
11840 (rmail-start-mail): Don't specify use of rmail-mail-return;
11841 that's done by mail-bury now.
11842 (rmail-mail-return): Handle arg NEWBUF.
56c2cc9a 11843
d59eb518
MA
118442011-06-23 Michael Albinus <michael.albinus@gmx.de>
11845
11846 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11847 SIZE is a number.
11848
02cfc6d6
MR
118492011-06-23 Martin Rudalics <rudalics@gmx.at>
11850
11851 * window.el (get-lru-window, get-mru-window)
11852 (get-largest-window): Never return a minibuffer window.
11853 (display-buffer-pop-up-window): Fix a bug that could lead to
11854 reusing the minibuffer window.
11855 (display-buffer): Pass original specifier argument to
11856 display-buffer-function instead of the normalized one.
11857 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11858
4e323265
LL
118592011-06-22 Leo Liu <sdl.web@gmail.com>
11860
11861 * minibuffer.el (completing-read-function)
11862 (completing-read-default): Move from minibuf.c
11863
7a70468f
RS
118642011-06-22 Richard Stallman <rms@gnu.org>
11865
50718fc2
RS
11866 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11867 to Rmail even if not started by a special Rmail command.
11868
7a70468f
RS
11869 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11870 Copy the buffer currently showing just one message.
11871
297dde5a
RW
118722011-06-22 Roland Winkler <winkler@gnu.org>
11873
11874 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11875 (bibtex-clean-entry): First delete the old key so that a
11876 customized algorithm for generating the new key does not get
11877 confused by the old key.
11878 (bibtex-url): Obey regexp of first step.
11879 (bibtex-search-entries): Do not use add-to-list with local
11880 list-var.
11881
97bb1093
LMI
118822011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11883
11884 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11885 stored a user name, then query for the password first, instead of
11886 waiting for SMTP to give an error message and the trying again.
11887
1c0f1a19
JD
118882011-06-22 Lawrence Mitchell <wence@gmx.li>
11889
11890 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11891 BUFFER in call-process.
11892
396f7c9d
LMI
118932011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11894
11895 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11896 QUIT twice.
ddb7ffee
LMI
11897 (smtpmail-try-auth-methods): Require user name and password from
11898 auth-source.
396f7c9d 11899
8998d1b3
MR
119002011-06-22 Martin Rudalics <rudalics@gmx.at>
11901
11902 * window.el (display-buffer-default-specifiers)
11903 (display-buffer-alist): Remove entries for pop-up-frame-alist.
11904 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
130e3e11 11905 (split-window): Normalize SIDE argument (Bug#8916).
8998d1b3
MR
11906
11907 * frame.el (pop-up-frame-alist, pop-up-frame-function)
11908 (special-display-frame-alist, special-display-popup-frame):
11909 Remove duplicate declarations. These are now in window.el.
11910
4ea31e07
LMI
119112011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11912
c9d29fb8
SM
11913 * mail/smtpmail.el (smtpmail-via-smtp):
11914 Set :use-starttls-if-possible so that we always use STARTTLS if the
6af7a784
LMI
11915 server supports it. SMTP servers that support STARTTLS commonly
11916 require it.
11917
11918 * net/network-stream.el (network-stream-open-starttls): Support
11919 upgrading to STARTTLS always, even if we don't have built-in support.
fa463103 11920 (open-network-stream): Add the :always-query-capabilities keyword.
6af7a784 11921
95f41d9a
LMI
11922 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11923 upgrades with `open-network-stream', and rely solely on
11924 auth-source for all credentials. Big changes throughout the file,
11925 but in particular:
c9d29fb8
SM
11926 (smtpmail-auth-credentials): Remove.
11927 (smtpmail-starttls-credentials): Remove.
7d36ad46
LMI
11928 (smtpmail-via-smtp): Check for servers saying they want AUTH after
11929 MAIL FROM, too.
95f41d9a 11930
c9d29fb8
SM
11931 * net/network-stream.el (network-stream-open-starttls):
11932 Provide support for client certificates both for external and built-in
4ea31e07
LMI
11933 STARTTLS.
11934 (auth-source): Require.
11935 (open-network-stream): Document the :client-certificate keyword.
eb8c9362
LMI
11936 (network-stream-certificate): Change cert-cert to cert and
11937 cert-key to key.
4ea31e07 11938
065ec2c7
MA
119392011-06-21 Michael Albinus <michael.albinus@gmx.de>
11940
11941 * net/tramp-cache.el (top): Don't load the persistency file when
11942 "emacs -Q" has been called.
11943
cd93b359
DR
119442011-06-21 Tim Harper <timcharper@gmail.com>
11945
d8e4b68b
JB
11946 * term/ns-win.el (ns-initialize-window-system):
11947 Set application-specific `ApplePressAndHoldEnabled' system
cd93b359
DR
11948 resource to NO as it is not yet supported by the NS port.
11949
ae9c0411
JB
119502011-06-21 Juanma Barranquero <lekktu@gmail.com>
11951
11952 * misc.el (list-dynamic-libraries--refresh): Compute header here...
11953 (list-dynamic-libraries): ...not here.
11954
7f3f739f
LL
119552011-06-21 Leo Liu <sdl.web@gmail.com>
11956
11957 * subr.el (sha1): Implement sha1 using secure-hash.
11958
327c8fb1
MR
119592011-06-21 Martin Rudalics <rudalics@gmx.at>
11960
11961 * window.el (display-buffer-alist): In default value do not
11962 enforce searching a window on any but the selected frame.
11963 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
11964 (display-buffer-select-window): Remove function.
11965 (display-buffer-in-window): When a window on another frame gets
11966 reused, do not select it any more but just raise its frame if
11967 necessary (Bug#8851) and (Bug#8856).
11968 (display-buffer-normalize-options): Handle pop-up-frames related
11969 options more faithfully.
11970 (pop-to-buffer): Don't rely on `display-buffer' selecting the
11971 window if it is on another frame.
c9d29fb8
SM
11972 (display-buffer-alist, display-buffer-default-specifiers):
11973 Don't make new frame unsplittable by default.
9e9de014
MR
11974 (display-buffer-normalize-argument): Fix doc-string typo and use
11975 'same-frame-other-window instead of 'other-window when associating
11976 with display-buffer-macro-specifiers.
327c8fb1 11977
7cf3f556
VB
119782011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
11979
11980 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
11981 New functions.
11982 (5x5-mode-map, 5x5-mode-menu): Bind them.
11983 (5x5-draw-grid): Tweak the solver's rendering.
11984
60a406cf
SM
119852011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11986
11987 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
11988 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
11989
d8e4b68b 119902011-06-21 Drew Adams <drew.adams@oracle.com>
5d907d6c
DA
11991
11992 * menu-bar.el: Use function variable instead of switch-to-buffer.
11993 (menu-bar-select-buffer-function): New variable.
60a406cf 11994 (menu-bar-update-buffers): Use it (bug#8876).
5d907d6c 11995
478d6f95
SM
119962011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
11997
11998 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
11999 variable's status.
12000
ca530739
JD
120012011-06-20 Jan Djärv <jan.h.d@swipnet.se>
12002
12003 * x-dnd.el (x-dnd-version-from-flags)
12004 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
12005 and long as number (Bug#8899).
12006 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
12007
bcd70d97
SM
120082011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12009
60a406cf 12010 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
4cb3bfa0
SM
12011 (completion-try-completion, completion-all-completions): Compute the
12012 metadata argument if it's missing; make it optional (bug#8795).
12013
60a406cf 12014 * wid-edit.el: Use lex-bind and move towards completion-at-point.
bcd70d97
SM
12015 (widget-complete): Use new :completion-function property.
12016 (widget-completions-at-point): New function.
12017 (default): Use :completion-function instead of :complete.
60a406cf
SM
12018 (widget-default-completions): Rename from widget-default-complete;
12019 Rewrite.
bcd70d97
SM
12020 (widget-string-complete, widget-file-complete, widget-color-complete):
12021 Remove functions.
12022 (file, symbol, function, variable, coding-system, color):
12023 * international/mule-cmds.el (default-input-method, charset)
12024 (language-info-custom-alist):
12025 * cus-edit.el (face): Use new property :completions.
12026
12027 * progmodes/pascal.el (pascal-completions-at-point): New function.
12028 (pascal-mode): Use it.
12029 (pascal-mode-map): Use completion-at-point.
12030 (pascal-toggle-completions): Make obsolete.
12031 (pascal-complete-word, pascal-show-completions):
12032 * progmodes/octave-mod.el (octave-complete-symbol):
12033 Redefine as obsolete alias.
12034 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
12035 Signal absence of completion info for old Octave,
12036 (inferior-octave-complete): Redefine as obsolete alias.
12037 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
12038 (meta-completions-at-point): Rename from meta-complete-symbol and
12039 adapt it for use on completion-at-point-functions.
12040 (meta-common-mode): Use it.
12041 (meta-looking-at-backward, meta-match-buffer): Remove.
12042 (meta-complete-symbol): Redefine as obsolete alias.
12043 (meta-common-mode-map): Use completion-at-point.
12044 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
12045 (makefile-mode-map): Use completion-at-point.
12046 (makefile-completions-at-point): Rename from makefile-complete and
12047 adapt it for use on completion-at-point-functions.
12048 (makefile-mode): Use it.
12049 (makefile-complete): Redefine as obsolete alias.
12050
aebf69c8
DD
120512011-06-20 Deniz Dogan <deniz@dogan.se>
12052
12053 * net/rcirc.el: Delete trailing whitespaces once and for all.
12054
bfbbb27d
DC
120552011-06-20 Daniel Colascione <dan.colascione@gmail.com>
12056
12057 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
12058
d264a46b
CY
120592011-06-19 Chong Yidong <cyd@stupidchicken.com>
12060
4ca009e5
CY
12061 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
12062
d264a46b
CY
12063 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
12064
fbf5b3ce
MR
120652011-06-19 Martin Rudalics <rudalics@gmx.at>
12066
12067 * window.el (display-buffer-other-window-means-other-frame):
12068 Call display-buffer-normalize-alist.
12069 (display-buffer-normalize-specifiers-1): Rename to
12070 display-buffer-normalize-argument. New argument other-frame.
12071 Rewrite.
12072 (display-buffer-normalize-specifiers-2): Rename to
12073 display-buffer-normalize-options.
12074 (display-buffer-normalize-alist-1): New function.
12075 (display-buffer-normalize-specifiers-3): Rename to
bcd70d97
SM
12076 display-buffer-normalize-alist.
12077 Call display-buffer-normalize-alist-1.
fbf5b3ce
MR
12078 (display-buffer-normalize-options-inhibit): New variable.
12079 (display-buffer-normalize-specifiers): Rewrite calling
12080 display-buffer-normalize-alist,
12081 display-buffer-normalize-argument, and
12082 display-buffer-normalize-options. Don't call the latter if
12083 display-buffer-normalize-options-inhibit is non-nil.
12084 (frame-auto-delete): New option.
12085 (window-deletable-p): Use frame-auto-delete.
9d89fec7
MR
12086 (window-list-no-nils, window-state-ignored-parameters)
12087 (window-state-get-1, window-state-get, window-state-put-list)
bcd70d97
SM
12088 (window-state-put-1, window-state-put-2, window-state-put):
12089 New functions.
9a028c23
MR
12090 (display-buffer-normalize-options): Move special-display-p group
12091 after pop-up-frame group (Bug#8851) and (Bug#8856).
fbf5b3ce 12092
6d10d800
CY
120932011-06-18 Chong Yidong <cyd@stupidchicken.com>
12094
6420d28b
CY
12095 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
12096 groups (Bug#8776).
12097 (rx-submatch-n): New function.
12098 (rx): Document it.
12099
ddb8b596
CY
12100 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
12101 (Bug#8768).
12102
12103 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
12104
77080289
CY
12105 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
12106
61dfb316
CY
12107 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
12108 anytime existing face settings are present (Bug#8889).
12109
6d10d800
CY
12110 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
12111 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
12112 Remove unused argument.
12113
be3fb2b8
MR
121142011-06-18 Martin Rudalics <rudalics@gmx.at>
12115
bcd70d97
SM
12116 * window.el (display-buffer-default-specifiers):
12117 Remove pop-up-frame. Add pop-up-window-min-height,
be3fb2b8
MR
12118 pop-up-window-min-width, and another reuse-window specifier
12119 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
bcd70d97
SM
12120 (display-buffer-normalize-specifiers-2):
12121 Handle split-height-threshold and split-width-threshold also when
be3fb2b8
MR
12122 pop-up-windows is unset. Add a reuse-window specifier for the
12123 case popping up a new window fails.
12124 (special-display-popup-frame): Remove double quoting.
28dec25a 12125 (display-buffer-normalize-specifiers-1): Fix thinko.
be3fb2b8 12126
1c6d8c76
SM
121272011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12128
12129 * shell.el (shell-completion-vars): Set pcomplete-termination-string
12130 according to comint-completion-addsuffix.
12131
12132 * pcomplete.el: Convert to lexical binding and fix bug#8819.
12133 (pcomplete-suffix-list): Mark as obsolete.
12134 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
12135 pcomplete-seen in the closure.
12136 (pcomplete-comint-setup): Setup completion-at-point as well.
12137 (pcomplete--entries): New function.
12138 (pcomplete--env-regexp): New var.
12139 (pcomplete-entries): Rewrite to work with partial-completion and
12140 without relying on pcomplete-suffix-list.
12141 (pcomplete-pare-list): Remove, unused.
12142
25aef8b8
MR
121432011-06-17 Martin Rudalics <rudalics@gmx.at>
12144
12145 * window.el (display-buffer-alist): Set pop-up-window-min-height
12146 and pop-up-window-min-width in default value. Reported by
12147 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12148 other-window-means-other-frame.
12149 (display-buffer-macro-specifiers): Comment out entry for
12150 other-window specifier.
12151 (display-buffer-other-window-means-other-frame): New function.
12152 (display-buffer-normalize-specifiers-1): New arguments
12153 buffer-name and label. Treat other-window case specially.
12154 (display-buffer-normalize-specifiers-2): Treat other-window case
12155 specially.
12156 (display-buffer-normalize-specifiers-3): New function.
bcd70d97
SM
12157 (display-buffer-normalize-specifiers):
12158 Call display-buffer-normalize-specifiers-3.
25aef8b8 12159
dbad4f69
MR
121602011-06-17 Martin Rudalics <rudalics@gmx.at>
12161
12162 * window.el (same-window-p): Fix two typos introduced when
12163 adding with-no-warnings.
d1067961
MR
12164 (display-buffer-normalize-specifiers-1): Don't check
12165 pop-up-frames for 'unset initialization.
12166 (display-buffer-normalize-specifiers-2): Major rewrite using
12167 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12168 (pop-up-frames, display-buffer-reuse-frames)
12169 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12170 Suggested by David Engster <deng@randomsample.de>.
12171 (even-window-heights): Initialize to 'unset.
12172 (display-buffer-alist-set): Handle new 'unset initializations.
25aef8b8
MR
12173 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12174 other window case.
dbad4f69 12175
9b9c9e3a
MR
121762011-06-16 Martin Rudalics <rudalics@gmx.at>
12177
bcd70d97
SM
12178 * window.el (display-buffer-normalize-specifiers-1):
12179 Respect current value of pop-up-frames for most reasonable values of
9b9c9e3a 12180 second argument of display-buffer (Bug#8865).
981d5c09
MR
12181 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12182 (switch-to-buffer-other-window-same-frame)
12183 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12184 Adams (Bug#8875).
9c2755e9
MR
12185 (display-buffer): Don't check noninteractive when calling
12186 display-buffer-pop-up-frame.
12187 (display-buffer-pop-up-frame): Never pop up a frame in
12188 noninteractive mode (Bug#8857).
67222e1d
MR
12189 (enlarge-window, shrink-window): Don't report an error when the
12190 window can't be resized as requested (Bug#8862).
9b9c9e3a 12191
2b75be67
SM
121922011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12193
9ffdd3ba
SM
12194 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12195
cb581a67
SM
12196 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12197
2b75be67
SM
12198 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12199
8c0e3589
AM
122002011-06-15 Alan Mackenzie <acm@muc.de>
12201
cb581a67
SM
12202 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12203 for declarators, disable knr checking to speed up for normal files.
12204 2: Refactor, replacing a sequence of nested if forms by a cond form.
8c0e3589 12205
b96e6cde
LMI
122062011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12207
4bba86e6
LMI
12208 * net/network-stream.el (open-network-stream): Add the keyword
12209 :always-query-capabilities for the case where you want to force a
12210 `plain' network connection, but the protocol still requires the
12211 capabilitiy command (i.e., SMTP and EHLO).
12212
2b75be67 12213 * subr.el (process-live-p): Rename from `process-alive-p' for
b96e6cde
LMI
12214 consistency with other `-live-p' functions.
12215
efdcdbf8
SM
122162011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12217
12218 * window.el (same-window-buffer-names, same-window-regexps)
12219 (special-display-frame-alist, special-display-popup-frame)
12220 (special-display-function, special-display-buffer-names)
12221 (special-display-regexps, pop-up-frame-alist)
12222 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12223 (pop-up-windows, split-window-preferred-function)
12224 (split-height-threshold, split-width-threshold, even-window-heights)
12225 (display-buffer-mark-dedicated): Don't encourage the use of
12226 display-buffer-alist from Elisp code.
12227
c5cde042
DN
122282011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12229
12230 * progmodes/python.el (python-mode): Derive from prog-mode.
12231 * progmodes/ps-mode.el (ps-mode):
12232 * progmodes/mixal-mode.el (mixal-mode):
50328a1b 12233 * progmodes/cfengine.el (cfengine-mode):
c5cde042
DN
12234 * progmodes/ld-script.el (ld-script-mode): Likewise.
12235
baa1c9ab
MR
122362011-06-15 Martin Rudalics <rudalics@gmx.at>
12237
12238 * window.el (display-buffer-alist): Trim default value to avoid
12239 popping up a new frame (Bug#8857) or reusing an arbitrary window
12240 on another frame.
12241 (display-buffer): Do not fall back on popping up a new frame in
12242 batch mode (Bug#8857).
12243
c5dd5a51
CY
122442011-06-14 Chong Yidong <cyd@stupidchicken.com>
12245
12246 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12247 (custom-theme-summary): New function.
12248 (customize-themes): Use it.
12249
d647b7c4
GM
122502011-06-13 Glenn Morris <rgm@gnu.org>
12251
12252 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12253
9481c002
MR
122542011-06-13 Martin Rudalics <rudalics@gmx.at>
12255
357f93d2
MR
12256 * help.el (help-window): Remove variable.
12257 (help-window-point-marker, temp-buffer-max-height)
12258 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12259 (help-print-return-message): Don't set help-window.
12260 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12261 (help-window-setup-finish): Remove.
12262 (help-window-display-message, help-window-setup)
12263 (with-help-window): Major rewrite based on new
12264 display-buffer-window variable.
12265
12266 * help-mode.el (help-mode-finish): Remove help-window related
12267 code.
12268
12269 * view.el (view-exits-all-viewing-windows): Remove reference to
12270 view-return-to-alist in doc-string.
12271 (view-return-to-alist): Make obsolete.
12272 (view-buffer): Call pop-to-buffer-same-window and remove
12273 undo-window code.
12274 (view-buffer-other-window): Call pop-to-buffer-other-window and
12275 simplify code. Ignore second argument.
12276 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12277 simplify code. Ignore second argument.
12278 (view-return-to-alist-update): Make obsolete.
12279 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12280 Rewrite using quit-restore window parameters.
2b75be67
SM
12281 (view-mode-exit): Rename second argument to EXIT-ONLY.
12282 Rewrite using quit-restore-window.
357f93d2
MR
12283 (View-exit, View-exit-and-edit, View-leave, View-quit)
12284 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12285 appropriate arguments.
12286 (view-end-message): Use quit-restore window parameter.
12287
9481c002
MR
12288 * window.el (display-buffer-function): Rewrite doc-string.
12289 (display-buffer-window, display-buffer-alist): New variables.
12290 (display-buffer-split-specifiers)
12291 (display-buffer-side-specifiers)
12292 (display-buffer-macro-specifiers): New constants.
12293 (display-buffer-even-window-sizes, display-buffer-set-height)
12294 (display-buffer-set-width, display-buffer-select-window)
12295 (display-buffer-in-window, display-buffer-reuse-window)
12296 (display-buffer-split-window-1, display-buffer-split-window)
12297 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12298 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12299 (display-buffer-in-side-window, normalize-buffer-to-display)
12300 (display-buffer-normalize-specifiers-1)
12301 (display-buffer-normalize-specifiers-2)
2b75be67
SM
12302 (display-buffer-normalize-specifiers, display-buffer-frame):
12303 New functions.
9481c002
MR
12304 (display-buffer): Major rewrite.
12305 (display-buffer-other-window, display-buffer-other-frame)
12306 (pop-to-buffer, switch-to-buffer-other-window)
12307 (switch-to-buffer-other-frame): Rewrite.
12308 (display-buffer-same-window, display-buffer-same-frame)
12309 (display-buffer-same-frame-other-window)
12310 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12311 (pop-to-buffer-other-window)
12312 (pop-to-buffer-same-frame-other-window)
12313 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12314 (switch-to-buffer-other-window-same-frame): New functions.
12315 (same-window-p, special-display-p): Rewrite disabling warnings.
12316 Make obsolete.
12317 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12318 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12319 Make obsolete
12320 (same-window-buffer-names, same-window-regexps)
12321 (special-display-frame-alist, special-display-popup-frame)
12322 (special-display-function, special-display-buffer-names)
12323 (special-display-regexps, pop-up-frame-alist)
12324 (pop-up-frame-function, split-window-preferred-function)
12325 (split-height-threshold, split-width-threshold)
12326 (even-window-heights): Make obsolete.
12327
9db51aca
GM
123282011-06-12 Glenn Morris <rgm@gnu.org>
12329
12330 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
7cb363eb 12331 Misc simplifications.
9db51aca 12332
39cffb44
MR
123332011-06-12 Martin Rudalics <rudalics@gmx.at>
12334
12335 * window.el (window-safely-shrinkable-p): Restore function which
12336 was inadvertently removed in change from 2011-06-11. Declare as
12337 obsolete.
12338
2b75be67
SM
12339 * calendar/calendar.el (calendar-generate-window):
12340 Use window-iso-combined-p instead of combination of one-window-p and
39cffb44
MR
12341 window-safely-shrinkable-p.
12342
a8955be7
GM
123432011-06-12 Glenn Morris <rgm@gnu.org>
12344
12345 * progmodes/fortran.el (fortran-mode-syntax-table):
12346 * progmodes/f90.el (f90-mode-syntax-table):
12347 Set % to punctuation. (Bug#8820)
12348 (f90-find-tag-default): Remove, no longer needed.
12349
f0d4059d
DC
123502011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12351
12352 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12353
1100a63c
CY
123542011-06-11 Chong Yidong <cyd@stupidchicken.com>
12355
12356 * image.el (image-animated-p): Return animation delay in seconds.
12357 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12358 (image-animate-timeout): Remove DELAY argument. Don't assume
12359 every subimage has the same delay; get it from image-animated-p.
12360 (image-animate): Caller changed.
12361
def722bf
MA
123622011-06-11 Michael Albinus <michael.albinus@gmx.de>
12363
12364 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12365 to ignored backtrace functions.
12366
0a2bb1a9
GM
123672011-06-11 Glenn Morris <rgm@gnu.org>
12368
12369 * calendar/appt.el (appt-disp-window-function): Doc fix.
12370 (appt-check): Handle overlapping appointments. (Bug#8337)
12371
6198ccd0
MR
123722011-06-11 Martin Rudalics <rudalics@gmx.at>
12373
12374 * window.el (window-tree-1, window-tree): New functions, moving
12375 the latter to window.el.
12376 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12377 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12378 (bw-refresh-edges): Remove.
12379 (balance-windows-1, balance-windows-2): New functions.
12380 (balance-windows): Rewrite in terms of window tree functions,
12381 balance-windows-1 and balance-windows-2.
12382 (bw-adjust-window): Remove.
12383 (balance-windows-area-adjust): New function with functionality of
12384 bw-adjust-window but using resize-window.
2b75be67
SM
12385 (set-window-text-height): Rewrite doc-string.
12386 Use normalize-live-window and resize-window.
12387 (enlarge-window-horizontally, shrink-window-horizontally):
12388 Rename argument to DELTA.
6198ccd0
MR
12389 (window-buffer-height): New function.
12390 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12391 Rewrite using new window resize routines.
2b75be67
SM
12392 (kill-buffer-and-window, mouse-autoselect-window-select):
12393 Use ignore-errors instead of condition-case.
6198ccd0
MR
12394 (quit-window): Call delete-frame instead of delete-windows-on
12395 for the only buffer on frame.
12396
9397e56f
MR
123972011-06-10 Martin Rudalics <rudalics@gmx.at>
12398
12399 * loadup.el (top-level): Load window before files for the sake
12400 of replace-buffer-in-windows.
12401
12402 * files.el (read-buffer-to-switch)
12403 (switch-to-buffer-other-window)
2b75be67
SM
12404 (switch-to-buffer-other-frame, display-buffer-other-frame):
12405 Move to window.el.
9397e56f
MR
12406
12407 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12408 (previous-buffer): Move to window.el.
12409
12410 * bindings.el (unbury-buffer): Move to window.el.
12411
12412 * window.el (delete-other-windows-vertically): Move after
12413 definition of delete-other-windows.
12414 (other-window, delete-windows-on, replace-buffer-in-windows):
12415 Move here from window.c.
12416 (record-window-buffer, unrecord-window-buffer)
12417 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12418 (switch-to-next-buffer): New functions.
12419 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12420 from simple.el. Call switch-to-next-buffer.
2b75be67
SM
12421 (previous-buffer): Move here from simple.el.
12422 Call switch-to-prev-buffer.
9397e56f
MR
12423 (bury-buffer): Move here from buffer.c. Switch to previous
12424 buffer when window cannot be deleted.
12425 (unbury-buffer): Move here from bindings.el.
12426 (ctl-x-map): Move binding for other-window from window.c to
12427 here.
12428 (read-buffer-to-switch, switch-to-buffer-other-window)
12429 (switch-to-buffer-other-frame): Move here from files.el.
12430 (normalize-buffer-to-switch-to): New functions.
2b75be67
SM
12431 (switch-to-buffer): Move here from buffer.c.
12432 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
9397e56f 12433
562dd5e9
MR
124342011-06-10 Martin Rudalics <rudalics@gmx.at>
12435
12436 * window.el (window-min-height, window-min-width): Move here
12437 from window.c. Add defcustoms and rewrite doc-strings.
12438 (resize-mini-window, resize-window): New functions.
12439 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12440 Move here from window.c.
12441 (maximize-window, minimize-window): New functions.
12442 (delete-window, delete-other-windows, split-window): Move here
12443 from window.c.
12444 (window-split-min-size): New function.
12445 (split-window-keep-point): Mention split-window-above-each-other
12446 instead of split-window-vertically.
2b75be67 12447 (split-window-above-each-other, split-window-vertically):
1154d12e
JB
12448 Rename split-window-vertically to split-window-above-each-other
12449 and provide defalias for old definition.
12450 (split-window-side-by-side, split-window-horizontally):
12451 Rename split-window-horizontally to split-window-side-by-side
12452 and provide defalias for the old definition.
562dd5e9
MR
12453 (ctl-x-map): Move bindings for delete-window,
12454 delete-other-windows and enlarge-window here from window.c.
12455 Replace bindings for split-window-vertically and
12456 split-window-horizontally by bindings for
12457 split-window-above-each-other and split-window-side-by-side.
12458
12459 * cus-start.el (all): Remove entries for window-min-height and
12460 window-min-width. Add entries for window-splits and
12461 window-nest.
12462
f0da764a
GM
124632011-06-09 Glenn Morris <rgm@gnu.org>
12464
80675c21
GM
12465 * calendar/appt.el (appt-mode-line): New function.
12466 (appt-check, appt-disp-window): Use it.
12467
f0da764a
GM
12468 * files.el (hack-one-local-variable-eval-safep):
12469 Allow minor-modes with explicit +/-1 arguments.
12470
59f623b7
TZ
124712011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12472
12473 * term/xterm.el (xterm): Add defgroup.
12474 (xterm-extra-capabilities): Add defcustom to supply known xterm
12475 capabilities, skip querying them, or query them (default).
12476 (terminal-init-xterm): Use it.
12477 (terminal-init-xterm-modify-other-keys): New function to set up
12478 modifyOtherKeys support to simplify `terminal-init-xterm'.
12479
9aab8e0d
MR
124802011-06-09 Martin Rudalics <rudalics@gmx.at>
12481
12482 * window.el (resize-window-reset, resize-window-reset-1)
12483 (resize-subwindows-skip-p, resize-subwindows-normal)
12484 (resize-subwindows, resize-other-windows, resize-this-window)
12485 (resize-root-window, resize-root-window-vertically)
12486 (window-deletable-p, window-or-subwindow-p)
12487 (frame-root-window-p): New functions.
12488
e8b08aee
GM
124892011-06-09 Glenn Morris <rgm@gnu.org>
12490
12491 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12492 (ange-ftp-get-files): Use it.
12493
254c37a5
AK
124942011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12495
12496 * mail/sendmail.el (mail-recover-1, mail-recover):
12497 * files.el (recover-file, recover-session):
12498 Handle dired-listing-switches not being just a single short option.
12499
35d7dbd3
GM
125002011-06-09 Glenn Morris <rgm@gnu.org>
12501
12502 * calendar/appt.el (appt-display-message, appt-disp-window):
12503 Handle lists of appointments.
12504
387522b2
MR
125052011-06-08 Martin Rudalics <rudalics@gmx.at>
12506
2b75be67
SM
12507 * window.el (one-window-p): Move down in code.
12508 Rewrite doc-string.
12509 (window-current-scroll-bars): Rewrite doc-string.
12510 Normalize live window argument.
387522b2
MR
12511 (walk-windows, get-window-with-predicate, count-windows):
12512 Rewrite doc-string. Use window-list-1.
12513 (window-in-direction-2, window-in-direction, get-mru-window):
12514 New functions.
12515
d8e4b68b 125162011-06-08 Reuben Thomas <rrt@sc3d.org>
2c587104
GM
12517
12518 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12519 Doc fix (Bug#8713).
12520
125212011-06-08 Chong Yidong <cyd@stupidchicken.com>
12522
12523 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12524
125252011-06-08 Juanma Barranquero <lekktu@gmail.com>
12526
12527 * loadhist.el (unload-feature-special-hooks):
12528 Add `comint-output-filter-functions'.
12529
0de12c52
IK
125302011-06-08 Ivan Kanis <gnu@kanis.fr>
12531
12532 * calendar/appt.el (appt-check): Move some initializations into the let.
12533
f3d1777e
MR
125342011-06-08 Martin Rudalics <rudalics@gmx.at>
12535
12536 * window.el (window-height): Defalias to window-total-height.
12537 (window-width): Defalias to window-body-width.
12538
18af70d0
CY
125392011-06-07 Chong Yidong <cyd@stupidchicken.com>
12540
12541 * image-mode.el (image-toggle-animation): New command.
12542 (image-mode-map): Bind it to RET.
12543 (image-mode): Update message.
12544 (image-toggle-display-image): Avoid a spurious cache flush.
12545 (image-transform-rotation): Doc fix.
12546 (image-transform-properties): Return quickly in the normal case.
12547 (image-animate-loop): Rename from image-animate-max-time.
12548
2b75be67 12549 * image.el (image-animate-max-time): Move to image-mode.el.
18af70d0
CY
12550 (create-animated-image): Remove unnecessary function.
12551 (image-animate): Rename from image-animate-start. New arg.
2b75be67 12552 (image-animate-stop): Remove; just use image-animate-timer.
18af70d0
CY
12553 (image-animate-timer): Use car-safe.
12554 (image-animate-timeout): Rename argument.
12555
190b47e6
MR
125562011-06-07 Martin Rudalics <rudalics@gmx.at>
12557
12558 * window.el (get-lru-window, get-largest-window): Move here from
2b75be67
SM
12559 window.c. Rename first argument to ALL-FRAMES.
12560 Rephrase doc-strings.
12561 (get-buffer-window-list): Rewrite using window-list-1.
12562 Rephrase doc-string.
a1511caf
MR
12563 (window-safe-min-height, window-safe-min-width): New constants.
12564 (window-size-ignore, window-min-size, window-min-size-1)
12565 (window-sizable, window-sizable-p, window-size-fixed-1)
12566 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12567 (window-max-delta-1, window-max-delta, window-resizable)
12568 (window-resizable-p, window-total-height, window-total-width)
12569 (window-body-width): New functions.
12570 (window-full-height-p, window-full-width-p): Rewrite using
12571 window-total-size.
12572 (window-body-height): Rewrite using window-body-size.
190b47e6 12573
85cc1f11
MR
125742011-06-06 Martin Rudalics <rudalics@gmx.at>
12575
12576 * window.el (window-right, window-left, window-child)
12577 (window-child-count, window-last-child, window-any-p)
12578 (normalize-live-buffer, normalize-live-frame)
12579 (normalize-any-window, normalize-live-window)
12580 (window-iso-combination-p, window-iso-combined-p)
12581 (window-iso-combinations)
12582 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
12583 (windows-with-parameter, window-with-parameter)
12584 (window-atom-root, make-window-atom, window-atom-check-1)
2b75be67
SM
12585 (window-atom-check, window-side-check, window-check):
12586 New functions.
85cc1f11
MR
12587 (ignore-window-parameters, window-sides, window-sides-vertical)
12588 (window-sides-slots): New variables.
12589 (window-size-fixed): Move down in code. Minor doc-string fix.
12590
e7156492
AS
125912011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12592
12593 * comint.el (comint-dynamic-complete-as-filename)
12594 (comint-dynamic-complete-filename): Correctly call
12595 completion-in-region.
12596
7e821d0d
DD
125972011-06-05 Deniz Dogan <deniz@dogan.se>
12598
12599 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
12600 in last change.
12601
ac09b8a1
DD
126022011-06-05 Deniz Dogan <deniz@dogan.se>
12603
12604 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
12605 (rcirc): Use it to prompt for encryption.
12606
34699b85
RW
126072011-06-05 Roland Winkler <winkler@gnu.org>
12608
12609 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
12610 (bibtex-search-entries): New command bound to C-c C-a.
12611 (bibtex-display-entries): New function.
12612
004dedd3
RW
126132011-06-05 Roland Winkler <winkler@gnu.org>
12614
12615 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
12616 (bibtex-insert-kill): After yanking insert newline if necessary.
12617 (bibtex-initialize): Call bibtex-string-files-init only once.
12618 (bibtex-mode): Do not call easy-menu-add.
12619 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
12620 (bibtex-yank): Set arg properly if nil.
12621
022fe7ce
RW
126222011-06-05 Roland Winkler <winkler@gnu.org>
12623
2b75be67
SM
12624 * textmodes/bibtex.el (bibtex-search-entry-globally):
12625 New variable.
022fe7ce
RW
12626 (bibtex-search-entry): Use it.
12627
b7c3692a
RW
126282011-06-05 Roland Winkler <winkler@gnu.org>
12629
12630 * textmodes/bibtex.el (bibtex-entry-format): New option
12631 sort-fields.
12632 (bibtex-format-entry, bibtex-reformat): Honor this option.
12633 (bibtex-parse-entry): Return fields in proper order.
12634
8eda563d
JB
126352011-06-05 Juanma Barranquero <lekktu@gmail.com>
12636
12637 * doc-view.el (doc-view-remove-if): Move computation of result out
12638 of `dolist' to silence misleading lexical-binding warning.
12639
7dbe3dbc
CY
126402011-06-04 Chong Yidong <cyd@stupidchicken.com>
12641
12642 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
12643 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
12644
0c33dd17
MA
126452011-06-04 Michael Albinus <michael.albinus@gmx.de>
12646
12647 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
12648 "SunOS 5.10".
12649
f8f91c2b
MA
126502011-06-04 Michael Albinus <michael.albinus@gmx.de>
12651
12652 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12653 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12654 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12655 (tramp-parse-putty):
12656 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12657 (tramp-completion-function-alist-ssh)
12658 (tramp-completion-function-alist-telnet)
12659 (tramp-completion-function-alist-su)
12660 (tramp-completion-function-alist-putty): Set `tramp-autoload'
12661 cookie.
12662
12663 * net/tramp-ftp.el:
12664 * net/tramp-sh.el:
12665 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12666 load "tramp.el" `tramp-set-completion-function'.
12667
e17d9003
SM
126682011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
12669
12670 * shell.el: Require and use pcomplete.
12671 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12672 (shell-completion-vars): Set pcomplete-default-completion-function.
12673
6c4cab03
DD
126742011-06-04 Deniz Dogan <deniz@dogan.se>
12675
12676 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12677 `memq' (Bug#8799).
12678
ea9fafe0
SM
126792011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12680
12681 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12682
b3e945d3
JB
126832011-06-02 Juanma Barranquero <lekktu@gmail.com>
12684
12685 * bs.el (bs--mark-unmark, bs--nth-wrapper):
12686 * mpc.el (mpc-select-extend, mpc-songpointer-context):
12687 * vc/log-view.el (log-view-beginning-of-defun):
12688 * vc/smerge-mode.el (smerge-apply-resolution-patch)
12689 (smerge-refine-forward, smerge-refine-chopup-region):
12690 Silence warning for unused `dotimes' counter variables.
12691
7d520089
SM
126922011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12693
12694 * net/tramp.el (tramp-with-progress-reporter): Rename from
12695 with-progress-reporter. Use `declare'.
12696 * net/tramp-smb.el:
12697 * net/tramp-sh.el:
12698 * net/tramp-gvfs.el: Update all uses.
12699
a1c2400f
JB
127002011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
12701
12702 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12703 buffer isn't killed before making it current.
12704
2403c841
SM
127052011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12706
12707 Silence various byte-compiler warnings.
12708 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12709 `access-type' and new obsolescence format.
12710 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12711 new format.
12712 (byte-compile-check-variable): New `access-type' argument.
12713 Only warn if the access-type is obsolete.
12714 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12715 (byte-compile-variable-set): Adjust callers.
12716 * help-fns.el (describe-variable): Adjust to new obsolescence format.
12717 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12718 setting it as obsolete.
12719 * simple.el (minibuffer-completing-symbol):
12720 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12721 access as obsolete.
12722 * minibuffer.el (minibuffer-completing-file-name): Don't make it
12723 obsolete yet.
12724 * international/quail.el (quail-mouse-choose-completion): Remove unused
12725 code referring to obsolete var.
12726 (quail-choose-completion-string): Remove.
12727 * server.el (server-clients-with, server-kill-buffer-query-function)
12728 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12729 * proced.el (proced-send-signal):
12730 * emacs-lisp/lisp.el (lisp-complete-symbol):
12731 Replace completion-annotate-function with completion-extra-properties.
12732
2462470b
SM
127332011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12734
fb5b2591
SM
12735 * simple.el (goto-line): Use read-number.
12736 (overriding-map-is-bound): Remove.
12737 (saved-overriding-map): Change default.
12738 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12739 Take the map as argument.
12740 (universal-argument, negative-argument, digit-argument): Use it.
12741 (restore-overriding-map): Adjust.
12742 (do-auto-fill): Use fill-forward-paragraph.
12743 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12744
fd6fa53f
SM
12745 * minibuffer.el (minibuffer-inactive-mode-map): New var.
12746 (minibuffer-inactive-mode): New major mode.
12747 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12748 the *Messages* buffer" hack.
12749 (mouse-popup-menubar): Don't burp if the event is a normal key.
12750
2462470b
SM
12751 Miscellaneous tweaks.
12752 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12753 lexical scoping as in subr.el's dolist and dotimes.
12754 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12755 Silence compiler warning.
12756 * thingatpt.el (forward-whitespace): Trivial coding style fix.
12757 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12758 * international/ccl.el (ccl-compile): Trivial simplification.
12759 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12760 * emacs-lisp/testcover.el (testcover-end): Remove spurious
12761 `printflag' argument.
12762 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12763 Purecopy the whole obsolescence data.
12764
108bf785
LL
127652011-06-01 Leo Liu <sdl.web@gmail.com>
12766
12767 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12768 improve doc-string as suggested by Marco Pessotto
12769 <melmothx@gmail.com>.
12770 (rcirc-print): Fix last change.
12771
30a23501
SM
127722011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12773
12774 * minibuffer.el (complete-with-action): Return nil for the metadata and
12775 boundaries of non-functional tables.
12776 (completion-table-dynamic): Return nil for the metadata.
12777 (completion-table-with-terminator): Add default case, using
12778 complete-with-action.
12779 (completion--metadata): New function.
12780 (completion-all-sorted-completions, minibuffer-completion-help): Use it
12781 to try and avoid pathological performance problems.
12782 (completion--embedded-envvar-table): Return `category' metadata.
12783
bcd54f83
LMI
127842011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
12785
12786 * subr.el (process-alive-p): New tiny convenience function.
12787
e227544d
SM
127882011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12789
12790 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12791 content but also its previous major mode.
12792
e8296fdc
HE
127932011-05-31 Helmut Eller <eller.helmut@gmail.com>
12794
4d61f28d 12795 * emacs-lisp/debug.el (debug): Restore the previous content of the
e8296fdc
HE
12796 *Backtrace* buffer when we exit with C-M-c.
12797
620c53a6
SM
127982011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12799
12800 * minibuffer.el: Add metadata method to completion tables.
12801 (completion-category-overrides): New defcustom.
12802 (completion-metadata, completion--field-metadata)
12803 (completion-metadata-get, completion--styles)
12804 (completion--cycle-threshold): New functions.
12805 (completion-try-completion, completion-all-completions):
12806 Add `metadata' argument to choose completion-styles.
12807 (completion--do-completion): Use metadata to choose cycling.
12808 (completion-all-sorted-completions): Use metadata for sorting.
12809 Remove :completion-cycle-penalty which is not needed any more.
12810 (completion--try-word-completion): Add `metadata' argument.
12811 (minibuffer-completion-help): Check metadata for annotation function
12812 and sorting.
12813 (completion-file-name-table): Return `category' metadata.
12814 (minibuffer-completing-file-name): Make obsolete.
12815 * simple.el (minibuffer-completing-symbol): Make obsolete.
12816 * icomplete.el (icomplete-completions): Pass new `metadata' param to
12817 completion-try-completion.
12818
1257e755
SM
128192011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12820
12821 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12822
3767e706
LL
128232011-05-30 Leo Liu <sdl.web@gmail.com>
12824
12825 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
5ab33f2b
LL
12826 (rcirc-print): Decode all incoming messages (bug#8744).
12827 (rcirc-decode-coding-system): Allow value nil for automatic coding
12828 system detection.
3767e706 12829
d1a5d56a
GM
128302011-06-01 Glenn Morris <rgm@gnu.org>
12831
12832 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12833
e8cbec34
CY
128342011-05-29 Chong Yidong <cyd@stupidchicken.com>
12835
12836 * image.el (image-animate-max-time): Allow nil and t values.
12837 Default to nil.
12838 (create-animated-image): Doc fix.
12839 (image-animate-start): Remove second arg; just use
12840 image-animate-max-time.
12841 (image-animate-timeout): Doc fix. Args changed.
12842
12843 * image-mode.el (image-toggle-display-image): Ensure that the
12844 image spec passed to the animate timer is the same object as in
58179cce 12845 the buffer's display property (Bug#6981).
e8cbec34
CY
12846 (image-transform-properties): Doc fix.
12847
12848 * image.el (image-animate-max-time): Default to nil.
12849
159daf87
MR
128502011-05-29 Martin Rudalics <rudalics@gmx.at>
12851
12852 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12853 entire buffer list (Bug#8184).
12854
d66c4c7c
CY
128552011-05-29 Chong Yidong <cyd@stupidchicken.com>
12856
12857 * image.el (imagemagick-types-inhibit)
12858 (imagemagick-register-types): Doc fix.
12859
80aec780
DD
128602011-05-29 Deniz Dogan <deniz@dogan.se>
12861
12862 * net/rcirc.el (rcirc): Use the user's stored encryption method by
12863 default.
12864
1dd3c2d9
CY
128652011-05-29 Chong Yidong <cyd@stupidchicken.com>
12866
12867 * select.el: Don't perform clipboard-manager saving in hooks;
12868 leave the hooks empty.
12869
60e56523
LL
128702011-05-28 Leo Liu <sdl.web@gmail.com>
12871
12872 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12873 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
12874 (occur-edit-mode): New major mode (Bug#8463).
12875 (occur-after-change-function): New function.
12876 (occur-engine): Give Occur tags a read-only property.
12877
2b1e1a22
KR
128782011-05-28 Kevin Ryde <user42@zip.com.au>
12879
12880 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12881
5d344e88
CY
128822011-05-28 Chong Yidong <cyd@stupidchicken.com>
12883
8e6ca83d
CY
12884 * bindings.el (help-echo): Make the initial non-indicator dash
12885 empty on graphical terminals (Bug#7295).
12886
5d344e88
CY
12887 * files.el (auto-mode-alist): Move config rule after the
12888 in-stripping one (Bug#8547).
12889
bfbbace7
CY
12890 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12891
fbeba6e2
CY
12892 * startup.el (normal-splash-screen): Remove gratuitous mode-line
12893 setting (Bug#8740).
12894
60ed8c72
AA
128952011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
12896
4ac619f0
AA
12897 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12898 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12899 (Bug#8539).
60ed8c72 12900
23db196e
CY
129012011-05-28 Chong Yidong <cyd@stupidchicken.com>
12902
12903 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12904
5012f24c
DK
129052011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
12906
12907 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12908 (hs-hide-block-at-point, hs-find-block-beginning)
12909 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12910 (Bug#8279).
12911
6a639b16
GM
129122011-05-28 Glenn Morris <rgm@gnu.org>
12913
12914 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
12915
d43eaf2c
CY
129162011-05-28 Chong Yidong <cyd@stupidchicken.com>
12917
5199bde1
CY
12918 * help-fns.el (describe-function-1): If the function is a derived
12919 major mode, print the parent mode.
12920
d43eaf2c
CY
12921 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12922 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12923
423428a8
SM
129242011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12925
0ff8e1ba 12926 * minibuffer.el (completion--capf-wrapper): Check applicability before
0b381c7e 12927 returning non-nil for non-exclusive completion data.
0ff8e1ba
SM
12928 * progmodes/etags.el (tags-completion-at-point-function):
12929 * info-look.el (info-lookup-completions-at-point): Mark as
12930 non-exclusive.
12931 (info-complete): Adjust accordingly.
12932
423428a8
SM
12933 * info-look.el: Convert to lexical-binding and completion-at-point.
12934 (info-lookup-completions-at-point): New function.
12935 (info-complete): Use it and completion-in-region.
12936
b74aa22b
DA
129372011-05-28 Drew Adams <drew.adams@oracle.com>
12938
12939 * isearch.el: Let M-e start with point at the first mismatched char.
12940 (isearch-fail-pos): New function.
12941 (isearch-edit-string): Use it.
12942
66e2e71d
DK
129432011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
12944
12945 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
12946
b1890b0f 129472011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
eb95d01d
TC
12948
12949 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
12950 traversal functions for avl-trees.
12951 (avl-tree--stack): New struct.
12952 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
12953 (avl-tree-enter): Add optional `updatefun' arg.
93a1c12a
TC
12954 (avl-tree--do-enter): Add optional `updatefun' arg.
12955 Change return value.
eb95d01d 12956 (avl-tree-delete): Add optional `test' and `nilflag' args.
93a1c12a
TC
12957 (avl-tree--do-delete): Add `test' and `nilflag' args.
12958 Change return value.
eb95d01d
TC
12959 (avl-tree-member): Add optional `nilflag'
12960 (avl-tree-member-p): New function.
12961 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
12962 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
12963 (avl-tree-stack-empty-p): New functions.
12964
3769ddcf
TC
12965 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
12966 avl-tree--del-balance1 and make it work both ways.
12967 (avl-tree--del-balance2): Remove.
12968 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
12969 make it work both ways.
12970 (avl-tree--enter-balance2): Remove.
12971 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
12972 New macros.
12973 (avl-tree--mapc, avl-tree-map): Add direction argument.
12974
eb95d01d 129752011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
7a6b1aef
DM
12976
12977 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
12978
a9f737ee
CY
129792011-05-27 Chong Yidong <cyd@stupidchicken.com>
12980
12981 * select.el: Support clipboard managers with built-in function
12982 x-clipboard-manager-save, via delete-frame-functions and
12983 kill-emacs-hook.
12984 (xselect-convert-to-targets): Add MULTIPLE target to list.
12985 (xselect-convert-to-save-targets): New function.
12986
c92a1e54
KH
129872011-05-27 Kenichi Handa <handa@m17n.org>
12988
12989 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
12990 let-binding rfc2047-encode-encoded-words to nil.
12991
e145f188
GM
129922011-05-27 Glenn Morris <rgm@gnu.org>
12993
5ec8a862
GM
12994 * mail/emacsbug.el: Don't require url-util.
12995
4b29d9fb
GM
12996 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
12997
e145f188
GM
12998 * files.el (set-auto-mode):
12999 Also respect mode: entries at the end of the file. (Bug#8586)
13000
7d15102b
GM
130012011-05-26 Glenn Morris <rgm@gnu.org>
13002
98f593b8
GM
13003 * files.el (hack-local-variables-prop-line, hack-local-variables):
13004 Downcase mode names, as seems to be traditional.
27b48e63 13005 (hack-local-variables, hack-local-variables-apply): Doc fixes.
98f593b8 13006
7d15102b
GM
13007 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
13008 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
13009
51d5b4ec
JD
130102011-05-25 Julien Danjou <julien@danjou.info>
13011
13012 * textmodes/rst.el (rst-define-level-faces): Do not define face
13013 symbol if it is already defined.
13014
91513f63
VB
130152011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
13016
13017 * play/5x5.el (5x5-new-game, 5x5-randomize):
13018 Reset 5x5-solver-output to nil when a new grid is cast.
13019 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
13020 these debugging traces, as defmacro breaks the compiled code.
13021
4d90d6d0
DK
130222011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13023
13024 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13025
e1b90ef6
LL
130262011-05-24 Leo Liu <sdl.web@gmail.com>
13027
13028 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
13029 (vc-bzr-sha1): Adapt.
13030
d8e4b68b 13031 * sha1.el: Remove. Function `sha1' is now builtin.
e1b90ef6
LL
13032
13033 * bindings.el: Provide sha1 feature.
13034
db0406bb 130352011-05-24 Kenichi Handa <handa@m17n.org>
b8d747b9
KH
13036
13037 * mail/sendmail.el: Require `rfc2047'.
13038 (mail-insert-from-field): Do not perform RFC2047 encoding.
13039 (mail-encode-header): New function.
13040 (sendmail-send-it): Set buffer-file-coding-system of the work
4d90d6d0
DK
13041 buffer to the return value of select-message-coding-system.
13042 Call mail-encode-header.
b8d747b9
KH
13043
13044 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
13045
db0406bb 130462011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
7261f6ce 13047
4d90d6d0
DK
13048 * mail/supercite.el (sc-default-cite-frame):
13049 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
7261f6ce 13050
eb8a5e9b
GM
130512011-05-24 Glenn Morris <rgm@gnu.org>
13052
f8630703
GM
13053 * progmodes/python.el (brm-menu): Declare.
13054
8831bbed
GM
13055 * emulation/viper.el (viper-set-hooks): Declare.
13056
eb8a5e9b
GM
13057 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
13058 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
13059 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
13060 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
13061 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
13062 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
13063
a2a25d24
SM
130642011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13065
13066 Add an :exit-function for completion-at-point.
13067
13068 * minibuffer.el (completion--done): New fun.
13069 (completion--do-completion): Use it. New arg `expect-exact'.
13070 (minibuffer-complete, minibuffer-complete-word): Don't output message,
13071 since completion--do-completion does it for us now.
13072 (minibuffer-force-complete): Use completion--done and
13073 completion--replace. Handle sole-completion case with more care.
13074 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
13075 (completion-extra-properties): New var.
13076 (completion-annotate-function): Make obsolete.
13077 (minibuffer-completion-help): Adjust accordingly.
13078 Use completion-list-insert-choice-function.
13079 (completion-at-point, completion-help-at-point):
13080 Bind completion-extra-properties.
13081 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
13082 * simple.el (completion-list-insert-choice-function): New var.
13083 (completion-setup-function): Preserve it.
13084 (choose-completion): Pay attention to it, shuffle the code a bit.
13085 (choose-completion-string): New arg `insert-function'.
13086
13087 * textmodes/bibtex.el: Convert to lexical binding.
13088 (bibtex-mode-map): Use completion-at-point.
13089 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
13090 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
13091 (bibtex-complete): Define as obsolete alias.
13092 (bibtex-complete-internal): Remove.
13093 (bibtex-format-entry): Remove unused sub-group in regexp.
13094 * shell.el (shell--command-completion-data)
13095 (shell-environment-variable-completion):
13096 * pcomplete.el (pcomplete-completions-at-point):
13097 * comint.el (comint--complete-file-name-data): Use :exit-function
13098 instead of completion-table-with-terminator so it also works for
13099 choose-completion.
13100
e44e373d
SM
131012011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13102
4f91a816
SM
13103 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
13104
782fc819
SM
13105 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
13106 (bug#8710).
13107
e44e373d
SM
13108 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
13109
381987c3
KM
131102011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
13111
13112 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
13113 customization variable and implement: If non-nil, auto-fill will
13114 be inhibited while on topic's header line.
13115
b776bc70
VB
131162011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
13117
13118 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
d8e4b68b 13119 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
b776bc70
VB
13120 always have a solution in grid size = 5 cases.
13121 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
13122 (5x5-solver-output, 5x5-log-buffer): New vars.
13123 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
13124 Make these variables buffer local to achieve 5x5 multi-session-ness.
13125 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
13126 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
13127 (5x5-solve-suggest): New funs.
13128 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
13129 randomize a grid so that we ensure that there is always a solution.
13130 (5x5-make-random-grid): Allow other movement than flipping.
13131
7de88b6e
KR
131322011-05-23 Kevin Ryde <user42@zip.com.au>
13133
13134 * emacs-lisp/advice.el (ad-read-advised-function):
5a5fa834 13135 Use `function-called-at-point' as the default, if it has
7de88b6e
KR
13136 advice and passes PREDICATE.
13137
b1ef1257
SM
131382011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13139
bbca48fe
SM
13140 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13141 byte-compile-lambda if it's actually a lambda.
13142
b1ef1257
SM
13143 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13144 Fix function quoting. Use backquote better.
13145
92a9cc65
YS
131462011-05-22 Yuanle Song <sylecn@gmail.com>
13147
13148 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13149 matching (Bug#8516).
13150
f0fb8059
JA
131512011-01-22 Jari Aalto <jari.aalto@cante.net>
13152
13153 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13154 different face (Bug#8178).
13155
d5b44c93
CY
131562011-05-22 Chong Yidong <cyd@stupidchicken.com>
13157
13158 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13159 defface (Bug#8144).
13160
79106a44
SM
131612011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13162
9c848d8a
SM
13163 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13164 funcall as well (bug#8712). Warn when performing those conversions.
13165 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13166
79106a44
SM
13167 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13168
88dfa756
GM
131692011-05-22 Glenn Morris <rgm@gnu.org>
13170
13171 * files.el (hack-local-variables-prop-line): Small simplifications.
13172 (hack-local-variables, hack-local-variables-prop-line):
13173 If MODE-ONLY, return the mode, rather than just `t'.
13174
b7cf2c79
SM
131752011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13176
13177 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13178
3f1a8558
GM
131792011-05-21 Glenn Morris <rgm@gnu.org>
13180
7e4ccca3
GM
13181 * files.el (hack-local-variables-prop-line, hack-local-variables):
13182 If only interested in the mode, don't bother doing the other stuff.
13183
637d46ca
GM
13184 * image-mode.el (image-after-revert-hook):
13185 Redraw all frames on which the image is visible. (Bug#8567)
13186
973d955b
GM
13187 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13188
3f1a8558
GM
13189 * wid-edit.el (widget-checklist-match-inline):
13190 Fix 2011-04-19 change. (Bug#8649)
13191
96479927
SM
131922011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13193
1dcf791f
SM
13194 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13195 Also allow singlespace after single-letter capitals followed by a dot.
13196
96479927
SM
13197 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13198 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13199
35fd0881
N
132002011-05-20 Nix <nix@esperi.org.uk>
13201
13202 * files.el (basic-save-buffer-2):
13203 Fix handling of break-hardlink-on-save with non-existent files.
13204
82745640
DD
132052011-05-19 Deniz Dogan <deniz@dogan.se>
13206
13207 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
9ff90d99 13208 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
82745640 13209
4a720484
GM
132102011-05-19 Glenn Morris <rgm@gnu.org>
13211
d1f21341
GM
13212 * progmodes/f90.el (f90-type-def-re):
13213 Handle "type, bind(c)". (Bug#8691)
13214
4a720484
GM
13215 * emacs-lisp/autoload.el (batch-update-autoloads):
13216 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13217
2fb0a219
MA
132182011-05-18 Michael Albinus <michael.albinus@gmx.de>
13219
13220 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13221 property for the correct connection in case of multihops.
13222
e565dd37
GM
132232011-05-18 Glenn Morris <rgm@gnu.org>
13224
c2571358 13225 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
c136e5cd
GM
13226 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13227
e565dd37
GM
13228 Rationalize calendar handling of day and month abbrev-arrays.
13229 * calendar/calendar.el (calendar-customized-p): New function.
13230 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13231 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13232 Add :set function.
13233 (calendar-abbrev-length, calendar-day-abbrev-array)
13234 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13235 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13236 Elements may no longer be nil.
13237 (calendar-day-name, calendar-month-name):
13238 Update for changed nature of abbrev arrays.
13239 * calendar/diary-lib.el (diary-name-pattern):
13240 Update for changed nature of abbrev arrays.
13241 (diary-mark-entries-1): Update calendar-make-alist calls.
13242 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13243 * calendar/cal-html.el (cal-html-day-abbrev-array):
13244 Simply inherit from calendar-day-abbrev-array.
13245
1d99a745
SM
132462011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13247
13248 * progmodes/grep.el (grep-mode): Disable default
13249 compilation-directory-matcher setting (bug#8684).
13250
7c1d9aa0
MA
132512011-05-17 Michael Albinus <michael.albinus@gmx.de>
13252
13253 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13254 instead of "head" and "tail". There were problems with SunOS 5.9,
13255 and it performs better.
13256
3952e9d8
GM
132572011-05-17 Glenn Morris <rgm@gnu.org>
13258
2dd12e7f
GM
13259 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13260
e4157b9c
GM
13261 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13262 Replace obsolete function.
13263
8e249bbd
GM
13264 * shell.el (pcomplete-parse-arguments-function): Declare.
13265
3952e9d8
GM
13266 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13267 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13268 (appt-check): Doc fixes.
13269 (appt-disp-window-function, appt-delete-window-function):
13270 Remove needless special case in custom :type.
13271 (appt-display-count): Default to 0, not nil.
13272 (appt-check): Reset appt-display-count to 0, not nil.
13273
c71a0d48 132742011-05-17 Juanma Barranquero <lekktu@gmail.com>
165fd2df 13275
c71a0d48
GM
13276 * progmodes/python.el (python-font-lock-keywords):
13277 Add the Python 3.X keyword "nonlocal" (bug#8639).
165fd2df 13278
31d55be9
SM
132792011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13280
13281 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13282
3bfacb2f
KR
132832011-05-16 Kevin Ryde <user42@zip.com.au>
13284
13285 * info-look.el (makefile-automake-mode): New setups, looking in
13286 automake manual, then makefile-mode.
13287 (makefile-mode): Remove automake manual, have it just in
13288 makefile-automake-mode since there's various things different or
13289 not relevant to plain make.
13290 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13291 believe a hypothetical automake-mode would go to makefile-mode,
13292 not the other way around.
13293
c8e83751
CY
132942011-05-15 Chong Yidong <cyd@stupidchicken.com>
13295
5e9e35cd
CY
13296 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13297 hunk-end tags (Bug#8672).
13298
c8e83751
CY
13299 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13300 vc-annotate-show-diff-revision-at-line (Bug#8671).
13301
50b23e5a
GM
133022011-05-14 Glenn Morris <rgm@gnu.org>
13303
7210a739
GM
13304 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13305 in the middle of an existing one with multiple authors. (Bug#8645)
375cb676
GM
13306 (change-log-font-lock-keywords): Also handle multiple author lines
13307 with leading tabs. (Bug#8644)
7210a739 13308
4691905a
GM
13309 * calendar/appt.el (appt-check): Rename some local variables.
13310 Some simplification/reordering.
13311
50b23e5a
GM
13312 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13313 (feedmail-sendmail-f-doesnt-sell-me-out)
13314 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13315 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13316 (feedmail-queue-runner-message-sender): Set :version.
1aa64307
GM
13317 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13318 (bbdb-dwim-net-address, vm-mail): Declare.
50b23e5a
GM
13319 (feedmail-binmail-gnulinuxish-template):
13320 Rename from feedmail-binmail-linuxish-template.
13321 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13322 Use insert-buffer-substring.
13323
215cda7c
BC
133242011-05-14 Bill Carpenter <bill@carpenter.org>
13325
13326 * mail/feedmail.el (feedmail-patch-level): Increase.
13327 (feedmail-debug): New custom group.
13328 (feedmail-confirm-outgoing-timeout)
13329 (feedmail-sendmail-f-doesnt-sell-me-out)
13330 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13331 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13332 (feedmail-sender-line, feedmail-from-line)
13333 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
c2571358 13334 (feedmail-spray-this-address)
215cda7c
BC
13335 (feedmail-spray-address-fiddle-plex-list)
13336 (feedmail-queue-use-send-time-for-date)
13337 (feedmail-queue-use-send-time-for-message-id)
13338 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13339 (feedmail-buffer-eating-function):
13340 Doc fixes.
13341 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13342 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13343 (feedmail-message-action-scroll-down): New functions.
13344 (feedmail-queue-directory, feedmail-queue-draft-directory):
13345 Use expand-file-name.
13346 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13347 Remove C-v help entry.
13348 (feedmail-queue-buffer-file-name): New variable.
13349 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13350 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13351 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13352 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13353 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13354 (feedmail-message-action-toggle-spray)
13355 (feedmail-run-the-queue-no-prompts)
13356 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13357 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13358 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13359 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13360 (feedmail-envelope-deducer, feedmail-fiddle-from)
13361 (feedmail-fiddle-sender, feedmail-default-date-generator)
13362 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13363 (feedmail-fiddle-spray-address)
13364 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13365 (feedmail-fiddle-list-of-fiddle-plexes)
13366 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13367 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13368 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13369 Change default. Doc fix.
13370 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13371 (feedmail-binmail-linuxish-template): New constant.
13372 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13373 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13374 (feedmail-send-it): Add debug call.
13375 Use feedmail-queue-buffer-file-name, and
13376 feedmail-send-it-immediately-wrapper.
13377 (feedmail-message-action-send): Add debug call.
13378 Use feedmail-send-it-immediately-wrapper.
13379 (feedmail-queue-express-to-queue): Add debug call.
13380 Run feedmail-queue-express-hook.
13381 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13382 (feedmail-message-action-help-blat):
13383 Rename from feedmail-queue-send-edit-prompt-help-first.
13384 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13385 Check line-endings. Handle errors better.
13386 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13387 Doc fix. Add debug call.
13388 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13389 Use feedmail-queue-send-edit-prompt-inner.
13390 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13391 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13392 from feedmail-queue-send-edit-prompt.
13393 (feedmail-queue-send-edit-prompt-help)
13394 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13395 (feedmail-tidy-up-slug): Add debug call.
13396 Respect feedmail-queue-slug-suspect-regexp.
13397 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13398 (feedmail-dump-message-to-queue): Add debug call.
13399 Expand queue-directory.
13400 (feedmail-dump-message-to-queue): Change message slightly.
13401 Use feedmail-say-chatter.
13402 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13403 (feedmail-send-it-immediately-wrapper): New function.
13404 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13405 Insert empty string rather than newline. Handle full-frame case.
13406 Use catch/throw. Use feedmail-say-chatter.
13407 (feedmail-fiddle-from): Try mail-host-address.
13408 (feedmail-default-message-id-generator): Doc fix.
13409 Bind system-time-locale. Handle missing end.
13410 (feedmail-fiddle-x-mailer): Add debug call.
13411 Handle feedmail-x-mailer-line being nil.
13412 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13413 Add debug call. Use buffer-substring-no-properties.
13414 (feedmail-say-debug, feedmail-say-chatter): New functions.
13415 (feedmail-find-eoh): Give an explicit error.
13416
42c7e61e
UJ
134172011-05-13 Ulf Jasper <ulf.jasper@web.de>
13418
c2571358 13419 * net/newst-treeview.el (newsticker-treeview-face): Change default
42c7e61e 13420 family from helvetica to sans.
c2571358 13421 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13422 etc/images/newsticker.
13423
c2571358 13424 * net/newst-reader.el (newsticker-feed-face): Change default
42c7e61e
UJ
13425 family from helvetica to sans.
13426
13427 * net/newst-plainview.el (newsticker-new-item-face)
13428 (newsticker-old-item-face, newsticker-immortal-item-face)
13429 (newsticker-obsolete-item-face, newsticker-date-face)
c2571358 13430 (newsticker-statistics-face): Change default family from
42c7e61e 13431 helvetica to sans.
c2571358 13432 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
42c7e61e
UJ
13433 etc/images/newsticker.
13434
5d3385a0
JB
13435 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13436 (newsticker--process-auto-mark-filter-match): Tell user about
42c7e61e
UJ
13437 auto-marking.
13438
8497a297
DV
134392011-05-13 Didier Verna <didier@xemacs.org>
13440
13441 Common Lisp indentation improvements on defmethod and lambda-lists.
4d61f28d
JB
13442 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13443 TODO entries.
8497a297
DV
13444 (lisp-lambda-list-keyword-parameter-indentation)
13445 (lisp-lambda-list-keyword-parameter-alignment)
13446 (lisp-lambda-list-keyword-alignment): New customizable user options.
13447 (lisp-indent-defun-method): Improve docstring.
13448 (extended-loop-p): Fix comment.
13449 (lisp-indent-lambda-list-keywords-regexp): New variable.
13450 (lisp-indent-lambda-list): New function.
13451 (lisp-indent-259): Use it.
13452 (lisp-indent-defmethod): Support for more than one
13453 method qualifier and properly indent methods lambda-lists.
13454 (defgeneric): Provide a missing common-lisp-indent-function property.
13455
f278f87f
SM
134562011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13457
13458 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13459 bounds for the empty string (bug#8667).
13460
5233edd7
GM
134612011-05-13 Glenn Morris <rgm@gnu.org>
13462
5237a44f
GM
13463 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13464
8340026c 13465 * mail/sendmail.el (sendmail-program): Try executable-find first.
f278f87f 13466 (sendmail-send-it): `sendmail-program' cannot be unbound.
8340026c 13467
5233edd7 13468 * calendar/appt.el (appt-make-list): Simplify.
4accbca6 13469 (appt-time-msg-list): Doc fix.
a5464014 13470 (appt-check): Change mode-line message at the time of the appointment.
5233edd7 13471
92d10796
AS
134722011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13473
13474 * progmodes/ld-script.el (ld-script-keywords)
13475 (ld-script-builtins): Update keywords list.
13476
914a0ae1
SM
134772011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13478
c89be45f
SM
13479 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13480
914a0ae1
SM
13481 * shell.el (shell-completion-vars): New function.
13482 (shell-mode):
13483 * simple.el (read-shell-command): Use it.
13484 (blink-matching-open): No need for " [...]" in minibuffer-message.
13485
98dc3df3
GM
134862011-05-12 Glenn Morris <rgm@gnu.org>
13487
13488 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13489 (appt-check): Simplify.
13490
d2fc7e3d 134912011-05-12 Eli Zaretskii <eliz@gnu.org>
0e39ec21 13492
4d61f28d 13493 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
0e39ec21
EZ
13494 literal "/dev/null".
13495
d2fc7e3d 134962011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
3f254caa
SM
13497
13498 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13499 Fix typo.
13500
d2fc7e3d 135012011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
6eea50c7 13502
3f254caa
SM
13503 * progmodes/which-func.el (which-function):
13504 Use add-log-current-defun instead of add-log-current-defun-function,
6eea50c7
RS
13505 which might not be defined (Bug#8260).
13506
d45885f7
GM
135072011-05-12 Glenn Morris <rgm@gnu.org>
13508
13509 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13510 Let byte-compile-initial-macro-environment always take precedence.
13511
488086f4
SM
135122011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13513
13514 * net/rcirc.el: Add support for SSL/TLS connections.
13515 (rcirc-server-alist): New field `encryption'.
13516 (rcirc): Check `encryption' settings.
13517 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13518 Merge make-local-variable into `set'.
13519 (rcirc--connection-open-p): New function.
13520 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13521 the process is not a network process (e.g. running gnutls-cli).
13522 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13523 Make rcirc-(en|de)code-coding-system local here.
13524 (rcirc-mode): Merge make-local-variable into `set'.
13525 (rcirc-parent-buffer): Make permanent buffer-local.
13526 (rcirc-multiline-minor-mode): Don't do it here.
13527 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13528 there's no server buffer.
13529
7d3b9d44
GM
135302011-05-11 Glenn Morris <rgm@gnu.org>
13531
f64049c6
GM
13532 * newcomment.el (comment-kill): Prefix "unused" local.
13533
93c9df73
GM
13534 * term/w32console.el (get-screen-color): Declare.
13535
7d3b9d44
GM
13536 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13537 Handle symbol elements of byte-compile-initial-macro-environment.
13538
9e2dd53f
LL
135392011-05-10 Leo Liu <sdl.web@gmail.com>
13540
488086f4
SM
13541 * bookmark.el (bookmark-bmenu-mode-map):
13542 Bind bookmark-bmenu-search to `/'.
8b340240 13543
9e2dd53f 13544 * mail/footnote.el: Convert to utf-8 encoding.
b4044869
LL
13545 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13546 (Footnote-unicode): New function.
13547 (footnote-style-alist): Add unicode style to the list.
13548 (footnote-style): Doc fix.
9e2dd53f 13549
79b70037
GM
135502011-05-10 Jim Meyering <meyering@redhat.com>
13551
13552 Fix doubled-word typos.
13553 * international/quail.el (quail-insert-kbd-layout): and and -> and
13554 * kermit.el: and and -> and
13555 * net/ldap.el (ldap-search-internal): to to -> to
13556 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13557 * progmodes/js.el (js-mode): and and -> and
13558 * textmodes/artist.el (artist-move-to-xy): at at -> at
13559 (artist-draw-region-trim-line-endings): if if -> if
13560 And Safetyc -> Safety.
13561 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13562
b8f82dc1 135632011-05-10 Glenn Morris <rgm@gnu.org>
c2571358 13564 Stefan Monnier <monnier@iro.umontreal.ca>
b8f82dc1
GM
13565
13566 * files.el (hack-one-local-variable-eval-safep):
13567 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13568
4f99f44b
GM
135692011-05-10 Glenn Morris <rgm@gnu.org>
13570
13571 * calendar/diary-lib.el (diary-list-entries-hook)
13572 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13573 (diary-nongregorian-marking-hook, diary-list-entries)
13574 (diary-include-other-diary-files, diary-mark-entries)
13575 (diary-mark-included-diary-files): Doc fixes.
13576
84f29e6b
JB
135772011-05-09 Juanma Barranquero <lekktu@gmail.com>
13578
13579 * misc.el: Require tabulated-list.el during compilation.
13580
9bedd73a
CY
135812011-05-09 Chong Yidong <cyd@stupidchicken.com>
13582
488086f4
SM
13583 * progmodes/compile.el (compilation-start):
13584 Run compilation-filter-hook for the async case too.
9bedd73a
CY
13585 (compilation-filter-hook): Doc fix.
13586
797c735c
DD
135872011-05-09 Deniz Dogan <deniz@dogan.se>
13588
13589 * wdired.el: Remove outdated installation comment. Fix usage
13590 comment.
13591
5f4b1dfe
JB
135922011-05-09 Juanma Barranquero <lekktu@gmail.com>
13593
13594 * misc.el: Implement new command `list-dynamic-libraries'.
13595 (list-dynamic-libraries--loaded-only-p): New variable.
13596 (list-dynamic-libraries--refresh): New function.
13597 (list-dynamic-libraries): New command.
13598
4c44026c
CY
135992011-05-09 Chong Yidong <cyd@stupidchicken.com>
13600
488086f4
SM
13601 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13602 Fix the ant regexp to handle end-line and end-column info from jikes.
4c44026c
CY
13603 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
13604 higher priority to avoid clobbering by gnu.
13605
027f966d
CY
136062011-05-08 Chong Yidong <cyd@stupidchicken.com>
13607
13608 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
13609 if the face has existing theme settings (Bug#8454).
13610
085f5d7d
CY
136112011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
13612
488086f4
SM
13613 * progmodes/perl-mode.el (perl-imenu-generic-expression):
13614 Only match variables declared via `my' or `our' (Bug#8261).
085f5d7d 13615
2a86a00c
RS
13616 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
13617 special file names `.' and `..' (Bug#8259).
13618
d9c54a06
CY
136192011-05-08 Chong Yidong <cyd@stupidchicken.com>
13620
488086f4
SM
13621 * progmodes/grep.el (grep-mode-font-lock-keywords):
13622 Remove buffer-changing entries.
d9c54a06
CY
13623 (grep-filter): New function.
13624 (grep-mode): Add it to compilation-filter-hook.
13625
13626 * progmodes/compile.el (compilation-filter-hook)
13627 (compilation-filter-start): New defvars.
13628 (compilation-filter): Call compilation-filter-hook prior to
13629 updating the process mark.
13630
c4662635
SM
136312011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13632
13633 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
13634
b0512a1d
EZ
136352011-05-07 Eli Zaretskii <eliz@gnu.org>
13636
605c9376
EZ
13637 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
13638 mailclient-send-it even if window-system is nil. (Bug#8595)
13639
c4662635
SM
13640 * term/w32console.el (terminal-init-w32console):
13641 Call get-screen-color and use its output to set the frame
b0512a1d
EZ
13642 background-mode. (Bug#8597)
13643
d1dc2cc2
SM
136442011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
13645
13646 Make bytecomp.el understand that defmethod defines funs (bug#8631).
13647 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
13648 New functions.
13649 (defgeneric, eieio--defmethod): Use them.
13650 (eieio-defgeneric): Remove.
13651 (defmethod): Call defgeneric in a way visible to the byte-compiler.
13652
915d1300
GM
136532011-05-07 Glenn Morris <rgm@gnu.org>
13654
a3961c3e
GM
13655 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13656 Use let rather than let*.
13657 (timeclock-find-discrep): Remove unused local.
13658
314347b9
GM
13659 * calendar/diary-lib.el (diary-comment-start): Doc fix.
13660
915d1300
GM
13661 * calendar/appt.el (appt-time-msg-list): Doc fix.
13662
275b59b0
NF
136632011-05-06 Noah Friedman <friedman@splode.com>
13664
13665 * apropos.el (apropos-print-doc): Only use
13666 emacs-lisp-docstring-fill-column when it is bound to an integer,
13667 per that variable's documentation.
13668
6c19f744
SM
136692011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13670
13671 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
d1dc2cc2 13672 and warnings are not silently discarded (e.g. use -d instead of -P).
6c19f744 13673
60f884b2
GM
136742011-05-06 Glenn Morris <rgm@gnu.org>
13675
5006e634
GM
13676 * calendar/appt.el (appt-message-warning-time): Doc fix.
13677 (appt-warning-time-regexp): New option.
13678 (appt-make-list): Respect appt-message-warning-time.
13679
548d0a63
GM
13680 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13681 New options.
13682 (diary-add-to-list): Strip comments from the displayed string.
13683 (diary-mode): Set comment-start and comment-end.
13684
60f884b2
GM
13685 * vc/diff-mode.el (smerge-refine-subst): Declare.
13686 (diff-refine-hunk): Don't require smerge-mode when compiling.
13687
989681bb
JB
136882011-05-06 Juanma Barranquero <lekktu@gmail.com>
13689
13690 * simple.el (list-processes): Return nil as the docstring says.
13691
a6bc05e1
MA
136922011-05-05 Michael Albinus <michael.albinus@gmx.de>
13693
13694 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13695 to "".
13696 (ange-ftp-write-region, ange-ftp-insert-file-contents)
13697 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13698 determining of binary transfer. (Bug#7383)
13699
23c22e9a
MA
137002011-05-05 Michael Albinus <michael.albinus@gmx.de>
13701
c4662635
SM
13702 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13703 Fix port computation bug. (Bug#8618)
23c22e9a 13704
0bff894f
GM
137052011-05-05 Glenn Morris <rgm@gnu.org>
13706
b8296902
GM
13707 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13708
1f522ce8
GM
13709 * simple.el (shell-dynamic-complete-functions)
13710 (comint-dynamic-complete-functions): Declare.
13711
cf5bee67
GM
13712 * net/network-stream.el (gnutls-negotiate):
13713 * simple.el (tabulated-list-print): Fix declarations.
13714
13715 * progmodes/gud.el (syntax-symbol, syntax-point):
13716 Remove unnecessary and incorrect declarations.
13717
0bff894f
GM
13718 * emacs-lisp/check-declare.el (check-declare-scan):
13719 Handle byte-compile-initial-macro-environment in bytecomp.el
13720
9869b3ae
SM
137212011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13722
13723 Fix earlier half-done eieio-defmethod change (bug#8338).
13724 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13725 Streamline and change calling convention.
13726 (defmethod): Adjust accordingly and simplify.
13727 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13728 new eieio--defmethod.
13729 (slot-boundp): Minor CSE simplification.
13730
9c1d5ac5
MZ
137312011-05-05 Milan Zamazal <pdm@zamazal.org>
13732
13733 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13734 (glasses-make-readable): Use glasses-separate-capital-groups.
13735
455c834e
JB
137362011-05-05 Juanma Barranquero <lekktu@gmail.com>
13737
13738 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13739 (warning-series): Doc fix.
13740 (display-warning): Don't try to create the buffer if we just found it.
13741
9ed7c8cb
CY
137422011-05-04 Chong Yidong <cyd@stupidchicken.com>
13743
13744 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13745 (autoload-find-generated-file): New function.
13746 (generate-file-autoloads): Bind generated-autoload-file to
13747 buffer-file-name.
9869b3ae
SM
13748 (update-file-autoloads, update-directory-autoloads):
13749 Use autoload-find-generated-file. If called interactively, prompt for
9ed7c8cb
CY
13750 output file (Bug#7989).
13751 (batch-update-autoloads): Doc fix.
13752
0898ca10
JB
137532011-05-04 Juanma Barranquero <lekktu@gmail.com>
13754
13755 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13756
31dfb76c
GM
137572011-05-04 Glenn Morris <rgm@gnu.org>
13758
f330b642
GM
13759 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13760 function, so it follows changes in calendar-date-style.
13761 (diary-fancy-date-matcher): New function.
13762 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13763 (diary-fancy-font-lock-fontify-region-function):
13764 Use diary-fancy-date-pattern as a function.
13765
31dfb76c
GM
13766 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13767 non-numbers for `year' etc pseudo-variables. (Bug#8583)
13768
48e79d6a
TZ
137692011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13770
13771 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13772 instead of positional arguments. Allow :keylist and :crlfiles
13773 arguments.
13774 (open-gnutls-stream): Call it.
13775
13776 * net/network-stream.el (network-stream-open-starttls): Adjust to
13777 call `gnutls-negotiate' with :process and :hostname arguments.
13778
dd5a5ee0
SM
137792011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13780
ef80fc09
SM
13781 * minibuffer.el (completion--message): New function.
13782 (completion--do-completion, minibuffer-complete)
13783 (minibuffer-force-complete, minibuffer-complete-word): Use it.
13784 (completion--do-completion): Don't ignore completion-auto-help when in
13785 icomplete-mode.
13786
dd5a5ee0
SM
13787 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13788 internal encoding (e.g. tibetan zero is not whitespace).
13789 (global-whitespace-mode): Prefer save-current-buffer.
13790 (whitespace-trailing-regexp): Remove useless save-match-data.
13791 (whitespace-empty-at-bob-regexp): Minor simplification.
13792
b7d22a83
CY
137932011-05-03 Chong Yidong <cyd@stupidchicken.com>
13794
13795 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13796
5192af46
AM
137972011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13798
13799 * textmodes/ispell.el (ispell-add-per-file-word-list):
cdc4a047 13800 Use `concat' to create string for insertion.
5192af46 13801
5767d190
SM
138022011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13803
13804 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13805 Avoid open-line which runs post-self-insert-hook.
13806 (bibtex-fill-entry): Remove unused `end' var.
13807
bf242939
AM
138082011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
13809
5767d190
SM
13810 * textmodes/ispell.el (ispell-add-per-file-word-list):
13811 Protect against `nil' value of `comment-start' (Bug#8579).
bf242939 13812
25666126
LL
138132011-05-03 Leo Liu <sdl.web@gmail.com>
13814
13815 * isearch.el (isearch-yank-pop): New command.
5767d190 13816 (isearch-mode-map): Bind it to `M-y'.
25666126
LL
13817 (isearch-forward): Mention it.
13818
52d3c2d0
SM
138192011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13820
1bcace58
SM
13821 * simple.el (minibuffer-complete-shell-command): Remove.
13822 (minibuffer-local-shell-command-map): Use completion-at-point.
13823 (read-shell-command): Setup completion vars here instead.
13824 (read-expression-map): Bind TAB to symbol completion.
13825
52d3c2d0
SM
13826 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13827 error directly rather via storing it into `results'.
13828
35813471
LL
138292011-05-02 Leo Liu <sdl.web@gmail.com>
13830
13831 * vc/diff.el: Fix description.
13832
e793a940
LMI
138332011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13834
13835 * server.el (server-eval-at): New function.
13836
8de66e05
LMI
138372011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13838
13839 * net/network-stream.el (open-network-stream): Take a :nowait
13840 parameter and pass it on to `make-network-process'.
13841 (network-stream-open-plain): Ditto.
13842
dcb79f20
AS
138432011-04-30 Andreas Schwab <schwab@linux-m68k.org>
13844
13845 * faces.el (face-spec-set-match-display): Don't match toolkit
13846 options on terminal frames.
13847
14a7fbd8
SM
138482011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13849
7eabc1be
SM
13850 * progmodes/pascal.el: Use lexical binding.
13851 (pascal-mode-map): Remove author preferences.
13852
14a7fbd8
SM
13853 * pcomplete.el (pcomplete-std-complete): Don't abuse
13854 completion-at-point.
13855
50f84510
JB
138562011-04-28 Juanma Barranquero <lekktu@gmail.com>
13857
6e087a44
JB
13858 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13859 removing code that has been dead since 1991 or so.
13860
50f84510
JB
13861 * startup.el (command-line): When warning about "_emacs", use a
13862 delayed warning to allow the user to filter it out.
13863
0ba690bd
DD
138642011-04-28 Deniz Dogan <deniz@dogan.se>
13865
13866 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13867 user has not joined.
13868
08abfaad
SM
138692011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13870
13871 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13872 aren't any completions at point.
13873
638f053a
JB
138742011-04-28 Juanma Barranquero <lekktu@gmail.com>
13875
13876 * subr.el (display-delayed-warnings): New function.
13877 (delayed-warnings-hook): New variable.
13878
8fff8daa
SM
138792011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13880
08abfaad
SM
13881 * minibuffer.el (completion-at-point, completion-help-at-point):
13882 Don't presume that a given completion-at-point-function will always
13883 use the same calling convention.
13884
8fff8daa
SM
13885 * pcomplete.el (pcomplete-completions-at-point):
13886 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
13887 pcomplete-seen is non-nil.
13888 (pcomplete-comint-setup): Also recognize the new comint/shell
13889 completion functions.
13890 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13891 pcomplete-seen is non-nil.
13892
841a1577 138932011-04-27 Niels Giesen <niels.giesen@gmail.com>
211ec907 13894
841a1577 13895 * calendar/icalendar.el (diary-lib): Add require statement.
211ec907 13896 (icalendar--create-uid): Read out a uid from a text-property on
841a1577 13897 the first character in the entry. This allows for code to add its
211ec907
UJ
13898 own uid to the entry.
13899 (icalendar--convert-float-to-ical): Add export of
13900 `diary-float'-entries save for those with the optional DAY
13901 argument.
13902
2a782793
DC
139032011-04-27 Daniel Colascione <dan.colascione@gmail.com>
13904
13905 * subr.el (shell-quote-argument): Use alternate escaping strategy
13906 when we spot a variable reference in a string.
13907
0438ce91
DC
139082011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13909
13910 * cus-start.el (all): Define customization for debug-on-event.
13911
841a1577 139122011-04-26 Daniel Colascione <dan.colascione@gmail.com>
8f91bf93
DC
13913
13914 * subr.el (shell-quote-argument): Escape correctly under Windows.
13915
d090ed6c
SM
139162011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13917
13918 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13919
bfd31217
MA
139202011-04-25 Michael Albinus <michael.albinus@gmx.de>
13921
d090ed6c
SM
13922 * net/tramp.el (tramp-process-actions): Add POS argument.
13923 Delete region between POS and (pos).
bfd31217 13924
d090ed6c
SM
13925 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13926 Use `nil' position in `tramp-process-actions' call.
bfd31217
MA
13927 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13928
13929 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13930 position in `tramp-process-actions' call.
13931
13932 * net/trampver.el: Update release number.
13933
e92f3bd3
SM
139342011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13935
850256b5
SM
13936 * custom.el (defcustom): Obey lexical-binding.
13937
e92f3bd3
SM
13938 Fix octave-inf completion problems reported by Alexander Klimov.
13939 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
13940 Inherit from octave-mode-syntax-table.
13941 (inferior-octave-mode): Set info-lookup-mode.
13942 (inferior-octave-completion-at-point): New function.
13943 (inferior-octave-complete): Use it and completion-in-region.
13944 (inferior-octave-dynamic-complete-functions): Use it as well, and use
13945 comint-filename-completion.
13946 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
13947 symbol elements which shouldn't be word elements.
13948 (octave-font-lock-keywords, octave-beginning-of-defun)
13949 (octave-function-header-regexp): Adjust regexps accordingly.
13950 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
13951
cd22b309
JB
139522011-04-25 Juanma Barranquero <lekktu@gmail.com>
13953
13954 * net/gnutls.el (gnutls-errorp): Declare before first use.
13955
8b492194
TZ
139562011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
13957
13958 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
13959 verify-error, and verify-hostname-error parameters. Check whether
cd22b309 13960 default trustfile exists before going to use it. Add missing
5a5fa834 13961 argument to gnutls-message-maybe call. Return value.
8b492194
TZ
13962 Reported by Claudio Bley <claudio.bley@gmail.com>.
13963 (open-gnutls-stream): Add usage example.
13964
13965 * net/network-stream.el (network-stream-open-starttls): Give host
13966 parameter to `gnutls-negotiate'.
13967 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
8f91bf93 13968 * subr.el (shell-quote-argument): Escape correctly under Windows.
8b492194 13969
841a1577 139702011-04-24 Daniel Colascione <dan.colascione@gmail.com>
05842630 13971
cd22b309
JB
13972 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
13973 Use correct match group (bug#8438).
05842630 13974
3ba7869c
CY
139752011-04-24 Chong Yidong <cyd@stupidchicken.com>
13976
512e3ae1
CY
13977 * emacs-lisp/package.el (package-built-in-p): Fix typo.
13978 (package-menu--generate): New arg specifying packages to show.
13979 (package-menu-refresh, package-menu-execute, list-packages):
13980 Callers changed.
13981 (package-show-package-list): New function, replacing deleted
13982 package--list-packages (renamed because it is non-internal).
13983
13984 * finder.el (finder-list-matches): Use package-show-package-list
13985 instead of deleted package--list-packages.
13986
e92f3bd3
SM
13987 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
13988 Based on a previous implementation by Juanma Barranquero (Bug#8366).
3ba7869c
CY
13989 (vc-annotate-mode-map): Bind it to RET.
13990
7031be6d
UR
139912011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
13992
13993 * progmodes/etags.el (next-file): Don't use set-buffer to change
13994 buffers (Bug#8478).
13995
4ef177aa
CY
139962011-04-24 Chong Yidong <cyd@stupidchicken.com>
13997
c8d173eb
CY
13998 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
13999
4ef177aa
CY
14000 * apropos.el (apropos-label-face): Avoid variable-pitch face.
14001 (apropos-accumulator): Doc fix.
14002 (apropos-function, apropos-macro, apropos-command)
14003 (apropos-variable, apropos-face, apropos-group, apropos-widget)
14004 (apropos-plist): Add face property.
14005 (apropos-symbols-internal): Fix indentation.
14006 (apropos-print): Simplify help, and recognize apropos-multi-type.
14007 (apropos-print-doc): Use button-type-get to extract the button's
14008 face property. Fill docstring (Bug#8352).
14009
4ffd0d6b 140102011-04-23 Juanma Barranquero <lekktu@gmail.com>
be71f810
JB
14011
14012 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
14013
c6c32125 14014 * play/mpuz.el (mpuz-silent): Doc fix.
4ffd0d6b 14015 (mpuz-mode-map): Use mapc.
c6c32125
JB
14016 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
14017 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
14018 Fix typos in docstrings.
14019
58d468b4
JB
14020 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
14021 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
14022
6470c3c6
JB
14023 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
14024
4ffd0d6b 140252011-04-23 Chong Yidong <cyd@stupidchicken.com>
6f21a319
CY
14026
14027 * minibuffer.el (completion--do-completion): Avoid the "Next char
14028 not unique" prompt if icomplete-mode is enabled (Bug#5849).
14029
3ad8bad0
CY
14030 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
14031 mouse-2 into unread-command-events, it is interpreted correctly.
14032
71d73c9c 14033 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
6395aab9 14034 (image-toggle-display): Doc fix.
71d73c9c 14035
841a1577 140362011-04-23 Stephen Berman <stephen.berman@gmx.net>
e935c6a2 14037
4ffd0d6b
GM
14038 * textmodes/page.el (what-page): Use line-number-at-pos to
14039 calculate line number (Bug#6825).
6e1dbaa9 14040
c2fb1b60
JB
140412011-04-22 Juanma Barranquero <lekktu@gmail.com>
14042
14043 * eshell/esh-mode.el (find-tag-interactive): Declare function.
14044 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
14045 Pass argument NO-DEFAULT to `find-tag-interactive'.
14046
e02f48d7
JB
140472011-04-22 Juanma Barranquero <lekktu@gmail.com>
14048
14049 Lexical-binding cleanup.
14050
14051 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
14052 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
14053 * progmodes/ada-prj.el (ada-prj-initialize-values)
14054 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
14055 (ada-prj-show-value):
14056 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
14057 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
14058 (antlr-invalidate-context-cache, antlr-options-menu-filter)
14059 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
14060 * progmodes/bug-reference.el (bug-reference-push-button):
14061 * progmodes/fortran.el (fortran-line-length):
14062 * progmodes/glasses.el (glasses-change):
14063 * progmodes/octave-mod.el (octave-fill-paragraph):
14064 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
14065 (python-pdbtrack-grub-for-buffer, python-sentinel):
14066 * progmodes/sql.el (sql-save-connection):
14067 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
14068 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
14069 Mark unused parameters.
14070
14071 * progmodes/compile.el (compilation--flush-directory-cache)
14072 (compilation--flush-parse, compile-internal): Mark unused parameters.
14073 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
14074 (compilation-next-error-function): Remove unused variable `timestamp'.
14075
14076 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
14077 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
14078
14079 * progmodes/dcl-mode.el (dcl-end-of-command):
14080 Remove unused variable `start'.
14081 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
14082 (dcl-option-value-basic, dcl-option-value-offset)
14083 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
14084 Mark unused parameters.
14085 (dcl-save-local-variable): Remove unused variable `val'.
14086 (mode): Declare.
14087
14088 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
14089 Mark unused parameters.
14090 (delphi-ignore-changes): Move before first use.
14091 (delphi-charset-token-at): Remove unused variable `start'.
14092 (delphi-else-start): Remove unused variable `if-count'.
14093 (delphi-comment-block-start, delphi-comment-block-end):
14094 Remove unused variable `kind'.
14095 (delphi-indent-line): Remove unused variable `new-point'.
14096
14097 * progmodes/ebrowse.el (ebrowse-files-list)
14098 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
14099 Mark unused parameters. Don't quote `lambda'.
14100 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
14101 Don't quote `lambda'.
14102 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
14103 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
14104 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
14105 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
14106 Use `ignore-errors'.
14107 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
14108 (ebrowse-view/find-file-and-search-pattern)
14109 (ebrowse-view/find-member-declaration/definition):
14110 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
14111 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
14112 Rename parameter PREFIX-ARG to PREFIX.
14113 (ebrowse-tags-read-name): Remove unused variables `start' and
14114 `member-info'.
14115 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
14116 to `tags-file'.
14117
14118 * progmodes/etags.el (local-find-tag-hook): Declare.
14119 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
14120 Mark unused parameters.
14121
14122 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
14123 (executable-interpret): Mark unused parameter.
14124
14125 * progmodes/flymake.el (flymake-process-sentinel)
14126 (flymake-after-change-function)
14127 (flymake-create-temp-with-folder-structure)
14128 (flymake-get-include-dirs-dot): Mark unused parameters.
14129 (flymake-safe-delete-directory): Remove unused variable `err'.
14130
14131 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
14132 (speedbar-timer-fn, speedbar-line-text)
14133 (speedbar-change-expand-button-char, speedbar-delete-subblock)
14134 (speedbar-center-buffer-smartly): Declare functions.
14135 (gdb-find-watch-expression): Remove unused variable `array'.
14136 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
14137 (gdb-starting): Mark unused parameters.
14138 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
14139 (gdb-table-string): Remove unused variable `res'.
14140 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14141 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14142 (gdb-display-buffer): Remove unused variable `cur-size'.
14143
14144 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14145 allow lexical-binding compilation.
14146 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14147 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14148 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14149 Mark unused parameters.
14150 (gud-gdb-marker-filter): Remove unused variable `match'.
14151 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14152 lambda expressions and funcall them, instead of using `fset'.
14153
14154 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14155 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14156
14157 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14158 variable `header-beg'; use `let'.
14159
14160 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14161 `restart', `last-sexp' and `at-do'.
14162
14163 * progmodes/js.el (js--debug): Mark unused parameter.
14164 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14165 (js--splice-into-items): Remove unused variable `item'.
14166 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14167
14168 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14169 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14170 (makefile-complete): Remove unused variable `try'.
14171 (makefile-fill-paragraph, makefile-match-function-end):
14172 Mark unused parameters.
14173
14174 * progmodes/octave-inf.el (inferior-octave-complete):
14175 Remove unused variable `proc'.
14176 (inferior-octave-output-digest): Mark unused parameter.
14177
14178 * progmodes/perl-mode.el (perl-calculate-indent):
14179 Remove unused variable `err'.
14180
14181 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14182 (prolog-indent-line): Mark unused parameters.
14183 (prolog-indent-line): Remove unused variable `beg'.
14184
14185 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14186 (reporter-dont-compact-list): Declare.
14187
14188 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14189 Remove unused variable `char'.
14190 (sh-debug): Mark unused parameter.
14191 (sh-get-indent-info): Remove unused variable `start'.
14192 (sh-calculate-indent): Remove unused variable `var'.
14193
14194 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14195 (simula-electric-keyword): Remove unused variable `null'.
14196 (simula-search-backward, simula-search-forward): Remove unused
14197 variables `begin' and `end'.
14198
14199 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14200 Remove unused variable `pos'.
14201 (vera-electric-tab, vera-comment-uncomment-region):
14202 Mark unused parameters.
14203 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14204
7ede3b65
CY
142052011-04-22 Chong Yidong <cyd@stupidchicken.com>
14206
14207 * emacs-lisp/package.el (package--builtins, package-alist)
14208 (package-load-descriptor, package-built-in-p, package-activate)
14209 (define-package, package-installed-p)
14210 (package-compute-transaction, package-buffer-info)
14211 (package--push): Doc fix. Distinguish more clearly between
14212 version strings and version lists.
14213
121656e9
JB
142142011-04-21 Juanma Barranquero <lekktu@gmail.com>
14215
14216 Lexical-binding cleanup.
14217
14218 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14219 (5x5-make-mutate-best):
14220 * play/fortune.el (fortune-in-buffer):
14221 * play/gomoku.el (gomoku-init-display):
14222 * play/solitaire.el (solitaire, solitaire-do-check):
14223 * play/tetris.el (tetris-default-update-speed-function):
14224 Mark unused parameters.
14225
14226 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14227 (bubbles--shift): Remove unused variable `char-org'.
14228 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14229 (bubbles--show-images): Remove unused variable `char'.
14230
14231 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14232 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14233 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14234 (decipher-analyze-buffer): Use ?\s.
14235 (decipher-make-checkpoint): Remove unused variable `mapping'.
14236
14237 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14238
14239 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14240 Remove unused variable `result'; use `let'.
14241
14242 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14243 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14244 (gametree-children-shown-p, gametree-compute-reduced-score):
14245 Use `ignore-errors'.
14246
14247 * play/handwrite.el (ps-lpr-switches): Declare.
14248 (handwrite): Remove unused variables `pmin' and `lastp'.
14249
14250 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14251
14252 * play/landmark.el (landmark-init-display)
14253 (landmark-update-naught-weights): Mark unused parameters.
14254 (landmark-y): Remove unused variable `noise'. Simplify.
14255 (landmark-human-plays): Remove unused variable `score'.
14256
14257 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14258 (mpuz-try-proposal): Remove unused variable `game'.
14259
14260 * play/zone.el (life-patterns): Declare.
14261
80f499c7
JB
142622011-04-20 Juanma Barranquero <lekktu@gmail.com>
14263
14264 * vc/vc.el (ediff-vc-internal): Declare function.
14265
024ff170
SM
142662011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14267
c0a193ea
SM
14268 * shell.el: Use lexical-binding and std completion UI.
14269 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14270 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14271 comint-preoutput-filter-functions rather than on
14272 comint-output-filter-functions.
14273 (shell-command-completion, shell--command-completion-data)
14274 (shell-filename-completion, shell-environment-variable-completion)
14275 (shell-c-a-p-replace-by-expanded-directory): New functions.
14276 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14277 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14278 (shell-dynamic-complete-environment-variable): Use them.
14279 (shell-dynamic-complete-as-environment-variable)
14280 (shell-dynamic-complete-as-command): Remove.
14281 (shell-match-partial-variable): Match past point.
14282 * comint.el: Clean up use of completion-at-point-functions.
14283 (comint-completion-at-point): New function.
14284 (comint-mode): Use it completion-at-point-functions.
14285 (comint-dynamic-complete): Make it obsolete.
14286 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14287 (comint-c-a-p-replace-by-expanded-history): New function.
14288 (comint-dynamic-complete-functions)
14289 (comint-replace-by-expanded-history): Use it.
14290 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14291 termination strings. Try harder to avoid second try-completion.
14292 (completion-in-region-mode-map): Disable bindings that don't work yet.
14293
2dbaa080
SM
14294 * comint.el: Use lexical-binding. Require CL.
14295 (comint-dynamic-complete-functions): Use comint-filename-completion.
14296 (comint-completion-addsuffix): Tweak custom type.
14297 (comint-filename-completion, comint--common-suffix)
14298 (comint--common-quoted-suffix, comint--table-subvert)
14299 (comint--complete-file-name-data): New functions.
14300 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14301 (comint-dynamic-list-filename-completions): Use them.
14302 (comint-dynamic-simple-complete): Make obsolete.
c0a193ea 14303
2dbaa080
SM
14304 * minibuffer.el (completion-in-region-mode):
14305 Keep completion-in-region-mode--predicate global.
14306 (completion-in-region--postch):
14307 Assume completion-in-region-mode--predicate is not null.
14308
c79a6f38
SM
14309 * progmodes/flymake.el (flymake-start-syntax-check-process):
14310 Obey `dir'. Simplify.
14311
024ff170
SM
14312 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14313 we're in VC after all.
14314
1c6c854e
CS
143152011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14316
14317 * vc/vc.el (vc-diff-build-argument-list-internal)
024ff170 14318 (vc-version-ediff, vc-ediff): New commands.
1c6c854e
CS
14319 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14320
bed7f140
SM
143212011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14322
332e62ab
SM
14323 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14324 add sanity check.
14325
bed7f140
SM
14326 * obsolete/erc-hecomplete.el: Make obsolete.
14327 * obsolete/: Standardize obsolescence info in the header.
14328
f195c582
GM
143292011-04-20 Glenn Morris <rgm@gnu.org>
14330
14331 * calendar/solar.el (solar-horizontal-coordinates):
14332 Use the longitude argument rather than `calendar-longitude'.
14333 (solar-date-next-longitude): Remove unused locals.
14334
cb79b8c0
VJL
143352011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14336
14337 * whitespace.el: New version 13.2.1.
14338
143392011-04-20 felix <EmacsWiki> (tiny change)
14340
d8e4b68b 14341 * whitespace.el (global-whitespace-mode): Keep highlight when
cb79b8c0
VJL
14342 switching between major modes on a file.
14343
602ea69d
SM
143442011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14345
14346 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14347 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14348 multi-line comments as well.
14349
06b60517
JB
143502011-04-19 Juanma Barranquero <lekktu@gmail.com>
14351
14352 Lexical-binding cleanup.
14353
14354 * arc-mode.el (archive-mode-revert):
14355 * cmuscheme.el (scheme-interactively-start-process):
14356 * custom.el (custom-initialize-delay):
14357 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14358 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14359 * emacs-lock.el (emacs-lock-clear-sentinel):
14360 * ezimage.el (defezimage):
14361 * follow.el (follow-avoid-tail-recenter):
14362 * fringe.el (set-fringe-mode-1):
14363 * generic-x.el (bat-generic-mode-compile):
14364 * help-mode.el (help-info-variable, help-do-xref)
14365 (help-mode-revert-buffer):
14366 * help.el (view-emacs-todo):
14367 * iswitchb.el (iswitchb-completion-help):
14368 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14369 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14370 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14371 * locate.el (locate-update):
14372 * longlines.el (longlines-encode-region)
14373 (longlines-after-change-function):
14374 * outline.el (outline-isearch-open-invisible):
14375 * ps-def.el (declare-function, charset-dimension, char-width)
14376 (encode-char):
14377 * ps-mule.el (ps-mule-plot-string):
14378 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14379 (recentf-edit-list-select, recentf-edit-list-validate)
14380 (recentf-open-files-action):
14381 * rect.el (delete-whitespace-rectangle-line)
14382 (rectangle-number-line-callback):
14383 * register.el (window-configuration-to-register)
14384 (frame-configuration-to-register):
14385 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14386 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14387 (xselect-convert-to-targets, xselect-convert-to-delete)
14388 (xselect-convert-to-filename, xselect-convert-to-charpos)
14389 (xselect-convert-to-lineno, xselect-convert-to-colno)
14390 (xselect-convert-to-os, xselect-convert-to-host)
14391 (xselect-convert-to-user, xselect-convert-to-class)
14392 (xselect-convert-to-name, xselect-convert-to-integer)
14393 (xselect-convert-to-atom, xselect-convert-to-identity):
14394 * subr.el (declare, ignore, process-kill-without-query)
14395 (text-clone-maintain):
14396 * terminal.el (te-get-char, te-tic-sentinel):
14397 * tool-bar.el (tool-bar-make-keymap):
14398 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14399 * type-break.el (type-break-mode, type-break-noninteractive-query):
14400 * view.el (View-back-to-mark):
14401 * wid-browse.el (widget-browse-action, widget-browse-widget)
14402 (widget-browse-widgets, widget-browse-sexp):
14403 * widget.el (define-widget-keywords):
14404 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14405 Mark unused parameters.
14406
14407 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14408 (align-areas): Remove unused variable `look'.
14409 (align-region): Remove unused variables `real-end' and `pos-list'.
14410
14411 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14412
14413 * bindings.el (mode-line-modified, mode-line-remote):
14414 Mark unused parameters.
14415 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14416
14417 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14418 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14419
14420 * comint.el (comint-history-isearch-pop-state)
14421 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14422 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14423 (comint-substitute-in-file-name): Doc fix.
14424
14425 * completion.el (cmpl-statistics-block): Mark unused parameter.
14426 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14427 (save-completions-to-file, load-completions-from-file):
14428 Remove unused local variable `e'.
14429
14430 * composite.el (compose-chars): Remove unused variable `len'.
14431 (lgstring-insert-glyph): Remove unused variable `g'.
14432 (compose-glyph-string): Remove unused variables `ascent',
14433 `descent', `lbearing' and `rbearing'.
14434 (compose-glyph-string-relative): Remove unused variables
14435 `lbearing', `rbearing' and `wadjust'.
14436 (compose-gstring-for-graphic): Remove unused variables `header',
14437 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14438 (compose-gstring-for-terminal): Remove unused variables `header'
14439 and `nchars'. Use `let', not `let*'.
14440
14441 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14442 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14443 (Custom-buffer-done, custom-buffer-create-internal)
14444 (custom-browse-visibility-action, custom-browse-group-tag-action)
14445 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14446 (widget-magic-mouse-down-action, custom-toggle-parent)
14447 (custom-add-parent-links, custom-toggle-hide-variable)
14448 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14449 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14450 (custom-face-menu-create, custom-variable-menu-create, get)
14451 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14452 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14453 (customize-apropos): Remove unused variable `tests'.
14454 (custom-group-value-create): Remove unused variable `hidden-p'.
14455 (sort-fold-case): Declare.
14456
14457 * cus-theme.el (custom-reset-standard-faces-list)
14458 (custom-reset-standard-variables-list): Declare.
14459 (customize-create-theme, custom-theme-revert, custom-theme-write)
14460 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14461 Mark unused parameters.
14462
14463 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14464
14465 * delim-col.el (delimit-columns-max): Move defvar before first use.
14466
14467 * descr-text.el (describe-char-categories): Don't quote `lambda'.
bd0d2ee2 14468 (describe-char): Don't quote `lambda'. Mark unused parameter.
06b60517
JB
14469
14470 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14471 (auto-insert): Declare.
14472 (desktop-restore-file-buffer): Rename desktop-* parameters;
14473 mark unused ones.
14474 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14475 (desktop-buffer): Rename desktop-* parameters.
14476
14477 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14478 (dframe-reposition-frame-xemacs, dframe-help-echo)
14479 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14480 Mark unused parameters.
14481
14482 * dired-aux.el (backup-extract-version-start, overwrite-query)
14483 (overwrite-backup-query, rename-regexp-query)
14484 (rename-non-directory-query): Declare.
14485 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14486 (dired-add-entry): Remove unused variable `orig-file-name'.
14487 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14488 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14489 `dired-copy-preserve-time' directly.
14490 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14491 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14492
14493 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14494 (dired-virtual-revert, dired-make-relative-symlink):
14495 Mark unused parameters.
14496 (manual-program): Declare.
14497 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14498 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14499 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14500
14501 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14502
14503 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14504
14505 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14506 Declare.
14507
14508 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14509
14510 * electric.el (Electric-command-loop): Rename parameter
14511 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14512
14513 * expand.el (expand-in-literal): Remove unused variable `here'.
14514
14515 * facemenu.el (facemenu-add-new-color):
14516 Remove unused variable `docstring'.
14517
14518 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14519 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14520 (face-attr-construct): Mark unused parameter. Doc fix.
14521 (read-color): Remove unused variable `hex-string'.
14522
14523 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14524 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14525 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14526 (display-buffer-other-frame): Remove unused variable `old-window'.
14527 (kill-buffer-hook): Declare.
14528 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14529 Mark unused parameters.
14530 (after-find-file): Pass 1 to `auto-save-mode', not t.
14531
14532 * files-x.el (auto-insert): Declare.
14533 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14534
14535 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
bd0d2ee2 14536 variable `buf'. Mark unused parameter.
06b60517
JB
14537 (find-lisp-insert-directory): Mark unused parameter.
14538
14539 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14540 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14541 (format-common-tail): Remove, unused.
14542 (format-deannotate-region): Remove unused variable `loc'.
14543 (format-annotate-region): Remove unused variable `p'.
14544 (format-annotate-single-property-change): Remove unused variables
14545 `default' and `tail'.
14546
14547 * forms.el (read-file-filter): Declare.
14548 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14549
14550 * frame.el (frame-creation-function-alist): Mark unused parameter.
14551 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14552
14553 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14554 Remove unused parameters.
14555 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14556 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14557
14558 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14559 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14560 (hfy-prepare-tag-map): Mark unused parameters.
14561 (htmlfontify-buffer): Use `called-interactively-p'.
14562
14563 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14564 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14565 (ibuffer-do-occur): Mark unused parameters.
14566 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14567 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14568
14569 * ibuffer.el: Don't quote `lambda'.
14570 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14571 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14572 Mark unused parameters.
14573
14574 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14575 (ido-completing-read): Mark unused parameters.
14576 (ido-copy-current-word): Mark unused parameters;
14577 remove unused variable `name'.
14578 (ido-sort-merged-list): Remove unused parameter `dirs'.
14579
14580 * ielm.el (ielm-input-sender): Mark unused parameter.
14581 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
14582 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
14583 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
14584 `ielm-string' as a dynamic variable accessible from the IELM prompt.
14585 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
14586
14587 * image-dired.el (image-dired-display-thumbs): Remove unused
14588 variables `curr-file' and `count'.
14589 (image-dired-remove-tag): Remove unused variable `start'.
14590 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
14591 variable `curr-file'
14592 (image-dired-rotate-original): Remove unused variable `temp-file'.
14593 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
14594 Remove unused variable `file'.
14595 (image-dired-gallery-generate): Remove unused variable `curr'.
14596 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
14597
14598 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
14599
14600 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
14601
14602 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
14603
14604 * isearch.el (minibuffer-history-symbol): Declare.
14605 (isearch-edit-string): Remove unused variable `err'.
14606 (isearch-message-prefix, isearch-message-suffix):
14607 Mark unused parameters.
14608
14609 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
14610
14611 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
14612
14613 * makesum.el (double-column): Remove unused variable `cnt'.
14614
14615 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
14616 (ido-ignore-item-temp-list): Declare.
14617
14618 * mouse-drag.el (mouse-drag-throw): Remove unused variables
14619 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
14620 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
14621 (mouse-drag-drag): Remove unused variables `mouse-delta' and
14622 `mouse-col-delta'.
14623
14624 * mouse-sel.el (mouse-extend-internal):
14625 Remove unused variable `orig-window-frame'.
14626
14627 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
14628 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
14629 Move declarations before first use.
14630 (pcomplete-opt): Mark unused parameters; doc fix.
14631
14632 * proced.el (proced-revert): Mark unused parameter.
14633 (proced-send-signal): Remove unused variable `err'.
14634
14635 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
14636 Rename parameter PREFIX-ARG to ARG.
14637 (ps-basic-plot-string, ps-basic-plot-whitespace):
14638 Mark unused parameters.
14639
14640 * replace.el (replace-count): Define.
14641 (occur-revert-function): Mark unused parameters.
14642 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
14643 (isearch-case-fold-search, isearch-string): Declare.
14644 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
14645 bind `case-fold-search'. Remove unused variables `beg' and `end',
14646 and simplify.
14647 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
14648 COUNT and bind `replace-count'.
14649 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14650 to COUNT.
14651
14652 * savehist.el (print-readably, print-string-length): Declare.
14653
14654 * shadowfile.el (shadow-expand-cluster-in-file-name):
14655 Remove unused variable `cluster'.
14656 (shadow-copy-file): Remove unused variable `i'.
14657 (shadow-noquery, shadow-clusters, shadow-site-cluster)
14658 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14659 (shadow-define-literal-group, shadow-define-regexp-group)
14660 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14661
14662 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14663 (shell): Use `called-interactively-p'.
14664 (shell-directory-tracker): Remove unused variable `chdir-failure'.
14665
14666 * simple.el (compilation-context-lines, comint-file-name-quote-list)
14667 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14668 (delete-backward-char): Remove unused variable `ocol'.
14669 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14670 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14671 (event-apply-hyper-modifier, event-apply-shift-modifier)
14672 (event-apply-control-modifier, event-apply-meta-modifier):
14673 Mark unused parameters.
14674 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14675 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14676
14677 * speedbar.el (speedbar-ignored-directory-expressions)
14678 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14679 (speedbar-find-file, speedbar-dir-follow)
14680 (speedbar-directory-buttons-follow, speedbar-tag-find)
14681 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14682 (speedbar-buffers-line-directory, speedbar-buffer-click):
14683 Mark unused parameters.
14684 (speedbar-tag-file): Remove unused variable `mode'.
14685 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14686
14687 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14688
14689 * talk.el (talk): Remove unused variable `display'.
14690
14691 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14692 (tar-write-region-annotate): Mark unused parameter.
14693
14694 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14695 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14696 Declare them, wrapped in `with-no-warnings' to avoid replacing one
14697 warning by another.
14698
14699 * time-stamp.el (time-stamp-string-preprocess):
14700 Remove unused variable `require-padding'.
14701
14702 * tree-widget.el (widget-glyph-enable): Declare.
14703 (tree-widget-action): Mark unused parameter.
14704
14705 * w32-fns.el (x-get-selection): Mark unused parameter.
14706 (autoload-make-program, generated-autoload-file): Declare.
14707
14708 * wdired.el (wdired-revert): Mark unused parameters.
14709 (wdired-xcase-word): Remove unused variable `err'.
14710
14711 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14712 (whitespace-help-scroll): Remove unused variable `data-help'.
14713
14714 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14715 (widget-image-insert, widget-after-change, default)
14716 (widget-default-format-handler, widget-default-notify)
14717 (widget-default-prompt-value, widget-info-link-action)
14718 (widget-url-link-action, widget-function-link-action)
14719 (widget-variable-link-action, widget-file-link-action)
14720 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14721 (widget-field-prompt-internal, widget-field-action, widget-field-match)
14722 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14723 (widget-insert-button-action, widget-delete-button-action, visibility)
14724 (widget-documentation-link-action, widget-documentation-string-action)
14725 (widget-const-prompt-value, widget-regexp-match, symbol)
14726 (widget-coding-system-prompt-value)
14727 (widget-key-sequence-value-to-external, sexp)
14728 (widget-sexp-value-to-internal, character, vector, cons)
14729 (widget-choice-prompt-value, widget-boolean-prompt-value)
14730 (widget-color--choose-action): Mark unused parameters.
14731 (widget-item-match-inline, widget-choice-match-inline)
14732 (widget-checklist-match, widget-checklist-match-inline)
14733 (widget-group-match): Rename parameter VALUES to VALS.
14734 (widget-field-value-set): Remove unused variable `size'.
14735 (widget-color-action): Remove unused variables `value' and `start'.
14736
14737 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
bd0d2ee2 14738 variable `dir'. Doc fix.
06b60517
JB
14739 (windmove-find-other-window): Don't pass it.
14740
14741 * window.el (count-windows): Mark unused parameter.
14742 (bw-adjust-window): Remove unused variable `err'.
14743
14744 * woman.el (woman-file-name): Remove unused variable `default'.
14745 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14746 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14747 (global-font-lock-mode): Declare.
14748 (woman-decode-region): Mark unused parameter.
14749 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14750
14751 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14752 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14753 (x-dnd-handle-moz-url): Remove unused variable `title'.
14754 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14755
14756 * xml.el (xml-parse-tag, xml-parse-attlist):
14757 Remove unused variable `pos'.
14758
bc4f7f3d
GM
147592011-04-19 Glenn Morris <rgm@gnu.org>
14760
14761 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14762 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14763 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14764 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14765 * calendar/cal-html.el (cal-html-insert-minical):
14766 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14767 (calendar-mark-date-pattern):
14768 Prefix "unused" locals.
14769
14770 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14771 optional argument `style'.
14772
14773 * calendar/appt.el (appt-make-list):
14774 * calendar/cal-china.el (calendar-chinese-date-string):
14775 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14776 (diary-hebrew-yahrzeit):
14777 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
14778 * calendar/calendar.el (calendar-generate-window):
14779 * calendar/time-date.el (time-to-days):
14780 Remove unused local variables.
14781
16a43933
CY
147822011-04-18 Chong Yidong <cyd@stupidchicken.com>
14783
14784 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
14785 glyphless-char-display table.
14786 (tabulated-list-glyphless-char-display): New var.
14787
7eed1860
SS
147882011-04-18 Sam Steingold <sds@gnu.org>
14789
14790 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14791 to acknowledgments.
14792
4d2d1ccd
GM
147932011-04-17 Glenn Morris <rgm@gnu.org>
14794
14795 * calendar/diary-lib.el (diary-sexp-entry):
14796 * calendar/holidays.el (holiday-sexp):
14797 Set debug-on-error rather than the removed stack-trace-on-error.
14798
239da61d
GM
147992011-04-16 Glenn Morris <rgm@gnu.org>
14800
14801 * progmodes/f90.el: Use lexical-binding.
14802 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14803
8b05752a
SM
148042011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14805
daca8ba5
SM
14806 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14807 (mail-mode): Setup mailalias completion here instead.
14808 * mail/mailalias.el: Use lexical-binding.
14809 (pattern, mailalias-done): Declare dynamic.
14810 (mail-completion-at-point-function): New function, from mail-complete.
14811 (mail-complete): Use it.
14812 (mail-completion-expand): New function.
14813 (mail-get-names): Use it.
14814 (mail-directory, mail-directory-process, mail-directory-stream):
14815 Don't use `pattern' for lexically bound arg.
14816
6f542485
SM
14817 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14818
037e7c3f
SM
14819 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14820 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14821 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14822
8b05752a
SM
14823 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14824 (byte-save-window-excursion, byte-temp-output-buffer-setup)
14825 (byte-interactive-p): Define them again, for use when inlining
14826 old code.
14827
49093f60
JB
148282011-04-15 Juanma Barranquero <lekktu@gmail.com>
14829
14830 * loadup.el: Use `string-to-number', not `string-to-int'.
14831
b5b8e7de
SM
148322011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14833
14834 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14835 gud-gdb-complete-command.
14836 (gud-gdb-completions): New function, from gud-gdb-complete-command.
14837 (gud-gdb-completion-at-point): New function.
14838 (gud-gdb-completions): Remove.
14839
f42efeb5
MA
148402011-04-14 Michael Albinus <michael.albinus@gmx.de>
14841
49093f60
JB
14842 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14843 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
14844 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14845 whether `executable-find' is bound.
f42efeb5
MA
14846
14847 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14848
e240cc21
SM
148492011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14850
14851 * minibuffer.el (completion-in-region-mode-predicate)
14852 (completion-in-region-mode--predicate): New vars.
14853 (completion-in-region, completion-in-region--postch)
14854 (completion-in-region-mode): Use them.
14855 (completion--capf-wrapper): Also return the hook function.
14856 (completion-at-point, completion-help-at-point):
14857 Adjust and provide a predicate.
c2bd2ab0
SM
14858
14859 Preserve arg names for advice of subr and lexical functions (bug#8457).
14860 * help-fns.el (help-function-arglist): Consolidate the subr and
14861 new-byte-code cases. Add argument `preserve-names' to extract names
14862 from the docstring when needed.
14863 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14864 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14865 (ad-arglist): Use help-function-arglist's new arg.
14866 (ad-definition-type): Use cond.
14867
c183f693
JB
148682011-04-13 Juanma Barranquero <lekktu@gmail.com>
14869
06641a47
JB
14870 * autorevert.el (auto-revert-handler):
14871 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14872 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14873 Don't quote lambda.
14874
c183f693
JB
14875 * image-mode.el (image-transform-set-scale):
14876 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14877
1e3b6001
G
148782011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14879
14880 * net/network-stream.el (network-stream-open-starttls): Only do
e9fce1ac 14881 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
1e3b6001
G
14882 Upgrades via gnutls-cli are too slow to be done opportunistically.
14883
2d6af8dd
JB
148842011-04-12 Juanma Barranquero <lekktu@gmail.com>
14885
14886 * dframe.el (dframe-current-frame): Remove spurious quote.
14887
c0749a51
GM
148882011-04-12 Glenn Morris <rgm@gnu.org>
14889
088d0d61
GM
14890 * calendar/cal-tex.el (cal-tex-end-document):
14891 Try to automatically use latin1 input if needed.
14892
c0749a51
GM
14893 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14894 Don't try to cons a mark onto an empty element.
14895
5c90fde0
LL
148962011-04-11 Leo Liu <sdl.web@gmail.com>
14897
14898 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14899 buffers.
14900 (ido-kill-buffer-at-head): Support killing virtual buffers.
14901
369e974d
CY
149022011-04-10 Chong Yidong <cyd@stupidchicken.com>
14903
14904 * minibuffer.el (completion-show-inline-help): New var.
14905 (completion--do-completion, minibuffer-complete)
daca8ba5
SM
14906 (minibuffer-force-complete, minibuffer-complete-word):
14907 Inhibit minibuffer messages if completion-show-inline-help is nil.
369e974d
CY
14908
14909 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14910 to avoid interference from inline help (Bug#5849).
14911
37f1c930
LL
149122011-04-10 Leo Liu <sdl.web@gmail.com>
14913
099c39a4
JB
14914 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14915 Fix typo.
37f1c930 14916
a32d4040
CY
149172011-04-09 Chong Yidong <cyd@stupidchicken.com>
14918
14919 * image-mode.el (image-toggle-display-image): Signal an error if
14920 not in Image mode.
14921 (image-transform-mode, image-transform-resize)
14922 (image-transform-set-rotation): Doc fix.
daca8ba5 14923 (image-transform-set-resize): Delete.
a32d4040
CY
14924 (image-transform-set-scale, image-transform-fit-to-height)
14925 (image-transform-fit-to-width): Handle image-toggle-display-image
14926 and image-transform-resize directly.
14927
099c39a4 149282011-04-08 Sho Nakatani <lay.sakura@gmail.com>
d7b89879
TH
14929
14930 * doc-view.el (doc-view-fit-width-to-window)
099c39a4
JB
14931 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14932 New functions for fitting the shown image to the Emacs window size.
d7b89879
TH
14933 (doc-view-mode-map): Add bindings for the new functions.
14934
099c39a4 149352011-04-08 Juanma Barranquero <lekktu@gmail.com>
ddc20cdb 14936
4d61f28d 14937 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
ddc20cdb
JB
14938 Fix typo in docstring.
14939
3726838a
EZ
149402011-04-08 Eli Zaretskii <eliz@gnu.org>
14941
04f33f1e
EZ
14942 * files.el (file-size-human-readable): Produce one digit after
14943 decimal, like "ls -lh" does.
14944
14945 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
14946 the file size representation.
14947
3726838a
EZ
14948 * simple.el (list-processes): If async subprocesses are not
14949 available, error out with a clear error message.
14950
cbb59342
CY
149512011-04-08 Chong Yidong <cyd@stupidchicken.com>
14952
14953 * help.el (help-form-show): New function, to be called from C.
14954 Put help-form output in a buffer named differently than *Help*.
14955
e3971c44
EZ
149562011-04-08 Eli Zaretskii <eliz@gnu.org>
14957
14958 * files.el (file-size-human-readable): New function.
14959
14960 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
14961 computing the representation inline. Don't require `cl'.
14962
12544bbe
GM
149632011-04-08 Glenn Morris <rgm@gnu.org>
14964
a1de6c6a
GM
14965 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
14966
3c4671f4
GM
14967 * net/browse-url.el (browse-url-firefox):
14968 Test system-type, not system-configuration.
14969
b605679c
GM
14970 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
14971 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
14972 Use log-edit-empty-buffer-p. (Bug#7598)
14973
56442f0c
GM
14974 * net/rlogin.el (rlogin-process-connection-type): Simplify.
14975 (rlogin-mode-map): Initialize in the defvar.
14976 (rlogin): Use ignore-errors.
14977
12544bbe
GM
14978 * replace.el (occur-mode-map): Some fixes for menu items.
14979
eb237b0f
AH
149802011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
14981
14982 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
14983
7d668f2c
CY
149842011-04-06 Chong Yidong <cyd@stupidchicken.com>
14985
e67a13ab
CY
14986 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
14987 issuing unused warnings.
14988
14989 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
14990 macro directly.
14991
7d668f2c
CY
14992 * simple.el: Lisp reimplement of list-processes. Based on an
14993 earlier reimplementation by Leo Liu, but using tabulated-list.el.
14994 (process-menu-mode): New major mode.
14995 (list-processes--refresh, list-processes):
14996 (process-menu-visit-buffer): New functions.
14997
14998 * files.el (save-buffers-kill-emacs): Don't assume any return
14999 value of list-processes, which is undocumented anyway.
15000
a83ec3c9
CY
150012011-04-06 Chong Yidong <cyd@stupidchicken.com>
15002
15003 * emacs-lisp/tabulated-list.el: New file.
15004
e91a96fe
CY
15005 * emacs-lisp/package.el: Use Tabulated List mode.
15006 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
15007 (package-menu-mode): Derive from tabulated-list-mode. Set up the
15008 table format using Tabulated List mode variables.
15009 (package--push): New macro, replacing package-list-maybe-add.
15010 (package-menu--generate): Use package--push. Renamed from
15011 package--generate-package-list.
15012 (package-menu-refresh, list-packages): Use it.
daca8ba5 15013 (package-menu--print-info): Rename from package-print-package.
e91a96fe 15014 Return insertion data instead of inserting it directly.
099c39a4
JB
15015 (package-menu-describe-package, package-menu-execute):
15016 Use tabulated-list-get-id.
e91a96fe
CY
15017 (package-menu-mark-delete, package-menu-mark-install)
15018 (package-menu-mark-unmark, package-menu-backup-unmark)
099c39a4
JB
15019 (package-menu-mark-obsolete-for-deletion):
15020 Use tabulated-list-put-tag.
e91a96fe
CY
15021 (package--list-packages, package-menu-revert)
15022 (package-menu-get-package, package-menu-get-version)
15023 (package-menu-sort-by-column): Functions deleted.
15024 (package-menu-package-list, package-menu-sort-key): Vars deleted.
15025 (package-menu--status-predicate, package-menu--version-predicate)
15026 (package-menu--name-predicate)
15027 (package-menu--description-predicate): Handle arguments in the
15028 Tabulated List format.
15029 (package-list-packages-no-fetch): Call list-packages.
15030
3e214b50
JB
150312011-04-06 Juanma Barranquero <lekktu@gmail.com>
15032
15033 * files.el (after-find-file-from-revert-buffer): Remove variable.
c9d0ec6d 15034 (after-find-file): Don't bind it.
3e214b50
JB
15035 (revert-buffer-in-progress-p): New variable.
15036 (revert-buffer): Bind it.
15037 Pass nil for `after-find-file-from-revert-buffer'.
15038
15039 * saveplace.el (save-place-find-file-hook): Use new variable
15040 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
15041
3f0f1700
GM
150422011-04-06 Glenn Morris <rgm@gnu.org>
15043
c0274801
GM
15044 * Makefile.in (AUTOGEN_VCS): New variable.
15045 (autoloads): Use $AUTOGEN_VCS.
15046
3f0f1700
GM
15047 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
15048 * calendar/calendar.el (calendar-mode-map):
15049 Check for toolkit scroll bars. (Bug#8305)
15050
41ea9e48
CY
150512011-04-05 Chong Yidong <cyd@stupidchicken.com>
15052
15053 * minibuffer.el (completion-in-region--postch)
15054 (completion-in-region-mode): Remove unnecessary messages.
15055
6194c800
JB
150562011-04-05 Juanma Barranquero <lekktu@gmail.com>
15057
33256f14
JB
15058 * font-lock.el (font-lock-refresh-defaults):
15059 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
15060 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
15061
6194c800
JB
15062 * info.el (Info-directory-list, Info-read-node-name-2)
15063 (Info-split-parameter-string): Doc fixes.
15064 (Info-virtual-nodes): Reflow docstring.
15065 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
15066 (Info-apropos-toc-nodes, info-finder, Info-get-token)
15067 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
15068 Fix typos in docstrings.
15069 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
15070 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
15071 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
15072 (Info-restore-desktop-buffer): Mark unused parameters.
15073 (Info-directory-find-file, Info-directory-find-node)
15074 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
15075 (Info-virtual-index-find-node, Info-apropos-find-file)
15076 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
33256f14 15077 Mark unused parameters; fix typos in docstrings.
6194c800
JB
15078 (Info-virtual-index): Remove unused local variable `nodename'.
15079
b87a8200 150802011-04-05 Deniz Dogan <deniz@dogan.se>
0f6ee7d2 15081
b87a8200
DD
15082 * net/rcirc.el: Update my e-mail address.
15083 (rcirc-mode-map): Remove M-o binding.
0f6ee7d2 15084
3b2ff876
CY
150852011-04-05 Chong Yidong <cyd@stupidchicken.com>
15086
15087 * startup.el (command-line): Save the cursor's theme-face
15088 directly, instead of using face-override-spec.
15089
15090 * custom.el (load-theme): Minor optimization in assigning faces.
15091
8d17e7ca
JB
150922011-04-04 Juanma Barranquero <lekktu@gmail.com>
15093
15094 * help-fns.el (describe-variable): Complete all variables having
15095 documentation, including keywords.
15096 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
15097
2fbc1934
JB
150982011-04-04 Juanma Barranquero <lekktu@gmail.com>
15099
15100 Convert to lexical-binding.
15101
15102 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
15103 (bs--get-marked-string, bs--get-modified-string)
15104 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
15105 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
15106 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
15107
15108 * ehelp.el (electric-help-execute-extended)
15109 (electric-help-ctrl-x-prefix):
15110 * hexl.el (hexl-revert-buffer-function):
15111 * linum.el (linum-after-change, linum-after-scroll):
15112 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
15113
15114 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
15115
74f50695
DU
151162011-04-04 Daiki Ueno <ueno@unixuser.org>
15117
15118 * epa-dired.el:
15119 * epa-mail.el:
15120 * epa-hook.el:
15121 * epa-file.el:
15122 * epa.el:
15123 * epg.el: Use lexical binding.
15124
c11325f7
CY
151252011-04-03 Chong Yidong <cyd@stupidchicken.com>
15126
0d9e9a12
CY
15127 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
15128
c11325f7 15129 * textmodes/flyspell.el (flyspell-word): Recognize default
daca8ba5
SM
15130 dictionary case for flyspell-mark-duplications-exceptions.
15131 Use regexp matching for languages.
c11325f7
CY
15132 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
15133 default dictionary (Bug#7926).
15134
da91b5f2
CY
151352011-04-02 Chong Yidong <cyd@stupidchicken.com>
15136
099c39a4
JB
15137 * emacs-lisp/package.el (package--with-work-buffer):
15138 Recognize https URLs.
da91b5f2 15139
099c39a4
JB
15140 * net/network-stream.el: Move from gnus/proto-stream.el.
15141 Change prefix to network-stream throughout.
da91b5f2
CY
15142 (open-protocol-stream): Merge into open-network-stream, leaving
15143 open-protocol-stream as an alias. Handle nil BUFFER args.
15144
15145 * subr.el (open-network-stream): Move to net/network-stream.el.
15146
afa8e9f6
GM
151472011-04-02 Glenn Morris <rgm@gnu.org>
15148
1d2e369d
GM
15149 * find-dired.el (find-exec-terminator): New option.
15150 (find-ls-option): Test for -ls support.
15151 (find-ls-subdir-switches): Test for -b in find-ls-option.
15152 (find-dired, find-grep-dired): Doc fixes.
15153 (find-dired): Use find-exec-terminator.
15154
8abb7da8 15155 * find-dired.el (find-ls-option, find-ls-subdir-switches)
e7a395b5
GM
15156 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15157 (find-name-arg): Remove purecopy.
8abb7da8 15158
f3ca7378
GM
15159 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15160 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15161 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15162 accordingly. Don't add the null-device if not needed.
15163
afa8e9f6
GM
15164 * files.el (save-some-buffers): Doc fix.
15165
35eae264
EZ
151662011-04-02 Eli Zaretskii <eliz@gnu.org>
15167
15168 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15169
26b51db5
JB
151702011-04-01 Juanma Barranquero <lekktu@gmail.com>
15171
15172 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15173 Use `dolist' rather than `mapcar'.
15174
7200d79c
SM
151752011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15176
03408648 15177 Add lexical binding.
7200d79c 15178
03408648
SM
15179 * subr.el (apply-partially): Use new closures rather than CL.
15180 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15181 (dolist, dotimes): Use slightly different expansion for lexical code.
15182 (functionp): Move to C.
15183 (letrec): New macro.
15184 (with-wrapper-hook): Use it and apply-partially instead of CL.
15185 (eval-after-load): Preserve lexical-binding.
15186 (save-window-excursion, with-output-to-temp-buffer): Turn them
15187 into macros.
7200d79c 15188
03408648
SM
15189 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15190
15191 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15192 than the arglist.
15193 (help-add-fundoc-usage): Don't add `Not documented'.
15194 (help-function-arglist): Handle closures, subroutines, and new
15195 byte-code-functions.
15196 (help-make-usage): Remove leading underscores.
15197 (describe-function-1): Handle closures.
15198 (describe-variable): Use special-variable-p for completion.
15199
15200 * files.el (lexical-binding): Declare safe.
f488fb65 15201
03408648
SM
15202 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15203 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15204 (pcase): Add `let' pattern.
15205 Change memoization so it actually works.
15206 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15207 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15208 <let>: New case.
f488fb65 15209
03408648
SM
15210 * emacs-lisp/macroexp.el: Use lexical binding.
15211 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15212 Don't convert ' to #' without checking that it's indeed quoting
15213 a lambda.
15214
15215 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
f488fb65 15216 Use eval-sexp-add-defvars.
03408648
SM
15217 (eval-sexp-add-defvars): New fun.
15218
15219 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15220
15221 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15222 Don't autoload.
15223 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15224 than the internal `byte-compile-lambda'.
15225 (defmethod): Don't hide code under quotes.
15226 (eieio-defmethod): New `code' argument.
15227
15228 * emacs-lisp/eieio-comp.el: Remove.
15229
15230 * emacs-lisp/edebug.el (edebug-eval-defun)
15231 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15232 (edebug-toggle): Avoid `eval'.
15233
15234 * emacs-lisp/disass.el (disassemble-internal): Handle new
15235 `closure' objects.
15236 (disassemble-1): Handle new byte codes.
15237
15238 * emacs-lisp/cl.el (pushnew): Silence warning.
15239
15240 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15241 (cl-byte-compile-throw): Remove.
15242 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15243
15244 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15245 closures.
15246
15247 * emacs-lisp/cconv.el: New file.
15248
15249 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15250 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15251 (byte-compile-initial-macro-environment):
15252 Handle declare-function here.
15253 (byte-compile--lexical-environment): New var.
15254 (byte-stack-ref, byte-stack-set, byte-discardN)
15255 (byte-discardN-preserve-tos): New lap codes.
15256 (byte-interactive-p): Don't use any more.
15257 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15258 New macros.
15259 (byte-compile-lapcode): Use them and handle new lap codes.
15260 (byte-compile-obsolete): Remove.
15261 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15262 (byte-compile-arglist-warn): Check late def of inlinable funs.
15263 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15264 since they should have been expanded by now.
15265 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15266 (byte-compile-from-buffer): Remove unused second arg.
15267 (byte-compile-preprocess): New function.
15268 (byte-compile-toplevel-file-form): New function to distinguish
15269 file-form calls from outside from file-form calls from hunk-handlers.
15270 (byte-compile-file-form): Simplify.
15271 (byte-compile-file-form-defsubst): Remove.
15272 (byte-compile-file-form-defmumble): Simplify now that
15273 byte-compile-lambda always returns a byte-code-function.
15274 (byte-compile): Preprocess.
15275 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15276 Remove, not used any more.
15277 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15278 (byte-compile-make-args-desc): New funs.
15279 (byte-compile-lambda): Handle lexical functions. Always return
15280 a byte-code-function.
15281 (byte-compile-reserved-constants): New var, to make up room for
15282 closed-over variables.
15283 (byte-compile-constants-vector): Obey it.
15284 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15285 (byte-compile-macroexpand-declare-function): New function.
15286 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15287 byte-code-functions.
15288 (byte-compile-form): Check obsolescence here.
15289 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15290 (byte-compile-variable-ref): Remove.
15291 (byte-compile-dynamic-variable-op): New fun.
15292 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15293 (byte-compile-variable-set): New funs.
15294 (byte-compile-discard): Add 2 args.
15295 (byte-compile-stack-ref, byte-compile-stack-set)
15296 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15297 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15298 macroexpand-all instead.
15299 (byte-compile-quote-form): Remove.
15300 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15301 (byte-compile-bind, byte-compile-unbind): New funs.
15302 (byte-compile-let): Handle let* and lexical binding.
15303 (byte-compile-let*): Remove.
15304 (byte-compile-catch, byte-compile-unwind-protect)
15305 (byte-compile-track-mouse, byte-compile-condition-case):
15306 Handle a new :fun-body form, used for lexical scoping.
15307 (byte-compile-save-window-excursion)
15308 (byte-compile-with-output-to-temp-buffer): Remove.
15309 (byte-compile-defun): Simplify.
15310 (byte-compile-stack-adjustment): New fun.
15311 (byte-compile-out): Use it.
15312 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15313
15314 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15315 handler any more.
15316
15317 * emacs-lisp/byte-opt.el: Use lexical binding.
15318 (byte-inline-lapcode): Remove (to bytecomp).
15319 (byte-compile-inline-expand): Pay attention to inlining to/from
15320 lexically bound code.
15321 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15322 any more.
15323 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15324 any more and don't call compiler-macros.
15325 (byte-compile-splice-in-already-compiled-code): Remove.
15326 (byte-code): Don't inline any more.
15327 (disassemble-offset): Receive `bytes' as argument rather than via
15328 dynamic scoping.
15329 (byte-compile-tag-number): Declare before first use.
15330 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15331 `return' even if make-spliceable.
15332 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15333 obsolete interactive-p.
15334 (byte-optimize-lapcode): Optimize new lap-codes.
15335 Don't trip up on new form of `byte-constant' lap code.
15336
15337 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15338
15339 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15340
15341 * custom.el (custom-initialize-default, custom-declare-variable):
15342 Use `defvar'.
15343
15344 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15345 New variables.
15346 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15347 (COMPILE_FIRST): Add macroexp and cconv.
15348 * makefile.w32-in: Mirror changes in Makefile.in.
15349
15350 * vc/cvs-status.el:
15351 * vc/diff-mode.el:
15352 * vc/log-edit.el:
15353 * vc/log-view.el:
15354 * vc/smerge-mode.el:
15355 * textmodes/bibtex-style.el:
15356 * textmodes/css.el:
15357 * startup.el:
15358 * uniquify.el:
da91b5f2
CY
15359 * minibuffer.el:
15360 * newcomment.el:
15361 * reveal.el:
15362 * server.el:
15363 * mpc.el:
15364 * emacs-lisp/smie.el:
15365 * doc-view.el:
15366 * dired.el:
03408648
SM
15367 * abbrev.el: Use lexical binding.
15368
0f0c1f27
EZ
153692011-04-01 Eli Zaretskii <eliz@gnu.org>
15370
15371 * info.el (info-display-manual): New function.
15372
c82b2579
SM
153732011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15374
15375 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15376
221ddf68
TH
153772011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15378
15379 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
2fbc1934 15380 an entry for that server in rcirc-authinfo. (Bug#8385)
221ddf68 15381
cba6e77e
GM
153822011-03-31 Glenn Morris <rgm@gnu.org>
15383
e040639f
GM
15384 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15385
cba6e77e
GM
15386 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15387
6d0f1c9e
CS
153882011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15389
15390 * progmodes/python.el (python-default-interpreter)
15391 (python-python-command-args, python-jython-command-args)
15392 (python-which-shell, python-which-args, python-which-bufname)
15393 (python-file-queue, python-comint-output-filter-function)
15394 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15395 variables and functions.
15396
3e2d70fd
SM
153972011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15398
15399 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15400 (completion-in-region-mode): New minor mode.
15401 (completion-in-region): Use it.
15402 (completion-in-region--data, completion-in-region-mode-map): New vars.
15403 (completion-in-region--postch): New function.
15404 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15405 New vars.
15406 (completion--capf-wrapper): New function.
15407 (completion-at-point): Use it to track well-behavedness of
15408 hook functions.
15409 (completion-help-at-point): New command.
15410
f3e4086c
JM
154112011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15412
15413 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15414 syntax class to search for whitespace on a single line
15415 (Message-ID: <4D938140.4030905@redhat.com>).
15416
eb7ffc14
LL
154172011-03-30 Leo Liu <sdl.web@gmail.com>
15418
15419 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15420 New commands.
15421 (edit-abbrevs-map): Bind them here.
15422 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15423
d806ab68
KM
154242011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15425
15426 * allout.el (allout-hide-by-annotation, allout-flag-region):
15427 Reduce possibility of overlay leakage by making them volatile.
15428
15429 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15430 hash is not shared between buffers. Mode initialization is
15431 responsible for giving it a useful starting value.
15432 (allout-item-span): Reduce possibility of overlay leakage by
15433 making them volatile.
15434 (allout-widgets-count-buttons-in-region): Add diagnostic function
15435 for tracking down button overlay leaks.
15436
ea622834
LL
154372011-03-29 Leo Liu <sdl.web@gmail.com>
15438
15439 * ido.el (ido-read-internal): Use the default history var
15440 minibuffer-history if no HISTORY is specified.
15441
b62f8267
G
154422011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15443
03408648
SM
15444 * net/imap.el (imap-shell-open, imap-process-connection-type):
15445 Use imap-process-connection-type for 'shell' streams as well as
b62f8267
G
15446 Kerberos, SSL, other subprocesses.
15447
947b6566
LL
154482011-03-28 Leo Liu <sdl.web@gmail.com>
15449
15450 * abbrev.el (abbrev-table-empty-p): New function.
15451 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15452 nonempty ones. (Bug#5937)
15453
5ffb62aa
JD
154542011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15455
15456 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15457
7a097943
LL
154582011-03-27 Leo Liu <sdl.web@gmail.com>
15459
15460 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15461 for foreground and background colors.
15462 (ansi-color-make-color-map): Adapt.
15463
c5b40130
LL
154642011-03-25 Leo Liu <sdl.web@gmail.com>
15465
1f48f7d2
LL
15466 * midnight.el (midnight-time-float): Remove. Note it calculates
15467 the microsecond component incorrectly and seconds-to-time does the
15468 same job.
625897ec 15469 Remove redundant (require 'timer).
1f48f7d2 15470
c5b40130
LL
15471 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15472 (ido-completions): Remove unused arguments. (Bug#8329)
15473
d86d2721
SM
154742011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15475
15476 * minibuffer.el (completion--flush-all-sorted-completions):
15477 Remove itself from hook.
15478 (completion-at-point): Let the functions perform the completion
15479 immediately and return nil or t.
15480 * comint.el (comint-dynamic-complete-functions): Now identical to
15481 completion-at-point-functions.
15482 (comint-dynamic-list-input-ring): Remove unused var `index'.
15483 (comint--match-partial-filename, comint--unquote&expand-filename):
15484 New funs, split from comint-match-partial-filename.
15485 (comint-dynamic-complete): Use completion-at-point.
15486 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15487
e8974c48
DA
154882011-03-24 Drew Adams <drew.adams@oracle.com>
15489
15490 * thingatpt.el: Support `defun'.
15491
def71b5e
LL
154922011-03-23 Leo Liu <sdl.web@gmail.com>
15493
cb5af48e
LL
15494 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15495
def71b5e
LL
15496 * help-mode.el (help-mode-finish): Tweak regexp.
15497
927c53e7
GM
154982011-03-23 Glenn Morris <rgm@gnu.org>
15499
18d05bed
GM
15500 * eshell/esh-opt.el (eshell-eval-using-options):
15501 Do not bind unused local variable `eshell-option-stub'.
15502
927c53e7
GM
15503 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15504
9d0da923
JB
155052011-03-22 Juanma Barranquero <lekktu@gmail.com>
15506
15507 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15508 keymap variable in `with-no-warnings' to avoid a warning when the
15509 keymap has been already `defconst'ed.
15510
4b978a67
LL
155112011-03-22 Leo Liu <sdl.web@gmail.com>
15512
15513 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15514 encode all chars in abbrevs; otherwise use emacs-mule or
15515 utf-8-emacs. (Bug#8308)
15516
5fd62452
JB
155172011-03-22 Juanma Barranquero <lekktu@gmail.com>
15518
0b1596c6
JB
15519 * simple.el (backward-delete-char-untabify):
15520 Avoid warning about using `delete-backward-char'.
15521
5fd62452
JB
15522 * image.el (image-type-file-name-regexps): Make it variable.
15523 `imagemagick-register-types' modifies it, and the user may want
15524 to add new extensions for known image types.
15525 (imagemagick-register-types): Throw error if not using ImageMagick.
15526
0b4e93f1
LL
155272011-03-22 Leo Liu <sdl.web@gmail.com>
15528
15529 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15530 located before rcirc-prompt-end-marker.
15531 (rcirc-complete): Error if point is not after rcirc prompt.
15532 Handle the case when table is nil.
9882e214 15533 (rcirc-user-authenticated): Define to fix compiler warning.
0b4e93f1 15534
fccee4ab
CY
155352011-03-22 Chong Yidong <cyd@stupidchicken.com>
15536
15537 * custom.el (custom--inhibit-theme-enable): Make it affect only
15538 custom-theme-set-variables and custom-theme-set-faces.
15539 (provide-theme): Ignore custom--inhibit-theme-enable.
15540 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15541 (custom-enabling-themes): Delete variable.
d86d2721
SM
15542 (enable-theme): Accept only loaded themes as arguments.
15543 Ignore the special custom-enabled-themes variable.
fccee4ab
CY
15544 (custom-enabled-themes): Forbid themes from setting this.
15545 Eliminate use of custom-enabling-themes.
15546 (custom-push-theme): Quote "changed" custom var entry.
0357c7ae 15547
af896da6
LL
155482011-03-21 Leo Liu <sdl.web@gmail.com>
15549
15550 * ido.el (ido-read-internal): Add ido-selected to history instead
15551 of user input.
15552
78f64af0
SM
155532011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15554
15555 * subr.el (deferred-action-list, deferred-action-function):
15556 Mark obsolete.
15557
b16ac1ec
LL
155582011-03-21 Leo Liu <sdl.web@gmail.com>
15559
810f7698
LL
15560 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15561 change on 2011-02-13 (bug#8309).
15562
b16ac1ec
LL
15563 * minibuffer.el (read-file-name-function): Change default value.
15564 (read-file-name--defaults): Rename from read-file-name-defaults.
15565 (read-file-name-default): Rename from read-file-name.
15566 (read-file-name): Call read-file-name-function.
15567
4e05e67e
GM
155682011-03-21 Glenn Morris <rgm@gnu.org>
15569
15570 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15571 Doc fixes.
15572
4359915b
CY
155732011-03-21 Chong Yidong <cyd@stupidchicken.com>
15574
15575 * cus-theme.el: Add missing provide statement.
15576 (customize-create-theme): Extract theme value correctly.
15577 (custom-theme-visit-theme): Autoload.
15578 (customize-create-theme): Prompt before inserting default faces.
15579
1fe275ee
JB
155802011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
15581
15582 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
15583 units and musical notes.
15584
cd394be1 155852011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
15586
15587 * ido.el (ido-read-internal): Use completing-read-default.
15588 (ido-completing-read): Fix compatibility with completing-read.
15589
7d476bde
CO
155902011-03-20 Christian Ohler <ohler@gnu.org>
15591
15592 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
15593 (ert-delete-all-tests): Use `called-interactively-p' rather than
15594 `interactive-p'.
15595 (ert--make-xrefs-region): Respect END.
15596
fe0fb33e
CY
155972011-03-19 Chong Yidong <cyd@stupidchicken.com>
15598
ff854b0b
CY
15599 * dired-aux.el (dired-create-directory): Signal an error if the
15600 directory already exists (Bug#8246).
15601
fe0fb33e
CY
15602 * facemenu.el (list-colors-display): Call list-faces-display
15603 inside with-help-window.
15604 (list-colors-print): Use display property to align the final
15605 column, instead of checking window-width.
15606
576bce32
EZ
156072011-03-19 Eli Zaretskii <eliz@gnu.org>
15608
4d61f28d 15609 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
576bce32
EZ
15610 windows-nt systems.
15611 (emerge-protect-metachars): Quote correctly for ms-dos and
15612 windows-nt systems.
15613
89c41d68 156142011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
e6ce307c
RS
15615
15616 * info.el (info-initialize): Replace all uses of `:' with
15617 path-separator for compatibility with non-Unix systems.
15618 Cache quoting of path-separator. (Bug#8258)
15619
b14e3e21 156202011-03-19 Juanma Barranquero <lekktu@gmail.com>
ad22b7f7
JB
15621
15622 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
15623 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
15624 (mouse-avoidance-mode): Fix typos in docstrings.
15625
4525ce3e
CY
156262011-03-19 Chong Yidong <cyd@stupidchicken.com>
15627
15628 * startup.el (package-subdirectory-regexp): Move from package.el.
15629 Omit \\` and \\', and let callers add them.
15630
15631 * emacs-lisp/package.el (package-strip-version)
15632 (package-load-all-descriptors): Add \\` and \\' to
15633 package-subdirectory-regexp before using it.
15634 (package-untar-buffer): New arg DIR; ensure that file untars only
15635 into this expected directory. Remove superfluous delete-region.
15636 (package-unpack): Caller changed.
15637 (package-tar-file-info): Use package-subdirectory-regexp.
15638
a904a09a 156392011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
1518e4f0 15640
a904a09a
SM
15641 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
15642 diff-mode-shared-map (bug#8284).
15643 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
1518e4f0
G
15644
156452011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15646
15647 * calendar/time-date.el (format-seconds): Use assoc instead of
15648 assoc-string, since assoc-string doesn't exist in XEmacs.
15649
171fc304
JB
156502011-03-17 Juanma Barranquero <lekktu@gmail.com>
15651
15652 * custom.el (custom-known-themes): Reflow docstring.
15653 (custom-theme-load-path): Fix typo in docstring.
15654 (load-theme): Fix typo in error message.
15655 (custom-available-themes, custom-variable-theme-value):
15656 Use `let', not `let*'.
15657
d71990a1
JB
156582011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15659
15660 * calc/README: Mention inclusion of musical notes.
15661
15662 * calc/calc-units.el (calc-lu-quant): Rename from
15663 `calc-logunits-quantity'.
15664 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15665 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15666 (calc-db): Rename from `calc-dblevel'.
15667 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15668 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15669 (calc-np): Rename from `calc-nplevel'.
15670 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15671 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15672 (calc-lu-plus): Rename from `calc-logunits-add'.
15673 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15674 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15675 (calc-lu-minus): Rename from `calc-logunits-sub'.
15676 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15677 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15678 (calc-lu-times): Rename from `calc-logunits-mul'.
15679 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15680 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15681 (calc-lu-divide): Rename from `calc-logunits-div'.
15682 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15683 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15684
15685 * calc/calc-ext.el (calc-init-extensions): Update the names of the
15686 functions being autoloaded.
15687
15688 * calc/calc.el (calc-lu-power-reference): Rename from
15689 `calc-logunits-power-reference'.
15690 (calc-lu-field-reference): Rename from
15691 `calc-logunits-field-reference'.
15692
7a71b18d
GM
15693 * calc/calc-help.el (calc-l-prefix-help):
15694 Mention musical note functions.
d71990a1 15695
40c2934b
SM
156962011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15697
15698 * minibuffer.el (completion-all-sorted-completions):
15699 Use :completion-cycle-penalty text property if present.
15700
b0911414
KM
157012011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
15702
15703 * allout.el (allout-yank-processing): Adjust for new rebulleting
15704 regime so bullet being yanked is used without prompting the user
15705 for a choice.
15706
8a05b668
JB
157072011-03-16 Juanma Barranquero <lekktu@gmail.com>
15708
15709 * startup.el (command-line): Warn the user that _emacs is deprecated.
15710
5ba5fb81
JB
157112011-03-16 Juanma Barranquero <lekktu@gmail.com>
15712
15713 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15714 (delphi-verbose, delphi-comment-face, delphi-string-face)
15715 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15716 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15717 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15718 (delphi-new-comment-line, delphi-font-lock-defaults)
15719 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15720 Fix typos in docstrings.
15721
2dab465b
KM
157222011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
15723
5ba5fb81 15724 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
2dab465b
KM
15725 Invert the roles of character and string values for INSTEAD, so a
15726 string is used for the more common case of a defaulting prompt.
15727
0adf5618
SM
157282011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15729
15730 * progmodes/ruby-mode.el (ruby-backward-sexp):
15731 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15732 * play/gamegrid.el (gamegrid-make-face):
15733 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15734 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15735 * notifications.el (notifications-notify):
15736 * net/xesam.el (xesam-search-engines):
15737 * net/quickurl.el (quickurl-list-insert):
15738 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15739
d72700e5
CY
157402011-03-15 Chong Yidong <cyd@stupidchicken.com>
15741
15742 * startup.el (command-line): Update package subdirectory regexp.
15743
49c5410a
SM
157442011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15745
c6eee9aa
SM
15746 * allout.el (allout-abbreviate-flattened-numbering)
15747 (allout-mode-deactivate-hook): Fix up obsolescence "date".
15748
49c5410a
SM
15749 * subr.el (read-char-choice): Only show the cursor after the prompt,
15750 not after the answer.
15751
047b2bb9
KR
157522011-03-15 Kevin Ryde <user42@zip.com.au>
15753
15754 * help-fns.el (variable-at-point): Skip leading quotes, if any
15755 (bug#8253).
15756
0a57d256
SM
157572011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15758
15759 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15760 warning message.
15761
77c992bc
MA
157622011-03-14 Michael Albinus <michael.albinus@gmx.de>
15763
15764 * shell.el (shell): When called interactively, offer to change the
15765 shell file name on remote hosts.
15766
eebc475d
TZ
157672011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
15768
15769 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15770 integration for LDAP parameters. The host, base, user or binddn,
15771 and secret tokens can be specified in a netrc file, for instance.
15772 This is optional because an `auth-source' parameter must be
15773 specified in the search attributes.
15774
9d05d1ba
JB
157752011-03-13 Juanma Barranquero <lekktu@gmail.com>
15776
15777 * help.el (describe-mode): Link to the mode's definition (bug#8185).
15778
09d9db2c
GM
157792011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15780
15781 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
15782 into declaration. Remove redundant and harmful binding.
15783
157842011-03-12 Eli Zaretskii <eliz@gnu.org>
15785
15786 * files.el (file-ownership-preserved-p): Pass `integer' as an
15787 explicit 2nd argument to `file-attributes'. If the file's owner
15788 is the Administrators group on Windows, and the current user is
15789 Administrator, consider that a match.
15790
15791 * server.el (server-ensure-safe-dir): Consider server directory
15792 safe on MS-Windows if its owner is the Administrators group while
15793 the current Emacs user is Administrator. Use `=' to compare
15794 numerical UIDs, since they could be integers or floats.
15795
219bd536
JB
157962011-03-12 Juanma Barranquero <lekktu@gmail.com>
15797
15798 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15799
f3afd36b
MA
158002011-03-12 Michael Albinus <michael.albinus@gmx.de>
15801
15802 Sync with Tramp 2.2.1.
15803
15804 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15805
15806 * net/trampver.el: Update release number.
15807
3aaaa6f1
SM
158082011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15809
94642599
SM
15810 * progmodes/compile.el (compilation--previous-directory): Fix up
15811 various nil/dead-marker mismatches (bug#8014).
15812 (compilation-directory-properties, compilation-error-properties):
15813 Don't call it at a position past the one we're about to change.
15814
3aaaa6f1
SM
15815 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15816 Disable obsolescence warnings in the file that declares it.
15817
14239447
KM
158182011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
15819
099c39a4
JB
15820 * allout-widgets.el (allout-widgets-tally):
15821 Initialize allout-widgets-tally as a hash table rather than nil to
15822 prevent mode-line redisplay warnings. Also, clarify the module
15823 description and fix a comment typo.
14239447 15824
135e287c
JB
158252011-03-11 Juanma Barranquero <lekktu@gmail.com>
15826
15827 * help-fns.el (describe-variable): Don't complete keywords.
15828 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15829
ffbf300e
CY
158302011-03-10 Chong Yidong <cyd@stupidchicken.com>
15831
ba08b241
CY
15832 * emacs-lisp/package.el (package-version-join): Impose a standard
15833 string representation for pre/alpha/beta version lists.
15834 (package-unpack-single): Standardize the directory name by passing
15835 it through package-version-join.
15836 (package-strip-rcs-id): Accept any version string that does not
15837 signal an error in version-to-list.
ffbf300e 15838
f346fd6b
MA
158392011-03-10 Michael Albinus <michael.albinus@gmx.de>
15840
15841 * simple.el (delete-trailing-whitespace): Return nil for the
15842 benefit of `write-file-functions'.
15843
ccb55d27
GM
158442011-03-10 Glenn Morris <rgm@gnu.org>
15845
5ceaac0c
GM
15846 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15847
02da65ff
GM
15848 * vc/vc-git.el (vc-git-program): New option.
15849 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15850 (vc-git--call): Use it.
15851
b2f603cc
GM
15852 * eshell/esh-util.el (eshell-condition-case): Doc fix.
15853
5772caab
GM
15854 * cus-edit.el (Custom-newline): If no button at point, look
15855 for a subgroup button at start-of-line. (Bug#2298)
15856
ccb55d27
GM
15857 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15858
ec6ecaed
JD
158592011-03-10 Julien Danjou <julien@danjou.info>
15860
15861 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15862 `cursor-type' is nil.
15863
9d5aa01d
JB
158642011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
15865
15866 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15867
b6a5875b
KM
158682011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
15869
7a71b18d 15870 * allout.el: Change so yank of distinctive-bullet items
b6a5875b
KM
15871 preserves the existing header prefix, rebulleting it if necessary,
15872 rather than replacing it. This is necessary for proper operation
15873 of cooperative addons like allout-widgets.
1154d12e
JB
15874 (allout-make-topic-prefix, allout-rebullet-heading):
15875 Change SOLICIT arg to INSTEAD, and interpret additionally a string
15876 value as alternate bullet to be used, instead of prompting the user
15877 for a bullet character.
b6a5875b 15878
ee545c35
MA
158792011-03-09 Michael Albinus <michael.albinus@gmx.de>
15880
d86d2721
SM
15881 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15882 Do not use `tramp-file-name-port', because this returns also
ee545c35
MA
15883 `tramp-default-port'.
15884
c47971d7
DD
158852011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
15886
15887 * net/rcirc.el (rcirc-handler-001): Remove useless
15888 with-rcirc-process-buffer.
15889 (rcirc-check-auth-status): Swap arguments to string-match.
15890
13522cb4
GM
158912011-03-09 Glenn Morris <rgm@gnu.org>
15892
0be6f4f1
GM
15893 * shell.el (shell-mode):
15894 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
15895
13522cb4
GM
15896 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15897 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
15898
515de2e3
CY
158992011-03-08 Chong Yidong <cyd@stupidchicken.com>
15900
15901 * emacs-lisp/package.el (package-refresh-contents)
15902 (package-menu-execute): Use condition-case-no-debug.
15903
b511b994
MA
159042011-03-08 Michael Albinus <michael.albinus@gmx.de>
15905
15906 * simple.el (shell-command-to-string): Use `process-file'.
15907
15908 * emacs-lisp/package.el (package-tar-file-info): Handle also
15909 remote files.
15910
d86d2721
SM
15911 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15912 Use `equal' for upload base check.
b511b994 15913
25bbfb31
AM
159142011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
15915
15916 * textmodes/texinfo.el (texinfo-environments):
15917 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
15918
be996521
GM
159192011-03-08 Glenn Morris <rgm@gnu.org>
15920
e9c8529f
GM
15921 * cus-start.el (cursor-in-non-selected-windows):
15922 Fix :set quoting oddness. (Bug#8192)
15923
be996521
GM
15924 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15925 in some setf expressions. (Bug#2159)
15926
2bb5649e
CY
159272011-03-08 Chong Yidong <cyd@stupidchicken.com>
15928
15929 * custom.el (custom-available-themes): Return themes in
15930 alphabetical order.
15931
33383987 15932See ChangeLog.15 for earlier changes.
e3d51b27
MR
15933
15934;; Local Variables:
15935;; coding: utf-8
e3d51b27
MR
15936;; End:
15937
acaf905b 15938 Copyright (C) 2011-2012 Free Software Foundation, Inc.
e3d51b27
MR
15939
15940 This file is part of GNU Emacs.
15941
15942 GNU Emacs is free software: you can redistribute it and/or modify
15943 it under the terms of the GNU General Public License as published by
15944 the Free Software Foundation, either version 3 of the License, or
15945 (at your option) any later version.
15946
15947 GNU Emacs is distributed in the hope that it will be useful,
15948 but WITHOUT ANY WARRANTY; without even the implied warranty of
15949 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15950 GNU General Public License for more details.
15951
15952 You should have received a copy of the GNU General Public License
15953 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.