Remove outdated and unnecessary dbus- declarations.
[bpt/emacs.git] / lisp / ChangeLog
1 2012-06-30 Glenn Morris <rgm@gnu.org>
2
3 * net/secrets.el, net/tramp-gvfs.el, net/xesam.el, net/zeroconf.el:
4 Remove outdated and unnecessary dbus declarations.
5
6 2012-06-30 Eli Zaretskii <eliz@gnu.org>
7
8 * emacs-lisp/timer.el (timer-until): Subtract results of
9 float-time, instead of taking float-time of the result of
10 time-subtract, since float-time signals an error for negative time
11 arguments.
12
13 2012-06-30 Chong Yidong <cyd@gnu.org>
14
15 * xml.el (xml-*-re): Convert defvars into defconsts, and
16 eval-and-compile them so eval-and-compile works on derivatives.
17 (xml--entity-replacement-text): Use eval-and-comple.
18
19 2012-06-30 Michael Albinus <michael.albinus@gmx.de>
20
21 * vc/vc-git.el (vc-git-registered): Use cache property
22 `git-registered'.
23 (vc-git-mode-line-string): Call `vc-working-revision' instead of
24 `vc-git-working-revision' in order to benefit from the cache.
25 (vc-git-root): Use cache property `git-root'.
26
27 2012-06-30 Dmitry Gutov <dgutov@yandex.ru>
28
29 * vc/vc-hooks.el (vc-before-save): Clear cache if file has been
30 removed (likely outside Emacs).
31
32 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
33
34 * emacs-lisp/cl-lib.el: Require macroexp for its macros.
35
36 2012-06-30 Chong Yidong <cyd@gnu.org>
37
38 * xml.el: Implement XML parameter entities.
39 (xml-parameter-entity-alist): New variable.
40 (xml-parse-region, xml-parse-fragment): Preserve previous values
41 of xml-entity-alist and xml-parameter-entity-alist, so that
42 repeated calls on different documents do not change them.
43 (xml-parse-tag): Fix doctype regexp.
44 (xml--entity-replacement-text): New function.
45 (xml-parse-dtd): Use it. Don't handle system entities; doing that
46 properly requires url retrieval which is unimplemented.
47 (xml-escape-string): Doc fix.
48
49 2012-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
50
51 * emacs-lisp/cl-lib.el (cl-pushnew): Use macroexp-let2.
52
53 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
54
55 * fringe.el (fringe-mode): Doc fix.
56
57 2012-06-29 Michael Albinus <michael.albinus@gmx.de>
58
59 * net/ange-ftp.el (ange-ftp-get-passwd): Throw if `non-essential'
60 is non-nil.
61 (ange-ftp-ignore-errors-if-non-essential): New defmacro.
62 (ange-ftp-file-name-all-completions): Use it. (Bug#11808)
63
64 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
65
66 * calendar/cal-dst.el (calendar-current-time-zone):
67 Return calendar-current-time-zone-cache if non-nil.
68
69 2012-06-29 Masatake YAMATO <yamato@redhat.com>
70
71 * progmodes/which-func.el (which-func-format):
72 Add mouse-face. (Bug#11698)
73
74 2012-06-29 Leo Liu <sdl.web@gmail.com>
75
76 * textmodes/enriched.el (enriched-next-annotation): Use eq (Bug#11528).
77
78 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
79
80 * minibuffer.el (minibuffer-confirm-exit-commands):
81 Add completion-at-point (bug#11725).
82
83 2012-06-29 Glenn Morris <rgm@gnu.org>
84
85 * progmodes/f90.el (f90-font-lock-keywords-2):
86 Add some preprocessor elements. (Bug#10499)
87
88 2012-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
89
90 * progmodes/cperl-mode.el (cperl-update-syntaxification):
91 Use syntax-propertize (bug#11739).
92
93 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
94
95 * emacs-lisp/cl-lib.el (cl-pushnew): Don't capture X (bug#11811).
96
97 2012-06-28 Julien Danjou <julien@danjou.info>
98
99 * term.el (term-handle-colors-array): Use a set of new faces to
100 color the terminal. Also uses :inverse-video property.
101 (term-default-fg-color): Set to nil by default, deprecate in favor
102 of `term-face'.
103 (term-default-bg-color): Set to nil by default, deprecate in favor
104 of `term-face'.
105 (term-current-face): Use `term-face' by default.
106 (term-bold-attribute): Variable deleted.
107
108 2012-06-28 Glenn Morris <rgm@gnu.org>
109
110 * simple.el (completion-list-mode-finish):
111 Don't use toggle-read-only. (Since completion-list-mode has
112 a special mode-class, it wasn't doing anything extra anyway.)
113
114 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
115
116 Make inlining of other-mode interpreted functions work (bug#11799).
117 * emacs-lisp/bytecomp.el (byte-compile--refiy-function): New fun.
118 (byte-compile): Use it to fix compilation of lexical-binding closures.
119 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Compile the
120 function, if needed.
121
122 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
123
124 * help-mode.el (help-make-xrefs): Don't just withstand
125 cyclic-variable-indirection but any error in documentation-property.
126
127 * loadup.el (purify-flag): Pre-grow the hash-table to reduce the
128 memory use.
129 * bindings.el (bindings--define-key): New function.
130 * vc/vc-hooks.el, replace.el, menu-bar.el, international/mule-cmds.el:
131 * emacs-lisp/lisp-mode.el, buff-menu.el, bookmark.el:
132 * bindings.el: Use it to purecopy define-key bindings.
133
134 * textmodes/rst.el (rst-adornment-faces-alist): Avoid copy-list.
135
136 * emacs-lisp/cl.el (flet): Mark obsolete.
137 * emacs-lisp/cl-macs.el (cl-flet*): New macro.
138 * vc/vc-rcs.el (vc-rcs-annotate-command, vc-rcs-parse):
139 * progmodes/js.el (js-c-fill-paragraph):
140 * progmodes/ebrowse.el (ebrowse-switch-member-buffer-to-sibling-class)
141 (ebrowse-switch-member-buffer-to-derived-class):
142 * play/5x5.el (5x5-solver): Use cl-flet.
143
144 * emacs-lisp/cl.el: Use lexical-binding. Fix flet (bug#11780).
145 (cl--symbol-function): New macro.
146 (cl--letf, cl--letf*): Use it.
147
148 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name):
149 Strip "toggle-" if any.
150
151 2012-06-27 Glenn Morris <rgm@gnu.org>
152
153 * info.el (Info-default-directory-list): Move here from paths.el.
154 * paths.el: Remove file, which is now empty.
155 * loadup.el: No longer load "paths".
156
157 * custom.el (custom-initialize-delay): Doc fix.
158
159 * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
160 * eshell/em-cmpl.el, eshell/em-dirs.el, eshell/em-glob.el:
161 * eshell/em-hist.el, eshell/em-ls.el, eshell/em-pred.el:
162 * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-script.el:
163 * eshell/em-smart.el, eshell/em-term.el, eshell/em-unix.el:
164 * eshell/em-xtra.el: Replace eshell-defgroup with "(progn (defgroup".
165 * eshell/eshell.el (eshell-defgroup): Remove alias.
166
167 2012-06-27 Chong Yidong <cyd@gnu.org>
168
169 * help.el (help-enable-auto-load): New variable.
170
171 * help-fns.el (help-fns--autoloaded-p): New function.
172 (describe-function-1): Refer to a function as "autoloaded" if it
173 was autoloaded at any time in the past. Perform autoloading if
174 help-enable-auto-load is non-nil.
175
176 2012-06-26 Eli Zaretskii <eliz@gnu.org>
177
178 * makefile.w32-in (compile, compile-always): Depend on
179 update-subdirs, not on subdirs.el. Otherwise, several different
180 sub-targets of 'bootstrap' running in parallel could
181 simultaneously write to subdirs.el, producing a garbled file.
182
183 2012-06-26 Sam Steingold <sds@gnu.org>
184
185 * files.el (file-name-base): New convenience function.
186 * autoinsert.el, cus-dep.el, doc-view.el, image-dired.el:
187 * woman.el, eshell/esh-cmd.el, progmodes/ada-xref.el:
188 * progmodes/cc-defs.el, progmodes/cperl-mode.el:
189 * progmodes/flymake.el, progmodes/gud.el, progmodes/idlwave.el:
190 * textmodes/ispell.el, textmodes/reftex-ref.el:
191 * textmodes/tex-mode.el: Use it.
192 Did not touch cedet and org because they are maintained elsewhere.
193
194 2012-06-26 Martin Rudalics <rudalics@gmx.at>
195
196 * calendar/calendar.el (calendar-exit): Don't try to delete or
197 iconify last frame. See:
198 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00372.html
199
200 2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
201
202 * server.el (server-process-filter): Remember dir in the
203 process's `server-client-directory' properties.
204
205 2012-06-24 Chong Yidong <cyd@gnu.org>
206
207 * xml.el (xml-parse-tag): Correctly handle comment embedded in
208 non-tag text.
209
210 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
211
212 * makefile.w32-in (COMPILE_FIRST): Synch with changes in 2012-06-22T21:24:54Z!monnier@iro.umontreal.ca.
213
214 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
215
216 * help-fns.el (describe-variable): Don't croak when doc is not found.
217 * vc/pcvs.el (cvs-retrieve-revision): Avoid toggle-read-only.
218 * menu-bar.el (menu-bar-line-wrapping-menu): Purecopy a tiny bit more.
219 * emacs-lisp/syntax.el (syntax-ppss): Simplify with new `if' place.
220 * emacs-lisp/smie.el (smie-next-sexp): CSE.
221 * emacs-lisp/macroexp.el (macroexp-let2): Fix edebug spec and avoid
222 ((lambda ..) ..).
223 * emacs-lisp/eieio.el (eieio-oref, slot-value): Use simpler defsetf.
224
225 2012-06-23 Chong Yidong <cyd@gnu.org>
226
227 * info.el (Info-mouse-follow-link): Accept symbol values of
228 link-args. Select window; suggested by Gerhard Kahl (Bug#11672).
229 (Info-fontify-node): Use Info-link-keymap for all navigation
230 buttons, with link-args property to perform the desired action.
231 (Info-link-keymap): Doc fix.
232 (Info-next-link-keymap, Info-prev-link-keymap)
233 (Info-up-link-keymap): Delete now-unused keymaps.
234
235 2012-06-23 Chong Yidong <cyd@gnu.org>
236
237 * mouse.el (mouse-drag-track): Deactivate the mark before popping.
238
239 * progmodes/python.el (python-skeleton-define): Mark abbrevs as
240 system abbrevs.
241
242 * ansi-color.el (ansi-color-apply-on-region): Doc fix.
243
244 2012-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
245
246 * emacs-lisp/cl-macs.el (cl--make-usage-args): Handle improper lists
247 (bug#11719).
248
249 * minibuffer.el (completion--twq-try): Try to fail more gracefully when
250 the requote function doesn't work properly (bug#11714).
251
252 2012-06-23 Glenn Morris <rgm@gnu.org>
253
254 * pcmpl-rpm.el (pcmpl-rpm-packages): Give status messages.
255
256 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
257
258 Further GV/CL cleanups.
259 * emacs-lisp/gv.el (gv-get): Autoload functions to find their
260 gv-expander.
261 (gv--defun-declaration): New function.
262 (defun-declarations-alist): Use it.
263 (gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
264 (gv-place): Autoload.
265 * emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
266 original definition of dotimes and dolist.
267 * emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
268 (cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
269 * emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
270 (cl-fifth, cl-sixth, cl-seventh, cl-eighth)
271 (cl-ninth, cl-tenth): Move gv handler to the function's definition.
272 * emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
273 to the function's definition.
274 * Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
275 * window.el:
276 * files.el:
277 * faces.el:
278 * env.el: Don't use CL.
279
280 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
281
282 Support higher-resolution time stamps (Bug#9000).
283
284 * calendar/time-date.el (with-decoded-time-value): New arg
285 PICO-SYMBOL in VARLIST. It's optional, for backward compatibility.
286 (encode-time-value): New optional arg PICO. New type 3.
287 (time-to-seconds) [!float-time]: Support the new picoseconds
288 component if it's used.
289 (seconds-to-time, time-subtract, time-add):
290 Support ps-resolution time stamps as well.
291
292 * emacs-lisp/timer.el (timer): New component psecs. All uses changed.
293 (timerp): Timer vectors now have length 9, not 8.
294 (timer--time): Support new-style (4-part) time stamps.
295 (timer-next-integral-multiple-of-time): Time stamps now have
296 picosecond resolution, so take a bit more care about rounding.
297 (timer-relative-time, timer-inc-time): New optional arg psecs.
298 (timer-set-time-with-usecs): Set psecs to 0.
299 (timer--activate): Check psecs component, too.
300
301 * proced.el (proced-time-lessp): Support ps-resolution stamps.
302
303 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
304
305 * icomplete.el (icomplete-minibuffer-setup, icomplete-completions):
306 Move the non-essential binding to the post/pre-command-hook where it is
307 more obviously correct.
308
309 * subr.el (read-passwd): Don't use a history at all.
310 * savehist.el (savehist-save): Remove password saved accidentally
311 because of the above bug.
312
313 2012-06-22 Bastien Guerry <bzg@gnu.org>
314
315 * files.el (toggle-read-only): Display a message telling whether
316 the buffer is read-only or not (bug#11726).
317
318 2012-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
319
320 * emacs-lisp/gv.el: New file.
321 * subr.el (push, pop): Extend to generalized variables.
322 * loadup.el (macroexp): Unload if preloaded and uncompiled (bug#11657).
323 * emacs-lisp/cl-lib.el (cl-pop, cl-push, cl--set-nthcdr): Remove.
324 * emacs-lisp/cl-macs.el: Require gv. Use gv-define-setter,
325 gv-define-simple-setter, and gv-define-expander.
326 Remove setf-methods defined in gv. Rename cl-setf -> setf.
327 (cl-setf, cl-do-pop, cl-get-setf-method): Remove.
328 (cl-letf, cl-letf*, cl-define-modify-macro, cl-defsetf)
329 (cl-define-setf-expander, cl-struct-setf-expander): Move to cl.el.
330 (cl-remf, cl-shiftf, cl-rotatef, cl-callf, cl-callf2): Rewrite with
331 gv-letplace.
332 (cl-defstruct): Don't define setf-method any more.
333 * emacs-lisp/cl.el (flet): Don't autoload.
334 (cl--letf, letf, cl--letf*, letf*, cl--gv-adapt)
335 (define-setf-expander, defsetf, define-modify-macro)
336 (cl-struct-setf-expander): Move from cl-lib.el.
337 * emacs-lisp/syntax.el:
338 * emacs-lisp/ewoc.el:
339 * emacs-lisp/smie.el:
340 * emacs-lisp/cconv.el:
341 * emacs-lisp/timer.el: Rename cl-setf -> setf, cl-push -> push.
342 (timer--time): Use gv-define-simple-setter.
343 * emacs-lisp/macroexp.el (macroexp-let2): Rename from macroexp-let²
344 to avoid coding-system problems in subr.el. Adjust all users.
345 (macroexp--maxsize, macroexp-small-p): New functions.
346 * emacs-lisp/bytecomp.el (byte-compile-file): Don't use cl-letf.
347 * scroll-bar.el (scroll-bar-mode):
348 * simple.el (auto-fill-mode, overwrite-mode, binary-overwrite-mode)
349 (normal-erase-is-backspace-mode): Don't use the `eq' place.
350 * winner.el (winner-configuration, winner-make-point-alist)
351 (winner-set-conf, winner-get-point, winner-set): Don't abuse letf.
352 * files.el (locate-file-completion-table): Avoid list*.
353
354 2012-06-22 Chong Yidong <cyd@gnu.org>
355
356 * dired-aux.el (dired-do-create-files): Doc fix (Bug#11327).
357 (dired-create-files): Doc fix (Bug#11329).
358 (dired-do-copy): Doc fix (Bug#11334).
359 (dired-mark-read-string): Doc fix (Bug#11553).
360
361 * dired.el (dired-recursive-copies, dired-recursive-deletes):
362 Doc fix (Bug#11326).
363 (dired-make-relative): Doc fix (Bug#11332). Remove unused arg.
364 (dired-dwim-target): Doc fix.
365
366 * wdired.el (wdired-mode): Doc fix.
367
368 2012-06-22 Glenn Morris <rgm@gnu.org>
369
370 * pcmpl-rpm.el (pcmpl-rpm-cache): New option.
371 (pcmpl-rpm-cache-stamp-file): New constant.
372 (pcmpl-rpm-cache-time, pcmpl-rpm-packages): New variables.
373 (pcmpl-rpm-packages): Optionally cache list of packages.
374
375 * pcmpl-rpm.el (pcmpl-rpm): New group.
376 (pcmpl-rpm-query-options): New option.
377 (pcmpl-rpm-packages): No need to inline it.
378 Use pcmpl-rpm-query-options.
379
380 * calendar/calendar.el (calendar-in-read-only-buffer):
381 Avoid some needless mode changes.
382
383 2012-06-21 Chong Yidong <cyd@gnu.org>
384
385 * desktop.el (desktop-read): Don't prompt if daemon (Bug#11674).
386 (desktop-path): Remove . from the default value (Bug#10977).
387 (desktop-read): Use user-emacs-directory if desktop-path is nil.
388
389 2012-06-20 Chong Yidong <cyd@gnu.org>
390
391 * term.el (term-send-raw-meta): Make C-M-<char> keys work (Bug#8172).
392
393 2012-06-20 David Röthlisberger <david@rothlis.net> (tiny change)
394
395 * ido.el (ido-switch-buffer, ido-find-file): Fix up doc of C-j
396 (bug#11201).
397
398 2012-06-20 Chong Yidong <cyd@gnu.org>
399
400 * term.el (term-window-width): Handle the case of a missing right
401 fringe (Bug#8837).
402 (term-check-size): Use window-text-height (Bug#5445).
403 (term-mode): Use define-derived-mode. Minor cleanups.
404 Set font-lock-defaults (Bug#7692).
405 (term-move-columns, term-insert-char, term-emulate-terminal)
406 (term-erase-in-line, term-insert-spaces): Use font-lock-face.
407
408 2012-06-20 Michael Albinus <michael.albinus@gmx.de>
409
410 * net/ange-ftp.el (ange-ftp-get-passwd):
411 Bind `enable-recursive-minibuffers'.
412 (ange-ftp-get-process): Throw if `non-essential' is non-nil.
413
414 2012-06-19 David Röthlisberger <david@rothlis.net> (tiny change)
415
416 * ido.el (ido-find-file): Mention C-d binding in docstring (bug#11244).
417
418 2012-06-19 Glenn Morris <rgm@gnu.org>
419
420 * progmodes/python.el (python-mode): Derive from prog-mode.
421
422 2012-06-19 Kevin Gallagher <Kevin.Gallagher@boeing.com>
423
424 * emulation/edt.el (edt-default-menu-bar-update-buffers)
425 (edt-user-menu-bar-update-buffers): New functions.
426 (edt-default-emulation-setup, edt-user-emulation-setup): Use them.
427
428 2012-06-19 Chong Yidong <cyd@gnu.org>
429
430 * subr.el (with-selected-window): Preserve the selected window's
431 terminal's top-frame (Bug#4702).
432
433 * window.el (save-selected-window): Likewise.
434
435 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
436
437 * progmodes/python.el (python-rx-constituents): Move backquote.
438 (python-skeleton-define, python-define-auxiliary-skeleton):
439 Use `declare'.
440
441 2012-06-18 Michael Albinus <michael.albinus@gmx.de>
442
443 * minibuffer.el (read-file-name-default): Revert the patch from
444 2012-06-17.
445
446 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
447
448 * emacs-lisp/pcase.el (pcase--expand): Warn for unused pattern.
449 (pcase--u1, pcase--q1): Don't use apply-partially.
450
451 2012-06-18 Glenn Morris <rgm@gnu.org>
452
453 * progmodes/python.el (python-proc, python-buffer)
454 (python-send-receive, python-send-string): Fix obsolete versions.
455
456 2012-06-18 Martin Rudalics <rudalics@gmx.at>
457
458 * window.el (special-display-p): Completely remove stringp
459 check. Suggested by Andreas Schwab <schwab@linux-m68k.org>.
460
461 2012-06-17 Michael Albinus <michael.albinus@gmx.de>
462
463 * minibuffer.el (read-file-name-default): Bind `non-essential' to `t'.
464
465 * net/tramp.el (tramp-file-name-handler): Catch 'non-essential.
466
467 * net/ange-ftp.el (ange-ftp-gwp-start, ange-ftp-start-process):
468 * net/tramp-sh.el (tramp-maybe-open-connection):
469 Throw if `non-essential' is non-nil.
470
471 2012-06-17 Martin Rudalics <rudalics@gmx.at>
472
473 * window.el (special-display-p): Signal an error if BUFFER-NAME
474 is not a string (Bug#11713).
475
476 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
477
478 * progmodes/python.el (python-info-beginning-of-backslash):
479 Rename from python-info-beginning-of-backlash, as a spelling fix.
480
481 2012-06-17 Chong Yidong <cyd@gnu.org>
482
483 * term.el (term-emulate-terminal): If term-check-size is called,
484 move point to the process mark without resetting point (Bug#4635).
485
486 2012-06-17 Glenn Morris <rgm@gnu.org>
487
488 * international/mule-cmds.el (mule-menu-keymap)
489 (set-language-environment, set-locale-environment): Doc tweaks.
490
491 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
492
493 * cus-face.el (custom-face-attributes): Add wave-style underline
494 attribute.
495 * faces.el (set-face-attribute): Update docstring to describe
496 wave-style underline attribute.
497
498 2012-06-16 Chong Yidong <cyd@gnu.org>
499
500 * term/xterm.el (terminal-init-xterm): Discard input before
501 querying background mode (Bug#10959).
502
503 2012-06-16 Stefan Merten <smerten@oekonux.de>
504
505 * textmodes/rst.el: Added and corrected some comments.
506 (rst-re-alist-def): Improve symbol syntax.
507 (rst-mode-syntax-table): Correct syntax entries.
508 (rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
509 (rst-official-version, rst-official-cvs-rev): Update version
510 information.
511
512 2012-06-15 Juanma Barranquero <lekktu@gmail.com>
513
514 * makefile.w32-in (COMPILE_FIRST): Synch with makefile.in changes
515 in 2008-06-22T13:57:28Z!monnier@iro.umontreal.ca.
516
517 2012-06-15 Fabián Ezequiel Gallina <fgallina@cuca>
518
519 * progmodes/python.el: New python.el merge.
520 (python-guess-indent): Obsolete var.
521 (python-indent-guess-indent-offset): New defcustom.
522 (python-indent): Obsolete var.
523 (python-indent-offset): New defcustom.
524 (python-python-command, python-jython-command): Delete var.
525 (python-shell-interpreter): New defcustom.
526 (python-pdbtrack-do-tracking-p): Delete var.
527 (python-pdbtrack-activate): New defcustom.
528 (python-use-skeletons): Obsolete var.
529 (python-skeleton-autoinsert): New defcustom.
530 (inferior-python-filter-regexp, python-continuation-offset)
531 (python-honour-comment-indentation, python-indent-string-contents)
532 (python-jython-packages, python-mode-hook)
533 (python-pdbtrack-minor-mode-string, python-remove-cwd-from-path)
534 (python-shell-prompt-alist)
535 (python-source-modes): Delete defcustoms.
536 (python-check-buffer-name, python-eldoc-setup-code)
537 (python-eldoc-string-code, python-ffap-setup-code)
538 (python-ffap-string-code, python-fill-comment-function)
539 (python-fill-decorator-function, python-fill-paren-function)
540 (python-fill-string-function, python-imenu-include-defun-type)
541 (python-imenu-make-tree, python-imenu-subtree-root-label)
542 (python-pdbtrack-stacktrace-info-regexp, python-shell-buffer-name)
543 (python-shell-compilation-regexp-alist)
544 (python-shell-completion-module-string-code)
545 (python-shell-completion-pdb-string-code)
546 (python-shell-completion-setup-code)
547 (python-shell-completion-string-code)
548 (python-shell-enable-font-lock, python-shell-exec-path)
549 (python-shell-extra-pythonpaths)
550 (python-shell-internal-buffer-name, python-shell-interpreter-args)
551 (python-shell-process-environment)
552 (python-shell-prompt-block-regexp)
553 (python-shell-prompt-output-regexp)
554 (python-shell-prompt-pdb-regexp, python-shell-prompt-regexp)
555 (python-shell-send-setup-max-wait, python-shell-setup-codes)
556 (python-shell-virtualenv-path): New defcustoms.
557 (brm-menu, eldoc-documentation-function, inferior-python-mode-map)
558 (inferior-python-mode-syntax-table, python--prompt-regexp)
559 (python-buffer, python-command python-python-command)
560 (python-default-template, python-imports, python-indent-index)
561 (python-indent-list, python-indent-list-length)
562 (python-mode-running, python-pdbtrack-is-tracking-p)
563 (python-preoutput-continuation, python-preoutput-leftover)
564 (python-preoutput-result, python-preoutput-skip-next-prompt)
565 (python-prev-dir/file, python-recursing)
566 (python-saved-check-command, python-version-checked)
567 (python-which-func-length-limit)
568 (view-return-to-alist): Delete vars.
569 (python-check-custom-command, python-dotty-syntax-table)
570 (python-imenu-index-alist, python-indent-current-level)
571 (python-indent-dedenters, python-indent-levels)
572 (python-nav-beginning-of-defun-regexp)
573 (python-nav-list-defun-positions-cache)
574 (python-pdbtrack-buffers-to-kill, python-pdbtrack-tracked-buffer)
575 (python-shell-internal-buffer)
576 (python-skeleton-available): New vars.
577 (def-python-skeleton): Delete macro.
578 (python-skeleton-define): New macro.
579 (python-define-auxiliary-skeleton, python-rx): New macros.
580 (python-insert-class): Delete command.
581 (python-skeleton-class): New command.
582 (python-insert-def): Delete command.
583 (python-skeleton-def): New command.
584 (python-insert-for): Delete command.
585 (python-skeleton-for): New command.
586 (python-insert-if): Delete command.
587 (python-skeleton-if): New command.
588 (python-insert-try/except, python-insert-try/finally): Delete commands.
589 (python-skeleton-try): New command.
590 (python-insert-while): Delete command.
591 (python-skeleton-while): New command.
592 (python-backspace): Delete command.
593 (python-indent-dedent-line-backspace): New command.
594 (python-electric-colon): Delete command.
595 (python-indent-electric-colon): New command.
596 (python-guess-indent): Delete command.
597 (python-indent-guess-indent-offset): New command.
598 (python-shift-left): Delete command.
599 (python-indent-shift-left): New command.
600 (python-shift-right): Delete command.
601 (python-indent-shift-right): New command.
602 (python-find-function): Delete command.
603 (python-nav-jump-to-defun): New command.
604 (python-next-statement): Delete command.
605 (python-nav-forward-sentence): New command.
606 (python-previous-statement): Delete command.
607 (python-nav-backward-sentence): New command.
608 (python-fill-paragraph): Delete command.
609 (python-fill-paragraph-function): New command.
610 (python-send-buffer): Delete command.
611 (python-shell-send-buffer): New command.
612 (python-send-defun): Delete command.
613 (python-shell-send-defun): New command.
614 (python-send-region, python-send-region-and-go): Delete commands.
615 (python-shell-send-region)
616 (python-shell-switch-to-shell): New commands.
617 (python-send-string): Delete command.
618 (python-shell-send-string): New command.
619 (python-switch-to-python): Delete command.
620 (python-shell-switch-to-shell): New command.
621 (python-describe-symbol): Delete command.
622 (python-eldoc-at-point): New command.
623 (python--set-prompt-regexp, python-args-to-list)
624 (python-after-info-look, python-check-version)
625 (python-check-comint-prompt, python-find-imports)
626 (python-execute-file, turn-off-pdbtrack, turn-on-pdbtrack)
627 (python-unload-function, python-expand-template)
628 (python-maybe-jython, python-preoutput-filter)
629 (python-pdbtrack-get-source-buffer)
630 (python-pdbtrack-grub-for-buffer, python-pdbtrack-overlay-arrow)
631 (python-pdbtrack-toggle-stack-tracking)
632 (python-pdbtrack-track-stack-file, python-initial-text)
633 (python-first-word, python-comment-line-p, python-send-command)
634 (python-setup-brm, python-sentinel, python-set-proc)
635 (python-skip-out, python-input-filter, python-outdent-p)
636 (python-outline-level, python-backslash-continuation-line-p)
637 (python-end-of-block, python-end-of-statement, python-mark-block)
638 (python-beginning-of-block, python-beginning-of-statement)
639 (python-blank-line-p, python-beginning-of-string)
640 (python-open-block-statement-p): Delete functions.
641 (python-indent-line, python-indent-line-1): Delete functions.
642 (python-indent-line): New function.
643 (python-indentation-levels): Delete function.
644 (python-indent-calculate-levels): New function.
645 (python-proc): Delete function.
646 (python-shell-get-process): New function.
647 (python-send-receive): Delete function.
648 (python-shell-send-string-no-output): New function.
649 (python-module-path): Delete function.
650 (python-ffap-module-path): New function.
651 (python-completion-at-point)
652 (python-symbol-completions): Delete functions.
653 (python-completion-complete-at-point): New function.
654 (python-load-file): Delete function.
655 (python-shell-send-file): New function.
656 (python-calculate-indentation): Delete function.
657 (python-indent-calculate-indentation): New function.
658 (python-skip-comments/blanks): Delete function.
659 (python-util-forward-comment): New function.
660 (python-continuation-line-p): Delete function.
661 (python-info-continuation-line-p): New function.
662 (python-which-func, python-current-defun): Delete function.
663 (python-info-current-defun): New function.
664 (python-beginning-of-defun): Delete function.
665 (python-nav-beginning-of-defun): New function.
666 (python-close-block-statement-p)
667 (python-block-end-p): Delete function.
668 (python-info-closing-block): New function.
669 (python-comint-output-filter-function)
670 (python-eldoc--get-doc-at-point, python-end-of-defun-function)
671 (python-fill-comment, python-fill-decorator, python-fill-paren)
672 (python-fill-string, python-imenu-make-element-tree)
673 (python-imenu-make-tree, python-imenu-tree-assoc)
674 (python-indent-context, python-indent-dedent-line)
675 (python-indent-line-function)
676 (python-indent-post-self-insert-function)
677 (python-indent-toggle-levels)
678 (python-info-assignment-continuation-line-p)
679 (python-info-beginning-of-backlash)
680 (python-info-block-continuation-line-p)
681 (python-info-closing-block-message)
682 (python-info-line-ends-backslash-p)
683 (python-info-looking-at-beginning-of-defun)
684 (python-info-ppss-context, python-info-ppss-context-type)
685 (python-nav-list-defun-positions, python-nav-read-defun)
686 (python-nav-sentence-end, python-nav-sentence-start)
687 (python-pdbtrack-comint-output-filter-function)
688 (python-pdbtrack-set-tracked-buffer)
689 (python-shell-calculate-exec-path)
690 (python-shell-calculate-process-environment)
691 (python-shell-completion--do-completion-at-point)
692 (python-shell-completion--get-completions)
693 (python-shell-completion-complete-at-point)
694 (python-shell-completion-complete-or-indent)
695 (python-shell-get-or-create-process)
696 (python-shell-get-process-name)
697 (python-shell-internal-get-or-create-process)
698 (python-shell-internal-get-process-name)
699 (python-shell-internal-send-string, python-shell-make-comint)
700 (python-shell-parse-command, python-shell-send-setup-code)
701 (python-skeleton-add-menu-items)
702 (python-util-clone-local-variables, python-util-position)
703 (run-python-internal, python-indentation-levels)
704 (python-nav-beginning-of-defun)
705 (python-completion-complete-at-point): New functions.
706 (run-python): Change arguments. New API requirements.
707
708 2012-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
709
710 * emacs-lisp/cl-lib.el (cl--defsubst-expand): Autoload inliner
711 (bug#11649).
712
713 * emacs-lisp/macroexp.el (macroexp--compiler-macro): New function.
714 (macroexp--expand-all): Use it.
715
716 * emacs-lisp/cl-macs.el (cl--transform-function-property): Remove.
717 (cl-define-setf-expander, cl-deftype, cl-define-compiler-macro):
718 Use `cl-function' instead.
719
720 2012-06-14 Juanma Barranquero <lekktu@gmail.com>
721
722 * makefile.w32-in (COMPILE_FIRST): Remove subr.el.
723 Suggested by Stefan Monnier while discussing bug#11657.
724
725 2012-06-14 Sam Steingold <sds@gnu.org>
726
727 * files.el (abort-if-file-too-large): Use `file-size-human-readable'.
728
729 2012-06-14 Andreas Schwab <schwab@linux-m68k.org>
730
731 * play/doctor.el (doctor-doc): Remove parameter and use
732 doctor-sent instead of sent.
733 (doctor-read-print): Use doctor-sent instead of sent. (Bug#11708)
734
735 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
736
737 * files.el: Require cl-lib.
738 (file-name-non-special): Replace case -> cl-case.
739
740 * emacs-lisp/cl-macs.el (cl-defstruct): Don't add print-func.
741
742 * emacs-lisp/edebug.el (edebug-read-function): Remove old incorrect
743 mapping from #' to function*.
744
745 2012-06-13 Chong Yidong <cyd@gnu.org>
746
747 * mouse.el (mouse-drag-track): Do not set the mark if the user
748 releases the mouse without selecting anything (Bug#11588).
749
750 2012-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
751
752 * textmodes/tex-mode.el (latex-indent): Recognize tex-verbatim at EOB
753 as well (bug#11646).
754
755 * loadup.el: Count byte-code functions as well.
756
757 * emacs-lisp/byte-opt.el (featurep): Move compiler-macro...
758 * emacs-lisp/bytecomp.el (featurep): ...here (bug#11692).
759
760 * emacs-lisp/autoload.el (make-autoload): Accept nil doc-string-elt
761 (bug#11649). Add cl-defun and cl-defmacro.
762
763 2012-06-13 Drew Adams <drew.adams@oracle.com>
764
765 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
766 Fix last change.
767
768 2012-06-13 Michael Albinus <michael.albinus@gmx.de>
769
770 * net/dbus.el (dbus-call-method): Use timeout for `read-event'.
771 Otherwise, it blocks in batch mode.
772
773 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
774
775 * help-mode.el (bookmark-make-record-default): Declare.
776
777 2012-06-13 Chong Yidong <cyd@gnu.org>
778
779 * emacs-lisp/package.el (list-packages): Compute a list of
780 packages that are newly-available since the last list-packages
781 invocation.
782 (package-menu--new-package-list): New var.
783 (package-menu--generate, package-menu--print-info)
784 (package-menu--status-predicate, package-menu-mark-install):
785 Handle new status label "new".
786
787 2012-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent
790 conversion to backquotes.
791
792 2012-06-12 Chong Yidong <cyd@gnu.org>
793
794 * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings):
795 Rename from gud-inhibit-global-bindings.
796
797 * emacs-lisp/eieio.el (eieio-pre-method-execution-hooks): Doc fix.
798
799 * nxml/nxml-glyph.el (nxml-glyph-set-functions): Rename abnormal
800 hook from nxml-glyph-set-hook.
801
802 * progmodes/cwarn.el (cwarn-mode): Remove redundant variable
803 declaration.
804
805 * progmodes/pascal.el (pascal-toggle-completions): Doc fix.
806
807 * textmodes/bibtex.el (bibtex-string-file-path, bibtex-file-path):
808 Convert to defcustom.
809
810 2012-06-12 Drew Adams <drew.adams@oracle.com>
811
812 * help-mode.el (help-bookmark-make-record, help-bookmark-jump):
813 New functions.
814 (help-mode): Use them.
815
816 2012-06-11 Glenn Morris <rgm@gnu.org>
817
818 * progmodes/fortran.el (fortran-font-lock-keywords-3):
819 Use preprocessor face for directives.
820 (fortran-directive-re): Doc fix.
821
822 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
823
824 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Fix error in recent
825 conversion to backquotes (bug#11652).
826
827 Fix compiler-expansion of CL's cXXr functions (bug#11673).
828 * emacs-lisp/cl-lib.el (cl--defalias): New function.
829 (cl-values, cl-values-list, cl-copy-seq, cl-svref, cl-first)
830 (cl-second, cl-rest, cl-endp, cl-third, cl-fourth): Use it.
831 (cl-plusp, cl-minusp, cl-fifth, cl-sixth, cl-seventh, cl-eighth)
832 (cl-ninth, cl-tenth): Mark them as inlinable.
833 (cl-caaar, cl-caadr, cl-cadar, cl-caddr, cl-cdaar, cl-cdadr)
834 (cl-cddar, cl-cdddr, cl-caaaar, cl-caaadr, cl-caadar, cl-caaddr)
835 (cl-cadaar, cl-cadadr, cl-caddar, cl-cadddr, cl-cdaaar, cl-cdaadr)
836 (cl-cdadar, cl-cdaddr, cl-cddaar, cl-cddadr, cl-cdddar, cl-cddddr):
837 Add a compiler-macro declaration to use cl--compiler-macro-cXXr.
838 (cl-list*, cl-adjoin): Don't put an autoload manually.
839 * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin)
840 (cl--compiler-macro-list*): Add autoload cookie.
841 (cl--compiler-macro-cXXr): New function.
842
843 * help-fns.el (help-fns--compiler-macro): New function extracted from
844 describe-function-1; follow aliases and use `compiler-macro' property.
845 (describe-function-1): Use it.
846
847 2012-06-11 Chong Yidong <cyd@gnu.org>
848
849 * startup.el (fancy-splash-head): Use splash.svg even if librsvg
850 is uninstalled, if imagemagick is installed.
851
852 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
853
854 * emacs-lisp/cl-lib.el: Use lexical-binding.
855 (cl-map-extents, cl-maclisp-member): Remove.
856 (cl--set-elt, cl--set-nthcdr, cl--set-buffer-substring)
857 (cl--set-substring, cl--block-wrapper, cl--block-throw)
858 (cl--compiling-file, cl--mapcar-many, cl--do-subst): Use "cl--" prefix.
859 * emacs-lisp/cl-extra.el: Use lexical-binding.
860 (cl--mapcar-many, cl--map-keymap-recursively, cl--map-intervals)
861 (cl--map-overlays, cl--set-frame-visible-p, cl--progv-save)
862 (cl--progv-before, cl--progv-after, cl--finite-do, cl--set-getf)
863 (cl--do-remf, cl--do-prettyprint): Use "cl--" prefix.
864 * emacs-lisp/cl-seq.el: Use lexical-binding.
865 (cl--parsing-keywords, cl--check-key, cl--check-test-nokey)
866 (cl--check-test, cl--check-match): Use "cl--" prefix and backquotes.
867 (cl--alist, cl--sublis-rec, cl--nsublis-rec, cl--tree-equal-rec):
868 * emacs-lisp/cl-macs.el (cl--lambda-list-keywords): Use "cl--" prefix.
869 * edmacro.el (edmacro-mismatch): Simplify to remove dependence on
870 CL's internals.
871
872 2012-06-11 Michael Albinus <michael.albinus@gmx.de>
873
874 Sync with Tramp 2.2.6-pre.
875
876 * net/tramp-cache.el (tramp-dump-connection-properties): Let-bind
877 `print-length' and `print-level' to nil, in order to avoid
878 truncation. Reported by Christopher Schmidt
879 <christopher@ristopher.com>.
880
881 * net/tramp-cmds.el (tramp-cleanup-connection): Delete also process.
882
883 * net/tramp-compat.el (tramp-compat-condition-case-unless-debug):
884 New defmacro.
885 (tramp-compat-copy-directory): Add optional argument
886 COPY-CONTENTS. It is not handled yet.
887
888 * net/tramp-ftp.el (tramp-disable-ange-ftp): Fix docstring.
889 (tramp-ftp-file-name-p): Simplify.
890
891 * net/tramp-gvfs.el (tramp-gvfs-handle-expand-file-name):
892 * net/tramp-gw.el (tramp-gw-open-connection): Add hop to
893 connection vector.
894
895 * net/tramp-sh.el (tramp-copy-size-limit): Fix docstring.
896 (tramp-methods): Do not use `tramp-password-end-of-line'.
897 (tramp-completion-function-alist-putty): Handle UNIX case.
898 (tramp-remote-path): Add "/opt/bin", "/opt/sbin" and "/opt/local/bin".
899 (tramp-do-file-attributes-with-stat)
900 (tramp-do-directory-files-and-attributes-with-stat) Return uid and
901 gid as real numbers. They could run out of integer range on cygwin.
902 (tramp-do-copy-or-rename-file-out-of-band): Better trace format.
903 (tramp-sh-handle-expand-file-name): Handle hops.
904 (tramp-open-connection-setup-interactive-shell):
905 Use `tramp-cleanup'. Move check for busyboxes ...
906 (tramp-find-shell): ... here. Simplify implementation.
907 Set "remote-shell" property also for alternative shells.
908 (tramp-remote-coding-commands): Check "test -c /dev/stdout".
909 If failing, a regular file would be written otherwise.
910 Reported by Dmitry Kurochkin <dmitry.kurochkin@gmail.com>.
911 (tramp-find-inline-encoding): Cache the coding commands in the
912 process cache. Apply test command on the remote side, if defined.
913 (tramp-find-inline-compress): Cache the compress commands in the
914 process cache.
915 (tramp-compute-multi-hops): Save `tramp-default-proxies-alist'
916 when requested. Handle hops.
917 (tramp-current-connection): New defvar.
918 (tramp-maybe-open-connection): Use `tramp-cleanup'.
919 Throw `suppress', if there was a failed connection shortly before.
920 Handle user interrupt. (Bug#10187)
921 (tramp-get-inline-compress, tramp-get-inline-coding):
922 Read connection properties from the process cache.
923
924 * net/tramp-smb.el (tramp-smb-server-version)
925 (tramp-smb-wrong-passwd-regexp, tramp-smb-actions-with-tar):
926 New defconsts.
927 (tramp-smb-prompt): Extend for powershell prompt.
928 (tramp-smb-file-name-handler-alist): Add handlers for
929 `process-file', `shell-command' and `start-file-process'.
930 (tramp-smb-winexe-program, tramp-smb-winexe-shell-command)
931 (tramp-smb-winexe-shell-command-switch): New defcustoms.
932 (tramp-smb-file-name-p): Simplify.
933 (tramp-smb-action-with-tar, tramp-smb-handle-process-file)
934 (tramp-smb-kill-winexe-function, tramp-smb-call-winexe)
935 (tramp-smb-shell-quote-argument): New defuns.
936 (tramp-smb-handle-copy-directory): Add COPY-CONTENTS argument.
937 Implement using "tar". By this, time-stamps are preserved.
938 (tramp-smb-handle-copy-file): Handle also the case of directories.
939 (tramp-smb-do-file-attributes-with-stat)
940 (tramp-smb-get-file-entries, tramp-smb-get-cifs-capabilities):
941 Use `tramp-get-connection-buffer').
942 (tramp-smb-handle-rename-file): Use "rename", when source and
943 target are on the same share.
944 (tramp-smb-maybe-open-connection): Handle wrong passwords.
945 Use `tramp-smb-server-version'.
946 (tramp-smb-wait-for-output): Remove prompt.
947
948 * net/tramp.el (top): Require 'cl.
949 (tramp-methods, tramp-rsh-end-of-line):
950 Remove `tramp-password-end-of-line' from docstring.
951 (tramp-save-ad-hoc-proxies): New defcustom.
952 (tramp-completion-function-alist): Adapt docstring.
953 (tramp-default-password-end-of-line): Remove defcustom.
954 (tramp-shell-prompt-pattern): Allow "[]" style prompts. (Bug#11065)
955 (tramp-user-regexp, tramp-file-name-regexp-unified)
956 (tramp-file-name-regexp-url): Extend regexp by hop separator.
957 (tramp-postfix-hop-format, tramp-postfix-hop-regexp)
958 (tramp-remote-file-name-spec-regexp): New defconst.
959 (tramp-file-name-structure): Extend structure for hops.
960 (tramp-get-method-parameter): Move up.
961 (tramp-file-name-p, tramp-dissect-file-name)
962 (with-parsed-tramp-file-name): Handle hops.
963 (tramp-file-name-hop): New defun.
964 (tramp-make-tramp-file-name): New optional arg HOP.
965 (tramp-message-show-progress-reporter-message): New defvar.
966 (tramp-with-progress-reporter): Use it. We cannot use
967 `tramp-message-show-message' here, because this suppresses also
968 error buffers.
969 (tramp-error-with-buffer): Suppress buffer view, if
970 `tramp-message-show-message' is nil.
971 Use `tramp-get-connection-buffer'.
972 (tramp-cleanup): New defun.
973 (tramp-rfn-eshadow-update-overlay): Let-bind `non-essential' to `t'.
974 (tramp-file-name-handler): If `debug-on-error' is set, propagate
975 an error unchanged.
976 (tramp-completion-handle-file-name-all-completions): Handle hops.
977 Fix an error when called from ido.
978 (tramp-completion-dissect-file-name): Use better local variable
979 name. Add hop to the vector.
980 (tramp-handle-insert-file-contents): Use progress-reporter for the
981 whole scenario.
982 (tramp-action-password): Let-bind `enable-recursive-minibuffers'
983 to `t'.
984 (tramp-check-for-regexp): Simplify search.
985 (tramp-enter-password): Remove it. Move implementation ...
986 (tramp-action-password): ... here.
987 (tramp-mode-string-to-int, tramp-local-host-p)
988 (tramp-make-tramp-temp-file, tramp-read-passwd)
989 (tramp-clear-passwd, tramp-time-less-p, tramp-time-diff):
990 Set tramp-autoload cookie.
991
992 * net/trampver.el: Update release number.
993
994 2012-06-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
995 Michael Albinus <michael.albinus@gmx.de>
996
997 * net/tramp.el (tramp-set-completion-function): Fix docstring.
998 (tramp-parse-group, tramp-parse-file)
999 (tramp-parse-shostkeys-sknownhosts): New defuns.
1000 (tramp-parse-rhosts, tramp-parse-rhosts-group, tramp-parse-shosts)
1001 (tramp-parse-shosts-group, tramp-parse-sconfig)
1002 (tramp-parse-sconfig-group, tramp-parse-shostkeys)
1003 (tramp-parse-sknownhosts, tramp-parse-hosts)
1004 (tramp-parse-hosts-group, tramp-parse-passwd, tramp-parse-netrc):
1005 Use them.
1006 (tramp-parse-passwd-group, tramp-parse-netrc-group)
1007 (tramp-parse-putty-group): Don't narrow.
1008 (tramp-parse-putty): Make a loop.
1009 (tramp-file-name-handler): Catch the `suppress' signal.
1010
1011 2012-06-11 Chong Yidong <cyd@gnu.org>
1012
1013 * image.el (imagemagick-register-types): Put the ImageMagick entry
1014 at the end of image-type-file-name-regexps.
1015
1016 2012-06-11 Johan Bockgård <bojohan@gnu.org>
1017
1018 * emacs-lisp/pcase.el (pcase-UPAT, pcase-QPAT): New edebug specs.
1019 (pcase, pcase-let*, pcase-dolist): Use them.
1020
1021 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1022
1023 * emacs-lisp/pcase.el (pcase--let*): New function.
1024 (pcase-let*): Use it. Use pcase--memoize to avoid repeated expansions.
1025 (pcase--expand): Use macroexp-let².
1026
1027 2012-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
1028
1029 * emacs-lisp/timer.el, emacs-lisp/syntax.el, emacs-lisp/smie.el:
1030 * emacs-lisp/ewoc.el, emacs-lisp/cconv.el, emacs-lisp/bytecomp.el:
1031 * emacs-lisp/byte-opt.el, emacs-lisp/autoload.el: Convert to cl-lib.
1032 * emacs-lisp/easymenu.el, emacs-lisp/easy-mmode.el:
1033 * emacs-lisp/derived.el: Use pcase instead of `cl'.
1034 * emacs-lisp/cl-lib.el: Get rid of special cl-macs auto load.
1035
1036 2012-06-10 Glenn Morris <rgm@gnu.org>
1037
1038 * mail/rmail.el (rmail-yank-current-message): Leave point at
1039 correct position. (Bug#11660)
1040
1041 2012-06-10 Chong Yidong <cyd@gnu.org>
1042
1043 * allout-widgets.el: Fix code header.
1044
1045 2012-06-10 Chong Yidong <cyd@gnu.org>
1046
1047 * cus-edit.el (customize-changed-options-previous-release):
1048 Bump to 24.1.
1049
1050 2012-06-09 Andreas Schwab <schwab@linux-m68k.org>
1051
1052 * Makefile.in (BIG_STACK_DEPTH): Enlarge to 2200.
1053
1054 2012-06-09 Chong Yidong <cyd@gnu.org>
1055
1056 * ebuff-menu.el (electric-buffer-list): Preserve header line.
1057
1058 2012-06-09 Martin Rudalics <rudalics@gmx.at>
1059
1060 * window.el (special-display-popup-frame): Don't use
1061 window--display-buffer (Bug#11651).
1062
1063 2012-06-09 Eli Zaretskii <eliz@gnu.org>
1064
1065 Fix parallel builds: make sure loaddefs.el is not being written
1066 while Lisp files are compiled.
1067 (compile): Don't depend on 'mh-autoloads'.
1068 (compile-CMD, compile-SH): Depend on 'autoloads'.
1069 (bootstrap): Don't depend on 'autoloads' and 'mh-autoloads'.
1070
1071 * makefile.w32-in (BIG_STACK_DEPTH): Enlarge to 2200. (Bug#11649)
1072
1073 2012-06-09 Chong Yidong <cyd@gnu.org>
1074
1075 * face-remap.el (face-remap-add-relative, face-remap-set-base)
1076 (buffer-face-set, buffer-face-toggle, buffer-face-mode-invoke):
1077 Doc fixes (Bug#11225).
1078
1079 2012-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
1080
1081 * emacs-lisp/macroexp.el (macroexp--expand-all): Only autoload
1082 a function if there's a clear indication that it has a compiler-macro.
1083 * emacs-lisp/byte-run.el (defun-declarations-alist, defmacro, defun)
1084 (macro-declarations-alist): Add arglist to declaration functions.
1085 (defun-declarations-alist): Add `obsolete' and `compiler-macro'.
1086 * emacs-lisp/cl-seq.el (cl-member, cl-assoc):
1087 * emacs-lisp/cl-lib.el (cl-list*, cl-adjoin):
1088 * emacs-lisp/cl-extra.el (cl-get): Use the new `declare' statement.
1089 Also add autoload to find the compiler macro.
1090 * emacs-lisp/cl-macs.el (eql) [compiler-macro]: Remove.
1091 (cl--compiler-macro-member, cl--compiler-macro-assoc)
1092 (cl--compiler-macro-adjoin, cl--compiler-macro-list*)
1093 (cl--compiler-macro-get): New functions, replacing calls to
1094 cl-define-compiler-macro.
1095 (cl-typep) [compiler-macro]: Use macroexp-let².
1096
1097 2012-06-08 Nick Dokos <nicholas.dokos@hp.com> (tiny change)
1098
1099 * calendar/icalendar.el (icalendar--parse-vtimezone): Import TZID
1100 string properly, fixes Bug#11473.
1101
1102 2012-06-08 Chong Yidong <cyd@gnu.org>
1103
1104 * faces.el (set-face-attribute): Doc fix.
1105 (modify-face): Don't use :bold and :italic.
1106 (error, warning, success): Tweak definitions.
1107
1108 * cus-edit.el (custom-modified, custom-invalid, custom-rogue)
1109 (custom-modified, custom-set, custom-changed, custom-themed)
1110 (custom-saved, custom-button, custom-button-mouse)
1111 (custom-button-pressed, custom-state, custom-comment-tag)
1112 (custom-variable-tag, custom-group-tag-1, custom-group-tag)
1113 (custom-group-subtitle): Use new-style face specs.
1114 (custom-invalid-face, custom-rogue-face, custom-modified-face)
1115 (custom-set-face, custom-changed-face, custom-saved-face)
1116 (custom-button-face, custom-button-pressed-face)
1117 (custom-documentation-face, custom-state-face)
1118 (custom-comment-face, custom-comment-tag-face)
1119 (custom-variable-tag-face, custom-variable-button-face)
1120 (custom-face-tag-face, custom-group-tag-face-1)
1121 (custom-group-tag-face): Remove obsolete face alias.
1122
1123 * epa.el (epa-validity-high, epa-validity-medium)
1124 (epa-validity-low, epa-mark, epa-field-name, epa-string)
1125 (epa-field-name, epa-field-body):
1126 * font-lock.el (font-lock-comment-face, font-lock-string-face)
1127 (font-lock-keyword-face, font-lock-builtin-face)
1128 (font-lock-function-name-face, font-lock-variable-name-face)
1129 (font-lock-type-face, font-lock-constant-face):
1130 * ido.el (ido-first-match, ido-only-match, ido-subdir)
1131 (ido-virtual, ido-indicator, ido-incomplete-regexp):
1132 * speedbar.el (speedbar-button-face, speedbar-file-face)
1133 (speedbar-directory-face, speedbar-tag-face)
1134 (speedbar-selected-face, speedbar-highlight-face)
1135 (speedbar-separator-face):
1136 * whitespace.el (whitespace-newline, whitespace-space)
1137 (whitespace-hspace, whitespace-tab, whitespace-trailing)
1138 (whitespace-line, whitespace-space-before-tab)
1139 (whitespace-space-after-tab, whitespace-indentation)
1140 (whitespace-empty):
1141 * emulation/cua-base.el (cua-global-mark):
1142 * eshell/em-prompt.el (eshell-prompt):
1143 * net/newst-plainview.el (newsticker-new-item-face)
1144 (newsticker-old-item-face, newsticker-immortal-item-face)
1145 (newsticker-obsolete-item-face, newsticker-date-face)
1146 (newsticker-statistics-face, newsticker-default-face):
1147 * net/newst-reader.el (newsticker-feed-face)
1148 (newsticker-extra-face, newsticker-enclosure-face):
1149 * net/newst-treeview.el (newsticker-treeview-face)
1150 (newsticker-treeview-new-face, newsticker-treeview-old-face)
1151 (newsticker-treeview-immortal-face)
1152 (newsticker-treeview-obsolete-face)
1153 (newsticker-treeview-selection-face):
1154 * net/rcirc.el (rcirc-my-nick, rcirc-other-nick)
1155 (rcirc-bright-nick, rcirc-server, rcirc-timestamp)
1156 (rcirc-nick-in-message, rcirc-nick-in-message-full-line)
1157 (rcirc-prompt, rcirc-track-keyword, rcirc-url, rcirc-keyword):
1158 * nxml/nxml-outln.el (nxml-heading, nxml-outline-indicator)
1159 (nxml-outline-active-indicator, nxml-outline-ellipsis):
1160 * play/mpuz.el (mpuz-unsolved, mpuz-solved, mpuz-trivial)
1161 (mpuz-text):
1162 * progmodes/vera-mode.el (vera-font-lock-number)
1163 (vera-font-lock-function, vera-font-lock-interface):
1164 * textmodes/table.el (table-cell): Use new-style face specs, and
1165 don't use the old :bold and :italic attributes.
1166
1167 * progmodes/ebrowse.el (ebrowse-tree-mark, ebrowse-root-class)
1168 (ebrowse-member-attribute, ebrowse-default, ebrowse-file-name)
1169 (ebrowse-member-class, ebrowse-progress): Likewise.
1170 (ebrowse-tree-mark-face, ebrowse-root-class-face)
1171 (ebrowse-file-name-face, ebrowse-default-face)
1172 (ebrowse-member-attribute-face, ebrowse-member-class-face)
1173 (ebrowse-progress-face): Remove obsolete faces.
1174
1175 * progmodes/flymake.el (flymake-errline, flymake-warnline):
1176 Inherit from error and warning faces respectively.
1177
1178 * textmodes/flyspell.el (flyspell-incorrect, flyspell-duplicate):
1179 Likewise.
1180 (flyspell-incorrect-face, flyspell-duplicate-face):
1181 Remove obsolete aliases.
1182
1183 2012-06-08 Michael Albinus <michael.albinus@gmx.de>
1184
1185 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1186 Avoid infloop.
1187
1188 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1189
1190 * startup.el (argv, argi): Make lexically scoped.
1191 * emacs-lisp/float-sup.el (pi): Use internal-make-var-non-special.
1192 * emacs-lisp/cl-macs.el: Use lexical-binding.
1193 Rename cl-bind-* to cl--bind-*.
1194 * files.el: Don't require `cl' since it doesn't use it.
1195 * emacs-lisp/pcase.el, emacs-lisp/macroexp.el: Add coding cookie.
1196
1197 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
1198
1199 * textmodes/texinfmt.el: Fix bug#11640 (reverts part of 2008-07-31T05:33:56Z!dann@ics.uci.edu).
1200 (texinfo-format-printindex): Use `texinfo-sort-region' in all platforms,
1201 instead of calling external sort utility.
1202 (texinfo-sort-region, texinfo-sort-startkeyfun): Restore functions.
1203
1204 2012-06-08 Eli Zaretskii <eliz@gnu.org>
1205
1206 * descr-text.el (describe-char): Mention how to insert the
1207 character, if the current input method doesn't support it.
1208 See the discussion in this thread for the details:
1209 http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00533.html.
1210
1211 2012-06-08 Sam Steingold <sds@gnu.org>
1212
1213 * bindings.el (global-map): Bind XF86Forward to next-buffer and
1214 XF86Back to previous-buffer.
1215 (minibuffer-local-map): Bind them to next-history-element and
1216 previous-history-element respectively.
1217 * help-mode.el (help-mode-map): Bind them to help-go-forward and
1218 help-go-back respectively.
1219 * info.el (Info-mode-map): Bind them to Info-history-forward and
1220 Info-history-back respectively.
1221 These are the keys next to Up on the ThinkPad keyboard.
1222
1223 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
1224
1225 Get rid of cl-lexical-let, keeping only lexical-let for compatibility.
1226 * emacs-lisp/cl-macs.el: Provide itself.
1227 (cl--labels-convert-cache): New var.
1228 (cl--labels-convert): New function.
1229 (cl-flet, cl-labels): New implementation with new semantics, relying on
1230 lexical-binding.
1231 * emacs-lisp/cl.el: Mark compatibility aliases as obsolete.
1232 (cl-closure-vars, cl--function-convert-cache)
1233 (cl--function-convert): Move from cl-macs.el.
1234 (lexical-let, lexical-let*, flet, labels): Move from cl-macs.el and
1235 rename by removing the "cl-" prefix.
1236 * emacs-lisp/macroexp.el (macroexp-unprogn): New function.
1237
1238 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1239
1240 * emacs-lisp/cl.el (cl-macroexpand, cl-macro-environment)
1241 (cl-macroexpand-all, cl-not-hash-table, cl-builtin-gethash)
1242 (cl-builtin-remhash, cl-builtin-clrhash, cl-builtin-maphash)
1243 (cl-map-keymap, cl-copy-tree, cl-gethash, cl-puthash, cl-remhash)
1244 (cl-clrhash, cl-maphash, cl-make-hash-table, cl-hash-table-p)
1245 (cl-hash-table-count): Add old compatibility aliases.
1246
1247 * emacs-lisp/cl-macs.el (cl-macro-environment): Remove var.
1248 Use macroexpand-all-environment instead.
1249 (cl--old-macroexpand): New var.
1250 (cl--sm-macroexpand): New function.
1251 (cl-symbol-macrolet): Use it during macro expansion.
1252 (cl--function-convert-cache): New var.
1253 (cl--function-convert): New function, extracted from
1254 cl-macroexpand-all.
1255 (cl-lexical-let): Use it.
1256
1257 * emacs-lisp/cl-lib.el (cl-macro-environment): Remove decl.
1258 (cl-macroexpand): Move to cl-macs.el and rename to cl--sm-macroexpand.
1259 (cl-member): Remove old alias.
1260
1261 * emacs-lisp/cl-extra.el (cl-map-keymap, cl-copy-tree)
1262 (cl-not-hash-table, cl-builtin-gethash, cl-builtin-remhash)
1263 (cl-builtin-clrhash, cl-builtin-maphash, cl-gethash, cl-puthash)
1264 (cl-remhash, cl-clrhash, cl-maphash, cl-make-hash-table)
1265 (cl-hash-table-p, cl-hash-table-count): Move to cl.el.
1266 (cl-macroexpand-cmacs): Remove var.
1267 (cl-macroexpand-all, cl-macroexpand-body): Remove funs.
1268 Use macroexpand-all instead.
1269
1270 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1271
1272 * emacs-lisp/macroexp.el (macroexp-progn, macroexp-let*, macroexp-if)
1273 (macroexp-let², macroexp--const-symbol-p, macroexp-const-p)
1274 (macroexp-copyable-p): New functions and macros.
1275 * emacs-lisp/edebug.el (edebug-unwrap):
1276 * emacs-lisp/disass.el (disassemble-internal): Use macroexp-progn.
1277 * emacs-lisp/pcase.el: Use macroexp-let*, macroexp-if, ...
1278 (pcase--let*): Remove.
1279 * emacs-lisp/bytecomp.el (byte-compile-const-symbol-p)
1280 (byte-compile-constp): Remove. Use macroexp--const-symbol-p and
1281 macroexp-const-p instead.
1282 * emacs-lisp/byte-opt.el: Use macroexp-const-p and macroexp-progn.
1283
1284 * emacs-lisp/cl-macs.el: Clean up the name space by using "cl--"
1285 instead of "cl-" for internal definitions. Use macroexp-const-p.
1286 (cl-old-bc-file-form): Remove var.
1287 (cl-const-exprs-p): Remove fun.
1288 (cl-labels, cl-macrolet): Use backquote.
1289 (cl-lexical-let): Use cl-symbol-macrolet. Don't use cl-defun-expander.
1290 (cl-defun-expander, cl-byte-compile-compiler-macro): Remove fun.
1291 (cl-define-setf-expander): Rename from cl-define-setf-method.
1292 * emacs-lisp/cl.el: Adjust alias for define-setf-method.
1293
1294 * international/mule-cmds.el: Don't require CL.
1295 (view-hello-file): Don't use `letf'.
1296
1297 2012-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
1298
1299 * tmm.el (tmm-prompt): Use string-prefix-p.
1300 (tmm-completion-delete-prompt): Don't affect current-buffer outside.
1301 (tmm-add-prompt): Use minibuffer-completion-help.
1302 (tmm-delete-map): Remove.
1303
1304 * subr.el (kbd): Make it its own function.
1305
1306 2012-06-07 Stefan Merten <smerten@oekonux.de>
1307
1308 * textmodes/rst.el: Use `eval-when-compile' for requiring `cl.el'.
1309 Silence compiler warnings. Fix versions.
1310 (rst-position-if, rst-position, rst-some, rst-signum): New functions.
1311 (rst-shift-region, rst-adornment-level, rst-compute-tabs)
1312 (rst-indent-line, rst-shift-region, rst-forward-line): Use them.
1313 (rst-package-emacs-version-alist): Correct Emacs version to
1314 represent major merge with upstream.
1315 (rst-transition, rst-adornment, rst-compile-toolsets): Fix versions.
1316
1317 2012-06-06 Glenn Morris <rgm@gnu.org>
1318
1319 * mail/emacsbug.el (report-emacs-bug): Add relevant EMACS env-vars.
1320 Only print environment variables if set.
1321
1322 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1323
1324 * emacs-lisp/macroexp.el: Don't require CL since we don't use it.
1325 (macroexp--cons): Rename from maybe-cons.
1326 (macroexp--accumulate): Rename from macroexp-accumulate.
1327 (macroexp--all-forms): Rename from macroexpand-all-forms.
1328 (macroexp--all-clauses): Rename from macroexpand-all-clauses.
1329 (macroexp--expand-all): Rename from macroexpand-all-1.
1330
1331 2012-06-06 Sam Steingold <sds@gnu.org>
1332
1333 * calendar/calendar.el (calendar-in-read-only-buffer):
1334 Call `special-mode' to enable the standard read-only keybindings.
1335
1336 2012-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
1337
1338 * emacs-lisp/macroexp.el (macroexpand-all-1): Don't spam the output
1339 with "loading" messages (bug#11635).
1340
1341 2012-06-06 Michael Albinus <michael.albinus@gmx.de>
1342
1343 * files.el (enable-remote-dir-locals): New option.
1344 (hack-dir-local-variables): Use it. (Bug#1933, Bug#6731)
1345
1346 * net/tramp-compat.el (tramp-compat-temporary-file-directory):
1347 Ensure, that the temp directory is local.
1348
1349 * net/tramp-sh.el (tramp-sh-handle-write-region): Let-bind
1350 `temporary-file-directory'.
1351
1352 * progmodes/python.el (python-send-region): Ensure, that the
1353 temporary file is created also in the remote case.
1354
1355 2012-06-06 Glenn Morris <rgm@gnu.org>
1356
1357 * vc/vc-rcs.el (vc-rcs-rcs2log-program): New.
1358 (vc-rcs-update-changelog): Use it.
1359
1360 * emacs-lisp/authors.el (authors-fixed-entries): Remove vcdiff
1361
1362 * vc/vc-sccs.el (vc-sccs-write-revision): New function.
1363 (vc-sccs-workfile-unchanged-p): Use vc-sccs-write-revision.
1364 (vc-sccs-diff): Replace use of the external vcdiff script.
1365
1366 2012-06-05 Glenn Morris <rgm@gnu.org>
1367
1368 * ledit.el: Move to obsolete/.
1369
1370 2012-06-05 Sam Steingold <sds@gnu.org>
1371
1372 * calendar/calendar.el (calendar-exit): reinstate the 2012-03-28
1373 patch (Bug#11140).
1374
1375 2012-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
1376
1377 * emacs-list/cust-print.el: Move to obsolete.
1378
1379 * emacs-lisp/macroexp.el (macroexpand-all-1): Tolerate errors during
1380 compiler-macro expansion.
1381
1382 Add native compiler-macro support.
1383 * emacs-lisp/macroexp.el (macroexpand-all-1):
1384 Support compiler-macros directly. Properly follow aliases and apply
1385 the compiler macros more thoroughly.
1386 * emacs-lisp/cl.el: Don't copy compiler-macro properties any more since
1387 macroexpand now properly follows aliases.
1388 * emacs-lisp/cl-macs.el (toplevel, cl-define-compiler-macro)
1389 (cl-compiler-macroexpand): Use new prop.
1390 * emacs-lisp/byte-opt.el (featurep): Optimize earlier.
1391
1392 * emacs-lisp/cl-lib.el (custom-print-functions): Add alias.
1393
1394 2012-06-05 Martin Rudalics <rudalics@gmx.at>
1395
1396 * window.el (get-lru-window, get-mru-window, get-largest-window):
1397 New argument NOT-SELECTED to avoid picking the selected window.
1398 (window--display-buffer-1, window--display-buffer-2): Replace by
1399 new function window--display-buffer
1400 (display-buffer-same-window, display-buffer-reuse-window)
1401 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
1402 Use window--display-buffer.
1403 (display-buffer-use-some-window): Remove temporary dedication
1404 hack by calling get-lru-window and get-largest-window with
1405 NOT-SELECTED argument non-nil. Call window--display-buffer.
1406
1407 2012-06-05 Glenn Morris <rgm@gnu.org>
1408
1409 * vc/vc-sccs.el (vc-sccs-workfile-unchanged-p):
1410 Replace external vcdiff script.
1411
1412 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1413
1414 * emacs-lisp/cl-lib.el (cl-values, cl-values-list): Fix up last change.
1415
1416 2012-06-04 Chong Yidong <cyd@gnu.org>
1417
1418 * image.el (imagemagick-types-inhibit): Revert last change.
1419 Add INFO and M.
1420 (imagemagick-enabled-types): Remove CIN and EPS*.
1421
1422 2012-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
1423
1424 * emacs-lisp/cl-lib.el: Rename from cl.el.
1425 * emacs-lisp/cl.el: New compatibility file.
1426 * emacs-lisp/cl-lib.el, emacs-lisp/cl-seq.el, emacs-lisp/cl-macs.el:
1427 * emacs-lisp/cl-extra.el: Rename all top-level functions and variables
1428 to obey the "cl-" prefix.
1429 * emacs-lisp/macroexp.el (macroexpand-all-1): Adjust to new name.
1430
1431 2012-06-03 Glenn Morris <rgm@gnu.org>
1432
1433 * emacs-lisp/authors.el (authors-aliases): Addition.
1434
1435 * cus-start.el (tool-bar-style, tool-bar-max-label-size):
1436 Fix :version.
1437
1438 2012-06-03 Stefan Merten <smerten@oekonux.de>
1439
1440 * textmodes/rst.el: Add comments.
1441 (rst-transition, rst-adornment): New faces.
1442 (rst-adornment-faces-alist): Make default safe to reevaluate.
1443 Fixes
1444 http://sourceforge.net/tracker/?func=detail&atid=422030&aid=3479603&group_id=38414.
1445 Improve customization tags.
1446 (rst-define-level-faces): Clarify meaning.
1447
1448 2012-06-03 Chong Yidong <cyd@gnu.org>
1449
1450 * progmodes/compile.el (compilation-mode-line-fail)
1451 (compilation-mode-line-run, compilation-mode-line-exit):
1452 New faces.
1453 (compilation-start, compilation-handle-exit): Use them (Bug#11032).
1454
1455 2012-06-03 Jack Duthen <duthen.mac.01@gmail.com> (tiny change)
1456
1457 * progmodes/which-func.el (which-func-update-ediff-windows):
1458 New function. Use it in ediff-select-hook (Bug#11478).
1459
1460 2012-06-03 Chong Yidong <cyd@gnu.org>
1461
1462 * bindings.el: Remove explicit help text from format-mode-line.
1463 It is now supplied by mode-line-default-help-echo.
1464 (mode-line-front-space, mode-line-end-spaces)
1465 (mode-line-misc-info): New variables.
1466 (mode-line-modes, mode-line-position): Move the default value to
1467 the variable definition.
1468 (mode-line-default-help-echo): New defcustom.
1469 (mode-line-mule-info-help-echo, mode-line-read-only-help-echo)
1470 (mode-line-modified-help-echo): New functions.
1471 (mode-line-mule-info, mode-line-modified): Use them.
1472 (mode-line-eol-desc, propertized-buffer-identification):
1473 Consistency fixes for help text.
1474 (mode-line-coding-system-map): Allow using mouse-3 to invoke
1475 set-buffer-file-coding-system (Bug#289).
1476 (mode-line-mule-info-help-echo): Update help text.
1477
1478 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
1479
1480 * simple.el (execute-extended-command): Set real-this-command
1481 (bug#11506).
1482
1483 2012-06-02 Chong Yidong <cyd@gnu.org>
1484
1485 Remove incorrect uses of "modeline" in comments, docstrings, and
1486 function/variable names (Bug#10329).
1487
1488 * cus-edit.el (mode-line):
1489 * dframe.el (dframe-mouse-hscroll):
1490 * emacs-lisp/re-builder.el:
1491 * emacs-lisp/easy-mmode.el (define-minor-mode):
1492 * frame.el (set-frame-name):
1493 * help.el (lookup-minor-mode-from-indicator):
1494 * net/rcirc.el (rcirc-activity-string, rcirc-short-buffer-name):
1495 * progmodes/cc-cmds.el (c-toggle-auto-newline)
1496 (c-toggle-hungry-state):
1497 * progmodes/antlr-mode.el (antlr-language-alist):
1498 * progmodes/idlw-shell.el (idlwave-shell-electric-stop-line-face):
1499 * progmodes/vhdl-mode.el (vhdl-mode):
1500 * progmodes/which-func.el (which-func, which-func-cleanup-function):
1501 * term/ns-win.el (ns-face-at-pos):
1502 * term/sup-mouse.el (sup-mouse-report):
1503 * textmodes/flyspell.el (flyspell-mode-line-string):
1504 * textmodes/ispell.el (ispell-highlight-face):
1505 * textmodes/reftex-global.el:
1506 * vc/vc-arch.el (vc-arch-mode-line-string):
1507 * vc/vc-cvs.el (vc-cvs-mode-line-string):
1508 * vc/vc-git.el (vc-git-mode-line-string):
1509 * vc/vc-hooks.el (vc-display-status)
1510 (vc-default-mode-line-string):
1511 * vc/vc-mtn.el (vc-mtn-mode-line-string): Doc fixes.
1512
1513 * ansi-color.el (ansi-color-faces-vector): Change default faces.
1514
1515 * dired.el (dired-sort-set-mode-line): Rename from
1516 dired-sort-set-modeline. All callers changed.
1517
1518 * eshell/esh-mode.el (eshell-status-in-mode-line): Rename from
1519 eshell-status-in-modeline.
1520
1521 * foldout.el (foldout-mode-line-string): Rename from
1522 foldout-modeline-string. All callers changed.
1523 (foldout-update-mode-line): Rename from foldout-update-modeline.
1524
1525 * subr.el (redraw-modeline): Make into obsolete alias.
1526
1527 * calendar/timeclock.el (timeclock-mode-line-display): Rename from
1528 timeclock-modeline-display. Make old name an alias.
1529 (timeclock-update-mode-line): Likewise. All callers changed.
1530 (timeclock-mode-line-display): No need to check before using
1531 add-hook.
1532 (timeclock-relative, timeclock-day-over-hook)
1533 (timeclock-use-elapsed, timeclock-mode-string)
1534 (timeclock-mode-line-display): Doc fix, "modeline" -> "mode line".
1535
1536 * emulation/crisp.el (crisp-mode-mode-line-string): Rename from
1537 crisp-mode-modeline-string.
1538
1539 * play/solitaire.el (solitaire-build-mode-line): Rename from
1540 solitaire-build-modeline. All callers changed.
1541
1542 * play/zone.el (zone-hiding-mode-line): Rename from
1543 zone-hiding-modeline. All callers changed.
1544 (zone): Remove unusued `modeline-hidden-level' property.
1545
1546 * progmodes/xscheme.el (xscheme-mode-line-initialize): Rename from
1547 xscheme-modeline-initialize. All callers changed.
1548
1549 * strokes.el (strokes-lighter): Rename from
1550 strokes-modeline-string.
1551
1552 * textmodes/sgml-mode.el (html-face-tag-alist)
1553 (html-tag-face-alist): Use mode-line face instead of obsolete
1554 alias modeline.
1555
1556 2012-06-02 Stefan Merten <smerten@oekonux.de>
1557
1558 * textmodes/rst.el: Always require `cl'.
1559 (rst-mode-map): Fix meaning of C-M-a / C-M-e.
1560
1561 2012-06-02 Chong Yidong <cyd@gnu.org>
1562
1563 * image.el (imagemagick-enabled-types): Rename from
1564 imagemagick-types-enable. Add many more types.
1565 (imagemagick-types-inhibit): Change default to nil.
1566 (imagemagick-filter-types): Caller changed.
1567
1568 2012-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
1569
1570 * emacs-lisp/cl-macs.el: Use backquotes.
1571 (cl-transform-function-property): Use eval-and-compile rather than
1572 abusing `require'.
1573 (defstruct): Use declare-function instead of with-no-warnings.
1574
1575 * emacs-lisp/bytecomp.el: Fix last change (bug#11594).
1576 (byte-compile-output-docform): Re-add the print-circle bindings.
1577 (byte-compile-fix-header): Use #$ just because it's shorter.
1578 (byte-compile-output-file-form): Remove defun/defmacro.
1579
1580 2012-06-01 Martin Rudalics <rudalics@gmx.at>
1581
1582 * simple.el (choose-completion): Remove now obsolete binding for
1583 owindow.
1584
1585 2012-06-01 Michael Albinus <michael.albinus@gmx.de>
1586
1587 * net/tramp.el (tramp-check-for-regexp): Search from buffer end,
1588 in order to avoid "Stack overflow in regexp matcher".
1589
1590 2012-05-31 Glenn Morris <rgm@gnu.org>
1591
1592 * image.el: For clarity, call imagemagick-register-types at
1593 top-level, rather than relying on a custom :initialize.
1594 (imagemagick-types-enable): New option. (Bug#11557)
1595 (imagemagick-filter-types): New function. (Bug#7406)
1596 (imagemagick-register-types): Use imagemagick-filter-types.
1597 If disabling support, remove elements altogether rather
1598 than using an impossible regexp.
1599 (imagemagick-types-inhibit): Give it the default init function.
1600
1601 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1602
1603 * emacs-lisp/bytecomp.el (byte-compile-fix-header):
1604 Handle arbitrary file name lengths (Bug#11585).
1605
1606 2012-05-31 Martin Rudalics <rudalics@gmx.at>
1607
1608 * desktop.el (desktop-read): Clear previous and next buffers for
1609 all windows and bury *Messages* buffer (bug#11556).
1610
1611 2012-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
1612
1613 Add `declare' for `defun'. Align `defmacro's with it.
1614 * emacs-lisp/easy-mmode.el (define-minor-mode)
1615 (define-globalized-minor-mode): Don't autoload the var definitions.
1616 * emacs-lisp/byte-run.el: Use lexical-binding.
1617 (defun-declarations-alist, macro-declarations-alist): New vars.
1618 (defmacro, defun): Use them.
1619 (make-obsolete, define-obsolete-function-alias)
1620 (make-obsolete-variable, define-obsolete-variable-alias):
1621 Use `declare'.
1622 (macro-declaration-function): Mark obsolete.
1623 * emacs-lisp/autoload.el: Use lexical-binding.
1624 (make-autoload): Add `expansion' arg. Rely more on macro expansion.
1625
1626 2012-05-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1627
1628 * textmodes/ispell.el (ispell-with-no-warnings):
1629 Define as a macro.
1630 (ispell-kill-ispell, ispell-change-dictionary):
1631 Use `called-interactively-p' for Emacs instead of obsolete
1632 `interactive-p'.
1633
1634 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
1635
1636 * emacs-lisp/byte-run.el (defmacro, defun): Move from C.
1637 (macro-declaration-function): Move var from C code.
1638 (macro-declaration-function): Define function with defalias.
1639 * emacs-lisp/macroexp.el (macroexpand-all-1):
1640 * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
1641 * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't handle
1642 defun/defmacro any more.
1643 * emacs-lisp/bytecomp.el (byte-compile-arglist-signature):
1644 Provide fallback for unknown arglist.
1645 (byte-compile-arglist-warn): Change calling convention.
1646 (byte-compile-output-file-form): Move print-vars binding.
1647 (byte-compile-output-docform): Simplify accordingly.
1648 (byte-compile-file-form-defun, byte-compile-file-form-defmacro)
1649 (byte-compile-defmacro-declaration): Remove.
1650 (byte-compile-file-form-defmumble): Generalize to defalias.
1651 (byte-compile-output-as-comment): Return byte-positions.
1652 Simplify callers accordingly.
1653 (byte-compile-lambda): Use `assert'.
1654 (byte-compile-defun, byte-compile-defmacro): Remove.
1655 (byte-compile-file-form-defalias):
1656 Use byte-compile-file-form-defmumble.
1657 (byte-compile-defalias-warn): Remove.
1658
1659 2012-05-29 Stefan Merten <smerten@oekonux.de>
1660
1661 * textmodes/rst.el: Silence `checkdoc-ispell' errors where
1662 possible. Fix authors. Improve comments. Improve loading of `cl'.
1663
1664 (rst-mode-abbrev-table): Merge definition.
1665 (rst-mode): Make sure `font-lock-defaults' is buffer local.
1666 (rst-define-key, rst-deprecated-keys, rst-call-deprecated): Refactor.
1667
1668 2012-05-29 Ulf Jasper <ulf.jasper@web.de>
1669
1670 * calendar/icalendar.el
1671 (icalendar-export-region): Export UID properly.
1672
1673 2012-05-29 Leo <sdl.web@gmail.com>
1674 * calendar/icalendar.el (icalendar-import-format):
1675 Add `icalendar-import-format-uid' (Bug#11525).
1676 (icalendar-import-format-uid): New.
1677 (icalendar--parse-summary-and-rest, icalendar--format-ical-event):
1678 Export UID.
1679
1680 2012-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
1681
1682 * emacs-lisp/pcase.el (pcase--expand): Accept different sets of vars in
1683 different alternative patterns.
1684 (pcase-codegen): Be more careful to preserve identity.
1685 (pcase--u1): Don't forget to mark vars as used.
1686
1687 * emacs-lisp/bytecomp.el (byte-compile-constp): Treat #'v as a constant.
1688 (byte-compile-close-variables): Bind byte-compile--outbuffer here...
1689 (byte-compile-from-buffer): ...rather than here.
1690
1691 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Don't re-preprocess
1692 functions from byte-compile-function-environment.
1693
1694 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
1695
1696 * window.el (window-deletable-p): Avoid deleting the root window
1697 of a frame with an active minibuffer.
1698
1699 2012-05-29 Martin Rudalics <rudalics@gmx.at>
1700
1701 * simple.el (choose-completion): Use quit-window (Bug#11567).
1702
1703 2012-05-29 Chong Yidong <cyd@gnu.org>
1704
1705 * whitespace.el (whitespace-cleanup): Fix usage of
1706 whitespace-empty-at-bob-regexp (Bug#11492).
1707
1708 2012-05-29 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1709
1710 * vc/vc.el (vc-revert, vc-rollback): Dont kill vc-diff buffer on
1711 revert (Bug#11488).
1712
1713 2012-05-29 Juri Linkov <juri@jurta.org>
1714
1715 * isearch.el (isearch-mode-map): Bind `M-s _' to
1716 `isearch-toggle-symbol'. Bind `M-s c' to
1717 `isearch-toggle-case-fold'.
1718 (search-map): Bind `M-s _' to `isearch-forward-symbol'.
1719 (isearch-forward): Add `M-s _' to the docstring.
1720 (isearch-forward-symbol, isearch-toggle-case-fold)
1721 (isearch-symbol-regexp): New functions. (Bug#11381)
1722
1723 2012-05-29 Juri Linkov <juri@jurta.org>
1724
1725 * isearch.el (isearch-word): Add docstring. (Bug#11381)
1726 (isearch-occur, isearch-search-and-update): If `isearch-word' is
1727 a function, call it to get the regexp.
1728 (isearch-message-prefix): If `isearch-word' holds a symbol, use its
1729 property `isearch-message-prefix' instead of the string "word ".
1730 (isearch-search-fun-default): For the case of `isearch-word',
1731 return a lambda that calls re-search-forward/re-search-backward
1732 with a regexp returned by `word-search-regexp' or by the function
1733 in `isearch-word'.
1734
1735 2012-05-29 Juri Linkov <juri@jurta.org>
1736
1737 * isearch.el (isearch-search-fun-default): New function.
1738 (isearch-search-fun): Move default part to the new function
1739 `isearch-search-fun-default'.
1740 (isearch-search-fun-function): Set the default value to
1741 `isearch-search-fun-default'. (Bug#11381)
1742
1743 * comint.el (comint-history-isearch-end):
1744 Use `isearch-search-fun-default'.
1745 (comint-history-isearch-search): Use `isearch-search-fun-default'
1746 and remove spacial case for `isearch-word'.
1747 (comint-history-isearch-wrap): Remove spacial case for
1748 `isearch-word'.
1749
1750 * hexl.el (hexl-isearch-search-function):
1751 Use `isearch-search-fun-default'.
1752
1753 * info.el (Info-isearch-search): Use `isearch-search-fun-default'.
1754 Use `word-search-regexp' for `isearch-word'.
1755
1756 * misearch.el (multi-isearch-search-fun):
1757 Use `isearch-search-fun-default'.
1758
1759 * simple.el (minibuffer-history-isearch-search):
1760 Use `isearch-search-fun-default' and remove spacial case for
1761 `isearch-word'.
1762 (minibuffer-history-isearch-wrap): Remove spacial case for
1763 `isearch-word'.
1764
1765 * textmodes/reftex-global.el (reftex-isearch-wrap-function):
1766 Remove spacial case for `isearch-word'.
1767 (reftex-isearch-isearch-search): Use `isearch-search-fun-default'.
1768
1769 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1770
1771 Decrease XEmacs incompatibilities.
1772 * textmodes/flyspell.el (flyspell-check-pre-word-p):
1773 Use `string-match'.
1774 (flyspell-delete-region-overlays): Use alternative definition for
1775 XEmacs.
1776 (flyspell-delete-all-overlays): Use `flyspell-delete-region-overlays'.
1777 (flyspell-word): Use `process-kill-without-query' if XEmacs.
1778 (flyspell-mode-on): Use `interactive-p' if XEmacs.
1779 (flyspell-incorrect-face, flyspell-duplicate-face): Do not use
1780 `define-obsolete-face-alias' under XEmacs, but old method.
1781
1782 * textmodes/ispell.el (ispell-with-no-warnings): XEmacs alternative
1783 `with-no-warnings' definition or Emacs alias.
1784 (ispell-command-loop, ispell-message): Use `ispell-with-no-warnings'.
1785 (ispell-word): Do not use `region-p' if XEmacs.
1786
1787 2012-05-28 Agustín Martín Domingo <agustin.martin@hispalinux.es>
1788
1789 * textmodes/ispell.el (ispell-find-aspell-dictionaries):
1790 Check for `ispell-dictionary-base-alist' instead of full
1791 `ispell-dictionary-alist'.
1792 (ispell-init-process): Show spellchecker when starting new Ispell
1793 process.
1794
1795 2012-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
1796
1797 * progmodes/vhdl-mode.el: Sync with upstream 3.33.28.
1798 http://www.iis.ee.ethz.ch/~zimmi/emacs/vhdl-mode.html#release-notes-3.33
1799
1800 2012-05-27 Juanma Barranquero <lekktu@gmail.com>
1801
1802 * version.el (motif-version-string, gtk-version-string)
1803 (ns-version-string): Declare.
1804
1805 2012-05-27 Juri Linkov <juri@jurta.org>
1806
1807 * emacs-lisp/lisp-mode.el (eval-defun-2): Use `eval-sexp-add-defvars'
1808 after the `eval-defun-1' specialcaseing
1809 like in `edebug-eval-defun' (bug#10181).
1810
1811 * emacs-lisp/edebug.el (edebug-eval-defun): Set `face-documentation'
1812 like in `eval-defun-1'.
1813
1814 2012-05-27 Eli Zaretskii <eliz@gnu.org>
1815
1816 * mail/sendmail.el (mail-yank-region):
1817 Recognize rmail-yank-current-message in addition to insert-buffer.
1818 Fixes mail-mode's "C-c C-r" that otherwise does nothing when invoked in
1819 a *mail* buffer created through rmail-start-mail with sendmail as
1820 mail-user-agent.
1821
1822 2012-05-27 Chong Yidong <cyd@gnu.org>
1823
1824 * net/gnutls.el (gnutls-min-prime-bits): Improve docstring.
1825 Default to 256 (Bug#11267).
1826
1827 * help.el (describe-mode): Doc fix.
1828
1829 2012-05-26 Glenn Morris <rgm@gnu.org>
1830
1831 * w32-fns.el (w32-init-info): Remove.
1832 * paths.el (Info-default-directory-list): Add w32-init-info equivalent.
1833
1834 * info.el (info-initialize): For self-contained NS builds, put the
1835 included info/ directory at the front. (Bug#2791)
1836
1837 * paths.el (Info-default-directory-list): Make it a defcustom,
1838 mainly so that we can use custom-initialize-delay.
1839
1840 2012-05-26 Stefan Monnier <monnier@iro.umontreal.ca>
1841
1842 * subr.el (buffer-has-markers-at): Mark obsolete.
1843
1844 * subr.el (lambda): Use declare.
1845
1846 * emacs-lisp/lisp-mode.el (lambda):
1847 * emacs-lisp/edebug.el (lambda): Move properties to its definition.
1848
1849 2012-05-26 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1850
1851 * thingatpt.el (forward-same-syntax): Handle no ARG case. (Bug#11560)
1852
1853 2012-05-26 Glenn Morris <rgm@gnu.org>
1854
1855 * progmodes/cc-mode.el (auto-mode-alist): Fix typo.
1856
1857 2012-05-25 Glenn Morris <rgm@gnu.org>
1858
1859 * paths.el: Remove no-byte-compile.
1860 * loadup.el: No need to load paths.el uncompiled.
1861
1862 * image.el (imagemagick-types-inhibit): Doc fix.
1863
1864 * version.el: Remove no-byte-compile and associated formatting.
1865 * loadup.el: No need to load version.el uncompiled. AFAICS, this
1866 is ancient code from when there was an "inc-vers.el".
1867
1868 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
1869
1870 * progmodes/gdb-mi.el: Minor style changes.
1871 (gdb-enable-debug, gdb-speedbar-auto-raise, gdb-many-windows):
1872 Turn into minor modes.
1873 (gdb--if-arrow): Rename from gdb-if-arrow, make it hygienic.
1874 (gdb-mouse-until, gdb-mouse-jump): Adjust uses accordingly.
1875 (gdb-shell): Remove unneeded let-binding.
1876 (gdb-get-many-fields): Eliminate O(n²) behavior.
1877
1878 2012-05-25 Eli Zaretskii <eliz@gnu.org>
1879
1880 * cus-start.el <vertical-centering-font-regexp>: Avoid warning on
1881 platforms that don't link in fontset.c.
1882
1883 2012-05-25 Juri Linkov <juri@jurta.org>
1884
1885 Use the same diff color scheme as in modern VCSes (bug#10181).
1886
1887 * vc/diff-mode.el (diff-header, diff-file-header): Remove "green"
1888 to avoid confusion with `diff-added' that now uses green colors.
1889 (diff-removed): Use shades of red.
1890 (diff-added): Use shades of green.
1891 (diff-changed): Leave just the yellow color.
1892 (diff-use-changed-face): New variable.
1893 (diff-font-lock-keywords): Use `diff-use-changed-face' to decide
1894 how to highlight context diff changes.
1895 (diff-refine-change): Use shades of yellow.
1896 (diff-refine-removed): New face that uses shades of red.
1897 (diff-refine-added): New face that uses shades of green.
1898 (diff-refine-hunk): Use `diff-refine-change', `diff-refine-added',
1899 `diff-refine-removed' in the call to `smerge-refine-subst'
1900 depending on the value of `diff-use-changed-face'.
1901
1902 * vc/smerge-mode.el (smerge-mine): Use shades of red.
1903 (smerge-other): Use shades of green.
1904 (smerge-base): Use shades of yellow.
1905 (smerge-refined-change): Empty face.
1906 (smerge-refined-removed): New face that uses shades of red.
1907 (smerge-refined-added): New face that uses shades of green.
1908 (smerge-refine-subst): Rename arg `props' to `props-c'. Add new
1909 args `props-r' and `props-a', and use them. Doc fix.
1910 (smerge-refine): Evaluate `smerge-use-changed-face' and depending
1911 on its value use different faces `smerge-refined-change',
1912 `smerge-refined-removed', `smerge-refined-added' in the call to
1913 `smerge-refine-subst'.
1914
1915 * vc/ediff-init.el (ediff-current-diff-A, ediff-fine-diff-A):
1916 Add face condition `min-colors 88' with shades of red.
1917 (ediff-current-diff-B, ediff-fine-diff-B): Add face condition
1918 `min-colors 88' with shades of green.
1919 (ediff-current-diff-C, ediff-fine-diff-C): Add face condition
1920 `min-colors 88' with shades of yellow.
1921
1922 2012-05-24 Glenn Morris <rgm@gnu.org>
1923
1924 * paths.el (prune-directory-list, remote-shell-program): Move to...
1925 * files.el (prune-directory-list, remote-shell-program): ...here.
1926 For the latter, delay initialization, prefer ssh, just search PATH.
1927
1928 * paths.el (term-file-prefix): Move to faces.el (the only user).
1929 * faces.el (term-file-prefix): Move here, make it a defcustom.
1930
1931 * paths.el (news-directory, news-path, news-inews-program):
1932 Move to gnus/nnspool.el.
1933
1934 * paths.el (gnus-default-nntp-server): Remove (gnus.el defines it).
1935
1936 * paths.el (rmail-file-name, rmail-spool-directory): Move from here...
1937 * mail/rmail.el (rmail-file-name, rmail-spool-directory): ... to here.
1938 Make the latter a defcustom, with a delayed initialization.
1939
1940 * paths.el (gnus-nntp-service, gnus-local-organization): Remove.
1941 These were deleted from Gnus itself late 2010.
1942
1943 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
1944
1945 * progmodes/which-func.el (which-func-ff-hook):
1946 Check against user-error, not error.
1947
1948 * emacs-lisp/edebug.el (top): Do not load or set up loading of
1949 cl-specs.el, which no longer exists.
1950
1951 2012-05-22 Glenn Morris <rgm@gnu.org>
1952
1953 * info.el (info-emacs-bug): New command.
1954 * menu-bar.el (menu-bar-help-menu): Add "How to Report a Bug" to Help.
1955 * mail/emacsbug.el (report-emacs-bug): Replace with info-emacs-bug.
1956
1957 2012-05-21 Glenn Morris <rgm@gnu.org>
1958
1959 * makefile.w32-in (update-subdirs-SH):
1960 * Makefile.in (update-subdirs): Update for moved update-subdirs.
1961
1962 2012-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
1963
1964 * hi-lock.el (hi-lock-face-defaults): Move obsolete before definition.
1965
1966 * progmodes/compile.el (compilation-error-regexp-alist-alist):
1967 Simplify Maven regexp, and make sure the file can't start with a space
1968 (bug#11517).
1969
1970 2012-05-21 Glenn Morris <rgm@gnu.org>
1971
1972 * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
1973 Scrap superfluous subshells.
1974
1975 2012-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1976
1977 * emacs-lisp/bytecomp.el (byte-compile-root-dir): New var.
1978 (byte-compile-warning-prefix, batch-byte-compile-file): Use it.
1979
1980 2012-05-19 Jay Belanger <jay.p.belanger@gmail.com>
1981
1982 * calc/calc.el (calc-ensure-consistent-units): New variable.
1983
1984 * calc/calc-units.el (math-consistent-units-p)
1985 (math-check-unit-consistency): New functions.
1986 (calc-quick-units, calc-convert-units):
1987 Use `math-check-unit-consistency' when `calc-ensure-consistent-units'
1988 is non-nil.
1989 (calc-extract-units): Fix typo.
1990
1991 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
1992
1993 * vc/vc-bzr.el (vc-bzr-state-heuristic): Save match-data around sha1.
1994
1995 * textmodes/flyspell.el: Commenting style, plus code simplifications.
1996 (flyspell-default-deplacement-commands): Don't spell check after
1997 repeated window/frame switches (e.g. triggered by mouse-movement).
1998 (flyspell-delay-commands, flyspell-deplacement-commands): Use mapc.
1999 (flyspell-debug-signal-word-checked): Simplify and fit in 80 cols.
2000 (flyspell-casechars-cache, flyspell-ispell-casechars-cache)
2001 (flyspell-not-casechars-cache, flyspell-ispell-not-casechars-cache):
2002 Remove unused vars.
2003 (flyspell-get-casechars, flyspell-get-not-casechars):
2004 Simplify; Don't bother removing a ] just to add it back.
2005 * textmodes/ispell.el (ispell-program-name): Use executable-find.
2006
2007 2012-05-18 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2008
2009 * calc/calc-lang.el (math-C-parse-bess, math-C-parse-fma):
2010 New functions.
2011 (math-function-table): Add support for more C functions.
2012
2013 2012-05-18 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2014
2015 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
2016 (flyspell-debug-signal-word-checked): Protect delay handling for
2017 otherchars against empty otherchars.
2018
2019 2012-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
2020
2021 * emacs-lisp/lisp-mode.el (doc-string-elt): Move those properties to
2022 their respective macro declarations.
2023 * skeleton.el (define-skeleton):
2024 * progmodes/compile.el (define-compilation-mode):
2025 * ibuf-macs.el (define-ibuffer-sorter, define-ibuffer-op)
2026 (define-ibuffer-filter):
2027 * emacs-lisp/generic.el (define-generic-mode):
2028 * emacs-lisp/easy-mmode.el (define-minor-mode)
2029 (define-globalized-minor-mode):
2030 * emacs-lisp/cl-macs.el (defun*, defmacro*, defstruct, deftype):
2031 * emacs-lisp/byte-run.el (defsubst):
2032 * custom.el (deftheme): Add doc-string metadata.
2033
2034 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2035
2036 * emacs-lisp/cl-macs.el, emacs-lisp/cl.el: Move indent info.
2037
2038 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2039
2040 * emacs-lisp/pcase.el (pcase--u1): Avoid ((lambda ...) ...).
2041
2042 * emacs-lisp/cl.el: Add edebug specs from cl-specs.el.
2043 * emacs-lisp/cl-macs.el: Idem.
2044 * emacs-lisp/cl-specs.el: Remove.
2045
2046 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2047
2048 Minor renaming of internal CL functions and variables.
2049 * emacs-lisp/cl-seq.el (cl--adjoin): Rename from cl-adjoin.
2050 (cl--position): Rename from cl-position.
2051 (cl--delete-duplicates): Rename from cl-delete-duplicates.
2052 * emacs-lisp/cl.el (cl--gensym-counter): Rename from *gensym-counter*.
2053 (cl--random-state): Rename from *random-state*.
2054
2055 2012-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
2056
2057 * emacs-lisp/cl-macs.el (cl-transform-lambda): Don't add spurious
2058 parens around the arg list (bug#11499).
2059
2060 2012-05-17 Juri Linkov <juri@jurta.org>
2061
2062 * isearch.el (word-search-regexp, word-search-backward)
2063 (word-search-forward, word-search-backward-lax)
2064 (word-search-forward-lax): Move functions from search.c
2065 (bug#10145, bug#11381).
2066
2067 2012-05-16 Agustín Martín Domingo <agustin.martin@hispalinux.es>
2068
2069 * flyspell.el (flyspell-check-pre-word-p, flyspell-check-word-p)
2070 (flyspell-debug-signal-word-checked): Delay for otherchars as for
2071 normal word components.
2072
2073 2012-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
2074
2075 * minibuffer.el (completion--sifn-requote): Fix last change.
2076 (minibuffer-local-must-match-filename-map):
2077 Move define-obsolete-variable-alias before its var.
2078
2079 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
2080
2081 * emacs-lisp/pcase.el (pcase-let*, pcase-let): Fix edebug spec.
2082
2083 * minibuffer.el (completion--sifn-requote): Handle sifn's truncation
2084 behavior.
2085 (completion--string-equal-p): New function.
2086 (completion--twq-all): Use it to get better assertion failure data.
2087
2088 Only handle ".." and '..' quoting in shell-mode (bug#11466).
2089 * shell.el (shell--unquote&requote-argument, shell--unquote-argument)
2090 (shell--requote-argument): New functions.
2091 (shell-completion-vars): Use them.
2092 (shell--parse-pcomplete-arguments): Rename from
2093 shell-parse-pcomplete-arguments.
2094 * comint.el (comint-word): Obey comint-file-name-quote-list. Simplify.
2095 (comint--unquote&requote-argument): Don't handle ".." and '..' quoting.
2096 Obey comint-file-name-quote-list.
2097
2098 * emacs-lisp/smie.el (smie-indent--bolp-1): New function.
2099 (smie-indent-keyword): Use it.
2100
2101 2012-05-14 Stefan Merten <smerten@oekonux.de>
2102
2103 * textmodes/rst.el (rst-re-alist): Fix loading (bug#11462).
2104
2105 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2106
2107 * net/rlogin.el (rlogin-mode-map): Fix last change.
2108
2109 2012-05-14 Jason L. Wright <jason.wright@inl.gov> (tiny change)
2110
2111 * mail/smtpmail.el (smtpmail-send-command): Send the command and
2112 the following \r\n using a single `process-send-string', since the
2113 Lotus SMTP server refuses to accept any commands if they are sent
2114 with two `process-send-string's (Bug#11444).
2115
2116 2012-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
2117
2118 * shell.el (shell-parse-pcomplete-arguments):
2119 Obey pcomplete-arg-quote-list inside double-quoted args (Bug#11348).
2120
2121 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2122
2123 * image-mode.el: Fit to width/height for rotated images (Bug#11431).
2124 (image-transform-scale, image-transform-right-angle-fudge): New vars.
2125 (image-transform-width, image-transform-fit-width): New functions.
2126 (image-transform-properties): Use them.
2127 (image-transform-check-size): New function.
2128 (image-toggle-display-image): Use it (for testing).
2129 (image-transform-set-rotation): Reduce angle mod 360.
2130 Delete obsolete comment.
2131
2132 2012-05-14 Wolfgang Jenkner <wjenkner@inode.at>
2133
2134 * image-mode.el: Fix scaling (bug#11399).
2135 (image-transform-resize): Doc fix.
2136 (image-transform-properties): Default scale is 1 and height should
2137 be an integer.
2138
2139 2012-05-13 Johan Bockgård <bojohan@gnu.org>
2140
2141 * emacs-lisp/smie.el (smie-next-sexp): Use accessor `op-forw' rather
2142 than hard-coding `car', to fix misbehavior when moving forward.
2143
2144 2012-05-13 Chong Yidong <cyd@gnu.org>
2145
2146 * emacs-lisp/tabulated-list.el (tabulated-list-format)
2147 (tabulated-list-entries, tabulated-list-padding)
2148 (tabulated-list-sort-key): Make permanent-local.
2149
2150 * ebuff-menu.el: Adapt to Buffer Menu changes (Bug#11455).
2151 (electric-buffer-list): Put electric buffer menu
2152 command descriptions in this docstring, instead of the docstring
2153 of electric-buffer-menu-mode. Code cleanups.
2154 (electric-buffer-menu-mode): Use define-derived-mode. Rename from
2155 Electric-buffer-menu-mode.
2156 (electric-buffer-update-highlight): Minor code cleanup.
2157
2158 2012-05-13 Michael Albinus <michael.albinus@gmx.de>
2159
2160 * net/dbus.el (dbus-call-method): Restore events not from D-Bus.
2161 (Bug#11447)
2162
2163 2012-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
2164
2165 Move define-obsolete-variable-alias before the var's definition.
2166 * vc/log-edit.el (vc-comment-ring, vc-comment-ring-index):
2167 * tooltip.el (tooltip-hook):
2168 * textmodes/reftex-toc.el (reftex-toc-map):
2169 * textmodes/reftex-sel.el (reftex-select-label-map)
2170 (reftex-select-bib-map):
2171 * textmodes/reftex-index.el (reftex-index-map)
2172 (reftex-index-phrases-map):
2173 * speedbar.el (speedbar-syntax-table, speedbar-key-map):
2174 * progmodes/meta-mode.el (meta-mode-map):
2175 * novice.el (disabled-command-hook):
2176 * loadhist.el (unload-hook-features-list):
2177 * frame.el (blink-cursor):
2178 * files.el (find-file-not-found-hooks, write-file-hooks)
2179 (write-contents-hooks):
2180 * emulation/tpu-edt.el (GOLD-map):
2181 * emacs-lock.el (emacs-lock-from-exiting):
2182 * emacs-lisp/generic.el (generic-font-lock-defaults):
2183 * emacs-lisp/chart.el (chart-map):
2184 * dos-fns.el (register-name-alist):
2185 * dired-x.el (dired-omit-files-p):
2186 * desktop.el (desktop-enable):
2187 * cus-edit.el (custom-mode-hook):
2188 * buff-menu.el (buffer-menu-mode-hook):
2189 * bookmark.el (bookmark-read-annotation-text-func)
2190 (bookmark-exit-hooks):
2191 * allout.el (allout-mode-deactivate-hook)
2192 (allout-exposure-change-hook, allout-structure-added-hook)
2193 (allout-structure-deleted-hook, allout-structure-shifted-hook):
2194 * dirtrack.el (dirtrack-toggle, dirtrackp, dirtrack-debug-toggle)
2195 (dirtrack-debug): Move call to define-obsolete-variable-alias so it
2196 comes before the corresponding variable's definition.
2197
2198 2012-05-12 Chong Yidong <cyd@gnu.org>
2199
2200 * buff-menu.el (Buffer-menu-buffer+size-width): Doc fix (Bug#11454).
2201 (Buffer-menu-mouse-select): Restore function (Bug#11459).
2202 (Buffer-menu-mode-map): Bind it.
2203 (Buffer-menu--pretty-name): Add a mouse-face property.
2204
2205 2012-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
2206
2207 * progmodes/prolog.el: Use SMIE. Cleanup regexp setup.
2208 (prolog-upper-case-string, prolog-lower-case-string)
2209 (prolog-atom-char-regexp, prolog-atom-regexp): Initialize in defconst.
2210 (prolog-use-smie, prolog-smie-grammar): New vars.
2211 (prolog-smie-forward-token, prolog-smie-backward-token)
2212 (prolog-smie-rules): New funs.
2213 (prolog-comment-indent): Remove.
2214 (prolog-mode-variables): Use default comment indentation instead.
2215 Setup SMIE.
2216 (prolog-build-case-strings, prolog-set-atom-regexps): Remove.
2217 (prolog-mode): Don't call them any more.
2218 (prolog-electric-colon, prolog-electric-dash)
2219 (prolog-edit-menu-insert-move): Use indent-according-to-mode.
2220
2221 * dabbrev.el (dabbrev-expand): Make "no expansion found" a user-error.
2222
2223 * minibuffer.el (completion--twq-all): Again, allow case differences.
2224
2225 * term.el: Move keymap initialization code to be more idiomatic.
2226 (term-signals-menu, term-mode-map, term-raw-map, term-raw-escape-map)
2227 (term-terminal-menu): Move initialization into declaration.
2228 (term-escape-char): Let the user set it in her .emacs.
2229
2230 * progmodes/sh-script.el: Use post-self-insert-hook&electric-pair-mode.
2231 Provide SMIE-based indentation (not enabled by default yet).
2232 (sh-mode-map): Don't bind electric keys.
2233 Use electric-pair-mode instead of skeleton-pair.
2234 (sh-assignment-regexp): Fit within 80 columns.
2235 (sh-indent-supported): Specify actual shell name instead of boolean.
2236 (sh--maybe-here-document): New fun, from sh-maybe-here-document.
2237 (sh-maybe-here-document): Use it. Make obsolete.
2238 (sh-electric-here-document-mode) New minor mode.
2239 (sh-mode): Use it. Don't set sh-indent-supported-here here.
2240 (sh-smie-sh-grammar, sh-smie--sh-operators, sh-smie--sh-operators-re)
2241 (sh-smie--sh-operators-back-re, sh-indent-after-continuation)
2242 (sh-smie-rc-grammar, sh-use-smie): New vars.
2243 (sh-smie--keyword-p, sh-smie--newline-semi-p, sh-smie--sh-keyword-p)
2244 (sh-smie-sh-forward-token, sh-smie--looking-back-at-continuation-p)
2245 (sh-smie-sh-backward-token, sh-smie--continuation-start-indent)
2246 (sh-smie-sh-rules, sh-smie-rc-rules, sh-smie--sh-keyword-in-p)
2247 (sh-smie--rc-after-special-arg-p, sh-smie-rc-backward-token)
2248 (sh-smie-sh-rules, sh-smie--rc-newline-semi-p): New functions.
2249 (sh-set-shell): Use smie-setup if requested.
2250
2251 * term.el (term-set-escape-char): Properly set term-escape-char.
2252 See http://stackoverflow.com/questions/10524656.
2253
2254 2012-05-10 Chong Yidong <cyd@gnu.org>
2255
2256 * ffap.el (ffap-url-unwrap-local): Make it work right (Bug#9131).
2257 Use url-generic-parse-url, and handle host names and Windows
2258 filenames properly.
2259 (ffap-url-unwrap-remote): Use url-generic-parse-url.
2260 (ffap-url-unwrap-remote): Accept list values, specifying a list of
2261 URL schemes to work on.
2262 (ffap--toggle-read-only): New function.
2263 (ffap-read-only, ffap-read-only-other-window)
2264 (ffap-read-only-other-frame): Use it.
2265 (ffap-fixup-url): Don't check ffap-ftp-regexp, since it is not
2266 necessary for ffap-url-unwrap-remote.
2267
2268 2012-05-10 Dave Abrahams <dave@boostpro.com>
2269
2270 * cus-start.el (create-lockfiles): Add it.
2271
2272 2012-05-09 Chong Yidong <cyd@gnu.org>
2273
2274 * net/browse-url.el (browse-url-url-encode-chars): Use upper-case.
2275 (browse-url-encode-url): Encode spaces and quotes (Bug#6300).
2276
2277 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2278
2279 * shell.el (shell-completion-vars): Fix last change (bug#11348).
2280
2281 2012-05-09 Chong Yidong <cyd@gnu.org>
2282
2283 * ansi-color.el (ansi-color-process-output): Check for validity of
2284 comint-last-output-start before using it. This avoids a bad
2285 interaction with gdb-mi's input/output buffer.
2286
2287 2012-05-09 Glenn Morris <rgm@gnu.org>
2288
2289 * files.el (dir-locals-read-from-file):
2290 Mention dir-locals in any error message.
2291
2292 2012-05-09 Chong Yidong <cyd@gnu.org>
2293
2294 * emacs-lisp/package.el (package-built-in-p): Handle the `emacs'
2295 package (Bug#11410).
2296
2297 * emacs-lisp/package.el (package-buffer-info): Avoid putting local
2298 variables into description.
2299
2300 2012-05-09 Stefan Monnier <monnier@iro.umontreal.ca>
2301
2302 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list like
2303 shell-delimiter-argument-list (bug#11348).
2304 (shell-parse-pcomplete-arguments): Obey pcomplete-arg-quote-list.
2305
2306 2012-05-09 Juanma Barranquero <lekktu@gmail.com>
2307
2308 * textmodes/rst.el: Silence byte-compiler warnings.
2309 (rst-re-alist, rst-reset-section-caches): Move around.
2310 (rst-re): Use `characterp', not `char-valid-p'.
2311 (font-lock-beg, font-lock-end): Declare.
2312
2313 * progmodes/idlw-shell.el (specs): Remove reference to deleted
2314 variable `idlwave-shell-activate-alt-keybindings' and simplify.
2315
2316 * eshell/esh-cmd.el (eshell-debug-command): Fix typo in previous change.
2317
2318 2012-05-08 Glenn Morris <rgm@gnu.org>
2319
2320 * files.el (auto-mode-alist): Treat ".make" like ".mk".
2321
2322 2012-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
2323
2324 * vc/log-edit.el: Add GNU coding standards highlighting.
2325 (log-edit-font-lock-gnu-style)
2326 (log-edit-font-lock-gnu-keywords): New vars.
2327 (log-edit-font-lock-keywords): New fun.
2328 (log-edit-mode): Don't fold case in font-lock.
2329 (log-edit-font-lock-keywords): Do not assume case-folding.
2330
2331 * imenu.el: Misc cleanup. Make docstrings out of comments.
2332 Use lexical-binding.
2333 (imenu--index-alist, imenu--last-menubar-index-alist)
2334 (imenu-menubar-modified-tick): Use defvar-local.
2335 (imenu--split-menu): Remove unused var.
2336 (imenu--cleanup-seen): Declare as global.
2337 (imenu--cleanup): Use dolist.
2338
2339 * subr.el (defvar-local): Add debug spec and doc-string position.
2340
2341 2012-05-08 Glenn Morris <rgm@gnu.org>
2342
2343 * lisp/language/burmese.el, language/cham.el, language/czech.el:
2344 * language/english.el, language/georgian.el, language/greek.el:
2345 * language/japanese.el, language/khmer.el, language/korean.el:
2346 * language/lao.el, language/misc-lang.el, language/romanian.el:
2347 * language/sinhala.el, language/slovak.el, language/tai-viet.el:
2348 * language/thai.el, language/utf-8-lang.el:
2349 Remove no-byte-compile setting.
2350
2351 * play/zone.el (zone-pgm-stress): Don't pollute kill-ring. (Bug#11388)
2352
2353 2012-05-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2354
2355 * progmodes/make-mode.el (makefile-browse):
2356 Remove unnecessary interactive. (Bug#11324)
2357
2358 2012-05-07 Glenn Morris <rgm@gnu.org>
2359
2360 * forms-d2.el, forms-pass.el: Move to ../etc/forms directory.
2361
2362 * international/mule.el (find-auto-coding): Make "unibyte: t" obsolete.
2363
2364 2012-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
2365
2366 * loadup.el: Preload newcomment.el.
2367 * newcomment.el: Move autoload-only code to toplevel.
2368
2369 * buff-menu.el (list-buffers--refresh): Mark `size' as right-align.
2370 * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
2371 Handle new :right-align column property.
2372 (tabulated-list-print-col): Idem, plus use `display' text-property to
2373 try and preserve alignment for variable pitch fonts.
2374
2375 2012-05-07 Chong Yidong <cyd@gnu.org>
2376
2377 * emacs-lisp/tabulated-list.el: Add no-header-line alternative.
2378 (tabulated-list-use-header-line): New var.
2379 (tabulated-list-init-header): Use it.
2380 (tabulated-list-print-fake-header): New function.
2381 (tabulated-list-print): Use it.
2382 (tabulated-list-sort-button-map): Add non-header-line commands.
2383 (tabulated-list-init-header): Add column name property to basic
2384 labels as well.
2385 (tabulated-list-col-sort): Handle non-header-line button case.
2386 (tabulated-list--sort-by-column-name): Fix a corner case.
2387
2388 * buff-menu.el (list-buffers--refresh):
2389 Handle Buffer-menu-use-header-line.
2390
2391 2012-05-06 Chong Yidong <cyd@gnu.org>
2392
2393 * buff-menu.el: Convert to Tabulated List mode.
2394 (Buffer-menu-buffer+size-width): Make obsolete.
2395 (Buffer-menu-name-width, Buffer-menu-size-width): New variables.
2396 (Buffer-menu-mode-map): Inherit from tabulated-list-mode-map.
2397 (Buffer-menu-mode): Derive from tabulated-list-mode. Move command
2398 documentation into docstring of buffer-menu.
2399 (Buffer-menu-toggle-files-only): Add an informative message.
2400 (Buffer-menu-sort): Convert to alias for tabulated-list-sort.
2401 (Buffer-menu-buffer, Buffer-menu-beginning, Buffer-menu-mark)
2402 (Buffer-menu-unmark, Buffer-menu-backup-unmark)
2403 (Buffer-menu-delete, Buffer-menu-save, Buffer-menu-not-modified)
2404 (Buffer-menu-execute, Buffer-menu-select)
2405 (Buffer-menu-marked-buffers, Buffer-menu-toggle-read-only)
2406 (Buffer-menu-bury): Use Tabulated List machinery.
2407 (Buffer-menu-mouse-select, Buffer-menu-sort-by-column)
2408 (Buffer-menu-sort-button-map, Buffer-menu-make-sort-button):
2409 Delete.
2410 (list-buffers--refresh): New function.
2411 (list-buffers-noselect): Use it.
2412 (tabulated-list-entry-size->, Buffer-menu--pretty-name)
2413 (Buffer-menu--pretty-file-name): New helper functions.
2414
2415 * loadup.el: Preload tabulated-list.
2416
2417 * emacs-lisp/tabulated-list.el (tabulated-list-sort): Rename from
2418 tabulated-list-sort-column.
2419 (tabulated-list-init-header): Add the initial aligning space even
2420 if tabulated-list-padding is zero.
2421
2422 2012-05-06 Christopher Schmidt <christopher@ch.ristopher.com>
2423
2424 * emacs-lisp/cl-macs.el (cl-expr-contains): Handle cons cells
2425 whose cdr is not a cons cell correctly (bug#11038).
2426
2427 2012-05-06 Chong Yidong <cyd@gnu.org>
2428
2429 * emacs-lisp/tabulated-list.el (tabulated-list-format):
2430 Accept additional plist in column descriptors.
2431 (tabulated-list-init-header): Obey it.
2432 (tabulated-list-get-entry): New function.
2433 (tabulated-list-put-tag): Use it. Use string-width instead of
2434 length.
2435 (tabulated-list--column-number): New function.
2436 (tabulated-list-print): Use it.
2437 (tabulated-list-print-col): New function.
2438 Set `tabulated-list-column-name' property on each column's text.
2439 (tabulated-list-print-entry): Use it.
2440 (tabulated-list-delete-entry, tabulated-list-set-col):
2441 New functions.
2442 (tabulated-list-sort-column): New command (Bug#11337).
2443
2444 * buff-menu.el (list-buffers): Move C-x C-b binding from
2445 buff-menu.el to bindings.el.
2446
2447 * ebuff-menu.el (Electric-buffer-menu-undefined): Use the
2448 :advertised-binding feature.
2449
2450 2012-05-06 Troels Nielsen <bn.troels@gmail.com> (tiny change)
2451
2452 * progmodes/compile.el (compilation-internal-error-properties):
2453 Calculate start position correctly when end-col is set but
2454 end-line is not (Bug#11382).
2455
2456 2012-05-06 Wolfgang Jenkner <wjenkner@inode.at>
2457
2458 * man.el (Man-unindent): Use text-property-default-nonsticky to
2459 prevent untabify from inheriting face properties (Bug#11408).
2460
2461 2012-05-05 Stefan Merten <smerten@oekonux.de>
2462
2463 * textmodes/rst.el: Major merge with upstream development up to
2464 Docutils SVN r7399 / rst.el V1.2.1.
2465
2466 Clarify maintainership and authors.
2467
2468 (rst-extract-version, rst-cvs-header, rst-cvs-rev)
2469 (rst-cvs-timestamp, rst-svn-rev, rst-svn-timestamp)
2470 (rst-official-version, rst-official-cvs-rev, rst-version)
2471 (rst-package-emacs-version-alist): New functions and variables
2472 for version information.
2473
2474 (rst-bullets, rst-uri-schemes, rst-adornment-chars)
2475 (rst-max-inline-length, rst-re-alist-def, rst-re-alist)
2476 (rst-mode-syntax-table, rst-mode): New and corrected functions
2477 and variables representing reStructuredText features.
2478
2479 (rst-re): New function for reStructuredText regexes. Use in
2480 many places.
2481
2482 (rst-deprecated-keys, rst-call-deprecated, rst-define-key)
2483 (rst-mode-map): Rebind keys.
2484
2485 (rst-mode-lazy, rst-font-lock-keywords)
2486 (rst-font-lock-extend-region)
2487 (rst-font-lock-extend-region-internal)
2488 (rst-font-lock-extend-region-extend)
2489 (rst-font-lock-find-unindented-line-limit)
2490 (rst-font-lock-find-unindented-line-match)
2491 (rst-adornment-level, rst-font-lock-adornment-level)
2492 (rst-font-lock-adornment-match)
2493 (rst-font-lock-handle-adornment-pre-match-form)
2494 (rst-font-lock-handle-adornment-matcher): Major revision of
2495 font-locking. Integrate with other code. Use `jit-lock-mode'.
2496
2497 (rst-preferred-adornments, rst-adjust-hook)
2498 (rst-new-adornment-down, rst-preferred-bullets)
2499 (rst-preferred-bullets, rst-indent, rst-indent-width)
2500 (rst-indent-field, rst-indent-literal-normal)
2501 (rst-indent-literal-minimized, rst-indent-comment): Change,
2502 extend and improve customization.
2503
2504 (rst-line-homogeneous-p, rst-line-homogeneous-nodent-p)
2505 (rst-normalize-cursor-position, rst-get-decoration)
2506 (rst-straighten-deco-spacing, rst-re-bullets, rst-re-items)
2507 (rst-rstrip, rst-toc-insert-find-delete-contents)
2508 (rst-shift-fill-region, rst-compute-bullet-tabs)
2509 (rst-debug-print-tabs, rst-debug-mark-found)
2510 (rst-shift-region-guts, rst-shift-region-right)
2511 (rst-shift-region-left, rst-use-char-classes)
2512 (rst-font-lock-keywords-function)
2513 (rst-font-lock-indentation-point)
2514 (rst-font-lock-find-unindented-line-begin)
2515 (rst-font-lock-find-unindented-line-end)
2516 (rst-font-lock-find-unindented-line)
2517 (rst-font-lock-adornment-point, rst-font-lock-level)
2518 (rst-adornment-level-alist): Remove functions and variables.
2519
2520 (rst-compare-adornments, rst-get-adornment-match)
2521 (rst-suggest-new-adornment, rst-get-adornments-around)
2522 (rst-adornment-complete-p, rst-get-next-adornment)
2523 (rst-adjust-adornment, rst-display-adornments-hierarchy)
2524 (rst-straighten-adornments): Standardize function names to
2525 use "adornment" instead of "decoration". Correct callers.
2526 Similar standardizing in many places.
2527
2528 (rst-update-section, rst-adjust, rst-promote-region)
2529 (rst-enumerate-region, rst-bullet-list-region)
2530 (rst-repeat-last-character): Correct use of `interactive'.
2531
2532 (rst-classify-adornment, rst-find-all-adornments)
2533 (rst-get-hierarchy, rst-adjust-adornment, rst-toc-update)
2534 (rst-find-leftmost-column, rst-repeat-last-character):
2535 Refactor functions.
2536
2537 (rst-find-title-line, rst-reset-section-caches)
2538 (rst-get-adornments-around, rst-adjust-adornment-work)
2539 (rst-arabic-to-roman, rst-roman-to-arabic)
2540 (rst-insert-list-pos, rst-insert-list-new-item)
2541 (rst-insert-list-continue, rst-insert-list, rst-forward-line):
2542 New functions.
2543
2544 (rst-all-sections, rst-section-hierarchy)
2545 (rst-arabic-to-roman, rst-initial-enums, rst-initial-items):
2546 New variables.
2547
2548 (rst-toc-return-wincfg, rst-toc-quit-window): Use window
2549 configuration instead of only buffer. Change where necessary.
2550
2551 (rst-line-tabs, rst-compute-tabs, rst-indent-line)
2552 (rst-shift-region, rst-adaptive-fill): New functions for
2553 indentation and filling.
2554
2555 (rst-comment-line-break, rst-comment-indent)
2556 (rst-comment-insert-comment, rst-comment-region)
2557 (rst-uncomment-region): New functions for handling comments.
2558
2559 (rst-compile): Quote shell arguments.
2560
2561 (rst-compile-pdf-preview, rst-compile-slides-preview):
2562 Delete temporary files after use.
2563
2564 2012-05-05 Glenn Morris <rgm@gnu.org>
2565
2566 * calendar/cal-html.el: Optionally include holidays in the output.
2567 Suggested by Ed Reingold <reingold@emr.cs.iit.edu>.
2568 (cal-html-holidays): New option.
2569 (cal-html-css-default): Add holiday entry.
2570 (holiday-in-range): Autoload it.
2571 (cal-html-htmlify-entry): Add optional class argument.
2572 (cal-html-htmlify-list): Add optional holidays argument.
2573 (cal-html-insert-agenda-days): Include holidays in the output.
2574 (cal-html-one-month): Maybe include holidays.
2575
2576 * calendar/holidays.el (holiday-in-range):
2577 Move here from cal-tex-list-holidays.
2578 * calendar/cal-tex.el (cal-tex-list-holidays):
2579 Make it an obsolete alias for holiday-in-range. Update all callers.
2580
2581 2012-05-05 Chong Yidong <cyd@gnu.org>
2582
2583 * select.el (xselect--encode-string): Always use utf-8 for TEXT on
2584 Nextstep.
2585
2586 2012-05-05 Ransom Williams <auvergnerw@gmail.com> (tiny change)
2587
2588 * files.el (file-auto-mode-skip): New var.
2589 (set-auto-mode-1): Use it.
2590
2591 2012-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
2592
2593 * repeat.el: Use lexical-binding.
2594 (repeat-last-self-insert, repeat-num-input-keys-at-self-insert)
2595 (repeat-undo-count): Remove.
2596 (repeat):
2597 * progmodes/octave-mod.el (octave-abbrev-start):
2598 * progmodes/f90.el (f90-abbrev-start):
2599 * face-remap.el (text-scale-adjust):
2600 * kmacro.el (kmacro-call-macro): Use set-temporary-overlay-map.
2601
2602 * emacs-lisp/pcase.el (pcase--let*): New function.
2603 (pcase--expand, pcase-codegen, pcase--q1): Use it to reduce nesting
2604 a bit more.
2605 (pcase--split-pred): Be more clever about ruling out overlap between
2606 a predicate and some constant pattern.
2607 (pcase--q1): Use `null' instead of (eq foo nil).
2608
2609 * subr.el (setq-local, defvar-local): New macros.
2610 (kbd): Redefine as an alias.
2611 (with-selected-window): Leave unrelated frames alone.
2612 (set-temporary-overlay-map): New function.
2613
2614 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2615
2616 * subr.el (user-error): New function.
2617 * window.el (switch-to-buffer):
2618 * vc/smerge-mode.el (smerge-resolve-function, smerge-resolve)
2619 (smerge-match-conflict):
2620 * simple.el (previous-matching-history-element)
2621 (next-matching-history-element, goto-history-element, undo-more)
2622 (undo-start):
2623 * progmodes/etags.el (visit-tags-table-buffer, find-tag-tag)
2624 (find-tag-noselect, find-tag-in-order, etags-goto-tag-location)
2625 (next-file, tags-loop-scan, list-tags, complete-tag):
2626 * progmodes/compile.el (compilation-loop):
2627 * mouse.el (mouse-minibuffer-check):
2628 * man.el (Man-bgproc-sentinel, Man-goto-page):
2629 * info.el (Info-find-node-2, Info-extract-pointer, Info-history-back)
2630 (Info-history-forward, Info-follow-reference, Info-menu)
2631 (Info-extract-menu-item, Info-extract-menu-counting)
2632 (Info-forward-node, Info-backward-node, Info-next-menu-item)
2633 (Info-last-menu-item, Info-next-preorder, Info-last-preorder)
2634 (Info-next-reference, Info-prev-reference, Info-index)
2635 (Info-index-next, Info-follow-nearest-node)
2636 (Info-copy-current-node-name):
2637 * imenu.el (imenu--make-index-alist)
2638 (imenu-default-create-index-function, imenu-add-to-menubar):
2639 * files.el (basic-save-buffer, recover-file):
2640 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2641 * emacs-lisp/checkdoc.el (checkdoc-continue, checkdoc-comments)
2642 (checkdoc-message-text, checkdoc-defun):
2643 * dabbrev.el (dabbrev-completion, dabbrev--abbrev-at-point):
2644 * cus-edit.el (customize-changed-options, customize-rogue)
2645 (customize-saved, custom-variable-set, custom-variable-mark-to-save)
2646 (custom-variable-mark-to-reset-standard)
2647 (custom-variable-reset-backup, custom-face-mark-to-reset-standard)
2648 (custom-file):
2649 * completion.el (check-completion-length):
2650 * comint.el (comint-search-arg)
2651 (comint-previous-matching-input-string-position)
2652 (comint-previous-matching-input)
2653 (comint-replace-by-expanded-history-before-point, comint-send-input)
2654 (comint-copy-old-input, comint-backward-matching-input)
2655 (comint-goto-process-mark, comint-set-process-mark):
2656 * calendar/calendar.el (calendar-cursor-to-date): Use it.
2657 * bindings.el (debug-ignored-errors): Remove regexps, add `user-error'.
2658
2659 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
2660
2661 * dabbrev.el (dabbrev--ignore-case-p): New function.
2662 (dabbrev-completion, dabbrev-expand, dabbrev--substitute-expansion):
2663 Use it.
2664
2665 * files.el (automount-dir-prefix): Mark as obsolete.
2666
2667 2012-05-04 Glenn Morris <rgm@gnu.org>
2668
2669 * patcomp.el, play/bruce.el: Move to obsolete/.
2670
2671 2012-05-04 Paul Eggert <eggert@cs.ucla.edu>
2672
2673 Fix minor Y10k bugs.
2674 * arc-mode.el (archive-unixdate):
2675 * autoinsert.el (auto-insert-alist):
2676 * calc/calc-forms.el (math-this-year):
2677 * emacs-lisp/copyright.el (copyright-current-year)
2678 (copyright-update-year, copyright):
2679 * tar-mode.el (tar-clip-time-string):
2680 * time.el (display-time-update):
2681 Don't assume years have 4 digits.
2682
2683 2012-05-04 Chong Yidong <cyd@gnu.org>
2684
2685 * dos-w32.el (file-name-buffer-file-type-alist)
2686 (direct-print-region-use-command-dot-com):
2687 * ffap.el (ffap-menu-regexp):
2688 * find-file.el (ff-special-constructs):
2689 * follow.el (follow-debug):
2690 * forms.el (forms--debug):
2691 * iswitchb.el (iswitchb-all-frames):
2692 * ido.el (ido-all-frames):
2693 * emacs-lisp/timer.el (timer-max-repeats):
2694 * mail/feedmail.el (feedmail-mail-send-hook)
2695 (feedmail-mail-send-hook-queued):
2696 * mail/footnote.el (footnote-signature-separator):
2697 * mail/mailabbrev.el (mail-alias-separator-string)
2698 (mail-abbrev-mode-regexp):
2699 * mail/rmail.el (rmail-speedbar-match-folder-regexp):
2700 * progmodes/idlwave.el (idlwave-libinfo-file)
2701 (idlwave-default-completion-case-is-down)
2702 (idlwave-library-routines): Convert defvars to defcustoms.
2703
2704 * mail/rmail.el (rmail-decode-mime-charset):
2705 * progmodes/idlw-shell.el (idlwave-shell-print-expression-function)
2706 (idlwave-shell-fix-inserted-breaks)
2707 (idlwave-shell-activate-alt-keybindings)
2708 (idlwave-shell-use-breakpoint-glyph):
2709 * facemenu.el (facemenu-unlisted-faces): Delete obsolete vars.
2710
2711 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2712
2713 * minibuffer.el (completion--twq-all): Beware completion-ignore-case.
2714
2715 2012-05-03 Wilson Snyder <wsnyder@wsnyder.org>
2716
2717 * progmodes/verilog-mode.el (font-lock-keywords):
2718 Fix mis-highligting auto. Reported by Craig Barner.
2719 (verilog-auto, verilog-auto-undef): Add AUTOUNDEF to remove
2720 defines from global name space. Reported by Dan Dever.
2721 (verilog-auto-reset, verilog-auto-reset-widths)
2722 (verilog-auto-tieoff): Support using unbased numbers for
2723 AUTORESET and AUTOTIEOFF.
2724 (verilog-submit-bug-report): Update variable list.
2725 (verilog-read-auto-params): Fix AUTOINPUT regexps containing
2726 parenthesis from not matching. Reported by Michael Rytting.
2727 (verilog-auto-template-lint): Fix hash error when linting modules
2728 with no used templates.
2729 (verilog-warn, verilog-warn-error)
2730 (verilog-warn-fatal): When non-interactive report multiple
2731 warnings before exiting. Suggested by Brad Dobbie.
2732 (verilog-auto-template-lint, verilog-auto-template-warn-unused)
2733 (verilog-read-auto-template): Add `verilog-auto-template-warn-unused'
2734 to report unused template errors. Reported by Brad Dobbie.
2735 (verilog-read-decls): Fix AUTOWIRE etc on supply0, supply1 type
2736 nets, bug438. Reported by Vns Blore.
2737 (verilog-auto-inout-module, verilog-auto-reg)
2738 (verilog-read-decls, verilog-read-sub-decls-sig)
2739 (verilog-signals-edit-wire-reg, verilog-signals-with):
2740 Fix passing of Verilog data types in ANSI input/output ports
2741 such as "output logic" into the AUTOs. Special case "wire" and
2742 "reg" for backwards compatibility presuming Verilog 2001.
2743 (verilog-auto-ascii-enum): Add "auto enum" as alias.
2744 (verilog-preprocess): Fix replication of preprocess output.
2745 Reported by Brad Dobbie.
2746 (verilog-auto-inst-interfaced-ports):
2747 Create verilog-auto-inst-interfaced-ports, bug429.
2748 Reported by Julian Gorfajn.
2749 (verilog-after-save-font-hook)
2750 (verilog-before-save-font-hook): New variable.
2751 (verilog-modi-cache-results, verilog-save-font-mod-hooked)
2752 (verilog-save-font-mods): Wrap disabling fontification, reported
2753 by David Rogoff.
2754 (verilog-do-indent, verilog-pretty-declarations-auto)
2755 (verilog-sk-def-reg): Fix obeying `verilog-auto-lineup', bug305.
2756 Reported by Pierre-David Pfister.
2757 (verilog-set-auto-endcomments): Fix endtask auto comments outside
2758 of class declarations, bug292. Reported by Kevin Heilman.
2759 (verilog-read-decls): Fix 'parameter type' not appearing in
2760 AUTOINSTPARAM, bug340. Reported by Jonathan Greenlaw.
2761 (verilog-auto-logic): Fix when AUTOLOGIC present to properly do
2762 AUTOINPUTs, bug411. Reported by Jonathan Greenlaw.
2763 (verilog-read-auto-lisp): Avoid syntax-ppss warning on AUTOLISP.
2764 Reported by David Kravitz.
2765
2766 2012-05-03 Michael McNamara <mac@mail.brushroad.com>
2767
2768 * progmodes/verilog-mode.el (verilog-pretty-expr): Don't line up
2769 assignment with tests in ifs and for loops.
2770 (verilog-extended-complete-re, verilog-complete-reg): Change so
2771 that DPI inport functions don't look like fuction declarations.
2772 (verilog-pretty-expr): Don't line up assignment
2773 operations to the test and increment in if and for loops
2774 (verilog-extended-complete-re, verilog-complete-reg): Change so
2775 that DPI inport functions don't look like fuction declarations
2776
2777 2012-05-03 Kenichi Handa <handa@m17n.org>
2778
2779 * mail/rmailmm.el (rmail-show-mime): Catch an error caused by text
2780 decoding, and show a warning message without signaling an error
2781 (Bug#11282).
2782
2783 2012-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
2784
2785 * emacs-lisp/bytecomp.el
2786 (byte-compile-file-form-custom-declare-variable): Compile all elements,
2787 since cconv.el might have introduced :fun-body, internal-make-closure,
2788 and friends for bytecomp to handle (bug#11391).
2789 * custom.el (defcustom): Avoid ((λ ..) ..).
2790
2791 2012-05-02 Stefan Monnier <monnier@iro.umontreal.ca>
2792
2793 * subr.el (read-passwd): Better clean after ourselves (bug#11392).
2794
2795 2012-05-02 Juanma Barranquero <lekktu@gmail.com>
2796
2797 * notifications.el (dbus-debug):
2798 * term/linux.el (gpm-mouse-enable):
2799 * term/screen.el (xterm-register-default-colors): Declare.
2800
2801 2012-05-02 Chong Yidong <cyd@gnu.org>
2802
2803 * cus-start.el (gc-cons-percentage, exec-suffixes)
2804 (dos-display-scancodes, dos-hyper-key, dos-super-key)
2805 (dos-keypad-mode, debug-on-signal, vertical-centering-font-regexp)
2806 (make-cursor-line-fully-visible, void-text-area-pointer)
2807 (font-list-limit): Add customization data.
2808
2809 * allout.el (allout-exposure-change-functions)
2810 (allout-structure-added-functions)
2811 (allout-structure-deleted-functions)
2812 (allout-structure-shifted-functions): Rename abnormal hooks from
2813 *-hook, and convert to defcustoms.
2814 (allout-after-copy-or-kill-hook, allout-post-undo-hook):
2815 Convert to defcustoms.
2816 (allout-mode-hook, allout-mode-deactivate-hook): Doc fix.
2817
2818 * allout-widgets.el: Hook callers changed.
2819
2820 2012-05-02 Eli Zaretskii <eliz@gnu.org>
2821
2822 * mail/rmail.el (rmail-yank-current-message): Use the encoding of
2823 the yanked message in preference to the default value of
2824 buffer-file-coding-system.
2825
2826 2012-05-02 Martin Rudalics <rudalics@gmx.at>
2827
2828 * window.el (display-buffer--action-function-custom-type):
2829 Fix entry.
2830
2831 2012-05-02 Alan Mackenzie <acm@muc.de>
2832
2833 * progmodes/cc-defs.el (c-version): Update to 5.32.3.
2834
2835 2012-05-01 Glenn Morris <rgm@gnu.org>
2836
2837 * cus-start.el (suggest-key-bindings): Remove, now it is in Lisp.
2838
2839 * eshell/esh-cmd.el (eshell-debug-command): Doc fix. Add :set.
2840
2841 * cus-edit.el (custom-variable-documentation): Simplify with format.
2842
2843 2012-05-01 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2844 Stefan Monnier <monnier@iro.umontreal.ca>
2845
2846 * simple.el (suggest-key-bindings, execute-extended-command):
2847 Move from keyboard.c.
2848
2849 2012-05-01 Chong Yidong <cyd@gnu.org>
2850
2851 * follow.el: Eliminate advice.
2852 (set-process-filter, process-filter, sit-for): Advice deleted.
2853 (follow-mode-off-hook): Obsolete hook removed.
2854 (follow-avoid-tail-recenter-p, follow-process-filter-alist):
2855 Vars deleted.
2856 (follow-auto): Use a :set function.
2857 (follow-mode): Rewritten. Don't advise process filters.
2858 (follow-switch-to-current-buffer-all, follow-scroll-up)
2859 (follow-scroll-down): Assume follow-mode is bound.
2860 (follow-comint-scroll-to-bottom)
2861 (follow-align-compilation-windows): New functions.
2862 (follow--window-sorter): New function.
2863 (follow-all-followers): Use it to explicitly sort windows by their
2864 positions; don't make assumptions about next-window order.
2865 (follow-windows-start-end, follow-delete-other-windows-and-split)
2866 (follow-calc-win-start): Doc fix.
2867 (follow-windows-aligned-p, follow-select-if-visible): Don't call
2868 vertical-motion unnecessarily.
2869 (follow-adjust-window): New function.
2870 (follow-post-command-hook): Use it.
2871 (follow-call-set-process-filter, follow-call-process-filter)
2872 (follow-intercept-process-output, follow-tidy-process-filter-alist)
2873 (follow-stop-intercept-process-output, follow-generic-filter):
2874 Functions deleted.
2875 (follow-scroll-bar-toolkit-scroll, follow-scroll-bar-drag)
2876 (follow-scroll-bar-scroll-up, follow-scroll-bar-scroll-down):
2877 New functions, replacing advice on scroll-bar-* commands.
2878 (follow-mwheel-scroll): New function (Bug#4112).
2879
2880 * comint.el (comint-adjust-point): New function.
2881 (comint-postoutput-scroll-to-bottom): Use it.
2882 Call follow-comint-scroll-to-bottom for Follow mode buffers.
2883
2884 2012-05-01 Glenn Morris <rgm@gnu.org>
2885
2886 * term/AT386.el, term/apollo.el, term/bobcat.el, term/cygwin.el:
2887 * term/iris-ansi.el, term/linux.el, term/lk201.el, term/news.el:
2888 * term/screen.el, term/vt102.el, term/vt125.el, term/vt200.el:
2889 * term/vt201.el, term/vt220.el, term/vt240.el, term/vt300.el:
2890 * term/vt320.el, term/vt400.el, term/vt420.el, term/wyse50.el:
2891 Remove no-byte-compile setting.
2892
2893 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
2894
2895 * minibuffer.el (completion-table-with-quoting): Fix compatibility
2896 all-completions code to not return a number in the last cdr.
2897
2898 2012-04-30 Leo Liu <sdl.web@gmail.com>
2899
2900 * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
2901 read-only error.
2902
2903 2012-04-29 Chong Yidong <cyd@gnu.org>
2904
2905 * follow.el (follow-calc-win-end): Rewrite to handle partial
2906 screen lines correctly (Bug#8390).
2907 (follow-avoid-tail-recenter): Minor cleanup.
2908
2909 2012-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
2910
2911 Avoid the obsolete `assoc' package.
2912 * speedbar.el (speedbar-refresh): Avoid adelete.
2913 (speedbar-file-lists): Simplify and avoid aput.
2914 * man.el (Man--sections, Man--refpages): New vars, replacing
2915 Man-sections-alist and Man-refpages-alist.
2916 (Man-build-section-alist, Man-build-references-alist):
2917 Use them; avoid aput.
2918 (Man--last-section, Man--last-refpage): New vars.
2919 (Man-follow-manual-reference): Use them.
2920 Use the `default' arg of completing-read.
2921 (Man-goto-section): Idem. Move prompt to the `interactive' spec.
2922
2923 2012-04-27 Chong Yidong <cyd@gnu.org>
2924
2925 * vc/diff.el (diff-sentinel): Go to bob (Bug#10259).
2926
2927 * startup.el (x-apply-session-resources): New function.
2928
2929 * term/ns-win.el (ns-initialize-window-system):
2930 * term/w32-win.el (w32-initialize-window-system):
2931 * term/x-win.el (x-initialize-window-system): Use it to properly
2932 set menu-bar-mode and other vars from X resources, even if the
2933 initial frame is not a window-system frame (Bug#2299).
2934
2935 * subr.el (read-key): Avoid running filter function when setting
2936 up temporary tool bar entries (Bug#9922).
2937
2938 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
2939
2940 * vc/vc-git.el (vc-git-state): Fix regexp matching diff output.
2941 (Bug#11344)
2942
2943 2012-04-27 Chong Yidong <cyd@gnu.org>
2944
2945 * select.el (xselect--encode-string): New function, split from
2946 xselect-convert-to-string.
2947 (xselect-convert-to-string): Use it.
2948 (xselect-convert-to-filename, xselect-convert-to-os)
2949 (xselect-convert-to-host, xselect-convert-to-user): Ensure that
2950 returned strings are properly encoded (Bug#11315).
2951
2952 2012-04-27 Chong Yidong <cyd@gnu.org>
2953
2954 * simple.el (delete-active-region): Move to killing custom group.
2955
2956 2012-04-27 Andreas Schwab <schwab@linux-m68k.org>
2957
2958 * progmodes/which-func.el (which-func-current): Quote %
2959 characters for mode-line processing.
2960
2961 2012-04-27 Chong Yidong <cyd@gnu.org>
2962
2963 * xml.el (xml-parse-region, xml-parse-tag): Avoid errors due to
2964 reaching eob (Bug#11286).
2965
2966 2012-04-27 Eli Zaretskii <eliz@gnu.org>
2967
2968 * progmodes/gdb-mi.el (gdb-control-level): New variable.
2969 (gdb): Make it buffer-local and init to zero.
2970 (gdb-control-commands-regexp): New variable.
2971 (gdb-send): Don't wrap in "-interpreter-exec console" if
2972 gdb-control-level is positive. Increment gdb-control-level
2973 whenever the command matches gdb-control-commands-regexp, and
2974 decrement it each time the command is "end". (Bug#11279)
2975
2976 2012-04-27 Martin Rudalics <rudalics@gmx.at>
2977
2978 * window.el (adjust-window-trailing-edge, enlarge-window)
2979 (shrink-window, window-resize):
2980 * mouse.el (mouse-drag-line): Fix resizing of minibuffer
2981 windows (Bug#11276).
2982
2983 2012-04-27 Chong Yidong <cyd@gnu.org>
2984
2985 * progmodes/pascal.el (pascal--extra-indent): Rename from ind, to
2986 fix "missing prefix" warning. All callers changed.
2987
2988 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
2989
2990 * emacs-lisp/assoc.el: Move to obsolete/.
2991
2992 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
2993
2994 * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352).
2995
2996 * term/ns-win.el (ns-define-service):
2997 * progmodes/pascal.el (pascal-goto-defun):
2998 * progmodes/js.el (js--read-tab):
2999 * progmodes/etags.el (tags-lazy-completion-table):
3000 * emacs-lisp/syntax.el (syntax-propertize-via-font-lock):
3001 * emacs-lisp/ewoc.el (ewoc--wrap):
3002 * emacs-lisp/assoc.el (aput, adelete, amake):
3003 * doc-view.el (doc-view-convert-current-doc):
3004 * vc/diff.el (diff-no-select): Replace lexical-let by lexical-binding.
3005
3006 2012-04-26 Chong Yidong <cyd@gnu.org>
3007
3008 * image.el (image-type-from-buffer): Only return supported image
3009 type (Bug#9045).
3010
3011 * vc/diff-mode.el (diff-beginning-of-hunk): Return a meaningful
3012 value, for symmetry with diff-end-of-hunk.
3013 (diff-split-hunk, diff-find-source-location)
3014 (diff-ignore-whitespace-hunk, diff-refine-hunk): Use it.
3015 (diff-bounds-of-hunk, diff-bounds-of-file): New functions.
3016 (diff-restrict-view, diff-hunk-kill, diff-file-kill): Use them to
3017 compute the relevant hunk or file properly (Bug#6005).
3018 (diff-file-junk-re): Add bzr's "modified file" tag (Bug#6041).
3019
3020 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
3021
3022 * vc/vc-mtn.el:
3023 * vc/vc-hg.el:
3024 * vc/vc-git.el:
3025 * vc/vc-dir.el:
3026 * vc/vc-cvs.el:
3027 * vc/vc-bzr.el:
3028 * vc/vc-arch.el:
3029 * vc/vc.el: Replace lexical-let by lexical-binding.
3030 * minibuffer.el (lazy-completion-table): Avoid ((λ ...) ...).
3031 * emacs-lisp/cl-macs.el (lexical-let): Fix use in lexical-binding.
3032 * emacs-lisp/cconv.el (cconv-analyse-form): Warn use of ((λ ...) ...).
3033
3034 2012-04-26 Chong Yidong <cyd@gnu.org>
3035
3036 * vc/diff-mode.el (diff-undo): New command (Bug#5302).
3037 (diff-mode-shared-map): Bind it to / and [remap undo].
3038
3039 * vc/ediff-wind.el (ediff-setup-windows-default): New function.
3040 (ediff-window-setup-function): Use it as the default, to set up
3041 windows based on whether the current frame is graphical (Bug#2138).
3042 (ediff-choose-window-setup-function-automatically): Make obsolete.
3043
3044 * vc/ediff-init.el: Always define ediff-pixel-width/height.
3045
3046 2012-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
3047
3048 * ffap.el: Remove old code for obsolete package.
3049 (ffap-complete-as-file-p): Remove.
3050
3051 Use completion-table-with-quoting for comint and pcomplete.
3052 * comint.el (comint--unquote&requote-argument)
3053 (comint--unquote-argument, comint--requote-argument): New functions.
3054 (comint--unquote&expand-filename, comint-unquote-filename): Obsolete.
3055 (comint-quote-filename): Use regexp-opt-charset.
3056 (comint--common-suffix, comint--common-quoted-suffix)
3057 (comint--table-subvert): Remove.
3058 (comint-unquote-function, comint-requote-function): New vars.
3059 (comint--complete-file-name-data): Use them with
3060 completion-table-with-quoting.
3061 * pcmpl-unix.el (pcomplete/scp): Use completion-table-subvert.
3062 * pcomplete.el (pcomplete-arg-quote-list)
3063 (pcomplete-quote-arg-hook, pcomplete-quote-argument): Obsolete.
3064 (pcomplete-unquote-argument-function): Default to non-nil.
3065 (pcomplete-unquote-argument): Simplify.
3066 (pcomplete--common-quoted-suffix): Remove.
3067 (pcomplete-requote-argument-function): New var.
3068 (pcomplete--common-suffix): New function.
3069 (pcomplete-completions-at-point): Use completion-table-with-quoting
3070 and completion-table-subvert.
3071
3072 * minibuffer.el: Use completion-table-with-quoting for read-file-name.
3073 (minibuffer--double-dollars): Preserve properties.
3074 (completion--sifn-requote): New function.
3075 (completion--file-name-table): Rewrite using it and c-t-with-quoting.
3076
3077 * minibuffer.el: Add support for completion of quoted/escaped data.
3078 (completion-table-with-quoting, completion-table-subvert): New funs.
3079 (completion--twq-try, completion--twq-all): New functions.
3080 (completion--nth-completion): New function.
3081 (completion-try-completion, completion-all-completions): Use it.
3082
3083 2012-04-25 Leo Liu <sdl.web@gmail.com>
3084
3085 * progmodes/python.el (python-pdbtrack-get-source-buffer):
3086 Use compilation-message if available to find real filename.
3087
3088 2012-04-25 Chong Yidong <cyd@gnu.org>
3089
3090 * vc/diff-mode.el (diff-setup-whitespace): New function.
3091 (diff-mode): Use it.
3092
3093 * vc/diff.el (diff-sentinel):
3094 * vc/vc.el (vc-diff-finish): Call diff-setup-whitespace to assign
3095 Whitespace mode variables based on diff style (Bug#8612).
3096
3097 2012-04-25 Leo Liu <sdl.web@gmail.com>
3098
3099 * progmodes/python.el (python-send-region): Add suffix .py to the
3100 temp file.
3101
3102 * files.el (auto-mode-alist): Use javascript-mode instead.
3103
3104 2012-04-25 Alex Harsanyi <AlexHarsanyi@gmail.com>
3105
3106 Sync with soap-client repository. Support SOAP simpleType (Bug#10331).
3107
3108 * soap-client.el (soap-resolve-references-for-sequence-type)
3109 (soap-resolve-references-for-array-type): Hack to prevent self
3110 references, see Bug#9.
3111 (soap-parse-envelope): Report the contents of the 'detail' node
3112 when receiving a fault reply.
3113 (soap-parse-envelope): Report the contents of the entire 'detail' node.
3114
3115 * soap-inspect.el (soap-sample-value-for-simple-type)
3116 (soap-inspect-simple-type): New function.
3117
3118 * soap-client.el (soap-simple-type): New struct.
3119 (soap-default-xsd-types, soap-default-soapenc-types)
3120 (soap-decode-basic-type, soap-encode-basic-type):
3121 support unsignedInt and double basic types.
3122 (soap-resolve-references-for-simple-type)
3123 (soap-parse-simple-type, soap-encode-simple-type): New function.
3124 (soap-parse-schema): Parse xsd:simpleType declarations.
3125
3126 * soap-client.el (soap-default-xsd-types)
3127 (soap-default-soapenc-types): Add integer, byte and anyURI types.
3128 (soap-parse-complex-type-complex-content): Use `soap-wk2l' to find
3129 the local name of "soapenc:Array".
3130 (soap-decode-basic-type, soap-encode-basic-type): Support encoding
3131 decoding integer, byte and anyURI xsd types.
3132
3133 2012-04-25 Chong Yidong <cyd@gnu.org>
3134
3135 * cus-edit.el (custom-buffer-create-internal): Update header text.
3136
3137 2012-04-25 Eli Zaretskii <eliz@gnu.org>
3138
3139 * progmodes/gdb-mi.el (gdb-init-1): Condition Windows-specific
3140 settings on 'system-type', not on 'window-system'. On MS-Windows,
3141 set interactive-mode on in GDB.
3142
3143 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3144
3145 * progmodes/ruby-mode.el: Simplify last change, and cleanup code.
3146 (ruby-syntax-propertize-regexp): Remove.
3147 (ruby-syntax-propertize-function): Split regexp into chunks.
3148 Match following code directly.
3149
3150 2012-04-24 Dmitry Gutov <dgutov@yandex.ru>
3151
3152 * progmodes/ruby-mode.el: Handle Cucumber defs (bug#6286).
3153 (ruby-syntax-propertize-regexp): New function.
3154 (ruby-syntax-propertize-function): Use it to handle regexp not preceded
3155 by a special keyword.
3156
3157 * progmodes/ruby-mode.el: Handle general delimited literals (bug#6286).
3158 (ruby-syntax-general-delimiters-goto-beg)
3159 (ruby-syntax-propertize-general-delimiters): New functions.
3160 (ruby-syntax-propertize-function): Use them to handle GDL.
3161 (ruby-font-lock-keywords): Move old handling of GDL...
3162 (ruby-font-lock-syntactic-keywords): .. to here.
3163 (ruby-calculate-indent): Adjust indentation for GDL.
3164
3165 2012-04-24 Michael Albinus <michael.albinus@gmx.de>
3166
3167 * notifications.el (top): Remove unneeded declarations.
3168 (notifications-specification-version): Change to "1.2".
3169 (notifications-interface, notifications-notify-method)
3170 (notifications-close-notification-method): Fix docstring.
3171 (notifications-get-capabilities-method): New defconst.
3172 (notifications-notify): Add :action-items, :resident and
3173 :transient hints. Change "image_data" to "image-data" and
3174 "image_path" to "image-path".
3175 (notifications-get-capabilities): New defun.
3176
3177 2012-04-24 Leo Liu <sdl.web@gmail.com>
3178
3179 * progmodes/python.el: Move hideshow setup to the end.
3180
3181 2012-04-24 Martin Rudalics <rudalics@gmx.at>
3182
3183 * window.el (handle-select-window): Clear echo area since this is
3184 no more done by read_char (Bug#11304).
3185
3186 2012-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
3187
3188 * ibuffer.el (ibuffer-mode-map): Bind `/ m' to filter-used-mode
3189 and `/ M' to filter-derived-mode.
3190 * ibuf-ext.el (ibuffer-list-buffer-modes): Simplify; avoid add-to-list.
3191 (ibuffer-filter-by-mode, ibuffer-filter-by-used-mode)
3192 (ibuffer-mark-by-mode): Use default rather than initial-input.
3193 (ibuffer-filter-by-derived-mode): Autoload and require-match.
3194
3195 2012-04-24 Ivan Andrus <darthandrus@gmail.com> (tiny change)
3196
3197 * ibuf-ext.el (ibuffer-list-buffer-modes): Add `include-parents' arg.
3198 (ibuffer-filter-by-derived-mode): New filter.
3199 * ibuffer.el (ibuffer-mode-map): Bind to `/ w'.
3200
3201 2012-04-23 Andreas Politz <politza@fh-trier.de>
3202
3203 * subr.el (accept-change-group): Fix arg usage (Bug#6095).
3204
3205 2012-04-23 Chong Yidong <cyd@gnu.org>
3206
3207 * cus-edit.el (customize-apropos, customize-apropos-options):
3208 Disable matching of non-option variables (Bug#11176).
3209 (customize-option, customize-option-other-window)
3210 (customize-changed-options): Doc fix.
3211 (customize-apropos-options, customize-apropos-faces)
3212 (customize-apropos-groups): Use apropos-read-pattern (Bug#11124).
3213
3214 * apropos.el (apropos-read-pattern): Make prompt less cryptic.
3215 Fix word list splitting (Bug#11132).
3216 (apropos-symbol, apropos-keybinding, apropos-label)
3217 (apropos-property, apropos-function-button)
3218 (apropos-variable-button, apropos-misc-button): New faces.
3219 (apropos-symbol-face, apropos-keybinding-face)
3220 (apropos-label-face, apropos-property-face, apropos-match-face):
3221 Variables removed (Bug#8396).
3222 (apropos-library-button, apropos-format-plist, apropos-print)
3223 (apropos-print-doc, apropos-describe-plist): Callers changed.
3224
3225 2012-04-23 Michael Albinus <michael.albinus@gmx.de>
3226
3227 * net/xesam.el (xesam-mode-map): Use let-bound map in
3228 initialization. (Bug#11292)
3229
3230 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3231
3232 Preserve ispell session localwords when switching back to
3233 original buffer.
3234
3235 * ispell.el (ispell-buffer-session-localwords): New buffer-local
3236 variable to hold buffer session localwords.
3237 (ispell-kill-ispell): add option 'clear to delete session
3238 localwords.
3239 (ispell-command-loop, ispell-change-dictionary)
3240 (ispell-buffer-local-words): Preserve session localwords when
3241 needed.
3242
3243 * flyspell.el (flyspell-process-localwords, flyspell-do-correct):
3244 Preserve session localwords when needed.
3245
3246 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3247
3248 * ispell.el (ispell-insert-word) Remove unneeded function using
3249 obsolete `translation-table-for-input'.
3250 (ispell-word, ispell-process-line, ispell-complete-word):
3251 Use plain `insert' instead of removed `ispell-insert-word'.
3252
3253 2012-04-22 Chong Yidong <cyd@gnu.org>
3254
3255 * cus-edit.el (custom-variable-menu)
3256 (custom-variable-reset-saved, custom-face-menu)
3257 (custom-face-reset-saved): If there is no saved value, make the
3258 "reset-saved" operation bring back the default (Bug#9509).
3259 (custom-face-state): Properly detect themed faces.
3260
3261 * faces.el (face-spec-set): Stop supporting deprecated form of
3262 third arg.
3263
3264 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
3265
3266 Move functions from C to Lisp. Make non-blocking method calls
3267 the default. Implement further D-Bus standard interfaces.
3268
3269 * net/dbus.el (dbus-message-internal): Declare function.
3270 Remove unneeded function declarations.
3271 (defvar dbus-message-type-invalid, dbus-message-type-method-call)
3272 (dbus-message-type-method-return, dbus-message-type-error)
3273 (dbus-message-type-signal): Declare variables. Remove local
3274 definitions.
3275 (dbus-interface-dbus, dbus-interface-peer)
3276 (dbus-interface-introspectable, dbus-interface-properties)
3277 (dbus-path-emacs, dbus-interface-emacs, dbus-return-values-table):
3278 Adapt docstring.
3279 (dbus-interface-objectmanager): New defconst.
3280 (dbus-call-method, dbus-call-method-asynchronously)
3281 (dbus-send-signal, dbus-method-return-internal)
3282 (dbus-method-error-internal, dbus-register-service)
3283 (dbus-register-signal, dbus-register-method): New defuns, moved
3284 from dbusbind.c
3285 (dbus-call-method-handler, dbus-setenv)
3286 (dbus-get-all-managed-objects, dbus-managed-objects-handler):
3287 New defuns.
3288 (dbus-call-method-non-blocking): Make it an obsolete function.
3289 (dbus-unregister-object, dbus-unregister-service)
3290 (dbus-handle-event, dbus-register-property)
3291 (dbus-property-handler): Obey the new structure of
3292 `bus-registered-objects'.
3293 (dbus-introspect): Use `dbus-call-method'. Use a timeout.
3294 (dbus-get-property, dbus-set-property, dbus-get-all-properties):
3295 Use `dbus-call-method'.
3296
3297 2012-04-22 Chong Yidong <cyd@gnu.org>
3298
3299 * cus-edit.el (custom-commands, custom-reset-menu)
3300 (Custom-reset-standard): Tweak labels.
3301 (custom-reset-button-menu): Change default to t.
3302 (custom-buffer-create-internal): For the custom-reset-button-menu
3303 case, put the revert button first.
3304 (custom-group-subtitle): New face.
3305 (custom-group-value-create): Align docstring to a specific column.
3306
3307 * wid-edit.el (widget-documentation-link-add): Don't handle
3308 indentation in this function.
3309 (widget-documentation-string-indent-to): New function.
3310 (widget-documentation-string-value-create): Use it.
3311
3312 * autorevert.el (auto-revert):
3313 * epg-config.el (epg):
3314 * ibuffer.el (ibuffer):
3315 * mpc.el (mpc):
3316 * ses.el (ses):
3317 * eshell/eshell.el (eshell):
3318 * net/ange-ftp.el (ange-ftp):
3319 * progmodes/ebnf2ps.el (postscript):
3320 * progmodes/flymake.el (flymake):
3321 * progmodes/prolog.el (prolog):
3322 * progmodes/verilog-mode.el (verilog-mode):
3323 * progmodes/which-func.el (which-func):
3324 * term/xterm.el (xterm):
3325 * textmodes/picture.el (picture):
3326 * textmodes/tildify.el (tildify):
3327 * vc/ediff.el (ediff): Tweak defgroups to improve presentation in
3328 customization buffers.
3329
3330 2012-04-22 Alan Mackenzie <acm@muc.de>
3331
3332 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
3333 Adding a ) can hide the resulting (..) from searches. Fix it.
3334 Bound the backward search to the position of the existing (.
3335
3336 2012-04-21 Juanma Barranquero <lekktu@gmail.com>
3337
3338 * progmodes/verilog-mode.el (verilog-mode): Check whether
3339 which-func-modes is t before adding verilog-mode.
3340 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3341
3342 2012-04-21 Leo Liu <sdl.web@gmail.com>
3343
3344 * net/rcirc.el (rcirc): Avoid error when process-contact returns t.
3345
3346 2012-04-21 Michael Vehrs <Michael.Burschik@gmx.de>
3347
3348 * woman.el: Add support for "T{ T}" tbl syntax, and fix the
3349 filling of the last column of a table (Bug#5635).
3350 (woman-find-next-control-line): New arg, specifying an additional
3351 regexp component for the control line.
3352 (woman2-roff-buffer): Use it.
3353 (woman-break-table): New function.
3354 (woman2-TS): Use it.
3355
3356 2012-04-21 Chong Yidong <cyd@gnu.org>
3357
3358 * woman.el (woman-set-buffer-display-table, woman-decode-region)
3359 (woman-horizontal-escapes, woman-negative-vertical-space)
3360 (woman-tab-to-tab-stop, woman2-fc, woman2-TS)
3361 (WoMan-warn-ignored): Use ?\s instead of ?\ .
3362
3363 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
3364
3365 * minibuffer.el (completion-file-name-table): Complete user names.
3366
3367 2012-04-20 Leo Liu <sdl.web@gmail.com>
3368
3369 * font-lock.el (lisp-font-lock-keywords-2): Add pcase, pcase-let
3370 and pcase-let*.
3371
3372 2012-04-20 Chong Yidong <cyd@gnu.org>
3373
3374 * server.el (server-execute): Respect initial-buffer-choice if it
3375 is a string and there are no files to open (Bug#2825).
3376 (server-create-window-system-frame, server-create-tty-frame):
3377 Don't switch buffers here.
3378 (server-process-filter): Only try to open a window system frame if
3379 compiled with graphical support (Bug#8314).
3380
3381 2012-04-20 Dan Nicolaescu <dann@gnu.org>
3382
3383 * battery.el (battery-echo-area-format): Display remaining time
3384 for sysfs backend too (Bug#11269).
3385 (battery-linux-sysfs): Fix conditional for the charge.
3386
3387 2012-04-20 Chong Yidong <cyd@gnu.org>
3388
3389 * progmodes/gdb-mi.el (gdb): Revert previous change.
3390 (gdb-inferior-io--init-proc): New function.
3391 (gdb-init-1): Use it.
3392 (gdb-inferior-io-sentinel): New sentinel for the gdb-inferior pty,
3393 responsible for allocating a new pty and hooking it to gdb when
3394 the old pty gets an EIO due to process exit.
3395 (gdb-delchar-or-quit): New command. Bind it in gdb-mi buffers.
3396 (gdb-tooltip-print): Don't use obsolete tooltip-use-echo-area.
3397 (gdb-inferior-io--maybe-delete-pty): Move into gdb-reset.
3398
3399 2012-04-20 Eli Zaretskii <eliz@gnu.org>
3400
3401 * window.el (window-min-size, window-sizable, window-min-delta)
3402 (window-max-delta, window--resizable, window-resizable)
3403 (window-total-size, window-full-height-p, window-full-width-p)
3404 (window-in-direction, window--resize-mini-window, window-resize)
3405 (window--resize-child-windows-normal)
3406 (window--resize-child-windows, window--resize-siblings)
3407 (window--resize-this-window, adjust-window-trailing-edge)
3408 (enlarge-window, shrink-window): Doc fixes.
3409
3410 2012-04-20 Chong Yidong <cyd@gnu.org>
3411
3412 * progmodes/gdb-mi.el (gdb-inferior-io--maybe-delete-pty):
3413 New function to call delete-process on the gdb-inferior buffer's pty.
3414 (gdb-reset): Use it, instead of relying on kill-buffer to kill the
3415 pty process (Bug#11273).
3416 (gdb-update): New arg to suppress talking to the gdb process.
3417 (gdb-done-or-error): Use it.
3418 (gdb-stopped-functions): Rename from gdb-stopped-hooks.
3419 (gdb): Call gdb-inferior-io--maybe-delete-pty as a workaround for
3420 sentinel not being called.
3421
3422 * comint.el (make-comint-in-buffer, comint-exec): Doc fix.
3423
3424 * progmodes/grep.el (grep, rgrep): Doc fix (Bug#11268).
3425
3426 2012-04-20 Glenn Morris <rgm@gnu.org>
3427
3428 * net/network-stream.el (open-network-stream): Doc fix.
3429
3430 2012-04-20 Chong Yidong <cyd@gnu.org>
3431
3432 * emacs-lisp/tabulated-list.el (tabulated-list-print): Fix typos.
3433
3434 2012-04-20 Alan Mackenzie <acm@muc.de>
3435
3436 Ensure searching for keywords is case sensitive.
3437
3438 * progmodes/cc-cmds.el (c-electric-brace, c-electric-lt-gt)
3439 (c-electric-paren, c-beginning-of-defun, c-end-of-defun)
3440 (c-defun-name, c-mark-function, c-cpp-define-name)
3441 (c-comment-indent, c-scan-conditionals, c-indent-defun)
3442 (c-context-line-break): Bind case-fold-search to nil.
3443
3444 * progmodes/cc-mode.el (c-font-lock-fontify-region):
3445 Bind case-fold-search to nil.
3446
3447 2012-04-20 Chong Yidong <cyd@gnu.org>
3448
3449 * mail/sendmail.el (mail-bury): Call return action with the right
3450 Rmail buffer (Bug#11242).
3451
3452 * server.el (server-process-filter): Handle corner case where both
3453 tty and nowait options are present (Bug#11102).
3454
3455 2012-04-20 Eli Zaretskii <eliz@gnu.org>
3456
3457 * version.el (emacs-bzr-version, emacs-bzr-get-version): Doc fixes.
3458 (top level): Put into the executable the ident-style '$Id:' tag on
3459 windows-nt as well.
3460
3461 2012-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
3462
3463 * electric.el (electric-indent-post-self-insert-function): Check that
3464 electric-indent-mode is enabled in current buffer.
3465
3466 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
3467
3468 * imenu.el (imenu-progress-message): Restore; it is "used" in
3469 erc/erc-imenu.el and net/snmp-mode.el.
3470
3471 2012-04-19 Juanma Barranquero <lekktu@gmail.com>
3472
3473 * avoid.el (mouse-avoidance-mode): Mark unused arg.
3474 (mouse-avoidance-nudge-mouse): Remove unused binding.
3475
3476 * bs.el (bs-toggle-readonly): Call `toggle-read-only' interactively.
3477
3478 * descr-text.el (describe-char):
3479 * progmodes/python.el (python-describe-symbol):
3480 Don't call `toggle-read-only', set `buffer-read-only'.
3481
3482 * imenu.el (imenu-default-goto-function): Mark unused args.
3483 (imenu-progress-message): Remove obsolete macro; all callers changed.
3484
3485 * subr.el (keymap-canonicalize): Remove unused binding.
3486 (read-passwd): Mark unused arg.
3487
3488 * tutorial.el (tutorial--display-changes): Remove unused binding.
3489 (tutorial--save-tutorial-to): Remove unused variable.
3490
3491 * emacs-lisp/package.el (define-package, package-menu-mark-delete)
3492 (package-menu-mark-install, package-menu-mark-unmark): Mark unused args.
3493 (package-generate-autoloads, package-menu--generate)
3494 (package-menu--find-upgrades): Remove unused bindings.
3495
3496 * emulation/cua-rect.el (cua-restrict-regexp-rectangle)
3497 (cua-restrict-prefix-rectangle): Doc fixes. Remove unused bindings.
3498 (cua--mouse-ignore, cua--delete-rectangle, cua--extract-rectangle)
3499 (cua--indent-rectangle, cua-open-rectangle, cua-close-rectangle)
3500 (cua-blank-rectangle, cua-string-rectangle, cua-replace-in-rectangle)
3501 (cua-incr-rectangle, cua-sequence-rectangle, cua--convert-rectangle-as)
3502 (cua--rectangle-aux-replace, cua--left-fill-rectangle)
3503 (cua-scroll-rectangle-up, cua-scroll-rectangle-down)
3504 (cua-delete-char-rectangle): Mark unused args.
3505 (cua-align-rectangle): Remove unused binding.
3506
3507 * mail/rmail.el (compilation--message->loc)
3508 (epa--find-coding-system-for-mime-charset): Declare.
3509
3510 * net/dbus.el (dbus-register-service): Declare.
3511 (dbus-name-owner-changed-handler): Remove unused binding.
3512
3513 * nxml/nxml-mode.el (nxml-electric-slash, nxml-in-mixed-content-p)
3514 (nxml-compute-indent-from-matching-start-tag): Remove unused variables.
3515 (nxml-scan-backward-within): Mark unused arg.
3516 (nxml-dynamic-markup-word): Remove unused binding.
3517
3518 * mouse.el (mouse-menu-major-mode-map):
3519 * emacs-lisp/authors.el (authors-scan-change-log)
3520 (authors-add-to-author-list):
3521 * emacs-lisp/avl-tree.el (avl-tree--enter-balance):
3522 * emacs-lisp/smie.el (smie-auto-fill):
3523 * mail/sendmail.el (mail-bury):
3524 * mail/unrmail.el (unrmail):
3525 * net/tls.el (open-tls-stream):
3526 * textmodes/picture.el (picture-mouse-set-point):
3527 Remove unused bindings.
3528
3529 2012-04-19 Michael Albinus <michael.albinus@gmx.de>
3530
3531 * net/tramp.el (tramp-action-password): Let-bind
3532 `enable-recursive-minibuffers' to t.
3533
3534 2012-04-18 Sam Steingold <sds@gnu.org>
3535
3536 * progmodes/gud.el (gud-key-prefix): Use :type 'key-sequence
3537 instead of 'string to accommodate values like [f11].
3538 Always use `vconcat' instead of `concat' on it, like in `gud-def'.
3539 * progmodes/gdb-mi.el: Likewise.
3540
3541 2012-04-18 Leo Liu <sdl.web@gmail.com>
3542
3543 * abbrev.el (edit-abbrevs): Move point to the abbrev table of
3544 current buffer.
3545 (prepare-abbrev-list-buffer): Enter edit-abbrevs-mode only if
3546 LOCAL is nil.
3547
3548 2012-04-18 Chong Yidong <cyd@gnu.org>
3549
3550 * simple.el (line-move): Use forward-line if in batch mode
3551 (Bug#11053).
3552
3553 2012-04-18 Christopher Schmidt <christopher@ch.ristopher.com>
3554
3555 * files.el (after-find-file): Do not try to add a final newline if
3556 the buffer is read-only (Bug#11156).
3557
3558 2012-04-17 Richard Stallman <rms@gnu.org>
3559
3560 * mail/rmail.el (rmail-start-mail):
3561 Pass (rmail-mail-return...) for the return-action.
3562 Pass (rmail-yank-current-message...) for the yank-action.
3563 (rmail-yank-current-message): New function.
3564 (rmail-mail): Pass the Rmail buffer, not view buffer, for replybuffer.
3565 (rmail-reply): Likewise.
3566 (rmail-forward): Pass the Rmail buffer, not nil, for replybuffer.
3567
3568 * mail/sendmail.el (mail-bury): Choose the first rmail-mode
3569 buffer, not the last. Reject temp buffers. Use the rmail-mode
3570 buffer, not newbuf.
3571
3572 2012-04-17 Juanma Barranquero <lekktu@gmail.com>
3573
3574 * server.el (server-ensure-safe-dir): Simplify.
3575
3576 2012-04-17 Stefan Monnier <monnier@iro.umontreal.ca>
3577
3578 * emacs-lisp/smie.el: Provide smarter auto-filling.
3579 (smie-auto-fill): New function.
3580 (smie-setup): Use it.
3581
3582 * newcomment.el (comment-choose-indent): Obey comment-inline-offset.
3583
3584 2012-04-17 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
3585
3586 * newcomment.el (comment-inline-offset): New custom var (bug#11090).
3587 (comment-indent): Use it.
3588
3589 2012-04-17 Vincent Belaïche <vincentb1@users.sourceforge.net>
3590
3591 * ses.el: The overall change is to add cell renaming, that is
3592 setting fancy names for cell symbols other than name matching
3593 "\\`[A-Z]+[0-9]+\\'" regexp .
3594 (ses-localvars): Add ses--renamed-cell-symb-list.
3595 (ses-create-cell-variable): New defun.
3596 (ses-destroy-cell-variable-range): Respect ses--numrows, ses--numcols.
3597 (ses-relocate-formula): Relocate formulas only for cells the
3598 symbols of which are not renamed, i.e. symbols whose names do not
3599 match regexp "\\`[A-Z]+[0-9]+\\'".
3600 (ses-relocate-all): Relocate values only for cells the symbols of
3601 which are not renamed.
3602 (ses-load): Create cells variables as the (ses-cell ...) are read,
3603 in order to check row col consistency with cell symbol name only
3604 for cells that are not renamed.
3605 (ses-replace-name-in-formula): New defun.
3606 (ses-rename-cell): New defun.
3607
3608 2012-04-17 Peter Oliver <bzr@mavit.org.uk> (tiny change)
3609
3610 * progmodes/perl-mode.el (perl-indent-parens-as-block):
3611 New option (bug#11118).
3612 (perl-calculate-indent): Respect it.
3613
3614 2012-04-17 Glenn Morris <rgm@gnu.org>
3615
3616 * dired-aux.el (dired-mark-read-string): Doc fix.
3617
3618 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
3619
3620 * dired-aux.el (dired-mark-read-string): Offer optional completion.
3621 (dired-do-chxxx): Complete chown, chgrp over users, groups. (Bug#7900)
3622
3623 2012-04-17 Glenn Morris <rgm@gnu.org>
3624
3625 * mouse.el (mouse-drag-track):
3626 * speedbar.el (speedbar-frame-mode):
3627 Use auto-hscroll-mode rather than the alias automatic-hscrolling.
3628
3629 2012-04-16 Leo Liu <sdl.web@gmail.com>
3630
3631 * progmodes/python.el: Trivial cleanup.
3632
3633 2012-04-16 Glenn Morris <rgm@gnu.org>
3634
3635 * vc/vc.el (vc-string-prefix-p):
3636 * vc/pcvs-util.el (cvs-string-prefix-p):
3637 * textmodes/tex-mode.el (latex-string-prefix-p, tex-string-prefix-p):
3638 * mpc.el (mpc-string-prefix-p):
3639 Make all of these into obsolete aliases for string-prefix-p.
3640 Update callers.
3641 * vc/pcvs.el, vc/vc-dispatcher.el, vc/vc-dir.el: Update callers.
3642
3643 * textmodes/two-column.el: Move custom options to the start.
3644 (frame-width): Remove compat definition.
3645 (2C-associate-buffer, 2C-dissociate):
3646 Use with-current-buffer rather than save-excursion.
3647 (2C-dissociate): Force a mode-line update.
3648 (2C-autoscroll): Use ignore-errors.
3649
3650 * emacs-lisp/eieio-opt.el (describe-class, describe-generic):
3651 Autoload trivia.
3652
3653 * emacs-lisp/cl-extra.el (*random-state*):
3654 Remove unnecessary declaration.
3655
3656 * calendar/cal-tex.el (cal-tex-end-document): Trivial clarification.
3657
3658 * play/cookie1.el (cookie-snarf):
3659 Give an explicit error if input file cannot be read.
3660
3661 * play/yow.el (yow-file): Use expand-file-name rather than concat.
3662
3663 * progmodes/perl-mode.el (c-macro-expand):
3664 Remove unnecessary autoload (it is in loaddefs.el).
3665
3666 * textmodes/picture.el (picture-desired-column)
3667 (picture-update-desired-column): Convert comments to doc-strings.
3668 (picture-substitute): Remove function.
3669 (picture-mode-map): Initialize in the defvar.
3670
3671 * woman.el: Remove eval-after-load for tar-mode.
3672 * tar-mode.el (tar-mode-map): Add woman binding and menu entry.
3673 (woman-tar-extract-file): Autoload it.
3674
3675 * frame.el (automatic-hscrolling): Make this alias obsolete.
3676
3677 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3678
3679 * ispell.el (ispell-set-spellchecker-params): Post-process
3680 `ispell-dictionary-alist' to use [:alpha:] and utf-8 if possible.
3681 (ispell-dictionary-base-alist): Revert to original XEmacs
3682 friendly version for default. [:alpha:] will be added in
3683 `ispell-set-spellchecker-params' if needed
3684
3685 2012-04-16 Chong Yidong <cyd@gnu.org>
3686
3687 * image.el (imagemagick--extension-regexp): New variable.
3688 (imagemagick-register-types): Use it.
3689 (imagemagick-types-inhibit): Add :set function. Allow new value
3690 of t to inhibit all types.
3691
3692 * emacs-lisp/regexp-opt.el (regexp-opt-charset): Avoid cl macros,
3693 so we can preload it.
3694
3695 * loadup.el (fboundp): Preload regexp-opt, needed by
3696 imagemagick-register-types.
3697
3698 2012-04-15 Chong Yidong <cyd@gnu.org>
3699
3700 * frame.el (scrolling): Remove nearly unused customization group.
3701
3702 * scroll-all.el (scroll-all-mode): Move to windows group.
3703
3704 2012-04-15 Chong Yidong <cyd@gnu.org>
3705
3706 * bindings.el (goto-map): Bind goto-char to M-g c (Bug#11240).
3707
3708 2012-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
3709
3710 Avoid the use of ((lambda ...) ...) in lexical-binding code.
3711 * emacs-lisp/easy-mmode.el (define-minor-mode): Use funcall (bug#11241).
3712
3713 2012-04-15 Glenn Morris <rgm@gnu.org>
3714
3715 * simple.el (process-file-side-effects): Doc fix.
3716
3717 2012-04-15 Glenn Morris <rgm@gnu.org>
3718
3719 * international/mule-cmds.el (set-language-environment): Doc fix.
3720
3721 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
3722
3723 * server.el (server-auth-key, server-generate-key): Doc fixes.
3724 (server-get-auth-key): Doc fix. Use `string-match-p'.
3725 (server-start): Reflow docstring.
3726
3727 2012-04-14 Lars Ingebrigtsen <larsi@gnus.org>
3728
3729 * server.el (server-generate-key): `called-interactively-p'
3730 requires a parameter.
3731
3732 2012-04-14 Michal Nazarewicz <mina86@mina86.com>
3733
3734 * server.el (server-auth-key): New variable.
3735 (server-generate-key, server-get-auth-key): New function.
3736 (server-start): Use the new variable and functions to allow
3737 setting a permanent server key (bug#9423).
3738
3739 2012-04-14 Leo Liu <sdl.web@gmail.com>
3740
3741 * vc/diff-mode.el (diff-file-prev/next): Fix typo.
3742
3743 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
3744
3745 Spelling fixes.
3746 * hexl.el (hexl-rulerize): Rename from hexl-rulerise, since
3747 Emacs uses American spelling.
3748
3749 2012-04-14 Juanma Barranquero <lekktu@gmail.com>
3750
3751 * emacs-lock.el (emacs-lock-locked-buffer-functions): New hook.
3752 (emacs-lock--exit-locked-buffer): Return the locked buffer. Doc fix.
3753 (emacs-lock--kill-emacs-hook, emacs-lock--kill-emacs-query-functions)
3754 (emacs-lock--kill-buffer-query-functions): Run new hook. (Bug#11017)
3755
3756 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3757
3758 * progmodes/which-func.el (which-func-modes): Change default.
3759
3760 2012-04-14 Kim F. Storm <storm@cua.dk>
3761
3762 * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
3763 exchange-point-and-mark if cua-enable-cua-keys is nil (Bug#11191).
3764
3765 2012-04-14 Chong Yidong <cyd@gnu.org>
3766
3767 * custom.el (custom-theme-set-variables): Doc fix.
3768
3769 2012-04-14 Glenn Morris <rgm@gnu.org>
3770
3771 * international/mule.el (set-auto-coding-for-load): Doc fix.
3772
3773 2012-04-14 Alan Mackenzie <acm@muc.de>
3774
3775 * progmodes/cc-menus.el (cc-imenu-objc-generic-expression): Make
3776 imenu work again for Objective C Mode. Correct the *-index values,
3777 these having been disturbed by a previous change in 2011-08.
3778
3779 * progmodes/cc-engine.el (c-before-change-check-<>-operators):
3780 Correct two search limits.
3781
3782 2012-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
3783
3784 * startup.el (command-line-1): Inhibit splash from daemon (bug#10996).
3785
3786 2012-04-14 Andreas Schwab <schwab@linux-m68k.org>
3787
3788 * international/characters.el: Fix sorting.
3789
3790 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3791
3792 * international/characters.el: Add more missing Latin case pairs.
3793
3794 2012-04-14 Glenn Morris <rgm@gnu.org>
3795
3796 * files.el (dir-locals-set-class-variables): Doc fix.
3797
3798 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3799
3800 * international/characters.el: Add set-case-syntax-pair call for
3801 LATIN CAPITAL LETTER Y WITH DIAERESIS RET and its lower-case
3802 counterpart. (Bug#11209)
3803
3804 * simple.el (shell-command-on-region): Doc fix. (Bug#11208)
3805
3806 2012-04-14 Glenn Morris <rgm@gnu.org>
3807
3808 * calendar/holidays.el (calendar-check-holidays): Doc fix.
3809
3810 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3811
3812 * textmodes/ispell.el (ispell-dictionary-base-alist):
3813 Add data for Hebrew.
3814
3815 2012-04-14 Chong Yidong <cyd@gnu.org>
3816
3817 * net/rcirc.el (rcirc-cmd-quit):
3818 Revert 2012-03-18 change (Bug#11192).
3819
3820 2012-04-14 Glenn Morris <rgm@gnu.org>
3821
3822 * pcmpl-rpm.el (pcomplete/rpm): Handle -qf.
3823
3824 2012-04-14 Eli Zaretskii <eliz@gnu.org>
3825
3826 * minibuffer.el (completion-in-region-mode-map):
3827 Bind completion-help-at-point to M-? rather than ?. (Bug#11182)
3828
3829 2012-04-13 Vivek Dasmohapatra <vivek@etla.org>
3830
3831 * hexl.el (hexl-insert-char): Make display sizes other than 16 work.
3832
3833 2012-04-13 Masatake YAMATO <yamato@redhat.com>
3834
3835 * minibuffer.el (minibuffer-local-filename-syntax): New variable
3836 to allow `C-M-f' and `C-M-b' to move to the nearest path
3837 separator (bug#9511).
3838
3839 2012-04-13 Lars Ingebrigtsen <larsi@gnus.org>
3840
3841 * avoid.el: Require cl when compiling. And also move the
3842 `provide' to the end.
3843
3844 2012-04-13 Thierry Volpiatto <thierry.volpiatto@gmail.com>
3845
3846 * avoid.el (mouse-avoidance-banish-position): New variable.
3847 (mouse-avoidance-banish-destination): Use it (bug#10165).
3848
3849 2012-04-13 Leo Liu <sdl.web@gmail.com>
3850
3851 * progmodes/which-func.el (which-func-modes): Add objc-mode.
3852
3853 2012-04-13 Ken Brown <kbrown@cornell.edu>
3854
3855 * net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
3856 this is no longer needed now that cygstart understands file:// URLs.
3857 (browse-url-filename-alist): For the same reason, don't modify
3858 file:// URLs on Cygwin.
3859
3860 2012-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3861
3862 * emulation/cua-base.el (cua--pre-command-handler-1): Don't activate
3863 the region on shift if the binding is already shifted (bug#11221).
3864
3865 2012-04-12 Glenn Morris <rgm@gnu.org>
3866
3867 * mail/mailpost.el: Move to obsolete/.
3868
3869 2012-04-12 Drew Adams <drew.adams@oracle.com>
3870
3871 * imenu.el (imenu--generic-function): Ignore invisible definitions
3872 (bug#10123).
3873
3874 2012-04-12 Vivek Dasmohapatra <vivek@etla.org>
3875
3876 * hexl.el (hexl-bits): New variable.
3877 (hexl-options): Mention the variable in the doc string.
3878 (hexl-rulerise, hexl-line-displen): New functions.
3879 (hexl-mode): Mention the new variable.
3880 (hexl-mode, hexl-current-address, hexl-current-address):
3881 Use the displen.
3882 (hexl-ascii-start-column): New function.
3883 (hexl-address-to-marker, hexl-beginning-of-line, hexl-options)
3884 (hexl-insert-char, hexl-mode-ruler): Use the displen (bug#4941).
3885
3886 2012-04-12 Agustín Martín Domingo <agustin.martin@hispalinux.es>
3887
3888 * textmodes/flyspell.el (flyspell-large-region): For hunspell, use
3889 '("-i" ENCODING), in 2 separate command-line arguments, to specify
3890 the encoding, as expected by hunspell.
3891
3892 2012-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
3893
3894 * battery.el (battery--linux-sysfs-regexp): New const.
3895 (battery-status-function): Use it. Remove yeeloong special case.
3896 (battery-yeeloong-sysfs): Remove.
3897 (battery-echo-area-format): Remove yeeloong special case.
3898
3899 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3900
3901 * imenu.el (imenu-add-to-menubar): `current-local-map' can be nil.
3902 Reported by Noah Friedman.
3903
3904 * subr.el (read-passwd): Use read-string.
3905
3906 2012-04-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
3907
3908 * vcursor.el (vcursor-move): Increase the priority of the overlay
3909 (bug#9663).
3910
3911 2012-04-11 Deniz Dogan <deniz.a.m.dogan@gmail.com>
3912
3913 * net/rcirc.el (rcirc-kill-channel-buffers): New variable.
3914 (rcirc-kill-buffer-hook): Use it to kill channel buffers (bug#5128).
3915
3916 2012-04-11 William Stevenson <yhvh2000@gmail.com>
3917
3918 * textmodes/artist.el (artist-mode): Convert artist-mode to use
3919 define-minor-mode (bug#10760).
3920
3921 2012-04-11 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
3922
3923 * progmodes/grep.el (rgrep): Tweak the find command line so
3924 that directories matching `grep-find-ignored-files' won't be
3925 pruned (bug#10351).
3926
3927 2012-04-11 Chong Yidong <cyd@gnu.org>
3928
3929 * startup.el (command-line): Remove support for long-obsolete
3930 variable font-lock-face-attributes.
3931
3932 2012-04-11 Glenn Morris <rgm@gnu.org>
3933
3934 * vc/vc-bzr.el (vc-bzr-status): Avoid condition-case-unless-debug.
3935
3936 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3937
3938 * window.el (window--state-get-1): Obey window-point-insertion-type.
3939
3940 2012-04-11 Lennart Borgman <lennart.borgman@gmail.com>
3941
3942 * emacs-lisp/lisp.el (narrow-to-defun): `beginning-of-defun' goes
3943 to previous function when point is on the first character of a
3944 function. Take care of that in `narrow-to-defun' (bug#6157).
3945
3946 2012-04-11 Glenn Morris <rgm@gnu.org>
3947
3948 * vc/vc-bzr.el (vc-bzr-status): Handle all errors,
3949 not just file-errors.
3950
3951 * vc/vc-bzr.el (vc-bzr-sha1-program, sha1-program): Remove.
3952 (vc-bzr-sha1): Use internal sha1.
3953
3954 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
3955
3956 * progmodes/flymake.el (flymake-mode): Beware read-only dirs (bug#8954).
3957
3958 2012-04-10 Sébastien Gross <seb@chezwam.org> (tiny change)
3959
3960 * progmodes/hideshow.el (hs-hide-all): Don't infloop on comments
3961 that start in the middle of the line (bug#10496).
3962
3963 2012-04-10 Dan Nicolaescu <dann@gnu.org>
3964
3965 * battery.el (battery-linux-proc-acpi): Only one battery is
3966 discharged at a time, but that seems to confuse battery.el when
3967 computing `rate-type' for the battery not being discharged
3968 (bug#10332).
3969
3970 2012-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
3971
3972 * emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
3973
3974 * international/quail.el: Use dolist and simplify.
3975 (quail-define-package, quail-update-keyboard-layout)
3976 (quail-define-rules): Use dolist.
3977 (quail-insert-kbd-layout, quail-get-translation): CSE.
3978
3979 * tmm.el: Use dolist, remove left over hook.
3980 (tmm-prompt, tmm-define-keys, tmm-shortcut, tmm-get-keybind):
3981 Use dolist.
3982 (calendar-load-hook): Don't mess with it.
3983
3984 * vc/vc-annotate.el (vc-annotate-show-diff-revision-at-line-internal):
3985 Use derived-mode-p. Run the diff asynchronously.
3986
3987 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3988
3989 * obsolete/mouse-sel.el: Add an Obsolete-since header.
3990
3991 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
3992
3993 * misc.el: Display absolute path of loaded DLLs (bug#10424).
3994 (list-dynamic-libraries--loaded): New function.
3995 (list-dynamic-libraries--refresh): Use it.
3996
3997 2012-04-10 Nathan Weizenbaum <nweiz@google.com>
3998
3999 * progmodes/python.el (python-fill-paragraph):
4000 Make python-fill-region in a multiline string work when font-lock is
4001 disabled (bug#7018).
4002
4003 2012-04-10 Laimonas VÄ—bra <laimonas.vebra@gmail.com> (tiny change)
4004
4005 * language/european.el (cp775): Add oem/legacy (en)coding on
4006 DOS/MS Windows for the Baltic languages. There are still plenty
4007 of texts written in this encoding/codepage (bug#6519).
4008
4009 2012-04-10 Glenn Morris <rgm@gnu.org>
4010
4011 * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
4012 Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
4013
4014 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change)
4015
4016 * recentf.el (recentf-dialog-mode-map): Add two keybindings for
4017 next-line "n" and previous-line "p" in order to make recentf more
4018 consistent with ibuffer, dired or org-mode (bug#9387).
4019
4020 2012-04-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
4021
4022 * image.el (put-image): Return the overlay created instead of the
4023 optional input string (bug#7834). Note that this may break code
4024 that is (for some reason or other) depending on `put-image'
4025 returning the string.
4026
4027 * mouse-sel.el (mouse-sel-mode): Mark as obsolete (bug#6174).
4028
4029 * simple.el (zap-to-char): Allow zapping using input methods
4030 (bug#1580).
4031
4032 * textmodes/fill.el (fill-region): Leave point and mark where they
4033 were before filling (bug#5399).
4034
4035 2012-04-09 Glenn Morris <rgm@gnu.org>
4036
4037 * version.el (emacs-bzr-get-version):
4038 Handle lightweight checkouts of local branches.
4039
4040 2012-04-09 Andreas Schwab <schwab@linux-m68k.org>
4041
4042 * international/characters.el: Recover lost case pairs. (Bug#11209)
4043
4044 2012-04-09 Chong Yidong <cyd@gnu.org>
4045
4046 * custom.el (custom-variable-p): Return nil for non-symbol
4047 arguments instead of signaling an error.
4048 (user-variable-p): Obsolete alias for custom-variable-p.
4049
4050 * apropos.el (apropos-variable):
4051 * files-x.el (read-file-local-variable):
4052 * simple.el (set-variable):
4053 * woman.el (woman-mini-help):
4054 * emacs-lisp/byte-opt.el (side-effect-free-fns): Callers changed.
4055
4056 2012-04-09 Glenn Morris <rgm@gnu.org>
4057
4058 * startup.el (normal-top-level): Don't look for leim-list.el
4059 in places where it will not be found. (Bug#910)
4060
4061 * international/mule-cmds.el (set-default-coding-systems):
4062 * files.el (normal-mode):
4063 Remove guarded calls to ucs-set-table-for-input. (Bug#9821)
4064 This function was removed with ucs-tables.el in 2008.
4065
4066 2012-04-08 Eli Zaretskii <eliz@gnu.org>
4067
4068 * textmodes/ispell.el (ispell-check-version): For hunspell, set
4069 ispell-encoding8-command to "-i", without a trailing space.
4070 (ispell-start-process): For hunspell, use '("-i" ENCODING), in 2
4071 separate command-line arguments, to specify the encoding, since
4072 that's how hunspell expects it.
4073
4074 2012-04-08 Glenn Morris <rgm@gnu.org>
4075
4076 * loadup.el: Load bindings before cus-start.
4077 This reduces somewhat the number of "rogue" settings in emacs -Q.
4078
4079 2012-04-07 Glenn Morris <rgm@gnu.org>
4080
4081 * version.el (emacs-bzr-get-version): New function.
4082 (emacs-bzr-version): New variable.
4083 * loadup.el (emacs-bzr-version): Set it. (Bug#8054)
4084 * mail/emacsbug.el (report-emacs-bug): Include bzr version.
4085
4086 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4087
4088 * international/uni-bidi.el, international/uni-category.el:
4089 * international/uni-combining.el, international/uni-decimal.el:
4090 * international/uni-decomposition.el, international/uni-digit.el:
4091 * international/uni-lowercase.el, international/uni-mirrored.el:
4092 * international/uni-name.el, international/uni-numeric.el:
4093 * international/uni-titlecase.el, international/uni-uppercase.el:
4094 Update for Unicode 6.1.
4095
4096 2012-04-07 Eli Zaretskii <eliz@gnu.org>
4097
4098 * term/w32-win.el (dynamic-library-alist): Add libxml2 DLLs.
4099
4100 2012-04-05 Lars Magne Ingebrigtsen <larsi@gnus.org>
4101
4102 * window.el (shrink-window): Mention the `window-min-height'
4103 variable in the doc string.
4104
4105 2012-04-05 Bastien Guerry <bzg@altern.org>
4106
4107 * color.el (color-lighten-name): Fix typo.
4108
4109 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4110
4111 * server.el (server--on-display-p): New function.
4112 (server--on-display-p): Use it.
4113
4114 2012-04-04 Gabor Vida <vidagabor@gmail.com> (tiny change)
4115
4116 * ido.el (ido-wide-find-dirs-or-files): Use file-name-absolute-p
4117 (bug#11145).
4118
4119 2012-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
4120
4121 * comint.el (comint--common-quoted-suffix): Check string boundary
4122 before comparing (bug#11158).
4123 * pcomplete.el (pcomplete--common-quoted-suffix): Idem.
4124
4125 2012-04-04 Chong Yidong <cyd@gnu.org>
4126
4127 * minibuffer.el (completion-extra-properties): Doc fix.
4128
4129 * subr.el (delayed-warnings-hook): Doc fix.
4130
4131 2012-04-04 Daiki Ueno <ueno@unixuser.org>
4132
4133 * epa.el (epa--select-keys): Bind C-c C-c to finish the key
4134 selection (Bug#11159).
4135 (epa-insert-keys): Inform that the default public key will be
4136 exported if no key is selected.
4137
4138 2012-04-04 Richard Stallman <rms@gnu.org>
4139
4140 * mail/emacsbug.el (report-emacs-bug): Bind inhibit-read-only.
4141
4142 2012-04-03 Chong Yidong <cyd@gnu.org>
4143
4144 * mail/sendmail.el (mail-mode-map): Bind C-c C-i to
4145 mail-insert-file, not its obsolete alias mail-attach-file.
4146
4147 2012-04-03 Michael Albinus <michael.albinus@gmx.de>
4148
4149 * notifications.el (notifications-notify): Fix docstring.
4150
4151 2012-04-02 Glenn Morris <rgm@gnu.org>
4152
4153 * emacs-lisp/authors.el (authors-aliases): Another addition.
4154
4155 2012-04-02 Michael Albinus <michael.albinus@gmx.de>
4156
4157 * net/tramp-gvfs.el (tramp-gvfs-send-command): Apply
4158 `tramp-compat-call-process' instead of `tramp-local-call-process'.
4159 Reported by Magnus Henoch <magnus.henoch@gmail.com>.
4160
4161 2012-04-01 Chong Yidong <cyd@gnu.org>
4162
4163 * files.el (file-in-directory-p): Rename from file-subdir-of-p.
4164 Handle root directory properly.
4165 (copy-directory): Caller changed.
4166
4167 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4168 * net/tramp.el (tramp-file-name-for-operation): Callers changed.
4169
4170 2012-03-31 Glenn Morris <rgm@gnu.org>
4171
4172 * term/xterm.el (xterm-extra-capabilities): Doc fix.
4173
4174 * language/indian.el ("Devanagari"): Fix typo. (Bug#11103)
4175
4176 * calendar/calendar.el (calendar-window-list)
4177 (calendar-hide-window): Restore. (Bug#11140)
4178 (calendar-exit): Use calendar-window-list, calendar-hide-window again.
4179
4180 * emacs-lisp/edebug.el (edebug-unwrap-results): Doc fix.
4181
4182 2012-03-30 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4183
4184 * dired-aux.el (dired-copy-file-recursive, dired-create-files):
4185 Check if file is a symlink (Bug#10489).
4186
4187 * files.el (copy-directory): Likewise.
4188
4189 2012-03-30 Chong Yidong <cyd@gnu.org>
4190
4191 * image.el (imagemagick-types-inhibit)
4192 (imagemagick-register-types): Doc fix.
4193
4194 2012-03-30 Agustín Martín Domingo <agustin.martin@hispalinux.es>
4195
4196 * ispell.el (ispell-get-extended-character-mode):
4197 Disable extended-char-mode for hunspell. hunspell does not support it
4198 and treats ~word as ordinary words in pipe mode.
4199
4200 2012-03-30 Glenn Morris <rgm@gnu.org>
4201
4202 * tutorial.el (help-with-tutorial): Ensure local variables don't
4203 happen to make the buffer read-only. (Bug#11127)
4204
4205 2012-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
4206
4207 * progmodes/perl-mode.el (perl-indent-line): Use `noindent' in strings.
4208 (perl-calculate-indent): Return `noindent' in strings.
4209
4210 2012-03-28 Sam Steingold <sds@gnu.org>
4211
4212 * calendar/calendar.el (calendar-exit): Use `quit-windows-on'
4213 instead of the broken adhockery which does not prevent calendar
4214 buffers from being displayed at random after exit.
4215 (calendar-window-list, calendar-hide-window): Remove the broken
4216 adhockery.
4217
4218 2012-03-28 Glenn Morris <rgm@gnu.org>
4219
4220 * replace.el (query-replace-map): Doc fix.
4221
4222 2012-03-28 Andreas Schwab <schwab@linux-m68k.org>
4223
4224 * vc/vc-git.el (vc-git-state): Don't try to match all of the diff
4225 contents. (Bug#11109)
4226
4227 2012-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
4228
4229 * emacs-lisp/avl-tree.el (avl-tree--enter-balance): Fix paren typo
4230 (bug#11077).
4231 (avl-tree--check, avl-tree--check-node): New funs.
4232
4233 2012-03-27 Martin Rudalics <rudalics@gmx.at>
4234
4235 * window.el (switch-to-visible-buffer): New option.
4236 (switch-to-prev-buffer, switch-to-next-buffer):
4237 Observe switch-to-visible-buffer. Make sure that checking for a window
4238 showing a buffer already is done on the same frame.
4239
4240 2012-03-27 Glenn Morris <rgm@gnu.org>
4241
4242 * startup.el (mail-host-address): Doc fix.
4243
4244 2012-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
4245
4246 * emacs-lisp/bytecomp.el (byte-compile-constants-vector): Allow more
4247 than 197 variables.
4248
4249 2012-03-26 Ami Fischman <ami@fischman.org>
4250
4251 * vc/vc-git.el (vc-git-state): Avoid unnecessarily locking.
4252
4253 2012-03-26 Glenn Morris <rgm@gnu.org>
4254
4255 * files.el (save-buffers-kill-emacs): Doc fix.
4256
4257 * startup.el (normal-top-level, command-line, command-line-1):
4258 Give them doc strings.
4259
4260 2012-03-25 Eli Zaretskii <eliz@gnu.org>
4261
4262 * makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead
4263 of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
4264
4265 2012-03-25 Chong Yidong <cyd@gnu.org>
4266
4267 * custom.el (load-theme): Even if NO-ENABLE arg is t, reenable the
4268 theme if it was previously enabled before (Bug#11031).
4269
4270 * cus-theme.el (custom-theme-write-faces): Retrieve current face
4271 spec with custom-face-get-current-spec if its :shown-value is not
4272 determined yet (Bug#9337).
4273 (customize-create-theme, custom-theme-revert): Doc fixes.
4274
4275 * button.el (button-at): Minor addition to docstring.
4276
4277 2012-03-24 Simon Leinen <simon.leinen@gmail.com>
4278
4279 * vc/vc.el (vc-merge): Fix a prompt.
4280
4281 2012-03-24 Chong Yidong <cyd@gnu.org>
4282
4283 * mwheel.el (mwheel-scroll): Call deactivate-mark at the right
4284 point (Bug#9623).
4285
4286 * button.el (button-at): Minor addition to docstring.
4287
4288 2012-03-23 Stefan Monnier <monnier@iro.umontreal.ca>
4289
4290 * newcomment.el (comment-choose-indent): No space after BOL.
4291
4292 2012-03-22 Sam Steingold <sds@gnu.org>
4293
4294 * window.el (switch-to-prev-buffer): Revert last patch because the
4295 bug turned out to be an advertised feature (Elisp manual 28.14).
4296
4297 2012-03-22 Glenn Morris <rgm@gnu.org>
4298
4299 * vc/vc-bzr.el (vc-bzr-status-switches): New option. (Bug#6724)
4300 (vc-bzr-command): If running "status", pass vc-bzr-status-switches.
4301
4302 2012-03-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
4303
4304 * net/network-stream.el (network-stream-open-starttls): Make error
4305 message under Windows be less misleading.
4306
4307 2012-03-22 Liang Wang <netcasper@gmail.com> (tiny change)
4308
4309 * progmodes/etags.el (etags-list-tags): Only use tags which goto-func
4310 understands (bug#9942).
4311
4312 2012-03-22 Chong Yidong <cyd@gnu.org>
4313
4314 * simple.el (end-of-visible-line): Handle return value of
4315 next-single-property-change properly (Bug#9371).
4316
4317 2012-03-22 Kenichi Handa <handa@m17n.org>
4318
4319 * international/quail.el (quail-insert-kbd-layout): Fix previous
4320 change. To avoid unwanted bidi reordering, use
4321 bidi-string-mark-left-to-right instead of inserting LRO and PDF.
4322
4323 2012-03-21 Dmitry Gutov <dgutov@yandex.ru>
4324
4325 * progmodes/ruby-mode.el: Don't confuse "end:" for "end" (bug#10786).
4326 (ruby-block-end-re, ruby-delimiter, ruby-parse-partial)
4327 (ruby-beginning-of-indent): Be more careful with the difference
4328 between word-boundary and symbol boundary.
4329 (ruby-mode-syntax-table): Make : a symbol constituent.
4330
4331 2012-03-21 Andreas Politz <politza@fh-trier.de>
4332
4333 * outline.el (outline-flag-region): Evaporate overlays (bug#10789).
4334
4335 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4336
4337 * progmodes/etags.el (tags-completion-at-point-function):
4338 Improve last fix.
4339
4340 * files.el (move-file-to-trash): Files aren't regexps (bug#11055).
4341
4342 2012-03-21 Sam Steingold <sds@gnu.org>
4343
4344 * progmodes/etags.el (tags-completion-at-point-function):
4345 Avoid the error when point is inside the pattern.
4346
4347 2012-03-21 John Yates <john@yates-sheets.org> (tiny change)
4348
4349 * progmodes/hideshow.el (hs-inside-comment-p): Fix hiding of first
4350 line (Bug#10855).
4351
4352 2012-03-21 Drew Adams <drew.adams@oracle.com>
4353
4354 * info.el (Info-menu): Handle string value of FORK arg (Bug#10858).
4355
4356 2012-03-21 Anmol Khirbat <anmol@khirbat.net> (tiny change)
4357
4358 * ido.el (ido-set-current-directory, ido-read-internal)
4359 (ido-choose-completion-string, ido-completion-help): Handle nil
4360 value of ido-completion-buffer (Bug#11008).
4361
4362 2012-03-21 Sam Steingold <sds@gnu.org>
4363
4364 * window.el (switch-to-prev-buffer): Do not switch to a visible
4365 window previous buffer, just like with the frame previous buffers.
4366
4367 2012-03-21 Chong Yidong <cyd@gnu.org>
4368
4369 * faces.el (make-face, make-empty-face, copy-face):
4370 * face-remap.el (face-remap-add-relative, face-remap-set-base):
4371 Doc fixes.
4372
4373 2012-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
4374
4375 * wid-edit.el (widget-complete-field): Remove (bug#11051).
4376 (widget-complete): Remove broken use of it.
4377
4378 2012-03-20 Chong Yidong <cyd@gnu.org>
4379
4380 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
4381 Use string-width and truncate-string-width to handle arbitrary
4382 characters.
4383
4384 2012-03-20 Tassilo Horn <tassilo@member.fsf.org>
4385
4386 * textmodes/artist.el (artist-menu-map): Bind Rectangle menu item
4387 to draw rectangles, not squares. (Regression introduced by revno
4388 2011-03-02T03:48:01Z!cyd@stupidchicken.com)
4389
4390 2012-03-18 Chong Yidong <cyd@gnu.org>
4391
4392 * faces.el (face-spec-reset-face): Don't call display-graphic-p if
4393 it is not yet defined (for temacs).
4394
4395 2012-03-18 Leo Liu <sdl.web@gmail.com>
4396
4397 * net/rcirc.el (rcirc-cmd-quit): Allow quiting all servers with prefix.
4398
4399 2012-03-17 Eli Zaretskii <eliz@gnu.org>
4400
4401 * textmodes/ispell.el (ispell-skip-tib, ispell-keep-choices-win)
4402 (ispell-choices-win-default-height, ispell-silently-savep)
4403 (ispell-dictionary-alist, ispell-encoding8-command)
4404 (ispell-check-version, ispell-aspell-find-dictionary)
4405 (ispell-valid-dictionary-list, ispell-words-keyword)
4406 (ispell-get-word, ispell-internal-change-dictionary)
4407 (ispell-region, ispell-skip-region-list)
4408 (ispell-begin-skip-region-regexp, ispell-ignore-fcc)
4409 (ispell-process-line, ispell-minor-mode, ispell-minor-check)
4410 (ispell-message-text-end, ispell-message)
4411 (ispell-buffer-local-parsing): Doc fix.
4412
4413 2012-03-13 Jambunathan K <kjambunathan@gmail.com>
4414
4415 * htmlfontify.el: Add support for code block fontification for ODT
4416 export (Bug #9914).
4417 (hfy-optimisations): Define new option
4418 `body-text-only'
4419 (hfy-fontify-buffer): Honor above setting.
4420 (hfy-begin-span, hfy-end-span): New routines factored out form
4421 `hfy-fontify-buffer'.
4422 (hfy-begin-span-handler, hfy-end-span-handler): New variables
4423 that permit insertion of custom tags.
4424 (hfy-fontify-buffer): Use above handlers.
4425 (hfy-face-to-css-default): Same as the earlier `hfy-face-to-css'.
4426 (hfy-face-to-css): Re-defined to be a variable.
4427 (hfy-compile-stylesheet): Modify. Allow stylesheet to be built
4428 over multiple runs. This is made possible by having the caller let
4429 bind a special variable `hfy-user-sheet-assoc'.
4430 (htmlfontify-string): New defun.
4431 (hfy-compile-face-map): Make sure that the last char in the
4432 buffer is correctly fontified.
4433 (hfy-face-resolve-face): Whitespace only change.
4434
4435 2012-03-17 Eli Zaretskii <eliz@gnu.org>
4436
4437 * textmodes/ispell.el (ispell-get-decoded-string): Make the error
4438 message more clear.
4439
4440 2012-03-16 Leo Liu <sdl.web@gmail.com>
4441
4442 * emacs-lisp/copyright.el (copyright-year-ranges): Fix typo.
4443
4444 2012-03-16 Alan Mackenzie <acm@muc.de>
4445
4446 Further optimise the handling of large macros.
4447
4448 * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Use a
4449 limit to a call of `c-literal-limits'.
4450 (c-determine-+ve-limit): New function.
4451 (c-at-macro-vsemi-p): Move `c-in-literal' to the bottom of an `and'.
4452 (c-guess-basic-syntax): In macros, restrict a search limit to 2000.
4453 In CASE 5B, restrict a search limit to 500.
4454 (c-just-after-func-arglist-p): Obviouly wrong `or' -> `and'.
4455
4456 * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
4457 Restrict macro bounds to +-500 from after-change's BEG END.
4458
4459 2012-03-16 Leo Liu <sdl.web@gmail.com>
4460
4461 * font-lock.el (lisp-font-lock-keywords-2): Add letrec.
4462
4463 2012-03-16 Aaron S. Hawley <Aaron.S.Hawley@gmail.com>
4464
4465 * tar-mode.el (tar-mode): Fix saving by conditionally undoing
4466 `special-mode' setting of `buffer-read-only'. (Bug#11010)
4467
4468 2012-03-16 Glenn Morris <rgm@gnu.org>
4469
4470 * view.el (view-buffer, view-buffer-other-window)
4471 (view-buffer-other-frame): Doc fixes re special mode-class.
4472
4473 * subr.el (eval-after-load): If named feature is provided not from
4474 a file, run after-load forms. (Bug#10946)
4475
4476 * calendar/calendar.el (calendar-insert-at-column):
4477 Handle non-unit-width characters a bit better. (Bug#10978)
4478
4479 2012-03-15 Chong Yidong <cyd@gnu.org>
4480
4481 * emacs-lisp/ring.el (ring-extend): New function.
4482 (ring-insert+extend): Extend the ring correctly (Bug#11019).
4483
4484 * comint.el (comint-read-input-ring)
4485 (comint-add-to-input-history): Grow comint-input-ring lazily.
4486
4487 2012-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
4488
4489 * progmodes/perl-mode.el (perl-syntax-propertize-special-constructs):
4490 Fix up parsing of multiline twoarg non-paired elements (bug#11014).
4491
4492 * imenu.el: Fix multiple inheritance breakage (bug#9199).
4493 (imenu-add-to-menubar): Don't add a redundant index.
4494 (imenu-update-menubar): Handle a dynamically composed keymap.
4495
4496 2012-03-13 Katsumi Yamaoka <yamaoka@jpl.org>
4497
4498 * mail/sendmail.el (mail-encode-header):
4499 Bind rfc2047-encode-encoded-words to nil.
4500
4501 2012-03-13 Glenn Morris <rgm@gnu.org>
4502
4503 * calendar/calendar.el (calendar-string-spread):
4504 Handle non-unit-width characters a bit better. (Bug#10978)
4505
4506 2012-03-13 Leo Liu <sdl.web@gmail.com>
4507
4508 * vc/vc-hg.el (vc-hg-working-revision): Rework to work with both
4509 directory and file as argument (Bug#10822).
4510
4511 2012-03-13 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4512
4513 * progmodes/gdb-mi.el (gdb-invalidate-disassembly):
4514 For dynamically generated code, follow $PC.
4515 (gdb-disassembly-handler-custom): Handle no function name case.
4516
4517 2012-03-13 Tim Landscheidt <tim@tim-landscheidt.de> (tiny change)
4518
4519 * calendar/icalendar.el (icalendar-export-file, icalendar-import-file):
4520 * emulation/ws-mode.el (ws-query-replace):
4521 * sort.el (sort-regexp-fields):
4522 Fix missing trailing whitespace in interactive prompts. (Bug#11002)
4523
4524 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4525
4526 * dabbrev.el: Fix cycle completion order (bug#10963).
4527 (dabbrev--last-obarray, dabbrev--last-completion-buffer): Remove.
4528 (dabbrev-completion): Don't use an obarray; provide
4529 a cycle-sort-function.
4530
4531 2012-03-12 Leo Liu <sdl.web@gmail.com>
4532
4533 * simple.el (kill-new): Use equal-including-properties for comparison.
4534 (kill-do-not-save-duplicates): Doc fix.
4535
4536 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4537
4538 * dabbrev.el: Fix cycle completion (bug#10963).
4539 Use lexical binding and wrap to 80 columns.
4540 (dabbrev-completion): Delay computing the list of completions.
4541
4542 2012-03-12 Kenichi Handa <handa@m17n.org>
4543
4544 * international/quail.el (quail-insert-kbd-layout): Surround each
4545 row by LRO and PDF instead of inserting many LRMs. Pad the left
4546 and right of each non-spacing marks. Insert invisible space
4547 between lower and upper characters to prevent composition.
4548
4549 2012-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
4550
4551 * minibuffer.el (minibuffer-complete): Don't get confused when the
4552 function is run twice via different commands (bug#10958).
4553 (complete-with-action): Fix docstring.
4554
4555 2012-03-12 Chong Yidong <cyd@gnu.org>
4556
4557 * nxml/nxml-mode.el (nxml-mode-map): Do not bind C-RET (Bug#6776).
4558 (nxml-completion-at-point-function): New function.
4559 (nxml-mode): Use it.
4560 (nxml-bind-meta-tab-to-complete-flag): Default to t.
4561
4562 * emacs-lisp/package.el (package-unpack, package-unpack-single):
4563 Load generated autoloads file before byte compiling (Bug#10970).
4564 (package--make-autoloads-and-compile): New helper fun.
4565
4566 2012-03-12 Christopher Schmidt <christopher@ch.ristopher.com>
4567
4568 * ibuffer.el (ibuffer-redisplay): Remove another gratuitous error.
4569
4570 2012-03-11 Michael Albinus <michael.albinus@gmx.de>
4571
4572 * autorevert.el (auto-revert-handler): Ensure, that
4573 file-readable-p is applied only for local files or in
4574 auto-revert-tail-mode.
4575
4576 2012-03-11 Andreas Schwab <schwab@linux-m68k.org>
4577
4578 * server.el (server-eval-at): Handle non-tcp connections.
4579 Decode result string.
4580
4581 * server.el (server-msg-size): New constant.
4582 (server-reply-print): New function.
4583 (server-eval-and-print): Use it.
4584 (server-eval-at): Use server-quote-arg and server-unquote-arg.
4585 Handle -print-nonl.
4586
4587 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
4588
4589 * ibuffer.el (ibuffer-redisplay): Remove gratuitous error
4590 (Bug#10987).
4591
4592 2012-03-11 Chong Yidong <cyd@gnu.org>
4593
4594 * simple.el (goto-line): Doc fix (Bug#9938).
4595
4596 * subr.el (save-window-excursion): Doc fix (Bug#9979).
4597
4598 * dabbrev.el (dabbrev--find-expansion): Update progress reporter
4599 when finished (Bug#10963).
4600
4601 2012-03-11 Martin Rudalics <rudalics@gmx.at>
4602
4603 * window.el (split-window-below): Fix bug in case where
4604 split-window-keep-point is nil (Bug#10971).
4605
4606 2012-03-11 Juri Linkov <juri@jurta.org>
4607
4608 * replace.el (replace-highlight): Set isearch-word to nil
4609 unconditionally. (Bug#10887)
4610
4611 2012-03-10 Eli Zaretskii <eliz@gnu.org>
4612
4613 * net/mairix.el (mairix-replace-invalid-chars): Rename from
4614 mairix-replace-illegal-chars; all callers changed. Don't remove
4615 ^, ~, and = characters: they are meaningful in mairix search specs.
4616 (mairix-widget-create-query): Add usage information about mairix
4617 search forms: negating words, searching for substrings, etc.
4618
4619 2012-03-10 Jae-hyeon Park <jae-hyeon.park@desy.de> (tiny change)
4620
4621 * international/fontset.el (font-encoding-alist): Add an entry for
4622 ksx1001 (Bug#5667).
4623
4624 2012-03-10 Richard Stallman <rms@gnu.org>
4625
4626 * mail/sendmail.el (mail-encode-header):
4627 Set rfc2047-encode-encoded-words.
4628
4629 * mail/mail-utils.el (mail-quote-printable): Quote multibyte chars.
4630
4631 * mail/rmail.el (rmail-buffers-swapped-p): Don't assume dead
4632 view buffer means not swapped.
4633 (rmail-view-buffer-kill-buffer-hook): Give buf name in error msg.
4634 (rmail-write-region-annotate): Error if real text has disappeared.
4635
4636 * epa-mail.el (epa-mail-encrypt): Bind inhibit-read-only.
4637
4638 2012-03-10 Chong Yidong <cyd@gnu.org>
4639
4640 * emulation/cua-rect.el (cua--init-rectangles):
4641 * emulation/cua-base.el (cua--init-keymaps):
4642 Add delete-forward-char to remappings (Bug#9666).
4643
4644 2012-03-10 Martin Rudalics <rudalics@gmx.at>
4645
4646 * speedbar.el (speedbar-unhighlight-one-tag-line):
4647 Avoid unhighlighting due to frame switching (Bug#10275).
4648
4649 2012-03-10 Chong Yidong <cyd@gnu.org>
4650
4651 * minibuffer.el (completion-in-region, completion-help-at-point):
4652 Give the completion field overlay a high priority (Bug#6830).
4653
4654 * dired.el (dired-goto-file): Recognize absolute file name
4655 listings (Bug#7126).
4656 (dired-goto-file-1): New helper function.
4657 (dired-toggle-read-only): Inhibit warnings.
4658
4659 2012-03-09 Michael Albinus <michael.albinus@gmx.de>
4660
4661 * net/dbus.el (dbus-property-handler): Return empty array if
4662 there are no properties.
4663
4664 2012-03-09 Leo Liu <sdl.web@gmail.com>
4665
4666 * savehist.el (savehist-printable): Stricter check for string
4667 value (Bug#10937).
4668
4669 2012-03-09 Eli Zaretskii <eliz@gnu.org>
4670
4671 * mail/smtpmail.el (smtpmail-send-it):
4672 Bind coding-system-for-write to *-unix, so that FCC files are kept in
4673 valid mbox format.
4674
4675 2012-03-09 Glenn Morris <rgm@gnu.org>
4676
4677 * files.el (dir-locals-find-file):
4678 Don't check result is regular, readable.
4679 (dir-locals-read-from-file): Demote errors.
4680
4681 2012-03-08 Eli Zaretskii <eliz@gnu.org>
4682
4683 * international/quail.el (quail-insert-kbd-layout):
4684 Insert invisible LRM characters before each character in a keyboard
4685 layout cell, to prevent their reordering by bidi display engine.
4686 For details, see the discussion in
4687 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00085.html.
4688
4689 2012-03-08 Alan Mackenzie <acm@muc.de>
4690
4691 * progmodes/cc-cmds.el (c-mark-function): Make it leave a mark at
4692 the starting position; make it extend the marked region when
4693 invoked repeatedly - all under appropriate circumstances.
4694 Fixes bugs #5525, #10906.
4695
4696 2012-03-08 Glenn Morris <rgm@gnu.org>
4697
4698 * files.el (locate-dominating-file, dir-locals-find-file):
4699 Undo 2012-03-06 change.
4700
4701 2012-03-07 Eli Zaretskii <eliz@gnu.org>
4702
4703 * international/quail.el (quail-help):
4704 Force bidi-paragraph-direction be left-to-right. See discussion in
4705 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00062.html
4706 for the reason.
4707
4708 2012-03-07 Michael Albinus <michael.albinus@gmx.de>
4709
4710 Avoid superfluous registering of signals. (Bug#10807)
4711
4712 * notifications.el (notifications-on-action-object)
4713 (notifications-on-close-object): New defvars.
4714 (notifications-on-action-signal, notifications-on-closed-signal):
4715 Unregister the signal if not needed any longer.
4716 (notifications-notify): Register `notifications-action-signal' or
4717 `notifications-closed-signal', if :on-action or :on-close has been
4718 passed as argument.
4719
4720 2012-03-07 Chong Yidong <cyd@gnu.org>
4721
4722 * cus-start.el: Avoid x-select-enable-clipboard-manager warning on
4723 non-X platforms.
4724
4725 2012-03-06 Glenn Morris <rgm@gnu.org>
4726
4727 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
4728 (x-disown-selection-internal, x-get-selection-internal):
4729 Doc fix (add arglist signatures). (Bug#10783)
4730
4731 2012-03-06 Kaushik Srenevasan <ksrenevasan@gmail.com> (tiny change)
4732
4733 * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom):
4734 Handle breakpoints with no "type".
4735
4736 2012-03-06 Glenn Morris <rgm@gnu.org>
4737
4738 * files.el (locate-dominating-file): Add optional predicate argument.
4739 (dir-locals-find-file): Make use of above change.
4740
4741 2012-03-06 Thien-Thi Nguyen <ttn@gnuvola.org>
4742
4743 * info.el (Info-insert-dir): Also try "dir.gz".
4744
4745 2012-03-06 Glenn Morris <rgm@gnu.org>
4746
4747 * files.el (dir-locals-find-file):
4748 Ignore non-readable or non-regular files. (Bug#10928)
4749
4750 * files.el (locate-dominating-file): Doc fix.
4751
4752 2012-03-06 Adam Spiers <emacs@adamspiers.org> (tiny change)
4753
4754 * calendar/calendar.el (calendar-set-mode-line):
4755 `getenv' returns a string. (Bug#10951)
4756
4757 2012-03-05 Leo Liu <sdl.web@gmail.com>
4758
4759 * simple.el (backward-delete-char-untabify): Constrain point to
4760 field (Bug#10939).
4761
4762 * eshell/em-cmpl.el (eshell-cmpl-initialize): Fix shift-tab key.
4763
4764 2012-03-05 Chong Yidong <cyd@gnu.org>
4765
4766 * simple.el (count-words): If called from Lisp, return the word
4767 count, for symmetry with `count-lines'. Arglist changed.
4768 (count-words--message): Args changed. Consolidate counting code
4769 from count-words and count-words-region.
4770 (count-words-region): Caller changed.
4771 (count-lines-region): Make it an obsolete alias.
4772
4773 2012-03-04 Tassilo Horn <tassilo@member.fsf.org>
4774
4775 * saveplace.el (save-place-to-alist)
4776 (save-place-ignore-files-regexp): Allow value nil to disable this
4777 feature.
4778
4779 2012-03-04 Chong Yidong <cyd@gnu.org>
4780
4781 * faces.el (face-spec-reset-face): For the default face, reset the
4782 attributes to default values (Bug#10748).
4783
4784 2012-03-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
4785
4786 * mail/emacsbug.el (report-emacs-bug-hook): Fix up thinko in
4787 previous patch: Check `message-send-mail-function', and not the
4788 default function (bug#10897).
4789
4790 2012-03-04 Michael Albinus <michael.albinus@gmx.de>
4791
4792 * notifications.el (notifications-on-action-signal)
4793 (notifications-on-closed-signal): Check for unique service name of
4794 incoming event. Fix error in removing entry.
4795 (top): Register for signals with wildcard service name.
4796 (notifications-notify): Use daemon unique service name for map entries.
4797
4798 2012-03-04 Chong Yidong <cyd@gnu.org>
4799
4800 * cus-start.el: Make x-select-enable-clipboard-manager customizable.
4801
4802 2012-03-04 Glenn Morris <rgm@gnu.org>
4803
4804 * abbrev.el (copy-abbrev-table, abbrev-table-p)
4805 (abbrev-minor-mode-table-alist, define-abbrev, abbrev-insert)
4806 (expand-abbrev, define-abbrev-table): Doc fixes.
4807
4808 2012-03-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
4809
4810 * mail/emacsbug.el (report-emacs-bug-hook): Look at the value of
4811 `message-default-send-mail-function' and not `send-mail-function'
4812 when doing the prompting for `sendmail-query-once' before sending
4813 in Message buffers (bug#10897).
4814
4815 * net/tls.el (open-tls-stream): Don't set the dont-query-on-exit flag.
4816 This is inconsistent with all the other stream functions, which leave
4817 the setting up to the higher levels (if so wanted) (bug#10931).
4818
4819 2012-03-02 Alan Mackenzie <acm@muc.de>
4820
4821 Depessimize the handling of very large macros.
4822
4823 * progmodes/cc-engine.el (c-macro-cache, c-macro-cache-start-pos):
4824 (c-macro-cache-syntactic): New variables to implement a one
4825 element macro cache.
4826 (c-invalidate-macro-cache): New function.
4827 (c-beginning-of-macro, c-end-of-macro, c-syntactic-end-of-macro):
4828 Adapt to use the new cache.
4829 (c-state-safe-place): Use better the cache of safe positions.
4830 (c-state-semi-nonlit-pos-cache)
4831 (c-state-semi-nonlit-pos-cache-limit):
4832 New variables for...
4833 (c-state-semi-safe-place): New function. Here, in a macro is "safe".
4834 (c-invalidate-state-cache-1): New stuff for c-state-semi-safe-place.
4835 (c-in-literal, c-literal-limits, c-determine-limit-get-base):
4836 Use c-state-semi-safe-place.
4837
4838 * progmodes/cc-langs.el (c-get-state-before-change-functions):
4839 Add c-invalidate-macro-cache to the C, C++, Obj entries.
4840
4841 2012-03-02 Michael Albinus <michael.albinus@gmx.de>
4842
4843 * jka-compr.el (jka-compr-call-process):
4844 Apply `file-accessible-directory-p' only when the default directory is
4845 not remote.
4846
4847 2012-03-01 Michael Albinus <michael.albinus@gmx.de>
4848
4849 * files.el (file-equal-p): Fix docstring. Avoid unnecessary
4850 access of FILE2, if FILE1 does not exist.
4851
4852 * net/tramp-sh.el (tramp-remote-process-environment): Add "PAGER=\"\"".
4853 Reported by Robert Lupton the Good <rhl@astro.princeton.edu>.
4854
4855 * vc/vc-git.el (vc-git--call): Enable `inhibit-null-byte-detection'.
4856 Add "PAGER=" to `process-environment'.
4857
4858 2012-03-01 Michael R. Mauger <mmaug@yahoo.com>
4859
4860 * progmodes/sql.el: Bug fix
4861 (sql-get-login-ext): Save login values in globals.
4862 (sql-get-login): Use new version of `sql-get-login-ext'.
4863 (sql-interactive-mode): Set global `sql-connection' to nil.
4864 (sql-connect): Set global values for connection.
4865 (sql-product-interactive): Save global values as buffer local.
4866
4867 2012-02-29 Leo Liu <sdl.web@gmail.com>
4868
4869 * abbrev.el (define-abbrevs): Reset sys to nil.
4870
4871 2012-02-28 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4872
4873 * files.el (file-equal-p): Rename from `files-equal-p'.
4874 Return nil when one or both files don't exist.
4875 (file-subdir-of-p): Now only top directory must exists,
4876 return nil if it doesn't.
4877 (copy-directory): No need to test with `file-subdir-of-p' after
4878 creating dir.
4879 * net/tramp.el (tramp-file-name-for-operation): Rename `files-equal-p'
4880 to `file-equal-p'.
4881
4882 2012-02-28 Glenn Morris <rgm@gnu.org>
4883
4884 * shell.el (shell-mode):
4885 * progmodes/vhdl-mode.el (wildcard-to-regexp, file-expand-wildcards):
4886 * play/landmark.el (landmark-font-lock-face-O):
4887 * play/handwrite.el (handwrite):
4888 * play/gomoku.el (gomoku-O):
4889 * net/browse-url.el (browse-url-browser-display):
4890 * international/mule.el (define-charset):
4891 * htmlfontify.el (hfy-etags-cmd, hfy-face-attr-for-class):
4892 * filesets.el (filesets-find-file-delay):
4893 * eshell/em-xtra.el (eshell-xtra):
4894 * eshell/em-unix.el (eshell-grep):
4895 * emulation/viper.el (viper-mode):
4896 * emacs-lisp/regexp-opt.el (regexp-opt-group):
4897 * emacs-lisp/easymenu.el (easy-menu-define):
4898 * calendar/timeclock.el (timeclock-use-display-time):
4899 * bs.el (bs-mode):
4900 * bookmark.el (bookmark-save-flag):
4901 Doc fix (standardize possessive apostrophe usage).
4902
4903 2012-02-27 Chong Yidong <cyd@gnu.org>
4904
4905 * emulation/viper-cmd.el (viper-intercept-ESC-key):
4906 Fix key-binding lookup for ESC key (Bug#9146).
4907
4908 * font-lock.el (font-lock-specified-p): Rename from
4909 font-lock-spec-present. Callers changed.
4910
4911 2012-02-27 Daniel Hackney <dan@haxney.org>
4912
4913 * emacs-lisp/package.el (package-compute-transaction):
4914 Handle holding a package version to t in package-load-list.
4915
4916 2012-02-26 Michael Albinus <michael.albinus@gmx.de>
4917
4918 * net/tramp.el (tramp-inodes, tramp-devices): Initialize with 0.
4919 (tramp-get-inode, tramp-get-device): Use cached values.
4920
4921 2012-02-26 Alan Mackenzie <acm@muc.de>
4922
4923 Check there is a font-lock specification before doing initial
4924 fontification.
4925
4926 * font-core.el (font-lock-mode): Move the conditional from
4927 :after-hook to font-lock-initial-fontify.
4928 (font-lock-default-function): Move the check for a specification
4929 to font-lock-spec-present.
4930
4931 * font-lock.el (font-lock-initial-fontify): Call ...
4932 (font-lock-spec-present): New function.
4933
4934 2012-02-26 Jim Blandy <jimb@red-bean.com>
4935
4936 * progmodes/gdb-mi.el (gdb-mi-quote): New function.
4937 (gdb-send): Apply it to the operand of the '-interpreter-exec
4938 console' command, so that we can pass arguments with (say) quotes
4939 in them. Store exact string sent in gdb-debug-log (Bug#10765).
4940
4941 2012-02-26 Chong Yidong <cyd@gnu.org>
4942
4943 * help-fns.el (describe-function-1): Clarify description of
4944 remapping (Bug#10844).
4945
4946 * files.el (files-equal-p): Doc fix.
4947 (file-subdir-of-p): Doc fix. Convert loop macro to plain Lisp,
4948 and quit the loop once a mismatch is found.
4949
4950 2012-02-25 Juanma Barranquero <lekktu@gmail.com>
4951
4952 * bs.el (bs--show-with-configuration): Don't throw an error
4953 if the window cannot be split; otherwise, subsequent calls to
4954 bs-show fail, restoring a stale window config. (Bug#10882)
4955
4956 2012-02-25 Jan Djärv <jan.h.d@swipnet.se>
4957
4958 * term/ns-win.el (global-map): Bind ns-drag-file to
4959 ns-find-file (Bug#5855, Bug#10050).
4960
4961 2012-02-25 Andreas Schwab <schwab@linux-m68k.org>
4962
4963 * calendar/parse-time.el (parse-time-string): Allow extractor to
4964 return nil.
4965
4966 2012-02-25 Michael Albinus <michael.albinus@gmx.de>
4967
4968 * net/tramp.el (tramp-file-name-for-operation):
4969 Add `files-equal-p' and `file-subdir-of-p'.
4970
4971 * net/tramp-sh.el (tramp-sh-handle-copy-directory):
4972 * net/tramp-smb.el (tramp-smb-handle-copy-directory):
4973 Add COPY-CONTENTS argument.
4974
4975 2012-02-25 Chong Yidong <cyd@gnu.org>
4976
4977 Add custom groups for VC backends, for consistency with vc-bzr.
4978
4979 * vc/vc-arch.el (vc-arch):
4980 * vc/vc-cvs.el (vc-cvs):
4981 * vc/vc-git.el (vc-git):
4982 * vc/vc-hg.el (vc-hg):
4983 * vc/vc-mtn.el (vc-mtn):
4984 * vc/vc-rcs.el (vc-rcs):
4985 * vc/vc-sccs.el (vc-sccs):
4986 * vc/vc-svn.el (vc-svn): New customization group (Bug#10871).
4987 All relevant defcustoms reassigned.
4988
4989 2012-02-25 Chong Yidong <cyd@gnu.org>
4990
4991 * newcomment.el (comment-styles): Add autoload (Bug#10868).
4992
4993 * term/x-win.el (x-initialize-window-system): Reduce default for
4994 x-selection-timeout to 5 seconds (Bug#8869).
4995
4996 2012-02-24 Thierry Volpiatto <thierry.volpiatto@gmail.com>
4997
4998 * files.el (files-equal-p, file-subdir-of-p): New functions.
4999 (copy-directory): Error when trying to copy a directory on itself.
5000 Add missing copy-contents arg to tramp handler.
5001 * dired-aux.el (dired-copy-file-recursive): Same.
5002 (dired-create-files): Modify destination when source is equal to
5003 dest when copying files.
5004 Return also when dest is a subdir of source. (Bug#10489)
5005
5006 2012-02-24 Michael Albinus <michael.albinus@gmx.de>
5007
5008 * net/ange-ftp.el (ange-ftp-parse-netrc): Suppress comment lines.
5009 (Bug#10874)
5010
5011 2012-02-23 Alan Mackenzie <acm@muc.de>
5012
5013 * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
5014 parameter "after-hook:" to allow the expansion to run code after
5015 the execution of the mode hooks.
5016
5017 * font-lock.el (font-lock-initial-fontify): New function extracted
5018 from font-lock-mode-internal.
5019
5020 * font-core.el (font-lock-mode): Call font-lock-initial-fontify in
5021 :after-hook.
5022
5023 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5024
5025 * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.
5026 (completion--cache-all-sorted-completions): New function.
5027 (completion-all-sorted-completions): Use it.
5028 (completion--do-completion, minibuffer-force-complete):
5029 Use it to re-instate the flush hook.
5030
5031 * icomplete.el (icomplete-completions): Replace last fix with a better
5032 one (bug#10850).
5033
5034 2012-02-23 Dmitry Gutov <dgutov@yandex.ru>
5035
5036 * emacs-lisp/lisp.el (beginning-of-defun-raw): Don't call end-of-defun
5037 when it might call us back infinitely (bug#10797).
5038
5039 2012-02-23 Glenn Morris <rgm@gnu.org>
5040
5041 * minibuffer.el (completion-category-overrides): Doc fix.
5042
5043 2012-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
5044
5045 * minibuffer.el (completion-table-with-context): Fix inf-loop.
5046 Reported by Aaron S. Hawley <aaron.s.hawley@gmail.com>.
5047
5048 2012-02-23 Glenn Morris <rgm@gnu.org>
5049
5050 * emacs-lisp/authors.el (authors-aliases, authors-fixed-case)
5051 (authors-obsolete-files-regexps, authors-ignored-files)
5052 (authors-ambiguous-files, authors-renamed-files-alist):
5053 Add more entries.
5054
5055 2012-02-23 Juri Linkov <juri@jurta.org>
5056
5057 * isearch.el (isearch-occur): Sync interactive spec with occur's
5058 new feature in `occur-read-primary-args'. Doc fix. (Bug#10705)
5059
5060 * replace.el (occur-menu-map): Add menu item for `occur-edit-mode'.
5061
5062 2012-02-22 Juri Linkov <juri@jurta.org>
5063
5064 * international/mule-cmds.el (read-char-by-name): Use \` and \'.
5065 (ucs-insert): Doc fix. Check for hex digits in the string.
5066 Don't display `nil' in the error message. (Bug#10857)
5067
5068 2012-02-22 Alan Mackenzie <acm@muc.de>
5069
5070 * progmodes/cc-mode.el: Revert change #2012-02-06T22:08:41Z!larsi@gnus.org from 2012-02-06.
5071
5072 2012-02-22 Glenn Morris <rgm@gnu.org>
5073
5074 * ffap.el (ffap-c-path):
5075 * man.el (Man-header-file-path): Handle multiarch. (Bug#10702)
5076
5077 2012-02-22 Chong Yidong <cyd@gnu.org>
5078
5079 * custom.el (load-theme): Doc fix.
5080
5081 2012-02-22 Glenn Morris <rgm@gnu.org>
5082
5083 * dired-x.el (dired-guess-shell-alist-default):
5084 Remove escape sequences from nroff output. (Bug#172)
5085
5086 2012-02-21 Glenn Morris <rgm@gnu.org>
5087
5088 * vc/emerge.el (emerge-defvar-local):
5089 Set `permanent-local' property rather than unused `preserved'.
5090
5091 * textmodes/picture.el (picture-delete-char): New alias.
5092 (picture-mode-map): Use it. (Bug#10860)
5093 (picture-mode): Doc fix.
5094
5095 2012-02-21 Juanma Barranquero <lekktu@gmail.com>
5096
5097 * newcomment.el (uncomment-region-default): Remove unused binding.
5098
5099 2012-02-21 Glenn Morris <rgm@gnu.org>
5100
5101 * textmodes/picture.el (picture-motion, picture-motion-reverse)
5102 (picture-self-insert, picture-tab-chars): Doc fix.
5103 (picture-mode-map): Fix C-a, C-e.
5104
5105 2012-02-20 Glenn Morris <rgm@gnu.org>
5106
5107 * emacs-lisp/authors.el (authors-aliases): Add another entry.
5108
5109 2012-02-20 Leo Liu <sdl.web@gmail.com>
5110
5111 * icomplete.el (icomplete-completions): Check FROM arg before
5112 passing to substring (Bug#10850).
5113
5114 2012-02-19 Chong Yidong <cyd@gnu.org>
5115
5116 * comint.el: Require ansi-color.
5117 (comint-output-filter-functions): Add ansi-color-process-output.
5118
5119 * ansi-color.el: Don't set comint-output-filter-functions; it is
5120 now in the initial value defined in comint.el.
5121 (ansi-color-apply-face-function): New variable.
5122 (ansi-color-apply-on-region): Use it.
5123 (ansi-color-apply-overlay-face): New function.
5124
5125 * shell.el (shell): No need to require ansi-color.
5126 (shell-mode): Use ansi-color-apply-face-function to highlight
5127 color escapes using font-lock-face property (Bug#10835).
5128
5129 2012-02-19 Chong Yidong <cyd@gnu.org>
5130
5131 * vc/ediff-init.el (ediff-strip-mode-line-format): Handle non-list
5132 mode-line formats (Bug#10839).
5133
5134 2012-02-18 Glenn Morris <rgm@gnu.org>
5135
5136 * mail/rmail.el (rmail-dont-reply-to-names): Mark as obsolete.
5137
5138 * mail/undigest.el (unforward-rmail-message): Doc fix.
5139
5140 * saveplace.el (save-place-ignore-files-regexp): Add :version.
5141
5142 2012-02-18 Eli Zaretskii <eliz@gnu.org>
5143
5144 * international/characters.el (script-list): Sync with the latest
5145 Unicode Character Database.
5146
5147 2012-02-18 Andreas Schwab <schwab@linux-m68k.org>
5148
5149 * international/titdic-cnv.el: Remove duplicate coding tag.
5150 * language/cham.el: Likewise.
5151 * language/tai-viet.el: Likewise.
5152
5153 2012-02-18 Glenn Morris <rgm@gnu.org>
5154
5155 * calendar/cal-menu.el (cal-menu-diary-menu, cal-menu-goto-menu):
5156 * calendar/calendar.el (diary-file, diary-bahai-entry-symbol)
5157 (calendar-bahai-all-holidays-flag, calendar-other-dates):
5158 * calendar/diary-lib.el (diary-abbreviated-year-flag):
5159 * calendar/holidays.el (holiday-bahai-holidays)
5160 (calendar-holidays, list-holidays):
5161 Use utf-8 Bahá'í in doc-strings, menus, etc.
5162
5163 2012-02-17 Tassilo Horn <tassilo@member.fsf.org>
5164
5165 * saveplace.el (save-place-ignore-files-regexp): New variable
5166 allowing for excluding files from saving their location of point.
5167 The default value matches the temporary commit message editing
5168 files from Git, SVN, Bazaar, and Mercurial.
5169 (save-place-to-alist): Use it.
5170
5171 2012-02-17 Lawrence Mitchell <wence@gmx.li>
5172 Stefan Monnier <monnier@iro.umontreal.ca>
5173
5174 * newcomment.el (uncomment-region-default): Don't leave extra space
5175 when an arg is provided (bug#8150).
5176
5177 2012-02-17 Teodor Zlatanov <tzz@lifelogs.com>
5178
5179 * net/gnutls.el (gnutls-trustfiles): Fix Cygwin bundle location.
5180
5181 2012-02-17 Glenn Morris <rgm@gnu.org>
5182
5183 * net/socks.el: Require network-stream. (Bug#10599)
5184
5185 2012-02-17 Kenichi Handa <handa@m17n.org>
5186
5187 * international/charprop.el:
5188 * international/uni-name.el:
5189 * international/uni-old-name.el:
5190 * international/uni-comment.el: Regenerate.
5191
5192 2012-02-16 Glenn Morris <rgm@gnu.org>
5193
5194 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
5195 Interactively in calendar buffer, give an error if not on a date.
5196
5197 2012-02-15 Glenn Morris <rgm@gnu.org>
5198
5199 * shell.el (shell-delimiter-argument-list):
5200 Revert 2011-02-17 change. (Bug#8027)
5201
5202 2012-02-15 Chong Yidong <cyd@gnu.org>
5203
5204 * minibuffer.el (completion-at-point-functions): Doc fix.
5205
5206 * custom.el (defcustom): Doc fix; note use of defvar.
5207
5208 2012-02-15 Glenn Morris <rgm@gnu.org>
5209
5210 * mail/smtpmail.el (smtpmail-smtp-user, smtpmail-stream-type):
5211 Doc fixes.
5212
5213 2012-02-14 Glenn Morris <rgm@gnu.org>
5214
5215 * mail/smtpmail.el (smtpmail-query-smtp-server): Give it a doc.
5216
5217 2012-02-14 Lars Ingebrigtsen <larsi@gnus.org>
5218
5219 * mail/smtpmail.el (smtpmail-query-smtp-server): Fix typo in the
5220 way the ports list is computed.
5221 (smtpmail-query-smtp-server): Prompt the user for a port number if
5222 we can't connect to any of the standard ports (bug#10810).
5223
5224 2012-02-14 Teodor Zlatanov <tzz@lifelogs.com>
5225
5226 * net/gnutls.el (gnutls-trustfiles): Add Cygwin location.
5227
5228 2012-02-13 Glenn Morris <rgm@gnu.org>
5229
5230 * minibuffer.el (read-file-name): Doc fix. (Bug#10798)
5231
5232 2012-02-13 Teodor Zlatanov <tzz@lifelogs.com>
5233
5234 * net/gnutls.el (gnutls-trustfiles): New variable.
5235 (gnutls-negotiate): Use it.
5236
5237 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
5238
5239 * simple.el (mail-user-agent): Mention that `gnus-user-agent' only
5240 does its stuff if Gnus is running.
5241
5242 2012-02-13 Alan Mackenzie <acm@muc.de>
5243
5244 Fix a loop in c-set-fl-decl-start.
5245
5246 * progmodes/cc-engine.el (c-set-fl-decl-start): Add a check that
5247 c-backward-syntactic-ws actually moves backwards.
5248
5249 2012-02-13 Leo Liu <sdl.web@gmail.com>
5250
5251 * net/rcirc.el (rcirc-markup-attributes): Move point to the
5252 beginning so that all \C-o chars are removed.
5253
5254 2012-02-12 Teodor Zlatanov <tzz@lifelogs.com>
5255
5256 * net/gnutls.el (gnutls-algorithm-priority): Add missing :group tag.
5257
5258 2012-02-12 Alan Mackenzie <acm@muc.de>
5259
5260 Fix infinite loop with long macros.
5261 * progmodes/cc-engine.el (c-state-safe-place): Handle macros properly.
5262
5263 2012-02-12 Chong Yidong <cyd@gnu.org>
5264
5265 * window.el (display-buffer): Doc fix (Bug#10785).
5266
5267 2012-02-12 Glenn Morris <rgm@gnu.org>
5268
5269 * term/pc-win.el (x-selection-owner-p, x-own-selection-internal)
5270 (x-disown-selection-internal, x-get-selection-internal):
5271 Sync docs with the xselect.c versions.
5272
5273 * allout-widgets.el: Add missing license notice.
5274
5275 2012-02-11 Glenn Morris <rgm@gnu.org>
5276
5277 * select.el (x-get-selection-internal, x-own-selection-internal)
5278 (x-disown-selection-internal):
5279 * x-dnd.el (x-get-selection-internal): Update declarations.
5280
5281 * vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
5282
5283 * window.el (window-sides-slots):
5284 * tool-bar.el (tool-bar-position):
5285 * term/xterm.el (xterm-extra-capabilities):
5286 * ses.el (ses-self-reference-early-detection):
5287 * progmodes/verilog-mode.el (verilog-auto-declare-nettype)
5288 (verilog-auto-wire-type)
5289 (verilog-auto-delete-trailing-whitespace)
5290 (verilog-auto-reset-blocking-in-non, verilog-auto-inst-sort)
5291 (verilog-auto-tieoff-declaration):
5292 * progmodes/sql.el (sql-login-hook, sql-ansi-statement-starters)
5293 (sql-oracle-statement-starters, sql-oracle-scan-on):
5294 * progmodes/prolog.el (prolog-align-comments-flag)
5295 (prolog-indent-mline-comments-flag, prolog-object-end-to-0-flag)
5296 (prolog-left-indent-regexp, prolog-paren-indent-p)
5297 (prolog-paren-indent, prolog-parse-mode, prolog-keywords)
5298 (prolog-types, prolog-mode-specificators)
5299 (prolog-determinism-specificators, prolog-directives)
5300 (prolog-electric-newline-flag, prolog-hungry-delete-key-flag)
5301 (prolog-electric-dot-flag)
5302 (prolog-electric-dot-full-predicate-template)
5303 (prolog-electric-underscore-flag, prolog-electric-tab-flag)
5304 (prolog-electric-if-then-else-flag, prolog-electric-colon-flag)
5305 (prolog-electric-dash-flag, prolog-old-sicstus-keys-flag)
5306 (prolog-program-switches, prolog-prompt-regexp)
5307 (prolog-debug-on-string, prolog-debug-off-string)
5308 (prolog-trace-on-string, prolog-trace-off-string)
5309 (prolog-zip-on-string, prolog-zip-off-string)
5310 (prolog-use-standard-consult-compile-method-flag)
5311 (prolog-use-prolog-tokenizer-flag, prolog-imenu-flag)
5312 (prolog-imenu-max-lines, prolog-info-predicate-index)
5313 (prolog-underscore-wordchar-flag, prolog-use-sicstus-sd)
5314 (prolog-char-quote-workaround):
5315 * progmodes/cc-vars.el (c-defun-tactic):
5316 * net/tramp.el (tramp-encoding-command-interactive)
5317 (tramp-local-end-of-line):
5318 * net/soap-client.el (soap-client):
5319 * net/netrc.el (netrc-file):
5320 * net/gnutls.el (gnutls):
5321 * minibuffer.el (completion-category-overrides)
5322 (completion-cycle-threshold)
5323 (completion-pcm-complete-word-inserts-delimiters):
5324 * man.el (Man-name-local-regexp):
5325 * mail/feedmail.el (feedmail-display-full-frame):
5326 * international/characters.el (glyphless-char-display-control):
5327 * eshell/em-ls.el (eshell-ls-date-format):
5328 * emacs-lisp/cl-indent.el (lisp-lambda-list-keyword-alignment)
5329 (lisp-lambda-list-keyword-parameter-indentation)
5330 (lisp-lambda-list-keyword-parameter-alignment):
5331 * doc-view.el (doc-view-image-width, doc-view-unoconv-program):
5332 * dired-x.el (dired-omit-verbose):
5333 * cus-theme.el (custom-theme-allow-multiple-selections):
5334 * calc/calc.el (calc-highlight-selections-with-faces)
5335 (calc-lu-field-reference, calc-lu-power-reference)
5336 (calc-note-threshold):
5337 * battery.el (battery-mode-line-limit):
5338 * arc-mode.el (archive-7z-extract, archive-7z-expunge)
5339 (archive-7z-update):
5340 * allout.el (allout-prefixed-keybindings)
5341 (allout-unprefixed-keybindings)
5342 (allout-inhibit-auto-fill-on-headline)
5343 (allout-flattened-numbering-abbreviation):
5344 * allout-widgets.el (allout-widgets-auto-activation)
5345 (allout-widgets-icons-dark-subdir)
5346 (allout-widgets-icons-light-subdir, allout-widgets-icon-types)
5347 (allout-widgets-theme-dark-background)
5348 (allout-widgets-theme-light-background)
5349 (allout-widgets-item-image-properties-emacs)
5350 (allout-widgets-item-image-properties-xemacs)
5351 (allout-widgets-run-unit-tests-on-load)
5352 (allout-widgets-time-decoration-activity)
5353 (allout-widgets-hook-error-post-time)
5354 (allout-widgets-track-decoration):
5355 Add missing :version tags to new defcustoms and defgroups.
5356
5357 * progmodes/sql.el (sql-ansi-statement-starters)
5358 (sql-oracle-statement-starters): Add custom type.
5359
5360 * progmodes/prolog.el: Remove leading '*' from defcustom docs.
5361 (prolog-system-version): Give it a type.
5362
5363 2012-02-11 Eli Zaretskii <eliz@gnu.org>
5364
5365 * term/pc-win.el (x-select-text, x-selection-owner-p)
5366 (x-own-selection-internal, x-disown-selection-internal)
5367 (x-get-selection-internal): Sync doc strings and argument lists
5368 with xselect.c, common-win.el and x-win.el. (Bug#10783)
5369
5370 2012-02-11 Leo Liu <sdl.web@gmail.com>
5371
5372 * progmodes/python.el (python-end-of-statement): Fix infinite
5373 loop. (Bug#10788)
5374
5375 2012-02-10 Glenn Morris <rgm@gnu.org>
5376
5377 * international/mule-cmds.el (unify-8859-on-encoding-mode)
5378 (unify-8859-on-decoding-mode): Properly mark as obsolete.
5379
5380 2012-02-10 Lars Ingebrigtsen <larsi@gnus.org>
5381
5382 * mail/emacsbug.el (report-emacs-bug-hook): Query the user first
5383 about SMTP before checking the From header.
5384
5385 * mail/sendmail.el (sendmail-query-user-about-smtp): Refactor out
5386 into own function for reuse by emacsbug.el.
5387
5388 2012-02-10 Leo Liu <sdl.web@gmail.com>
5389
5390 * subr.el (condition-case-unless-debug): Rename from
5391 condition-case-no-debug. All callers changed.
5392 (with-demoted-errors): Fix caller.
5393
5394 * vc/diff-mode.el (diff-auto-refine-mode, diff-hunk):
5395 * nxml/rng-valid.el (rng-do-some-validation):
5396 * emacs-lisp/package.el (package-refresh-contents)
5397 (package-menu-execute):
5398 * desktop.el (desktop-create-buffer):
5399 * font-lock.el (lisp-font-lock-keywords-2): Caller changed.
5400
5401 2012-02-10 Glenn Morris <rgm@gnu.org>
5402
5403 * textmodes/bibtex.el:
5404 Add missing :version tags for new/changed defcustoms.
5405
5406 * files.el (remote-file-name-inhibit-cache): Doc fixes.
5407
5408 2012-02-09 Lars Ingebrigtsen <larsi@rusty>
5409
5410 * mail/smtpmail.el (smtpmail-user-mail-address): New function.
5411 (smtpmail-via-smtp): Use it, or fall back on the From address.
5412 (smtpmail-send-it): Ditto.
5413
5414 2012-02-09 Stefan Monnier <monnier@iro.umontreal.ca>
5415
5416 * emacs-lisp/bytecomp.el (byte-compile-file-form-defvar):
5417 Don't fallback on byte-compile-defvar. Optimize (defvar foo) away.
5418 (byte-compile-tmp-var): New const.
5419 (byte-compile-defvar): Use it to minimize .elc size.
5420 Just use `defvar' rather than simulate it (bug#10761).
5421
5422 2012-02-09 Glenn Morris <rgm@gnu.org>
5423
5424 * files.el (rename-uniquely): Doc fix. (Bug#3806)
5425
5426 * progmodes/cc-guess.el (c-guess-offset-threshold, c-guess-region-max):
5427 Add :version tags.
5428
5429 * progmodes/compile.el (compilation-error-screen-columns)
5430 (compilation-first-column, compilation-filter-start): Doc fixes.
5431
5432 * vc/log-view.el (log-view-toggle-entry-display):
5433 * vc/vc.el (vc-merge, vc-pull): Doc fixes.
5434
5435 * mail/emacsbug.el (report-emacs-bug-can-use-osx-open)
5436 (report-emacs-bug-can-use-xdg-email):
5437 (report-emacs-bug-insert-to-mailer): Doc fixes.
5438 (report-emacs-bug): Message fix.
5439
5440 * net/browse-url.el (browse-url-can-use-xdg-open)
5441 (browse-url-xdg-open): Doc fixes.
5442
5443 * electric.el (electric-indent-mode, electric-pair-mode)
5444 (electric-layout-rules, electric-layout-mode): Doc fixes.
5445 (electric-pair-pairs, electric-pair-skip-self): Add :version tags.
5446
5447 2012-02-08 Martin Rudalics <rudalics@gmx.at>
5448
5449 * server.el (server-unselect-display): Don't inadvertently kill
5450 the current buffer. (Bug#10729)
5451
5452 2012-02-08 Glenn Morris <rgm@gnu.org>
5453
5454 * progmodes/sql.el (sql-port, sql-connection-alist, sql-list-all)
5455 (sql-list-table): Doc fixes.
5456
5457 * image-mode.el (image-transform-minor-mode-map, image-transform-mode):
5458 Comment out (does nothing).
5459
5460 * completion.el (dynamic-completion-mode):
5461 * dirtrack.el (dirtrack-debug-mode):
5462 * electric.el (electric-layout-mode):
5463 * epa-mail.el (epa-mail-mode, epa-global-mail-mode):
5464 * face-remap.el (text-scale-mode, buffer-face-mode):
5465 * iimage.el (iimage-mode):
5466 * image-mode.el (image-transform-mode):
5467 * minibuffer.el (completion-in-region-mode):
5468 * scroll-lock.el (scroll-lock-mode):
5469 * simple.el (next-error-follow-minor-mode):
5470 * tar-mode.el (tar-subfile-mode):
5471 * tooltip.el (tooltip-mode):
5472 * vcursor.el (vcursor-use-vcursor-map):
5473 * wid-browse.el (widget-minor-mode):
5474 * emulation/tpu-edt.el (tpu-edt-mode):
5475 * emulation/tpu-extras.el (tpu-cursor-free-mode):
5476 * international/iso-ascii.el (iso-ascii-mode):
5477 * language/thai-util.el (thai-word-mode):
5478 * mail/supercite.el (sc-minor-mode):
5479 * net/goto-addr.el (goto-address-mode):
5480 * net/rcirc.el (rcirc-multiline-minor-mode, rcirc-track-minor-mode):
5481 * progmodes/cwarn.el (cwarn-mode):
5482 * progmodes/flymake.el (flymake-mode):
5483 * progmodes/glasses.el (glasses-mode):
5484 * progmodes/hideshow.el (hs-minor-mode):
5485 * progmodes/pascal.el (pascal-outline-mode):
5486 * textmodes/enriched.el (enriched-mode):
5487 * vc/smerge-mode.el (smerge-mode):
5488 Doc fixes (minor mode argument).
5489
5490 2012-02-07 Eli Zaretskii <eliz@gnu.org>
5491
5492 * ls-lisp.el (ls-lisp-sanitize): New function.
5493 (ls-lisp-insert-directory): Use it to fix or remove any elements
5494 in file-alist with missing attributes. (Bug#4673)
5495
5496 2012-02-07 Alan Mackenzie <acm@muc.de>
5497
5498 Fix spurious recognition of c-in-knr-argdecl.
5499
5500 * progmodes/cc-engine.el (c-in-knr-argdecl): Check for '=' in a
5501 putative K&R region.
5502
5503 2012-02-07 Alan Mackenzie <acm@muc.de>
5504
5505 * progmodes/cc-engine.el (c-forward-objc-directive):
5506 Prevent looping in "#pragma mark @implementation".
5507
5508 2012-02-07 Michael Albinus <michael.albinus@gmx.de>
5509
5510 * notifications.el (notifications-on-closed-signal): Make `reason'
5511 optional. (Bug#10744)
5512
5513 2012-02-07 Glenn Morris <rgm@gnu.org>
5514
5515 * emacs-lisp/easy-mmode.el (define-minor-mode):
5516 Doc fixes for the macro and the mode it defines.
5517
5518 * image.el (imagemagick-types-inhibit): Doc fix.
5519
5520 * cus-start.el (imagemagick-render-type): Add it.
5521
5522 2012-02-06 Lars Ingebrigtsen <larsi@gnus.org>
5523
5524 * progmodes/cc-mode.el (c-standard-font-lock-fontify-region-function):
5525 Set the default at load time, too, so that `font-lock-fontify-buffer'
5526 can be called without setting up the entire mode first. This fixes
5527 a bug in `mm-inline-text' with C MIME parts.
5528
5529 2012-02-06 Chong Yidong <cyd@gnu.org>
5530
5531 * simple.el (list-processes--refresh): Delete exited processes
5532 (Bug#8094).
5533
5534 * comint.el (comint-next-prompt): next-single-char-property-change
5535 and prev-single-char-property-change never return nil (Bug#8657).
5536
5537 * custom.el (defcustom): Doc fix (Bug#9711).
5538
5539 2012-02-05 Chong Yidong <cyd@gnu.org>
5540
5541 * cus-edit.el (custom-variable-reset-backup): Quote the value
5542 before storing it in the customized-value property (Bug#6712).
5543 (custom-display): Add a customization type tag.
5544 (custom-buffer-create-internal): Improve tooltip message.
5545
5546 * wid-edit.el (widget-field-value-get): New optional arg to
5547 suppress trailing whitespace truncation.
5548 (character): Use it (Bug#2689).
5549
5550 2012-02-05 Andreas Schwab <schwab@linux-m68k.org>
5551
5552 * progmodes/gud.el (gud-pv): Use pv instead of pv1.
5553 * progmodes/gdb-mi.el (gud-pp): Use pp instead of pp1.
5554
5555 2012-02-05 Chong Yidong <cyd@gnu.org>
5556
5557 * cus-edit.el (custom-variable-value-create): For mismatched
5558 types, show the current value (Bug#7600).
5559
5560 * custom.el (defcustom): Doc fix.
5561
5562 2012-02-05 Glenn Morris <rgm@gnu.org>
5563
5564 * font-lock.el (lisp-font-lock-keywords-2): Add with-wrapper-hook.
5565
5566 2012-02-05 Juanma Barranquero <lekktu@gmail.com>
5567
5568 * emacs-lisp/pp.el (pp-to-string): Use `with-temp-buffer'.
5569 (pp-buffer): Use `ignore-errors', `looking-at-p'.
5570 (pp-last-sexp): Use `looking-at-p'.
5571
5572 2012-02-04 Glenn Morris <rgm@gnu.org>
5573
5574 * files.el (revert-buffer):
5575 Doc fix (mention revert-buffer-in-progress-p).
5576
5577 * emacs-lisp/ert-x.el (ert-simulate-command):
5578 Check deferred-action-list (which is obsolete) is bound.
5579
5580 * subr.el (with-wrapper-hook): Doc fixes.
5581
5582 * simple.el (filter-buffer-substring-functions)
5583 (buffer-substring-filters, filter-buffer-substring): Doc fixes.
5584
5585 2012-02-04 Lars Ljung <lars@matholka.se> (tiny change)
5586
5587 * eshell/esh-ext.el (eshell-windows-shell-file): Match "cmdproxy"
5588 anywhere in shell-file-name, not just at the beginning. (Bug#10523)
5589
5590 2012-02-04 Leo Liu <sdl.web@gmail.com>
5591
5592 * emacs-lisp/smie.el: Fix dead link (Bug#10711).
5593
5594 2012-02-04 Glenn Morris <rgm@gnu.org>
5595
5596 * image.el (image-extension-data): Add obsolete alias.
5597
5598 * isearch.el (isearch-update): Doc fix.
5599
5600 * facemenu.el (list-colors-display): Doc fix (minor rephrasing).
5601
5602 * ido.el (ido-find-file): Doc fix (ido-toggle-vc not on any key).
5603
5604 2012-02-03 Glenn Morris <rgm@gnu.org>
5605
5606 * image.el (image-animated-p): Doc fix. Use image-animated-types.
5607 (image-animate-timeout): Doc fix.
5608
5609 * image-mode.el (image-animate-loop, image-toggle-animation): Doc fixes.
5610
5611 2012-02-02 Glenn Morris <rgm@gnu.org>
5612
5613 * server.el (server-auth-dir): Doc fix.
5614 (server-eval-at): Doc fix. Give an explicit error if !server-use-tcp.
5615
5616 * subr.el (run-mode-hooks): Doc fix.
5617
5618 2012-02-02 Juri Linkov <juri@jurta.org>
5619
5620 * image-mode.el (image-toggle-display-image): Remove tautological
5621 `major-mode' from the `derived-mode-p' test.
5622
5623 2012-02-02 Kenichi Handa <handa@m17n.org>
5624
5625 * composite.el (compose-region): Cancel previous change.
5626
5627 2012-02-02 Kenichi Handa <handa@m17n.org>
5628
5629 * composite.el (compose-region, compose-string): Signal error for
5630 a null string component (Bug#6988).
5631
5632 2012-02-01 Chong Yidong <cyd@gnu.org>
5633
5634 * view.el (view-buffer-other-window, view-buffer-other-frame):
5635 Handle special modes like view-buffer (Bug#10650).
5636 (view-buffer): Simplify.
5637
5638 * frame.el (set-frame-font): Tweak meaning of third argument.
5639
5640 * dynamic-setting.el (font-setting-change-default-font):
5641 Use set-frame-font (Bug#9982).
5642
5643 2012-02-01 Glenn Morris <rgm@gnu.org>
5644
5645 * progmodes/compile.el (compilation-internal-error-properties):
5646 Respect compilation-first-column in the "*compilation*" buffer.
5647
5648 * emacs-lisp/easy-mmode.el (define-minor-mode):
5649 Relax :variable's test for a named function.
5650
5651 2012-01-31 Alan Mackenzie <acm@muc.de>
5652
5653 * progmodes/cc-engine.el (c-guess-basic-syntax): CASE 5B.1: Fix an
5654 off by one error.
5655
5656 2012-01-31 Chong Yidong <cyd@gnu.org>
5657
5658 * frame.el (set-frame-font): New arg ALL-FRAMES.
5659
5660 * menu-bar.el (menu-set-font): Use set-frame-font.
5661
5662 * faces.el (face-spec-reset-face): Don't apply unspecified
5663 attribute values to the default face.
5664
5665 2012-01-31 Juanma Barranquero <lekktu@gmail.com>
5666
5667 * progmodes/cwarn.el (cwarn): Remove dead link.
5668 (cwarn-configuration, cwarn-verbose, cwarn-mode-text, cwarn-load-hook):
5669 Remove * from defcustom docstrings.
5670 (turn-on-cwarn-mode): Make obsolete.
5671 (c-at-toplevel-p): Remove compatibility code for Emacs 20.3 and older.
5672 (turn-on-cwarn-mode-if-enabled): Call `cwarn-mode'.
5673
5674 2012-01-31 Glenn Morris <rgm@gnu.org>
5675
5676 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix.
5677 Fix :variable handling of mode a symbol not equal to modefun.
5678 Allow named functions to be used as the cdr of :variable.
5679
5680 2012-01-30 Glenn Morris <rgm@gnu.org>
5681
5682 * emacs-lisp/authors.el (authors-fixed-entries):
5683 Remove reference to deleted file rnewspost.el.
5684
5685 2012-01-29 Juanma Barranquero <lekktu@gmail.com>
5686
5687 * window.el (window-with-parameter): Remove unused variable `windows'.
5688 (window--side-check): Remove unused variable `code'.
5689 (window--resize-siblings): Remove unused variable `first'.
5690 (adjust-window-trailing-edge): Remove unused variable `failed'.
5691 (window-deletable-p, window--delete): Remove unused variable `buffer'.
5692 Use `let', not `let*'.
5693 (balance-windows-2): Remove unused variable `found'.
5694 (window--state-put-2): Remove unused variable `splits'.
5695 (window-state-put): Remove unused variable `selected'.
5696 (same-window-p): Use `string-match-p'.
5697 (display-buffer-assq-regexp): Remove unused variable `value'.
5698 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
5699 Mark argument ALIST as ignored.
5700 (pop-to-buffer): Remove unused variable `old-window'.
5701
5702 2012-01-29 Eli Zaretskii <eliz@gnu.org>
5703
5704 * jka-cmpr-hook.el (jka-compr-compression-info-list): Support .lz
5705 and .lzma compressed files.
5706
5707 2012-01-29 Chong Yidong <cyd@gnu.org>
5708
5709 * frame.el (window-system-default-frame-alist): Doc fix.
5710
5711 * dynamic-setting.el (font-setting-change-default-font): Don't
5712 change the default face if SET-FONT argument is non-nil (Bug#9982).
5713
5714 2012-01-29 Samuel Bronson <naesten@gmail.com> (tiny change)
5715
5716 * custom.el (defcustom): Add doc link to Lisp manual (Bug#10635).
5717
5718 2012-01-29 Syver Enstad <syver.enstad@cisco.com> (tiny change)
5719
5720 * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
5721 breakpoints in files outside current directory (Bug#6098).
5722
5723 2012-01-29 Chong Yidong <cyd@gnu.org>
5724
5725 * progmodes/python.el: Require ansi-color at top-level.
5726
5727 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-abbrev-table):
5728 Define and use in Emacs Lisp mode (Bug#9360).
5729 (lisp-mode-abbrev-table): Add doc.
5730 (lisp-mode-variables): Don't set local-abbrev-table.
5731 (lisp-interaction-mode): Use emacs-lisp-mode-abbrev-table.
5732
5733 2012-01-28 Roland Winkler <winkler@gnu.org>
5734
5735 * textmodes/bibtex.el (bibtex-vec-incr): Fix docstring.
5736
5737 2012-01-28 Roland Winkler <winkler@gnu.org>
5738
5739 * textmodes/bibtex.el (bibtex-entry-alist): New function.
5740 (bibtex-set-dialect): Use it. Either set global values of
5741 dialect-dependent variables or bind these variables buffer-locally
5742 (Bug#10254).
5743 (bibtex-mode): Call bibtex-set-dialect via
5744 hack-local-variables-hook.
5745 (bibtex-dialect): Update docstring.
5746 Add safe-local-variable predicate.
5747 (bibtex-entry-alist, bibtex-field-alist): Initialize via
5748 bibtex-set-dialect.
5749 (bibtex-mode-map): Define menu for each dialect.
5750 (bibtex-entry): Fix docstring.
5751
5752 2012-01-28 Chong Yidong <cyd@gnu.org>
5753
5754 * eshell/esh-arg.el (eshell-quote-argument): New function.
5755
5756 * eshell/esh-ext.el (eshell-invoke-batch-file):
5757 * eshell/em-unix.el (eshell/cat, eshell/du): Use it to quote the
5758 first arg to eshell-parse-command (Bug#10523).
5759
5760 2012-01-28 Drew Adams <drew.adams@oracle.com>
5761
5762 * net/ange-ftp.el (ange-ftp-canonize-filename): Check, that
5763 `default-directory' is non-nil.
5764
5765 2012-01-28 Eli Zaretskii <eliz@gnu.org>
5766
5767 * mail/emacsbug.el (report-emacs-bug): Fill the potentially long
5768 line that displays system-configuration-options. (Bug#9924)
5769
5770 2012-01-28 Drew Adams <drew.adams@oracle.com>
5771
5772 * descr-text.el (describe-char): Show information about POS, in
5773 addition to information about the character at POS. Improve and
5774 update the doc string. Change "code point" to "code point in
5775 charset", to avoid confusion with the character's Unicode code
5776 point shown above that. (Bug#10129)
5777
5778 2012-01-28 Eli Zaretskii <eliz@gnu.org>
5779
5780 * descr-text.el (describe-char): Show the raw character, not only
5781 its display form at POS. Suggested by Kenichi Handa <handa@m17n.org>.
5782 See http://lists.gnu.org/archive/html/emacs-devel/2012-01/msg00760.html
5783 for the reasons.
5784
5785 2012-01-28 Phil Hagelberg <phil@hagelb.org>
5786
5787 * emacs-lisp/package.el (package-install):
5788 Run package-refresh-contents if there is no archive yet (Bug#9798).
5789
5790 2012-01-28 Chong Yidong <cyd@gnu.org>
5791
5792 * emacs-lisp/package.el (package-maybe-load-descriptor):
5793 New function, split from package-maybe-load-descriptor.
5794 (package-maybe-load-descriptor): Use it.
5795 (package-download-transaction): Fully load required packages
5796 inside the loop, so that `require' calls work (Bug#10593).
5797 (package-install): No need to call package-initialize now.
5798
5799 2012-01-28 Chong Yidong <cyd@gnu.org>
5800
5801 * simple.el (deactivate-mark): Doc fix (Bug#8614).
5802
5803 * tooltip.el (tooltip-mode): Doc fix.
5804 (tooltip-use-echo-area): Mark as obsolete (Bug#6595).
5805
5806 * frame.el (set-cursor-color): Doc fix (Bug#352).
5807
5808 * mail/rmail.el (rmail-start-mail): Add send-action again (Bug#10625).
5809 (rmail-mail-return): Switch to NEWBUF only if it is non-nil.
5810
5811 * cus-edit.el (custom-buffer-create-internal): Fix search button
5812 action (Bug#10542).
5813 (customize-unsaved, customize-saved): Doc fix (Bug#10541).
5814
5815 2012-01-27 Eduard Wiebe <usenet@pusto.de>
5816
5817 * dired.el (dired-mark-files-regexp):
5818 Include any subdirectory components. (Bug#10445)
5819
5820 2012-01-27 Mike Lamb <mrlamb@gmail.com> (tiny change)
5821
5822 * pcmpl-unix.el (pcmpl-ssh-known-hosts):
5823 Handle [host]:port syntax. (Bug#10533)
5824
5825 2012-01-27 Alex Harsanyi <harsanyi@mac.com>
5826
5827 * xml.el (xml-parse-tag): Fix parsing of comments (Bug#10405).
5828
5829 2012-01-26 Glenn Morris <rgm@gnu.org>
5830
5831 * dired-x.el (dired-bind-jump): Use ctl-x-map and ctl-x-4-map.
5832 * term.el (term-raw-escape-map): Use Control-X-prefix.
5833 * vc/vc-hooks.el (vc-prefix-map): Use ctl-x-map. (Bug#10566)
5834
5835 2012-01-25 Martin Rudalics <rudalics@gmx.at>
5836
5837 * window.el (window-state-get, window--state-get-1): Don't deal
5838 with fixed-sizeness of windows. Simplify code.
5839
5840 2012-01-25 Jérémy Compostella <jeremy.compostella@gmail.com>
5841
5842 * window.el (window--state-get-1, window--state-put-2):
5843 Don't save and restore the mark.
5844
5845 2012-01-25 Chong Yidong <cyd@gnu.org>
5846
5847 * custom.el (custom-variable-p): Doc fix.
5848
5849 2012-01-25 Glenn Morris <rgm@gnu.org>
5850
5851 * dired.el (dired-goto-file): Handle some of the more common
5852 characters that `ls -b' escapes. (Bug#10596)
5853
5854 * progmodes/compile.el (compilation-next-error-function):
5855 Respect compilation-first-column in the "*compilation*" buffer.
5856 * progmodes/grep.el (grep-first-column): New variable. (Bug#10594)
5857
5858 * vc/vc.el (vc-modify-change-comment): Scoping fix. (Bug#10513)
5859
5860 2012-01-24 Glenn Morris <rgm@gnu.org>
5861
5862 * pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
5863
5864 2012-01-24 Julien Danjou <julien@danjou.info>
5865
5866 * color.el (color-rgb-to-hsl): Fix value computing.
5867 (color-hue-to-rgb): New function.
5868 (color-hsl-to-rgb): New function.
5869 (color-clamp, color-saturate-hsl, color-saturate-name)
5870 (color-desaturate-hsl, color-desaturate-name, color-lighten-hsl)
5871 (color-lighten-name, color-darken-hsl, color-darken-name): New function.
5872
5873 2012-01-24 Glenn Morris <rgm@gnu.org>
5874
5875 * vc/vc-rcs.el (vc-rcs-create-tag):
5876 * vc/vc-sccs.el (vc-sccs-create-tag):
5877 Fix argument spec to be what vc-create-tag expects. (Bug#10515)
5878
5879 2012-01-23 Mike Lamb <mrlamb@gmail.com> (tiny change)
5880
5881 * eshell/esh-util.el (eshell-read-hosts-file):
5882 Skip comment lines. (Bug#10549)
5883
5884 * eshell/em-unix.el (pcomplete/ssh): Remove. (Bug#10548)
5885
5886 2012-01-23 Juanma Barranquero <lekktu@gmail.com>
5887
5888 * subr.el (display-delayed-warnings): Doc fix.
5889 (collapse-delayed-warnings): New function to collapse identical
5890 adjacent warnings.
5891 (delayed-warnings-hook): Add it.
5892
5893 2012-01-22 Michael Albinus <michael.albinus@gmx.de>
5894
5895 * net/tramp.el (tramp-action-login): Set connection property "login-as".
5896
5897 * net/tramp-sh.el (tramp-methods): Add user spec to "pscp" and "psftp".
5898 (tramp-default-user-alist): Don't add "pscp".
5899 (tramp-do-copy-or-rename-file-out-of-band): Use connection
5900 property "login-as", if set. (Bug#10530)
5901
5902 2012-01-21 Michael Albinus <michael.albinus@gmx.de>
5903
5904 * net/tramp-sh.el (tramp-default-user-alist): Don't add "plink",
5905 "plink1" and "psftp". (Bug#10530)
5906
5907 2012-01-21 Kenichi Handa <handa@m17n.org>
5908
5909 * international/mule-cmds.el (prefer-coding-system): Show a
5910 warning message if the default value of file-name-coding-system
5911 was not changed.
5912
5913 2012-01-21 Jérémy Compostella <jeremy.compostella@gmail.com>
5914
5915 * windmove.el (windmove-reference-loc):
5916 Fix windmove-reference-loc miscalculation.
5917
5918 2012-01-21 Jay Belanger <jay.p.belanger@gmail.com>
5919
5920 * calc/calc-units.el (math-put-default-units): Don't use "1" as a
5921 default unit.
5922
5923 2012-01-21 Glenn Morris <rgm@gnu.org>
5924
5925 * international/mule.el (auto-coding-alist): Add .tbz.
5926
5927 * files.el (local-enable-local-variables): Doc fix.
5928 (inhibit-local-variables-regexps): Rename from
5929 inhibit-first-line-modes-regexps. Keep old name as obsolete alias.
5930 Doc fix. Add some extensions from auto-coding-alist.
5931 (inhibit-local-variables-suffixes):
5932 Rename from inhibit-first-line-modes-suffixes. Doc fix.
5933 (inhibit-local-variables-p):
5934 New function, extracted from set-auto-mode-1.
5935 (set-auto-mode): Doc fix. Respect inhibit-local-variables-regexps.
5936 (set-auto-mode-1): Doc fix. Use inhibit-local-variables-p.
5937 (hack-local-variables): Doc fix. Make the mode-only case
5938 respect enable-local-variables and friends.
5939 Respect inhibit-local-variables-regexps for file-locals, but
5940 not for directory-locals.
5941 (set-visited-file-name):
5942 Take account of inhibit-local-variables-regexps.
5943 Whether it applies may change as the file name is changed.
5944 * jka-cmpr-hook.el (jka-compr-install):
5945 * jka-compr.el (jka-compr-uninstall):
5946 Update for inhibit-first-line-modes-suffixes name change.
5947
5948 2012-01-20 Martin Rudalics <rudalics@gmx.at>
5949
5950 * help-macro.el (make-help-screen): Temporarily restore original
5951 binding for minor-mode-map-alist (Bug#10454).
5952
5953 2012-01-19 Julien Danjou <julien@danjou.info>
5954
5955 * color.el (color-name-to-rgb): Use the white color to find the max
5956 color component value and return correctly computed values.
5957 (color-name-to-rgb): Add missing float conversion for max value.
5958
5959 2012-01-19 Martin Rudalics <rudalics@gmx.at>
5960
5961 * window.el (window--state-get-1, window-state-get): Do not use
5962 special state value for window-persistent-parameters.
5963 Rename argument IGNORE to WRITABLE. Rewrite doc-string.
5964 (window--state-put-2): Reset all window parameters to nil before
5965 assigning values of persistent parameters.
5966
5967 2012-01-18 Alan Mackenzie <acm@muc.de>
5968
5969 Eliminate sluggishness and hangs in fontification of "semicolon
5970 deserts".
5971
5972 * progmodes/cc-engine.el (c-state-nonlit-pos-interval):
5973 Change value 10000 -> 3000.
5974 (c-state-safe-place): Reformulate so it doesn't stack up an
5975 infinite number of wrong entries in c-state-nonlit-pos-cache.
5976 (c-determine-limit-get-base, c-determine-limit): New functions to
5977 determine backward search limits disregarding literals.
5978 (c-find-decl-spots): Amend commenting.
5979 (c-cheap-inside-bracelist-p): New function which detects "={".
5980
5981 * progmodes/cc-fonts.el
5982 (c-make-font-lock-BO-decl-search-function): Give a limit to a
5983 backward search.
5984 (c-font-lock-declarations): Fix an occurrence of point being
5985 undefined. Check additionally for point being in a bracelist or
5986 near a macro invocation without a semicolon so as to avoid a
5987 fruitless time consuming search for a declarator. Give a more
5988 precise search limit for declarators using the new
5989 c-determine-limit.
5990
5991 2012-01-18 Glenn Morris <rgm@gnu.org>
5992
5993 * files.el (auto-mode-alist, inhibit-first-line-modes-regexps)
5994 (set-auto-mode): Doc fixes.
5995
5996 2012-01-17 Glenn Morris <rgm@gnu.org>
5997
5998 * isearch.el (search-nonincremental-instead): Fix doc typo.
5999
6000 * dired.el (dired-insert-directory): Handle newlines in directory name.
6001 (dired-build-subdir-alist): Unescape newlines in directory name.
6002
6003 2012-01-17 Michael Albinus <michael.albinus@gmx.de>
6004
6005 * net/tramp.el (tramp-local-end-of-line): New defcustom.
6006 (tramp-action-login, tramp-action-yesno, tramp-action-yn)
6007 (tramp-action-terminal): Use it. (Bug#10530)
6008
6009 2012-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
6010
6011 * minibuffer.el (completion--replace): Strip properties (bug#10062).
6012
6013 2012-01-16 Martin Rudalics <rudalics@gmx.at>
6014
6015 * window.el (window-state-ignored-parameters): Remove variable.
6016 (window--state-get-1): Rename argument MARKERS to IGNORE.
6017 Handle persistent window parameters. Make copy of clone-of
6018 parameter only if requested. (Bug#10348)
6019 (window--state-put-2): Install a window parameter only if it has
6020 a non-nil value or an existing parameter shall be overwritten.
6021
6022 2012-01-15 Michael Albinus <michael.albinus@gmx.de>
6023
6024 * net/tramp-sh.el (tramp-remote-path): Set tramp-autoload cookie.
6025
6026 2012-01-14 Eli Zaretskii <eliz@gnu.org>
6027
6028 * info.el (Info-toc-build): If the Info file has no "Up" pointer,
6029 don't pass the (nil) value of `upnode' to string-match.
6030
6031 2012-01-14 Chong Yidong <cyd@gnu.org>
6032
6033 * startup.el (command-line): Fix X resource class for cursorColor.
6034 Fix values recognized by the cursorBlink resource.
6035
6036 2012-01-14 Paul Eggert <eggert@cs.ucla.edu>
6037
6038 * epg.el (epg--make-temp-file): Avoid permission race condition
6039 when running on old Emacs versions (bug#10403).
6040
6041 2012-01-14 Glenn Morris <rgm@gnu.org>
6042
6043 * dired.el (dired-get-filename): Fix 'verbatim case of previous change.
6044
6045 2012-01-13 Alan Mackenzie <acm@muc.de>
6046
6047 Fix filling for when filladapt mode is enabled.
6048
6049 * progmodes/cc-cmds.el (c-fill-paragraph): In the invocation of
6050 c-mask-paragraph, pass in `fill-paragraph' rather than
6051 `fill-region-as-paragraph'. (This is a reversion of a previous
6052 change.)
6053 * progmodes/cc-mode.el (c-basic-common-init):
6054 Make fill-paragraph-handle-comment buffer local and set it to nil.
6055
6056 2012-01-13 Glenn Morris <rgm@gnu.org>
6057
6058 * dired.el (dired-switches-escape-p): New function.
6059 (dired-insert-directory): Use dired-switches-escape-p.
6060 (dired-get-filename): Undo "\ " quoting if needed. (Bug#10469)
6061
6062 * find-dired.el (find-ls-option): Doc fix. (Bug#10262)
6063
6064 2012-01-12 Glenn Morris <rgm@gnu.org>
6065
6066 * mail/sendmail.el (mail-mode): Update paragraph-separate for
6067 changes in adaptive-fill-regexp. (Bug#10276)
6068
6069 2012-01-11 Alan Mackenzie <acm@muc.de>
6070
6071 Fix Emacs bug #10463 - put `widen's around the critical spots.
6072
6073 * progmodes/cc-engine.el (c-in-literal, c-literal-limits): Put a
6074 widen around each invocation of c-state-pp-to-literal. Remove an
6075 unused let variable.
6076
6077 2012-01-11 Glenn Morris <rgm@gnu.org>
6078
6079 * dired-aux.el (dired-do-shell-command): Fix */? logic. (Bug#6561)
6080 Doc fix.
6081
6082 2012-01-10 Chong Yidong <cyd@gnu.org>
6083
6084 * net/network-stream.el (network-stream-open-starttls):
6085 Avoid emitting a confusing error message when the server gives a bad
6086 response to the capability command.
6087
6088 2012-01-10 Glenn Morris <rgm@gnu.org>
6089
6090 * mail/unrmail.el (unrmail): Tweak previous change.
6091
6092 2012-01-09 Chong Yidong <cyd@gnu.org>
6093
6094 * custom.el (custom-safe-themes): Use SHA-256 for hashing.
6095
6096 2012-01-08 Alan Mackenzie <acm@muc.de>
6097
6098 Optimise font locking in long enum definitions.
6099
6100 * progmodes/cc-fonts.el (c-font-lock-declarations): Add an extra
6101 arm to a cond form to handle enums.
6102 * progmodes/cc-langs.el (c-enums-contain-decls): New lang variable.
6103 * progmodes/cc-mode.el (c-font-lock-fontify-region): Correct a typo.
6104
6105 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
6106
6107 * files.el (move-file-to-trash): Preserve default file modes on error.
6108 (Bug#10401)
6109
6110 2012-01-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
6111
6112 * faces.el (set-face-attribute): Clarify the meaning of the nil
6113 frame (bug#10294).
6114
6115 * subr.el (with-selected-frame): Mention that the selected frame
6116 is restored (bug#9980).
6117
6118 * ibuffer.el (ibuffer-mode): List the bindings in the corrent map
6119 (bug#9759).
6120
6121 * mail/smtpmail.el (password-cache-add): Remove unused declaration.
6122 (password-read): Don't autoload unused function.
6123
6124 2012-01-07 Juanma Barranquero <lekktu@gmail.com>
6125
6126 * progmodes/which-func.el (which-func-mode): Turn into a
6127 non-interactive function and mark as obsolete (bug#10428).
6128
6129 2012-01-06 Chong Yidong <cyd@gnu.org>
6130
6131 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
6132 (hack-one-local-variable-eval-safep): Allow 0 arg for minor mode
6133 functions, along with 1 and -1.
6134
6135 2012-01-06 Eli Zaretskii <eliz@gnu.org>
6136
6137 * time.el (display-time-load-average)
6138 (display-time-default-load-average): Doc fixes. See the thread
6139 starting at
6140 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-01/msg00059.html
6141 for the details.
6142
6143 2012-01-06 Glenn Morris <rgm@gnu.org>
6144
6145 * mail/unrmail.el (unrmail): Give an explicit error if the input file
6146 has no messages. (Bug#10377)
6147
6148 * info.el (Info-mode-map): Bind e to end-of-buffer, rather
6149 than Info-edit. (Bug#10385)
6150
6151 * time.el (display-time-load-average, display-time-next-load-average):
6152 Doc fixes.
6153
6154 * emacs-lisp/bytecomp.el (byte-compile-file): Do not propagate a file
6155 local setting of buffer-read-only to the input buffer. (Bug#10419)
6156
6157 * calendar/calendar.el (calendar-mode):
6158 Locally set scroll-margin to 0. (Bug#10379)
6159
6160 2012-01-06 Ulrich Mueller <ulm@gentoo.org>
6161
6162 * play/doctor.el (doctor-death): Escape "," characters. (Bug#10370)
6163
6164 2012-01-05 Glenn Morris <rgm@gnu.org>
6165
6166 * eshell/em-unix.el (diff-no-select): Autoload it.
6167 (eshell/diff): Use diff-no-select. (Bug#10420)
6168
6169 2012-01-05 Chong Yidong <cyd@gnu.org>
6170
6171 * shell.el (shell-dynamic-complete-functions): Revert last change.
6172 (shell-command-completion-function): New function.
6173 (shell-completion-vars): Use it to implement
6174 shell-completion-execonly (Bug#10417).
6175
6176 * custom.el (enable-theme): Don't set custom-safe-themes.
6177
6178 * cus-theme.el (custom-theme-merge-theme):
6179 Ignore custom-enabled-themes and custom-safe-themes.
6180
6181 2012-01-05 Michael R. Mauger <mmaug@yahoo.com>
6182
6183 * progmodes/sql.el (sql-login-hook): Add hook to respond to the
6184 first prompt in `sql-interacive-mode'.
6185 (sql-mode-oracle-font-lock-keywords): Add CONNECT_BY_* builtin
6186 keywords.
6187 (sql-mode-mysql-font-lock-keywords): Add ELSEIF keyword.
6188 (sql-product-interactive): Bug fix: Set `sql-buffer' in
6189 context of original buffer. Invoke `sql-login-hook'.
6190
6191 2012-01-04 Eli Zaretskii <eliz@gnu.org>
6192
6193 * mail/rmail.el (rmail-font-lock-keywords): Accept non-ASCII
6194 letters in cite-prefix.
6195
6196 2012-01-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
6197
6198 * mail/smtpmail.el (smtpmail-stream-type): Mention the `ssl' value.
6199
6200 2012-01-03 Chong Yidong <cyd@gnu.org>
6201
6202 * shell.el (shell-dynamic-complete-functions):
6203 Put pcomplete-completions-at-point, so as to try
6204 comint-filename-completion first (Bug#10417).
6205
6206 2012-01-02 Richard Stallman <rms@gnu.org>
6207
6208 * battery.el (battery-status-function):
6209 Detect when to use battery-yeeloong-sysfs.
6210 (battery-echo-area-format): Add string for Yeeloong.
6211 (battery-linux-proc-apm, battery-linux-proc-acpi): Doc fixes.
6212 (battery-yeeloong-sysfs): New function.
6213
6214 2012-01-02 Chong Yidong <cyd@gnu.org>
6215
6216 * dirtrack.el (dirtrack-list): Eliminate unused third element.
6217 (dirtrack): Merge code for handling relative filenames in prompt
6218 from shell-dir-cookie-watcher.
6219 (dirtrack-debug-message): New arg to avoid excess format calls.
6220
6221 * shell.el (shell-dir-cookie-re): Variable deleted.
6222 (shell-dir-cookie-watcher): Function deleted.
6223 (shell-mode): Don't use shell-dir-cookie-re, since it is redundant
6224 with dirtrack-mode.
6225
6226 2012-01-01 Eli Zaretskii <eliz@gnu.org>
6227
6228 * term/w32-win.el (dynamic-library-alist) <gnutls>:
6229 Load libgnutls-28.dll, from GnuTLS version 3.x, in preference to
6230 libgnutls-26.dll.
6231
6232 2011-12-31 Andreas Schwab <schwab@linux-m68k.org>
6233
6234 * emacs-lisp/bytecomp.el (byte-compile-file): Fix indentation.
6235
6236 2011-12-31 Eli Zaretskii <eliz@gnu.org>
6237
6238 * mail/rmail.el (rmail-show-message-1): Decode any RFC2047 encoded
6239 headers of non-MIME messages, when rmail-enable-mime is non-nil.
6240
6241 2011-12-29 Michael Albinus <michael.albinus@gmx.de>
6242
6243 * net/tramp-sh.el (tramp-find-shell): Set "remote-shell" property
6244 also for alternative shells.
6245 (tramp-open-connection-setup-interactive-shell): Check, whether
6246 the shell is a busybox.
6247 (tramp-send-command): Don't suppress multiple prompts for
6248 busyboxes, it hurts.
6249
6250 2011-12-28 Chong Yidong <cyd@gnu.org>
6251
6252 * progmodes/gdb-mi.el (gdb-get-source-file-list)
6253 (gdb-get-source-file): Move mode line update to
6254 gdb-get-source-file (Bug#10087).
6255
6256 2011-12-25 Chong Yidong <cyd@gnu.org>
6257
6258 * progmodes/gud.el (gud-gdb-fetch-lines-filter): Just use
6259 gud-gdb-marker-filter without taking it as an argument.
6260 (gud-gdb-run-command-fetch-lines): Caller changed.
6261 (gud-gdb-completion-function): New variable.
6262 (gud-gdb-completion-at-point): Use it.
6263 (gud-gdb-completions-1): Split from gud-gdb-completions.
6264
6265 * progmodes/gdb-mi.el (gdb-input): Accept command and handler
6266 function as separate arguments.
6267 (gdb-init-1, gdb-non-stop-handler, gdb-check-target-async)
6268 (gdb-tooltip-print-1, gud-watch, gdb-speedbar-update)
6269 (gdb-var-list-children, gdb-var-set-format, gdb-var-delete-1)
6270 (gdb-var-delete-children, gdb-edit-value, gdb-var-update)
6271 (gdb-stopped, def-gdb-auto-update-trigger)
6272 (gdb-place-breakpoints, gdb-select-thread, gdb-select-frame)
6273 (gdb-get-changed-registers, gdb-get-main-selected-frame):
6274 Callers changed.
6275 (gud-gdbmi-completions): New function.
6276 (gdb): Use it for generating the completion table.
6277
6278 2011-12-24 Alan Mackenzie <acm@muc.de>
6279
6280 Introduce a mechanism to widen the region used in context font
6281 locking. Use this to protect declarations from losing their contexts.
6282
6283 * progmodes/cc-langs.el (c-before-font-lock-functions):
6284 Replace c-set-fl-decl-start with c-change-set-fl-decl-start (Renaming).
6285 (c-before-context-fontification-functions): New defvar, a list of
6286 functions to be run just before context (etc.) font locking.
6287
6288 * progmodes/cc-mode.el (c-extend-font-lock-region-for-macros):
6289 New, functionality extracted from
6290 c-neutralize-syntax-in-and-mark-CPP.
6291 (c-in-after-change-fontification): New variable.
6292 (c-after-change): Set c-in-after-change-fontification.
6293 (c-set-fl-decl-start): Rejig its interface, so it can be called
6294 from both after-change and context fontifying.
6295 (c-change-set-fl-decl-start, c-context-set-fl-decl-start):
6296 New functions.
6297 (c-standard-font-lock-fontify-region-function): New variable.
6298 (c-font-lock-fontify-region): New function.
6299
6300 2011-12-24 Juri Linkov <juri@jurta.org>
6301
6302 * window.el (window--state-get-1): Set `FORCE' arg of `mark' to t.
6303 (Bug#10348)
6304
6305 2011-12-23 Michael Albinus <michael.albinus@gmx.de>
6306
6307 * net/ange-ftp.el (ange-ftp-copy-file-internal): Check for
6308 existence of source file. (Bug#10325)
6309
6310 2011-12-23 Alan Mackenzie <acm@muc.de>
6311
6312 Fix unstable fontification inside templates.
6313
6314 * progmodes/cc-langs.el (c-before-font-lock-functions):
6315 Newly created from the singular version. The (c c++ objc) entry now
6316 additionally has c-set-fl-decl-start. The other languages (apart
6317 from AWK) have that as a single entry.
6318
6319 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
6320 The functionality for "local" declarations has been extracted to
6321 c-set-fl-decl-start.
6322
6323 * progmodes/cc-mode.el (c-common-init, c-after-change):
6324 Changes due to pluralisation of c-before-font-lock-functions.
6325 (c-set-fl-decl-start): New function, extracted from
6326 c-font-lock-enclosing-decls and enhanced.
6327
6328 2011-12-23 Juanma Barranquero <lekktu@gmail.com>
6329
6330 * desktop.el (desktop-internal-v2s): Fix typos in docstring (bug#10353).
6331
6332 2011-12-22 Juri Linkov <juri@jurta.org>
6333
6334 * progmodes/grep.el (rgrep): Fix docstring. (Bug#10185)
6335
6336 2011-12-22 Chong Yidong <cyd@gnu.org>
6337
6338 * vc/vc-hooks.el (vc-keep-workfiles): Doc fix.
6339
6340 2011-12-21 Drew Adams <drew.adams@oracle.com>
6341
6342 * files.el (file-remote-p): Fix docstring. (Bug#10319)
6343
6344 2011-12-21 Jérémy Compostella <jeremy.compostella@gmail.com>
6345
6346 * battery.el (battery-linux-sysfs): Add missing parameters from acpi.
6347
6348 2011-12-21 Teodor Zlatanov <tzz@lifelogs.com>
6349
6350 * progmodes/cfengine.el: Add Version. Improve CFEngine 3.x syntax
6351 highlighting and support. Fix up comments for capitalization.
6352 (cfengine-mode-debug): New var.
6353 (cfengine3-mode): Change the modeline indicator to "CFE3".
6354 (cfengine3-font-lock-keywords): Improve defun highlighting.
6355 (cfengine2-actions): Rename from `cfengine-actions'.
6356 (cfengine2-font-lock-keywords): Rename from
6357 `cfengine-font-lock-keywords'.
6358 (cfengine2-imenu-expression): Rename from
6359 `cfengine-imenu-expression'.
6360 (cfengine2-outline-level): Rename from `cfengine-outline-level'.
6361 (cfengine2-beginning-of-defun): Rename from
6362 `cfengine-beginning-of-defun'.
6363 (cfengine2-end-of-defun): Rename from `cfengine-end-of-defun'.
6364 (cfengine2-indent-line): Rename from `cfengine-indent-line'.
6365 (cfengine2-mode): Rename from `cfengine-mode'. Change the
6366 modeline indicator to "CFE2".
6367 (cfengine-mode): Defalias to `cfengine-auto-mode'.
6368 (cfengine-mode-abbrevs): Mark obsolete.
6369
6370 2011-12-21 Chong Yidong <cyd@gnu.org>
6371
6372 * vc/vc-bzr.el (vc-bzr-rename-file): Don't pass ~ to Bzr in
6373 filename argument.
6374
6375 2011-12-20 Martin Rudalics <rudalics@gmx.at>
6376
6377 * window.el (window-normalize-buffer-to-display): Remove.
6378 (display-buffer): Handle buffer-or-name argument as in Emacs 23.
6379
6380 2011-12-19 Chong Yidong <cyd@gnu.org>
6381
6382 * vc/vc-dir.el (vc-dir-parent-marked-p, vc-dir-children-marked-p):
6383 Don't signal an error in a predicate function; return non-nil.
6384 (vc-dir-mark-file): Move the error here.
6385 (vc-dir-mark-unmark): If acting on the region, keep going if one
6386 of the entries cannot be marked/unmarked.
6387 (vc-dir-mark-all-files): If current entry is a directory, mark
6388 only child files, as documented.
6389
6390 2011-12-19 Vincent Belaïche <vincentb1@users.sourceforge.net>
6391
6392 * ses.el: Ooops... undo changes of 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net, as trunk
6393 branch is feature frozen, and 2011-12-11T14:49:48Z!vincentb1@users.sourceforge.net was a feature
6394 addition.
6395
6396 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
6397
6398 * term/ns-win.el (ns-get-selection-internal)
6399 (ns-store-selection-internal): Declare.
6400 (ns-store-cut-buffer-internal, ns-get-cut-buffer-internal):
6401 Declare as obsolete.
6402 (ns-get-pasteboard, ns-paste-secondary):
6403 Use ns-get-selection-internal.
6404 (ns-set-pasteboard, ns-copy-including-secondary):
6405 Use ns-store-selection-internal.
6406
6407 2011-12-17 Chong Yidong <cyd@gnu.org>
6408
6409 * vc/vc.el (vc-next-action): Doc fix; remove CVS-isms.
6410 (vc-deduce-fileset): Doc fix.
6411
6412 2011-12-16 Andreas Schwab <schwab@linux-m68k.org>
6413
6414 * calc/calc-misc.el (calc-help): Avoid wrapping help message.
6415
6416 2011-12-13 Sam Steingold <sds@gnu.org>
6417
6418 * man.el (Man-getpage-in-background): When running under a
6419 window-system, ignore $MANWIDTH and $COLUMNS.
6420
6421 2011-12-15 Kenichi Handa <handa@m17n.org>
6422
6423 * language/ethio-util.el: Change coding tag to utf-8-emacs.
6424 (setup-ethiopic-environment-internal): Comment out key-binding for
6425 ethio-toggle-punctuation.
6426
6427 2011-12-13 Alan Mackenzie <acm@muc.de>
6428
6429 Add the switch statement to AWK Mode.
6430
6431 * progmodes/cc-awk.el (awk-font-lock-keywords): Add "switch", "case",
6432 "default" to the keywords regexp.
6433
6434 * progmodes/cc-langs.el (c-label-kwds): Let AWK take the same
6435 expression as the rest.
6436 (c-nonlabel-token-key): Allow string literals for AWK.
6437 Refactor for the other modes.
6438
6439 Large brace-block initialisation makes CC Mode slow: Fix.
6440 Tidy up and accelerate c-in-literal, etc. by using the c-parse-state
6441 routines. Limit backward searching in c-font-lock-enclosing.decl.
6442
6443 * progmodes/cc-engine.el (c-state-pp-to-literal): Return the
6444 pp-state and literal type in addition to the limits.
6445 (c-state-safe-place): New defun, extracted from c-state-literal-at.
6446 (c-state-literal-at): Use the above new defun.
6447 (c-slow-in-literal, c-fast-in-literal): Remove.
6448 (c-in-literal, c-literal-limits): Amend to use c-state-pp-to-literal.
6449
6450 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls): Check for
6451 being in a literal. Add a limit for backward searching.
6452
6453 * progmodes/cc-mode.el (awk-mode): Don't alias c-in-literal to
6454 c-slow-in-literal.
6455
6456 2011-12-13 Stefan Monnier <monnier@iro.umontreal.ca>
6457
6458 * progmodes/pascal.el: Declare `ind' as dyn-bound (bug#10264).
6459
6460 2011-12-13 Martin Rudalics <rudalics@gmx.at>
6461
6462 * window.el (delete-other-windows): Use correct frame in call to
6463 window-with-parameter.
6464
6465 2011-12-12 Daniel Pfeiffer <occitan@t-online.de>
6466
6467 * progmodes/make-mode.el: Bring it up to date with makepp V2.0.
6468 (makefile-make-font-lock-keywords): Extend meaning of `keywords'.
6469 (makefile-gmake-statements, makefile-makepp-statements):
6470 Use it and add new makepp keywords.
6471 (makefile-makepp-font-lock-keywords): Add new patterns.
6472 (makefile-match-function-end): Match new [...] and [[...]].
6473
6474 2011-12-11 Juanma Barranquero <lekktu@gmail.com>
6475
6476 * ses.el (ses-call-printer-return, ses-cell-property-get)
6477 (ses-sym-rowcol, ses-printer-validate, ses-formula-record)
6478 (ses-create-cell-variable, ses-reset-header-string)
6479 (ses-cell-set-formula, ses-repair-cell-reference-all)
6480 (ses-self-reference-early-detection, ses-in-print-area, ses-set-curcell)
6481 (ses-check-curcell, ses-call-printer, ses-adjust-print-width)
6482 (ses-print-cell-new-width, ses-formula-references, ses-relocate-formula)
6483 (ses-aset-with-undo, ses-load, ses-truncate-cell)
6484 (ses-read-column-printer, ses-read-default-printer, ses-insert-row)
6485 (ses-delete-row, ses-delete-column, ses-append-row-jump-first-column)
6486 (ses-kill-override, ses-yank-pop, ses-yank-cells, ses-yank-tsf)
6487 (ses-yank-resize, ses-export-tab, ses-mark-row, ses-mark-column)
6488 (ses-renarrow-buffer, ses-insert-range, ses-insert-ses-range)
6489 (ses-safe-printer, ses-safe-formula, ses-warn-unsafe, ses--clean-!)
6490 (ses--clean-_, ses-range, ses-select, ses-center, ses-center-span)
6491 (ses-dashfill, ses-unsafe): Fix typos and reflow docstrings.
6492
6493 2011-12-11 Vincent Belaïche <vincentb1@users.sourceforge.net>
6494
6495 * ses.el: The overall change is to add cell renaming, that is
6496 setting fancy names for cell symbols other than name matching
6497 "\\`[A-Z]+[0-9]+\\'" regexp .
6498 (ses-create-cell-variable): New defun.
6499 (ses-relocate-formula): Relocate formulas only for cells the
6500 symbols of which are not renamed, i.e. symbols whose names do not
6501 match regexp "\\`[A-Z]+[0-9]+\\'".
6502 (ses-relocate-all): Relocate values only for cells the symbols of
6503 which are not renamed.
6504 (ses-load): Create cells variables as the (ses-cell ...) are read,
6505 in order to check row col consistency with cell symbol name only
6506 for cells that are not renamed.
6507 (ses-replace-name-in-formula): New defun.
6508 (ses-rename-cell): New defun.
6509
6510 2011-12-11 Chong Yidong <cyd@gnu.org>
6511
6512 * progmodes/gdb-mi.el (gdb): Set comint-prompt-regexp, required
6513 for completion via gud-gdb-fetch-lines-filter (Bug#10274).
6514
6515 2011-12-11 Eric Hanchrow <eric.hanchrow@gmail.com>
6516
6517 * window.el (other-window): Fix docstring.
6518
6519 2011-12-10 Eli Zaretskii <eliz@gnu.org>
6520
6521 * mail/rmailsum.el (rmail-header-summary): RFC2047 decode the
6522 `from' or `to' address before taking its substring.
6523 Fixes incorrect display in Rmail summary buffer whereby an RFC2047
6524 encoded name is chopped in the middle of the encoded string, and
6525 thus displayed encoded.
6526
6527 2011-12-10 Juanma Barranquero <lekktu@gmail.com>
6528
6529 * makefile.w32-in (update-subdirs-CMD): Use a Local Variables section.
6530
6531 2011-12-10 Eli Zaretskii <eliz@gnu.org>
6532
6533 * textmodes/texnfo-upd.el: Update commentary. Add a warning not
6534 to use texinfo-update-node and commands that call it if the
6535 Texinfo file uses @node lines without next/prev/up pointers.
6536 Correct outdated description about texinfo-master-menu.
6537 (texinfo-all-menus-update, texinfo-master-menu)
6538 (texinfo-update-node, texinfo-every-node-update)
6539 (texinfo-multiple-files-update): Doc fix. Warn against updating
6540 all the @node lines.
6541 (texinfo-master-menu): Only call texinfo-update-node if the prefix
6542 argument is numeric. Explain better in the doc string what the
6543 function really does.
6544 (texinfo-insert-master-menu-list): Improve the error message
6545 displayed if there's no menu in the Top node.
6546 (Bug#2975) See also this thread:
6547 http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00156.html.
6548
6549 2011-12-09 Manuel Gómez <mgrojo@gmail.com> (tiny change)
6550
6551 * speedbar.el (speedbar-supported-extension-expressions):
6552 Add .adb and .ads, commonly used for Ada source code (bug#10256).
6553
6554 2011-12-09 Juanma Barranquero <lekktu@gmail.com>
6555
6556 * printing.el (pr-mode-alist):
6557 * simple.el (filter-buffer-substring-functions)
6558 (completion-list-insert-choice-function):
6559 * window.el (window-with-parameter, window-atom-root)
6560 (window-sides-slots, window-size-fixed, window-min-delta)
6561 (window-max-delta, window--resize-mini-window)
6562 (window--resize-child-windows-normal, window-tree)
6563 (delete-other-windows, quit-window, split-window)
6564 (display-buffer-record-window, special-display-buffer-names)
6565 (special-display-regexps, special-display-popup-frame)
6566 (same-window-p, split-window-sensibly)
6567 (display-buffer-overriding-action, display-buffer-alist)
6568 (display-buffer-base-action, display-buffer, switch-to-buffer)
6569 (switch-to-buffer-other-window, switch-to-buffer-other-frame)
6570 (fit-window-to-buffer, recenter-positions)
6571 (mouse-autoselect-window-state, mouse-autoselect-window-select):
6572 * emacs-lisp/syntax.el (syntax-propertize-function): Fix typos
6573 and remove unneeded backslashes in docstrings.
6574
6575 2011-12-08 Stefan Monnier <monnier@iro.umontreal.ca>
6576
6577 * emacs-lisp/lisp-mode.el (defmethod): Add doc-string-elt (bug#10244).
6578
6579 * pcmpl-gnu.el: Don't fail when there is no Makefile nor -f arg.
6580 (pcmpl-gnu-makefile-regexps): Accept "makefile" as well as files that
6581 end in ".mk".
6582 (pcmpl-gnu-make-rule-names): Check "makefile" and ignore errors
6583 when reading the makefile (bug#10116).
6584
6585 2011-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
6586
6587 * pcmpl-gnu.el (pcomplete/make): Also allow filename arguments
6588 (bug#10116).
6589
6590 2011-12-06 Glenn Morris <rgm@gnu.org>
6591
6592 * emacs-lisp/package.el (package-archives): Doc fix re riskiness.
6593
6594 2011-12-06 Chong Yidong <cyd@gnu.org>
6595
6596 * progmodes/cc-fonts.el (c-annotation-face): Use defface.
6597
6598 2011-12-06 Juanma Barranquero <lekktu@gmail.com>
6599
6600 * textmodes/table.el (table-shorten-cell): Fix typo.
6601
6602 2011-12-05 Christopher Genovese <genovese.cr@gmail.com> (tiny change)
6603
6604 * emacs-lisp/assoc.el (aput): Fix return value (bug#10146)
6605
6606 2011-12-05 Eli Zaretskii <eliz@gnu.org>
6607
6608 * descr-text.el (describe-char): Fix display of strong
6609 right-to-left characters and directional embeddings and overrides.
6610
6611 * simple.el (what-cursor-position): Fix display of codepoints of
6612 strong right-to-left characters.
6613
6614 2011-12-05 Chong Yidong <cyd@gnu.org>
6615
6616 * faces.el (read-color): Doc fix.
6617
6618 2011-12-05 Glenn Morris <rgm@gnu.org>
6619
6620 * align.el (align--set-marker): Add doc-string.
6621 Don't try to move something that is not a marker. (Bug#10216)
6622
6623 2011-12-04 Glenn Morris <rgm@gnu.org>
6624
6625 * calendar/appt.el (appt-add): Rewrite the interactive-spec to avoid
6626 overly zealous deletion of trailing whitespace.
6627
6628 2011-12-04 Juanma Barranquero <lekktu@gmail.com>
6629
6630 * server.el (server-delete-client): On Windows, do not try to delete
6631 the only terminal.
6632 (server-process-filter): On Windows, treat requests for a tty frame as
6633 if they were for a GUI frame if the running server is in GUI mode.
6634
6635 2011-12-03 Glenn Morris <rgm@gnu.org>
6636
6637 * textmodes/texinfmt.el (batch-texinfo-format): Doc fix. (Bug#10207)
6638
6639 2011-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
6640
6641 * electric.el: Streamline electric-indent's hook.
6642 (electric-indent-chars): Revert to simple list.
6643 (electric-indent-functions): New var.
6644 (electric-indent-post-self-insert-function): Use it.
6645
6646 * progmodes/prolog.el (prolog-find-value-by-system): Avoid error when
6647 there's no inferior buffer (bug#10196).
6648 (prolog-consult-compile): Don't use toggle-read-only.
6649
6650 2011-12-02 Michael Albinus <michael.albinus@gmx.de>
6651
6652 * net/tramp-sh.el (tramp-maybe-open-connection): Handle user
6653 interrupt. (Bug#10187)
6654
6655 2011-12-02 Stefan Monnier <monnier@iro.umontreal.ca>
6656
6657 * pcmpl-gnu.el (pcomplete/tar): large-file-warn-threshold can be nil
6658 (bug#9160).
6659
6660 * dired-aux.el (dired-query): Don't assume help-char is modifier-free
6661 (bug#10191).
6662
6663 2011-12-02 Juri Linkov <juri@jurta.org>
6664
6665 * info.el (Info-search): Display "end of manual" when Isearch
6666 reaches the end of single-file Info manual. (Bug#9918)
6667
6668 2011-12-02 Eli Zaretskii <eliz@gnu.org>
6669
6670 * isearch.el (isearch-message-prefix): Run the input method part
6671 of the prompt through bidi-string-mark-left-to-right. (Bug#10183)
6672
6673 2011-12-02 Juri Linkov <juri@jurta.org>
6674
6675 * isearch.el (isearch-occur): Use `word-search-regexp' for
6676 `isearch-word'.
6677 (isearch-search-and-update): Add condition for `isearch-word' and
6678 call `word-search-regexp'. (Bug#10145)
6679
6680 2011-12-01 Glenn Morris <rgm@gnu.org>
6681
6682 * eshell/em-hist.el (eshell-hist-initialize):
6683 Handle eshell-history-size nil and HISTSIZE set or unset.
6684 (eshell-history-file-name, eshell-history-size): Fix custom type.
6685
6686 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
6687
6688 * man.el (Man-completion-table): Fix the lambda case (bug#10168).
6689
6690 2011-12-01 Michael McNamara <mac@mail.brushroad.com>
6691
6692 * progmodes/verilog-mode.el (verilog-pretty-expr):
6693 Rework verilog-pretty-expr to handle new assignment operators in system
6694 verilog, such as += *= and the like.
6695 (verilog-assignment-operator-re): Regular expression to find the
6696 assigment operator in a verilog assignment.
6697 (verilog-assignment-operation-re): Regular expression to find an
6698 assignment statement for pretty-expr.
6699 (verilog-in-attribute-p): Query returns true if point is in an
6700 attribute context; used to skip these for expression line up from
6701 pretty-expr.
6702 (verilog-in-parameter-p): Query returns true if point is in an
6703 parameter definition context; used to skip these for expression
6704 line up from pretty-expr.
6705 (verilog-in-parenthesis-p): Query returns true if point is in a
6706 parenthetical expression, specifically ( ) but not [ ] or { };
6707 used by pretty-expr.
6708 (verilog-just-one-space): If there is no space, don't add one.
6709 (verilog-get-lineup-indent-2): Specifically skip just attribute
6710 contexts for expression lineup, rather than skipping all
6711 parenthetical expressions.
6712 (verilog-calculate-indent): Fix comment, and fix indent.
6713 (verilog-do-indent): Indent declarations in lists (suggested by
6714 Joachim Lechner).
6715 (verilog-mode-abbrev-table): Populate abbrev mode with the various
6716 skeleton items.
6717 (verilog-sk-ovm-class): Add skeleton for OVM classes (reported
6718 by Alain Mellan).
6719
6720 2011-12-01 Wilson Snyder <wsnyder@wsnyder.org>
6721
6722 * progmodes/verilog-mode.el (verilog-read-defines): Fix reading
6723 parameters with embedded comments. Reported by Ray Stevens.
6724 (verilog-calc-1, verilog-fork-wait-re) (verilog-forward-sexp,
6725 verilog-wait-fork-re): Fix indentation of "wait fork", bug407.
6726 Reported by Tim Holt.
6727 (verilog-auto): Fix AUTOing a upper module then AUTOing module
6728 instantiated by upper module causing wrong expansion until AUTOed a
6729 second time. Reported by K C Buckenmaier.
6730 (verilog-diff-auto): Fix showing .* as a difference when
6731 `verilog-auto-star-save' off. Reported by Dan Dever.
6732 (verilog-auto-reset, verilog-read-always-signals)
6733 (verilog-auto-reset-blocking-in-non): Fix AUTORESET including
6734 temporary signals in reset list if
6735 verilog-auto-reset-blocking-in-non is nil, and match assignment
6736 style to each signal's assignment type, bug381.
6737 Reported by Thomas Esposito.
6738 (verilog-sk-uvm-class, verilog-uvm-begin-re, verilog-uvm-end-re)
6739 (verilog-uvm-statement-re): Support UVM indentation and
6740 highlighting, with old OVM keywords only.
6741 (verilog-auto-tieoff, verilog-auto-tieoff-declaration):
6742 Support AUTOTIEOFF creating non-wire data types.
6743 Suggested by Jonathan Greenlaw.
6744 (verilog-auto-insert-lisp, verilog-delete-to-paren)
6745 (verilog-forward-sexp-cmt, verilog-forward-sexp-ign-cmt)
6746 (verilog-inject-sense, verilog-read-inst-pins)
6747 (verilog-read-sub-decls, verilog-read-sub-decls-line):
6748 Fix mismatching parenthesis inside commented out code when deleting
6749 AUTOINST, bug383. Reported by Jonathan Greenlaw.
6750 (verilog-auto-ascii-enum): Fix AUTOASCIIENUM one-hot with
6751 non-numeric vector width. Reported by Alex Reed.
6752 (verilog-auto-ascii-enum): Add "onehot" option to work around not
6753 detecting signals with parameter widths. Reported by Alex Reed.
6754 (verilog-auto-delete-trailing-whitespace):
6755 With `verilog-auto-delete-trailing-whitespace' remove trailing
6756 whitespace in auto expansion, bug371. Reported by Brad Dobbie.
6757 (verilog-run-hooks, verilog-scan-cache-flush, verilog-syntax-ppss):
6758 Fix verilog-scan-cache corruption when running user AUTO expansion
6759 hooks that call indentation routines.
6760 (verilog-simplify-range-expression): Fix typo ignoring lower case
6761 identifiers.
6762 (verilog-delete-auto): Fix delete-autos to also remove user created
6763 automatics, as long as they start with AUTO.
6764 (verilog-batch-diff-auto, verilog-diff-auto)
6765 (verilog-diff-function): Add `verilog-diff-auto' and bind to
6766 "C-c?" to report differences in AUTO expansion, ignoring spaces.
6767 (verilog-backward-syntactic-ws-quick, verilog-beg-of-defun-quick)
6768 (verilog-in-paren-quick, verilog-re-search-backward-quick)
6769 (verilog-re-search-forward-quick, verilog-syntax-ppss):
6770 Fix calling `syntax-ppss' when inside auto expansions as the ppss hook
6771 is disabled and its cache will get corrupt, causing AUTOS not to
6772 expand. Instead use only -quick functions.
6773 (verilog-scan-region): Fix scanning over escaped quotes.
6774 (verilog-inside-comment-or-string-p, verilog-inside-comment-p)
6775 (verilog-re-search-backward-quick)
6776 (verilog-re-search-forward-quick, verilog-scan): verilog-scan and
6777 related functions now ignore strings, to fix misparsing of strings
6778 with magic comments embedded in them.
6779 (verilog-read-auto-template):
6780 Fix 'verilog-auto-inst-template-numbers' with extra newline before (.
6781 Reported by Brad Dobbie.
6782 (verilog-read-auto-template):
6783 Fix 'verilog-auto-inst-template-numbers' with comments.
6784 Reported by Brad Dobbie.
6785 (verilog-auto-inst, verilog-auto-inst-param)
6786 (verilog-auto-inst-sort): Add 'verilog-auto-inst-sort' to reduce
6787 merge conflicts with AUTOINST, bug358. Reported by Brad Dobbie.
6788 (verilog-auto-inst-template-numbers): Add 'lhs' policy for
6789 debugging templates without merge conflicts, bug357.
6790 Reported by Brad Dobbie.
6791 (verilog-read-auto-template):
6792 Fix verilog-auto-inst-template-numbers with multiple templates.
6793 Reported by Brad Dobbie.
6794 (verilog-define-abbrev): Fix verilog-mode abbrevs to be system
6795 abbrevs so user won't be asked to save.
6796 (verilog-read-auto-lisp-present): Fix to start at beginning of
6797 buffer in case called outside of verilog-auto.
6798 (verilog-simplify-range-expression): Fix AUTOWIRE expanding "X-1+1"
6799 to "X-2". Reported by Matthew Myers.
6800 (verilog-auto, verilog-auto-inout-in): Add AUTOINOUTIN for creating
6801 all inputs from module templates. Reported by Leith Johnson.
6802 (verilog-module-inside-filename-p): Fix locating programs as with
6803 modules.
6804 (verilog-auto-inst-port): Fix vl-width expressions when using
6805 verilog-auto-inst-param-value, bug331. Reported by Julian Gorfajn.
6806 (verilog-decls-get-regs, verilog-decls-get-signals,
6807 verilog-decls-get-vars, verilog-decls-get-wires, verilog-decls-new,
6808 verilog-modi-cache-add-vars, verilog-modi-cache-add-wires,
6809 verilog-read-decls): Combine reg and wire structures into one var
6810 structure to represent SystemVerilog concepts.
6811 (verilog-auto-ascii-enum, verilog-auto-logic, verilog-auto-reg)
6812 (verilog-auto-reg-input, verilog-auto-tieoff, verilog-auto-wire)
6813 (verilog-auto-wire-type, verilog-insert-definition):
6814 Add verilog-auto-wire-type and AUTOLOGIC to support using
6815 SystemVerilog "logic" keyword instead of "wire"/"reg".
6816 (verilog-auto-reg-input, verilog-decls-get-signals): Fix AUTOWIRE
6817 to declares outputs that also have assignments (presumably in an
6818 ifdef or generate if so there's not a driver conflict).
6819 Reported by Matthew Myers.
6820 (verilog-auto-declare-nettype, verilog-insert-definition):
6821 Add verilog-auto-declare-nettype to fix declarations using
6822 `default_nettype none. Reported by Julian Gorfajn.
6823 (verilog-read-always-signals-recurse, verilog-read-decls)
6824 (verilog-read-sub-decls-gate): Fix infinite loop with (*) and
6825 malformed end statement, bug325. Reported by Joshua Wise and
6826 Andrew Drake.
6827 (verilog-auto-star-safe, verilog-delete-auto-star-implicit)
6828 (verilog-inst-comment-re): Fix not deleting Interfaced comment
6829 when expanding .* in interfaces, bug320.
6830 Reported by Pierre-David Pfister.
6831 (verilog-read-module-name): Fix import statements between module
6832 name and open parenthesis, bug317.
6833 Reported by Pierre-David Pfister.
6834 (verilog-simplify-range-expression): Fix simplification of
6835 multiplications inside AUTOWIRE connections, bug303.
6836 (verilog-auto-inst-port): Support parameter expansion in
6837 multidimensional arrays.
6838 (verilog-read-decls): Fix AUTOREG etc looking for "endproperty"
6839 after "assert property". Reported by Julian Gorfajn.
6840 (verilog-simplify-range-expression): Fix "couldn't merge" errors
6841 with multiplication, bug303.
6842 (verilog-read-decls): Fix parsing of unsigned data types, bug302.
6843 Reported by Jan Frode Lonnum.
6844
6845 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
6846
6847 * htmlfontify.el (hfy-page-header, hfy-post-html-hooks)
6848 (hfy-shell-file-name, hfy-shell):
6849 * international/fontset.el (x-decompose-font-name): Fix typos.
6850
6851 2011-11-29 Ken Brown <kbrown@cornell.edu>
6852
6853 * progmodes/gdb-mi.el: Fix bug#9853, bug#9858, and bug#9878.
6854 (gdb-version): Remove defvar.
6855 (gdb-supports-non-stop): New defvar, replacing `gdb-version'.
6856 (gdb-gud-context-command, gdb-non-stop-handler)
6857 (gdb-current-context-command, gdb-stopped): Use it.
6858 (gdb-init-1): Enable pretty printing here.
6859 (gdb-non-stop-handler): Don't enable pretty-printing here.
6860 Check to see if the target supports non-stop mode; if not, turn off
6861 non-stop mode. Use the following.
6862 (gdb-check-target-async): New defun.
6863 (gud-watch, gdb-stopped): Fix whitespace.
6864 (gdb-get-source-file): Don't try to display the source file if
6865 `gdb-main-file' is nil.
6866
6867 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6868
6869 * align.el: Try to generate fewer markers (bug#10047).
6870 (align--set-marker): New macro.
6871 (align-region): Use it.
6872
6873 2011-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
6874
6875 * isearch.el (isearch-yank-x-selection): Deactivate mark (bug#10022).
6876
6877 2011-11-29 Chong Yidong <cyd@gnu.org>
6878
6879 * indent.el (indent-for-tab-command, indent-according-to-mode):
6880 Doc fix.
6881 (indent-region): Doc fix. Switch nested ifs to equivalent cond.
6882
6883 2011-11-29 Michael Albinus <michael.albinus@gmx.de>
6884
6885 * vc/diff-mode.el (diff-find-file-name): Make `read-file-name'
6886 aware of remote file names. (Bug#10124)
6887
6888 2011-11-29 Chong Yidong <cyd@gnu.org>
6889
6890 * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
6891
6892 2011-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
6893
6894 * files.el (find-file): Don't use force-same-window (bug#10144).
6895 * window.el (switch-to-buffer): Better match Emacs-23 behavior and only
6896 use pop-to-buffer if the selected window can't be used.
6897 (pop-to-buffer-same-window): Use display-buffer--same-window-action.
6898
6899 2011-11-28 Eli Zaretskii <eliz@gnu.org>
6900
6901 * vc/diff-mode.el (diff-mode-map): Don't inherit 'z' => 'M-z' from
6902 special-mode-map.
6903
6904 2011-11-28 Chong Yidong <cyd@gnu.org>
6905
6906 * emacs-lisp/easy-mmode.el (define-minor-mode): Fix default doc.
6907
6908 2011-11-27 Nick Roberts <nickrob@snap.net.nz>
6909
6910 * progmodes/gdb-mi.el (gdb-init-1): Condition execution of
6911 gdb-get-source-file-list on gdb-create-source-file-list.
6912
6913 2011-11-26 Eli Zaretskii <eliz@gnu.org>
6914
6915 * whitespace.el (whitespace-newline): Use a different foreground
6916 color for 16-color light-background displays.
6917
6918 2011-11-24 Chong Yidong <cyd@gnu.org>
6919
6920 * window.el (display-buffer--special-action): Doc fix.
6921
6922 2011-11-25 Juanma Barranquero <lekktu@gmail.com>
6923
6924 * emacs-lisp/avl-tree.el (avl-tree--do-copy, avl-tree-create)
6925 (avl-tree-compare-function, avl-tree-empty, avl-tree-enter)
6926 (avl-tree-delete, avl-tree-member, avl-tree-member-p, avl-tree-map)
6927 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar, avl-tree-copy)
6928 (avl-tree-clear, avl-tree-stack, avl-tree-stack-pop)
6929 (avl-tree-stack-first):
6930 * emacs-lisp/cconv.el (cconv--analyse-use):
6931 * net/gnutls.el (gnutls-negotiate): Fix typos.
6932
6933 2011-11-24 Glenn Morris <rgm@gnu.org>
6934
6935 * lpr.el (lpr-windows-system, lpr-lp-system):
6936 * mail/binhex.el (binhex-begin-line):
6937 * progmodes/grep.el (grep-history, grep-find-history):
6938 * textmodes/flyspell.el:
6939 * vc/pcvs-defs.el (cvs-global-menu):
6940 * vc/vc-bzr.el (vc-bzr-admin-checkout-format-file):
6941 * vc/vc-mtn.el (vc-mtn-admin-dir, vc-mtn-admin-format):
6942 * vc/vc-cvs.el (vc-cvs-registered): Give them basic doc-strings.
6943
6944 * net/tls.el: Fix case of "GnuTLS".
6945
6946 * paths.el (rmail-file-name): Format doc-string for make-docfile.
6947
6948 * version.el (emacs-build-system): Give it a doc-string.
6949
6950 2011-11-24 Juri Linkov <juri@jurta.org>
6951
6952 * view.el (view-buffer): Revert 2011-07-19T15:01:49Z!larsi@gnus.org from 2011-07-19 (bug#8615).
6953
6954 2011-11-24 Glenn Morris <rgm@gnu.org>
6955
6956 * mail/rmailmm.el (rmail-mime): When rmail-enable-mime is non-nil,
6957 if called on a non-mime message just toggle the headers. (Bug#8006)
6958
6959 2011-11-24 Juanma Barranquero <lekktu@gmail.com>
6960
6961 * allout.el (allout-setup, allout-auto-save-temporarily-disabled)
6962 (allout-lead-with-comment-string, allout-structure-deleted-hook)
6963 (allout-mode, allout-chart-subtree, allout-hotspot-key-handler)
6964 (allout-rebullet-heading, allout-open-sibtopic)
6965 (allout-toggle-current-subtree-encryption)
6966 (allout-toggle-subtree-encryption, allout-encrypt-string)
6967 (allout-next-topic-pending-encryption, allout-adjust-file-variable)
6968 (allout-distinctive-bullets-string, allout-auto-activation):
6969 * window.el (window-normalize-buffer-to-display):
6970 * progmodes/verilog-mode.el (verilog-batch-indent):
6971 * textmodes/bibtex.el (bibtex-field-braces-opt)
6972 (bibtex-field-strings-opt):
6973 * vc/cvs-status.el (cvs-tree-merge):
6974 Fix typos.
6975
6976 2011-11-23 Michael Albinus <michael.albinus@gmx.de>
6977
6978 * rfn-eshadow.el (rfn-eshadow-update-overlay): Let-bind
6979 `non-essential' to t, in order to avoid remote connections.
6980
6981 2011-11-23 Eli Zaretskii <eliz@gnu.org>
6982
6983 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
6984 On MS-DOS and MS-Windows, compare with loaddefs.el
6985 case-insensitively.
6986
6987 2011-11-23 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
6988
6989 * mail/unrmail.el (unrmail): Always add blank line. (Bug#7743)
6990
6991 2011-11-23 Glenn Morris <rgm@gnu.org>
6992
6993 * paths.el (rmail-file-name): Reformat the doc-string so that it
6994 is picked up.
6995
6996 * mail/rmail.el (rmail-message-filter, rmail-auto-file): Doc fixes.
6997 (rmail-auto-file): Ignore case in the "special" field names,
6998 as mail-fetch-field does for all others.
6999
7000 * mail/rmail.el (rmail-forward):
7001 * mail/rmailkwd.el (rmail-set-label):
7002 * mail/rmailout.el (rmail-output, rmail-output-as-seen)
7003 (rmail-output-body-to-file): Give error if no message. (Bug#10082)
7004
7005 * mail/rmail.el (rmail-current-message): Doc fix.
7006
7007 * mail/rmail.el (rmail-message-filter): Mark as obsolete. (Bug#2624)
7008
7009 2011-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
7010
7011 * server.el (server-eval-and-print): Allow C-g (bug#6585).
7012
7013 2011-11-22 Glenn Morris <rgm@gnu.org>
7014
7015 * mail/rmailmm.el (test-rmail-mime-handler)
7016 (test-rmail-mime-bulk-handler)
7017 (test-rmail-mime-multipart-handler): Move tests to test/ directory.
7018
7019 2011-11-21 Juri Linkov <juri@jurta.org>
7020
7021 * calc/calc.el (calc-read-key-sequence):
7022 Let-bind `input-method-function' to nil. (Bug#10018)
7023
7024 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7025
7026 * emacs-lisp/cl-indent.el (common-lisp-loop-part-indentation):
7027 Tell the caller that the next line needs recomputation, even
7028 though it doesn't start a sexp (bug#10094).
7029
7030 2011-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
7031
7032 * emacs-lisp/autoload.el (autoload-generate-file-autoloads): Simplify.
7033
7034 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7035
7036 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7037 Use force-same-window.
7038
7039 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7040
7041 * descr-text.el (describe-char-unicode-data):
7042 * json.el (json-string-escape):
7043 * mail/footnote.el (footnote-unicode-string, footnote-unicode-regexp)
7044 (Footnote-unicode, Footnote-style-p):
7045 * net/ntlm.el (ntlm-get-password-hashes): Fix typos.
7046
7047 2011-11-20 Chong Yidong <cyd@gnu.org>
7048
7049 * window.el (replace-buffer-in-windows): Restore interactive spec.
7050
7051 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7052
7053 * electric.el (electric-indent-mode): Fix last change (too optimistic).
7054
7055 * emacs-lisp/bytecomp.el: Silence obsolete warnings more reliably.
7056 (byte-compile-global-not-obsolete-vars): New var.
7057 (byte-compile-check-variable, byte-compile-make-obsolete-variable):
7058 Use it.
7059 (byte-compile-warn-obsolete): Align text with the one in *Help*.
7060
7061 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
7062
7063 * progmodes/cwarn.el (cwarn-is-enabled, cwarn-font-lock-keywords):
7064 * progmodes/pascal.el (electric-pascal-equal):
7065 * textmodes/reftex-dcr.el (reftex-view-crossref-from-bibtex):
7066 * xml.el (xml-substitute-special): Fix typos.
7067
7068 2011-11-20 Glenn Morris <rgm@gnu.org>
7069
7070 * mail/rmail.el (rmail-enable-mime-composing): Make it a defcustom.
7071 (rmail-insert-mime-forwarded-message-function, rmail-mime-feature):
7072 Doc fixes.
7073 (rmail-decode-mime-charset): Mark as obsolete.
7074
7075 * mail/rmailsum.el (rmail-message-regexp-p-1):
7076 * mail/rmail.el (rmail-search-message, rmail-forward, rmail-resend):
7077 Before using mime functions, check they are set. (Bug#10077)
7078
7079 2011-11-19 Juri Linkov <juri@jurta.org>
7080
7081 * info.el (Info-finder-find-node): Use `package--builtins' instead
7082 of `package-alist'. Use node names formed by the pattern "Keyword "
7083 and the keyword name.
7084
7085 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7086
7087 * progmodes/sh-script.el (sh-assignment-regexp): Add entry for bash.
7088
7089 2011-11-19 Juri Linkov <juri@jurta.org>
7090
7091 * info.el (Info-hide-note-references): Add `:set' tag to `defcustom'
7092 that calls `revert-buffer' on all Info buffers. (Bug#9915)
7093 (Info-revert-find-node): Remove let-bindings `old-buffer-name',
7094 `old-history', `old-history-forward'. Add let-binding
7095 `window-selected'. Remove calls to `kill-buffer',
7096 `switch-to-buffer' and `Info-mode'. Set `Info-current-file' to nil
7097 before calling `Info-find-node', so `Info-find-node-2' will reread
7098 the Info file. Restore window positions only when `window-selected'
7099 is non-nil.
7100
7101 2011-11-19 Juri Linkov <juri@jurta.org>
7102
7103 * isearch.el (isearch-lazy-highlight-new-loop):
7104 Remove condition `(not isearch-error)'. (Bug#9918)
7105
7106 * misearch.el (multi-isearch-search-fun): Add condition
7107 `(not bound)' to ignore lazy-highlighting search.
7108 Add the search-failed message "end of multi" when the end of
7109 multi-sequence is reached. Uncapitalize the search-failed
7110 message "Repeat for next buffer".
7111
7112 * info.el (Info-search): Add the search-failed message
7113 "end of the manual" when the end of the manual is reached
7114 in Isearch mode.
7115
7116 2011-11-19 Juri Linkov <juri@jurta.org>
7117
7118 * info.el (Info-find-node-2, Info-select-node, Info-history-find-node):
7119 Use non-destructive `remove' instead of `delete' because
7120 `Info-history-list' stored to `Info-isearch-initial-history-list' in
7121 `Info-isearch-start' might need to be restored in `Info-isearch-end'.
7122
7123 2011-11-19 Juri Linkov <juri@jurta.org>
7124
7125 * isearch.el (isearch-edit-string): Let-bind `history-add-new-input'
7126 to nil instead of binding `search-ring' and `regexp-search-ring'.
7127 (Bug#9185)
7128
7129 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7130
7131 * simple.el (line-move): Force movement by logical lines for any
7132 hscrolled window, not only when auto-hscroll-mode is on.
7133 (line-move-visual): Update doc string to that effect. (Bug#10076)
7134
7135 2011-11-19 Andreas Schwab <schwab@linux-m68k.org>
7136
7137 * language/european.el (macintosh): Define as alias for mac-roman.
7138
7139 2011-11-19 Eli Zaretskii <eliz@gnu.org>
7140
7141 * mail/rmailmm.el (rmail-mime-display-header)
7142 (rmail-mime-display-tagline, rmail-mime-display-body): New defsubsts.
7143 (rmail-mime-entity-segment, rmail-mime-toggle-raw)
7144 (rmail-mime-toggle-hidden, rmail-mime-insert-text)
7145 (rmail-mime-insert-bulk, rmail-mime-insert-multipart)
7146 (rmail-mime-insert, rmail-mime-insert-tagline): Use them instead
7147 of a raw aref.
7148 (rmail-mime-entity-segment): To get past the tagline, move forward
7149 2 more lines, to account for the 2 empty lines that precede and
7150 follow the line with the buttons.
7151 (rmail-mime-update-tagline): Move one more line, to get past the
7152 empty line that follows the buttons in the tagline. (Bug#9520)
7153
7154 2011-11-19 Martin Rudalics <rudalics@gmx.at>
7155
7156 * window.el (window-max-delta-1, window-min-delta-1)
7157 (window-min-size-1, window-state-get-1, window-state-put-1)
7158 (window-state-put-2): Use "window--" prefix.
7159
7160 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
7161
7162 * emacs-lisp/smie.el: Improve warnings and conflict detection.
7163 (smie-warning-count): New var.
7164 (smie-set-prec2tab): Use it.
7165 (smie-bnf->prec2): Improve warnings. Add docstring.
7166 (smie-bnf--closer-alist): Rename from smie-bnf-closer-alist.
7167 (smie-bnf--set-class): New function.
7168 (smie-bnf--classify): Rename from smie-bnf-classify. Rewrite to fix
7169 corner case.
7170
7171 * progmodes/compile.el: Obey compilation-first-column in dest buffer.
7172 (compilation-error-properties, compilation-move-to-column):
7173 Handle compilation-first-column while in the target buffer.
7174
7175 * progmodes/cc-engine.el (c-remove-stale-state-cache-backwards):
7176 Don't hardcode point-min==1.
7177
7178 * eshell/esh-cmd.el (eshell-do-eval): Handle `setq' (bug#9907).
7179 (eshell-rewrite-for-command): Remove workaround.
7180 (eshell-do-pipelines, eshell-do-pipelines-synchronously)
7181 (eshell-do-eval, eshell-exec-lisp): Avoid gratuitous setq.
7182 * eshell/esh-util.el (eshell-condition-case, eshell-for): Use declare.
7183
7184 * files-x.el (modify-file-local-variable): Obey commenting conventions.
7185
7186 2011-11-17 Glenn Morris <rgm@gnu.org>
7187
7188 * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
7189 Ignore buffer-local generated-autoload-file if it is the same
7190 as the global value. (Bug#10049)
7191
7192 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
7193
7194 * textmodes/reftex-toc.el (reftex-toc-return-marker, reftex-toc-help)
7195 (reftex-toc, reftex-toc, reftex-toc-dframe-p, reftex-toc-next-heading)
7196 (reftex-toc-previous-heading, reftex-toc-max-level)
7197 (reftex-toc-goto-line-and-hide, reftex-toc-show-calling-point)
7198 (reftex-toc-quit, reftex-toc-revert, reftex-toc-jump)
7199 (reftex-toc-do-promote, reftex-toc-promote-prepare)
7200 (reftex-toc-promote-action, reftex-toc-extract-section-number)
7201 (reftex-toc-load-all-files-for-promotion, reftex-toc-rename-label)
7202 (reftex-toc-rename-label, reftex-toc-visit-location)
7203 (reftex-toc-visit-location, reftex-toggle-auto-toc-recenter)
7204 (reftex-toggle-auto-toc-recenter, reftex-toggle-auto-toc-recenter)
7205 (reftex-make-separate-toc-frame): Fix typos, and use TOC consistently,
7206 leaving "*toc*" only for references to the buffer.
7207
7208 2011-11-17 Martin Rudalics <rudalics@gmx.at>
7209
7210 * window.el (window-resize, delete-window, split-window):
7211 Replace window-splits by window-combination-resize.
7212 * cus-start.el (window-splits): Replace by window-combination-resize.
7213
7214 2011-11-17 Glenn Morris <rgm@gnu.org>
7215
7216 * progmodes/sh-script.el (sh-font-lock-keywords-var):
7217 Make bash entry derive from sh entry, not shell entry.
7218
7219 2011-11-16 Michael Albinus <michael.albinus@gmx.de>
7220
7221 * net/tramp-sh.el (tramp-sh-handle-file-truename): Cache only the
7222 local file name.
7223
7224 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
7225
7226 * menu-bar.el (menu-bar-file-menu):
7227 * printing.el (pr-ps-utility):
7228 * calendar/icalendar.el (icalendar, icalendar--convert-tz-offset)
7229 (icalendar--convert-to-ical, icalendar--convert-ordinary-to-ical)
7230 (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7231 (icalendar--convert-sexp-to-ical, icalendar--convert-block-to-ical)
7232 (icalendar--convert-float-to-ical, icalendar--convert-date-to-ical)
7233 (icalendar--convert-cyclic-to-ical)
7234 (icalendar--convert-anniversary-to-ical, icalendar-import-buffer)
7235 (icalendar--convert-ical-to-diary)
7236 (icalendar--convert-recurring-to-diary)
7237 (icalendar--convert-non-recurring-all-day-to-diary)
7238 (icalendar-import-format-sample):
7239 * progmodes/idlw-shell.el (idlwave-shell-mode):
7240 * progmodes/vhdl-mode.el (vhdl-mode, vhdl-print-two-column)
7241 (vhdl-print-customize-faces, vhdl-mode, vhdl-ps-print-settings)
7242 (vhdl-ps-print-init): Fix typos.
7243
7244 2011-11-16 Ken Manheimer <ken.manheimer@gmail.com>
7245
7246 * allout.el, allout-widgets.el (file metadata): Attribute copyright to
7247 FSF and collapse date sequence, obscure author/maintainer email address
7248 better, remove extra version line, track relocation of author's webpage.
7249
7250 * progmodes/python.el (python-pdbtrack-input-prompt)
7251 (python-pdbtrack-track-stack-file): Adjust to recognize ipdb as well as
7252 regular python pdb prompts. Adjustments shamelessly taken exactly as
7253 suggested in EmacsWiki page (tiny change):
7254 http://www.emacswiki.org/PythonProgrammingInEmacs#toc14
7255
7256 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
7257
7258 * expand.el (expand-pos, expand-index, expand-point):
7259 Remove redundant info from docstring.
7260 (expand-add-abbrevs): Doc fix.
7261 (expand-c-sample-expand-list, expand-sample-lisp-mode-expand-list)
7262 (expand-sample-perl-mode-expand-list): Fix typos.
7263
7264 * net/dbus.el (dbus-event-member-name):
7265 * play/5x5.el (5x5-solve-rotate-left, 5x5-solver-output):
7266 * term/pc-win.el (msdos-create-frame-with-faces):
7267 * textmodes/texinfmt.el (texinfo-format-image): Fix typos.
7268
7269 2011-11-16 Martin Rudalics <rudalics@gmx.at>
7270
7271 * window.el (split-window, window-state-get-1)
7272 (window-state-put-1, window-state-put-2): Rename occurrences of
7273 window-nest to window-combination-limit.
7274 * cus-start.el (window-nest): Rename to window-combination-limit.
7275
7276 2011-11-16 Chong Yidong <cyd@gnu.org>
7277
7278 * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip
7279 regexp (Bug#10033).
7280
7281 2011-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
7282
7283 * tmm.el (tmm-prompt): Use minibuffer-with-setup-hook (bug#10053).
7284 `completing-read' will remove *Completions* and will preserve
7285 current-buffer for us.
7286 (tmm-add-prompt): Users of *Completions* will always (re)set its
7287 major mode.
7288 (tmm-old-comp-map): Remove.
7289
7290 2011-11-16 Glenn Morris <rgm@gnu.org>
7291
7292 * mail/rmailedit.el: Require rmailmm when compiling.
7293 (rmail-old-mime-state): New declaration.
7294 (rmail-edit-current-message): If editing a mime message,
7295 edit the "raw" message from the mbox buffer.
7296 (rmail-cease-edit): Handle mime messages. (Bug#9840)
7297
7298 2011-11-15 Glenn Morris <rgm@gnu.org>
7299
7300 * mail/rmailmm.el (rmail-mime-toggle-raw): Remove entity arg,
7301 which wasn't being used. Add optional arg to force given state.
7302 (rmail-mime): Add optional arg to force given state.
7303
7304 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
7305
7306 * allout.el (allout-encryption-plaintext-sanitization-regexps):
7307 * frame.el (display-mm-dimensions-alist):
7308 * outline.el (outline-mode-menu-bar-map, outline-move-subtree-up)
7309 (outline-move-subtree-down):
7310 * net/newst-treeview.el (newsticker--treeview-do-get-node-of-feed)
7311 (newsticker--treeview-do-get-node):
7312 * net/quickurl.el (quickurl-list-buffer-name):
7313 * progmodes/dcl-mode.el (dcl-mode):
7314 * progmodes/gdb-mi.el (gdb-mapcar*):
7315 * progmodes/sql.el (sql-mode-oracle-font-lock-keywords): Fix typos.
7316
7317 2011-11-15 Glenn Morris <rgm@gnu.org>
7318
7319 * mail/rmail.el (rmail-file-coding-system): It's only ever used
7320 in a boolean sense, so just make it a boolean, and fix the doc.
7321 (rmail-show-mime-function, rmail-mime-feature)
7322 (rmail-require-mime-maybe): Doc fixes.
7323 (rmail-show-message-1): Check rmail-show-mime-function is non-nil.
7324
7325 * mail/rmailmm.el (rmail-show-mime): Doc fix.
7326
7327 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
7328
7329 * epg.el (epg-start-decrypt, epg-start-verify, epg-start-sign)
7330 (epg-start-encrypt, epg-start-export-keys, epg-start-import-keys)
7331 (epg-start-receive-keys, epg-start-delete-keys, epg-start-sign-keys)
7332 (epg-start-generate-key, epg-context-set-progress-callback): Fix typos.
7333
7334 2011-11-15 Glenn Morris <rgm@gnu.org>
7335
7336 * mail/rmailmm.el (rmail-mime-entity, rmail-mime-entity-segment)
7337 (rmail-mime-shown-mode, rmail-mime-hidden-mode, rmail-mime-raw-mode)
7338 (rmail-mime-toggle-hidden, rmail-mime-insert-tagline)
7339 (rmail-mime-insert-header, rmail-mime-handle, rmail-mime-parse)
7340 (rmail-mime, rmail-show-mime): Doc fixes.
7341
7342 * term/ns-win.el (mode-line-frame-identification):
7343 Leave it alone. (Bug#10051)
7344
7345 * simple.el (mark-whole-buffer): Doc fix. (Bug#10023)
7346
7347 * mail/rmailout.el (rmail-output-to-rmail-buffer):
7348 Handle empty buffers. (Bug#9978)
7349
7350 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
7351
7352 * international/mule.el (define-charset):
7353 * mail/rmailmm.el (rmail-mime-find-header-encoding):
7354 * progmodes/prolog.el (prolog-mode-hook, prolog-inferior-mode-hook):
7355 * progmodes/verilog-mode.el (verilog-backward-token):
7356 * textmodes/ispell.el (lookup-words):
7357 * textmodes/sgml-mode.el (sgml-guess-indent): Fix typos.
7358
7359 2011-11-14 Glenn Morris <rgm@gnu.org>
7360
7361 * progmodes/executable.el
7362 (executable-make-buffer-file-executable-if-script-p):
7363 Handle file-modes returning nil.
7364
7365 * mail/rmailsum.el (rmail-summary): Remove movement to beginning of
7366 message - not necessary, and causes problems. (Bug#9831)
7367
7368 * mail/rmailsum.el (rmail-new-summary): Preserve message number.
7369
7370 * mail/rmail.el (rmail-no-mail-p): Remove mode-line N/M indicator.
7371
7372 * mail/rmailsum.el (rmail-summary, rmail-new-summary)
7373 (rmail-new-summary-1): Allow empty summaries. (Bug#9964)
7374 (rmail-new-summary): Remember that rmail-summary-buffer is buffer-local.
7375
7376 2011-11-12 Martin Rudalics <rudalics@gmx.at>
7377
7378 * window.el (window-resize, delete-window): Use window-splits
7379 variable instead of function.
7380 (window-state-get-1, window-state-put-2, window-state-put):
7381 Don't deal with windows' splits status.
7382
7383 2011-11-12 Glenn Morris <rgm@gnu.org>
7384
7385 * apropos.el (apropos-do-all, apropos-library, apropos-value)
7386 (apropos-documentation): Doc fixes.
7387
7388 2011-11-11 Juanma Barranquero <lekktu@gmail.com>
7389
7390 * progmodes/idlw-shell.el (idlwave-shell-make-new-bp-overlay):
7391 * textmodes/sgml-mode.el (html-tag-help): Fix typos.
7392
7393 2011-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
7394
7395 * electric.el (electric-indent-post-self-insert-function): Make it
7396 possible for a char to only indent in some circumstances.
7397 (electric-indent-mode): Simplify.
7398
7399 2011-11-11 Martin Rudalics <rudalics@gmx.at>
7400
7401 * window.el (windows-with-parameter): Remove unused function.
7402 (windows-at-side): Rename to window-at-side-list.
7403 (window-check, window-atom-check, window-atom-check-1)
7404 (window-side-check, window-size-ignore, window-size-fixed-1)
7405 (window-in-direction-2): Prefix with "window--".
7406 (window-tree-1): Rename to window--subtree, fix doc-string.
7407
7408 2011-11-11 Glenn Morris <rgm@gnu.org>
7409
7410 * subr.el (eval-after-load): If FILE is already loaded,
7411 evaluate FORM before it gets wrapped in more stuff. (Bug#10009)
7412
7413 2011-11-10 Glenn Morris <rgm@gnu.org>
7414
7415 * vc/vc-svn.el (vc-svn-create-repo, vc-svn-modify-change-comment):
7416 Call svn via vc-svn-command rather than vc-do-command.
7417 (vc-svn-command): Add --non-interactive. (Bug#9993)
7418 (vc-svn-update, vc-svn-merge-news): No need for --non-interactive.
7419
7420 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
7421 Add toggle-read-only. (Bug#7292)
7422 * files.el (toggle-read-only): Mention that it should only
7423 be used interactively. (Bug#10006)
7424
7425 2011-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
7426
7427 * progmodes/compile.el (compilation-error-regexp-alist-alist):
7428 Adjust regexp for OCaml warnings.
7429
7430 * electric.el (electric-pair-post-self-insert-function): Let user
7431 turn it off buffer-locally (bug#9932).
7432
7433 * progmodes/python.el (python-beginning-of-statement):
7434 Rewrite (bug#2703).
7435
7436 * progmodes/compile.el: Better handle TABs (bug#9749).
7437 (compilation-internal-error-properties)
7438 (compilation-next-error-function): Obey the target buffer's
7439 compilation-error-screen-columns.
7440
7441 2011-11-09 Juanma Barranquero <lekktu@gmail.com>
7442
7443 * progmodes/meta-mode.el: Remove obsolete comments.
7444 (meta-right-comment-regexp, meta-ignore-comment-regexp):
7445 Fix typos in docstrings.
7446
7447 2011-11-09 Martin Rudalics <rudalics@gmx.at>
7448
7449 * window.el (window-size-fixed-p): Rewrite doc-string.
7450 (window-resizable-p): Rename to window--resizable-p. Update callers.
7451 (window--resizable): New function. Make all callers of
7452 window-resizable call window--resizable instead.
7453 (window-resizable): Rewrite in terms of window--resizable.
7454
7455 2011-11-08 Glenn Morris <rgm@gnu.org>
7456
7457 * progmodes/delphi.el (delphi-mode-syntax-table):
7458 Let define-derived-mode define a proper syntax table. (Bug#9994)
7459
7460 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7461
7462 * window.el: Stay away from defsubst.
7463 (window-list-no-nils): Remove.
7464 (window-state-get-1, window-state-get): Use backquote instead.
7465
7466 2011-11-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
7467
7468 * emacs-lisp/find-func.el (find-function-read):
7469 Fix incorrect use of default argument in `completing-read'.
7470
7471 2011-11-08 Martin Rudalics <rudalics@gmx.at>
7472
7473 * window.el (display-buffer-function, special-display-function):
7474 Mention display-buffer-record-window but do not mention
7475 help-setup parameter in doc-strings.
7476 (window-min-delta): Fix doc-string typo.
7477
7478 2011-11-08 Chong Yidong <cyd@gnu.org>
7479
7480 * window.el (window-total-height, window-total-width): Doc fix.
7481 (window-body-size): Move from C.
7482 (window-body-height, window-body-width): Move to C.
7483
7484 2011-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
7485
7486 * window.el: Make special-display like display-buffer-alist (bug#9532).
7487 (display-buffer--special-action): New function, morphed
7488 from display-buffer--special.
7489 (display-buffer): Use it to handle special-display-buffers at higher
7490 priority (just after display-buffer-alist).
7491 (display-buffer-fallback-action, display-buffer--other-frame-action)
7492 (pop-to-buffer-same-window): Remove display-buffer--special.
7493
7494 2011-11-07 Glenn Morris <rgm@gnu.org>
7495
7496 * calendar/cal-menu.el (cal-menu-set-date-title):
7497 Do nothing if not in a calendar. (Bug#9976)
7498
7499 2011-11-07 Stefan Monnier <monnier@iro.umontreal.ca>
7500
7501 * files.el (find-file): Always use selected-window.
7502
7503 2011-11-07 Martin Rudalics <rudalics@gmx.at>
7504
7505 * window.el (window-combinations): Make WINDOW argument
7506 mandatory. Rewrite doc-string.
7507 (walk-window-subtree, window-atom-check, window-min-delta)
7508 (window-max-delta, window--resize-this-window)
7509 (window--resize-root-window-vertically, window-tree)
7510 (balance-windows, window-state-put): Rewrite doc-strings as to
7511 not mention the term "subwindow".
7512 (window--resize-subwindows-skip-p): Rename to
7513 window--resize-child-windows-skip-p.
7514 (window--resize-subwindows-normal): Rename to
7515 window--resize-child-windows-normal.
7516 (window--resize-subwindows): Rename to
7517 window--resize-child-windows.
7518 (window-or-subwindow-p): Rename to window--in-subtree-p.
7519
7520 2011-11-07 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7521
7522 * mail/rmail.el (rmail-get-new-mail, rmail-insert-inbox-text):
7523 Ensure that mbox format messages end in two newlines (Bug#9974).
7524
7525 2011-11-06 Chong Yidong <cyd@gnu.org>
7526
7527 * window.el (window-combination-p): Function deleted; its
7528 side-effect is not used in any existing code.
7529 (window-combinations, window-combined-p): Call window-*-child
7530 directly.
7531
7532 2011-11-05 Chong Yidong <cyd@gnu.org>
7533
7534 * window.el (window-valid-p): Rename from window-any-p.
7535 (window-size-ignore, window-state-get): Callers changed.
7536 (window-normalize-window): Rename from window-normalize-any-window.
7537 New arg LIVE-ONLY, replacing window-normalize-live-window.
7538 (window-normalize-live-window): Delete.
7539 (window-combination-p, window-combined-p, window-combinations)
7540 (walk-window-subtree, window-atom-root, window-min-size)
7541 (window-sizable, window-sizable-p, window-size-fixed-p)
7542 (window-min-delta, window-max-delta, window-resizable)
7543 (window-resizable-p, window-full-height-p, window-full-width-p)
7544 (window-current-scroll-bars, window-point-1, set-window-point-1)
7545 (window-at-side-p, window-in-direction, window-resize)
7546 (adjust-window-trailing-edge, maximize-window, minimize-window)
7547 (window-deletable-p, delete-window, delete-other-windows)
7548 (record-window-buffer, unrecord-window-buffer)
7549 (switch-to-prev-buffer, switch-to-next-buffer, window--delete)
7550 (quit-window, split-window, window-state-put)
7551 (set-window-text-height, fit-window-to-buffer)
7552 (shrink-window-if-larger-than-buffer): Callers changed.
7553
7554 2011-11-04 Eli Zaretskii <eliz@gnu.org>
7555
7556 * mail/rmail.el (rmail-simplified-subject): Decode subject with
7557 rfc2047-decode-string.
7558 (rmail-mime-toggle-hidden): Declare to avoid byte-compilation
7559 warnings.
7560
7561 * window.el (window-body-height, window-body-width): Mention in
7562 the doc string that the return values are in frame's canonical
7563 units. (Bug#9949)
7564
7565 2011-11-03 Alan Mackenzie <acm@muc.de>
7566
7567 * progmodes/cc-langs.el (c-nonlabel-token-2-key): New variable for
7568 change in cc-engine.el.
7569
7570 2011-11-02 Stefan Monnier <monnier@iro.umontreal.ca>
7571
7572 * window.el (switch-to-buffer): Use `force-same-window' interactively.
7573
7574 2011-11-02 Martin Rudalics <rudalics@gmx.at>
7575
7576 * window.el (quit-window): Call unrecord-window-buffer after
7577 showing another buffer in the window. (Bug#9937)
7578 (bury-buffer): Call switch-to-prev-buffer with second argument `bury'.
7579
7580 2011-11-02 Juanma Barranquero <lekktu@gmail.com>
7581
7582 * vc/vc-bzr.el (vc-bzr-state, vc-bzr-after-dir-status):
7583 Accept status with more than 9 shelves. (Bug#9935)
7584 Reported by Colin D Bennett <colin@gibibit.com>.
7585
7586 2011-11-01 Martin Rudalics <rudalics@gmx.at>
7587
7588 * help.el (with-help-window): Don't reference
7589 temp-buffer-show-specifiers in doc-string.
7590
7591 2011-10-31 Andreas Schwab <schwab@linux-m68k.org>
7592
7593 * subr.el (keymap--menu-item-with-binding): Ignore item if not a
7594 menu-item.
7595
7596 2011-10-30 Vinicius Jose Latorre <viniciusjl@ig.com.br>
7597
7598 * whitespace.el: New version 13.2.2.
7599 (whitespace-newline-mode): Disable properly. Reported by Sarah
7600 <EmacsWiki>.
7601
7602 2011-10-30 Ulf Jasper <ulf.jasper@web.de>
7603
7604 * net/newst-treeview.el: Remove "Time-stamp".
7605 (newsticker--group-manage-orphan-feeds): Do not call
7606 newsticker--treeview-tree-update.
7607 (newsticker-treeview-update, newsticker-treeview):
7608 Call newsticker--treeview-tree-update if necessary.
7609
7610 2011-10-30 Martin Rudalics <rudalics@gmx.at>
7611
7612 * window.el (window-iso-combination-p, window-iso-combined-p)
7613 (window-iso-combinations): Remove "iso-" infix.
7614 Suggested by Chong Yidong.
7615 (window-min-size-1, window-size-fixed-1, window-min-delta-1)
7616 (window-max-delta-1, window-resize, window--resize-siblings)
7617 (window--resize-this-window, adjust-window-trailing-edge)
7618 (split-window, balance-windows-1)
7619 (shrink-window-if-larger-than-buffer):
7620 * calendar/calendar.el (calendar-generate-window):
7621 * help.el (resize-temp-buffer-window): Adjust callers accordingly.
7622
7623 2011-10-30 Stefan Monnier <monnier@iro.umontreal.ca>
7624
7625 * eshell/esh-cmd.el (eshell-rewrite-for-command): Don't modify the list
7626 in place (bug#9907).
7627 (eshell-subcommand-arg-values, eshell-rewrite-named-command)
7628 (eshell-rewrite-if-command, eshell-rewrite-for-command)
7629 (eshell-structure-basic-command, eshell-rewrite-while-command)
7630 (eshell-invokify-arg, eshell-parse-pipeline, eshell-parse-command)
7631 (eshell-parse-subcommand-argument, eshell-parse-lisp-argument)
7632 (eshell-trap-errors, eshell-do-pipelines, eshell-do-eval)
7633 (eshell-do-pipelines-synchronously, eshell-eval-command):
7634 Use backquotes and prefer setq to set.
7635 (eshell-lookup-function, function-p-func, eshell-functionp): Remove.
7636 (eshell-macrop): Use functionp.
7637 (eshell-do-eval): Handle multiple expressions in `while' body.
7638
7639 2011-10-30 Chong Yidong <cyd@gnu.org>
7640
7641 * emulation/viper-cmd.el (viper-exec-change): Use push-mark
7642 instead of set-mark (Bug#9810).
7643
7644 2011-10-30 Chong Yidong <cyd@gnu.org>
7645
7646 * window.el (split-window-below, split-window-right): Rename from
7647 split-window-above-each-other and split-window-side-by-side
7648 respectively. All callers changed.
7649 (split-window-sensibly, split-window-sensibly): Use them.
7650 (split-window-keep-point): Doc fix.
7651
7652 * isearch.el: Add isearch-scroll property to split-window-below
7653 and split-window-right.
7654
7655 * follow.el (follow-mode):
7656 * vc/pcvs-util.el (cvs-pop-to-buffer-same-frame):
7657 * progmodes/ada-xref.el (ada-gdb-application):
7658 * emulation/vip.el (vip-buffer-in-two-windows):
7659 * image-dired.el (image-dired-dired-with-window-configuration):
7660 * dired-x.el (dired-do-find-marked-files):
7661 * dired.el (dired-pop-to-buffer):
7662 * bs.el (bs--show-with-configuration):
7663 * vc/emerge.el (emerge-setup-windows):
7664 * textmodes/two-column.el (2C-two-columns):
7665 * textmodes/reftex-toc.el (reftex-toc):
7666 * progmodes/gdb-mi.el (gdb-setup-windows):
7667 * progmodes/fortran.el (fortran-window-create):
7668 * net/newst-treeview.el (newsticker--treeview-window-init):
7669 * emulation/ws-mode.el (wordstar-C-o-map, wordstar-mode):
7670 * emulation/tpu-edt.el (tpu-gold-map):
7671 * emulation/crisp.el (crisp-mode-map):
7672 * calendar/calendar.el (calendar-basic-setup): Callers changed.
7673
7674 2011-10-29 Chong Yidong <cyd@gnu.org>
7675
7676 * subr.el (y-or-n-p): Add code for batch mode (Bug#9818).
7677
7678 * mouse.el (mouse-yank-primary): Push the mark (Bug#9894).
7679
7680 * textmodes/flyspell.el (flyspell-word): Fix char offset for
7681 forged Ispell output (Bug#7904).
7682
7683 * emacs-lisp/package.el (package-refresh-contents): Add autoload.
7684
7685 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7686
7687 * doc-view.el: Avoid ugly errors about not finding nil.
7688 (doc-view-ghostscript-program, doc-view-dvipdfm-program)
7689 (doc-view-dvipdf-program, doc-view-unoconv-program)
7690 (doc-view-ps2pdf-program, doc-view-pdftotext-program):
7691 Avoid nil or absolute file name as default value.
7692 (doc-view-pdf->txt, doc-view-ps->pdf): Use executable-find here.
7693
7694 2011-10-28 Alan Mackenzie <acm@muc.de>
7695
7696 * progmodes/cc-defs.el (c-version): -> 5.32.2.
7697
7698 2011-10-28 Alan Mackenzie <acm@muc.de>
7699
7700 Amend the handling of c-beginning/end-of-defun in nested declaration
7701 scopes.
7702
7703 * progmodes/cc-vars.el (c-defun-tactic): Move here from
7704 cc-langs.el. Change it to a defcustom.
7705
7706 * progmodes/cc-langs.el (c-defun-tactic): Move this variable to
7707 cc-vars.el.
7708
7709 * progmodes/cc-engine.el (c-beginning-of-statement-1):
7710 Prevent "class foo : bar" being spuriously recognized as a label.
7711
7712 * progmodes/cc-cmds.el (c-narrow-to-most-enclosing-decl-block):
7713 Add parameter `inclusive' (to include enclosing braces in the region).
7714 (c-widen-to-enclosing-decl-scope): New function.
7715 (c-while-widening-to-decl-block): New macro.
7716 (c-beginning-of-defun, c-end-of-defun): Change algorithm to keep going
7717 outward for defun boundaries, and correspondingly change symbol
7718 `respect-enclosure' to `go-outward'.
7719 (c-declaration-limits): Change algorithm to report only the "innermost"
7720 defun's boundaries.
7721
7722 2011-10-28 Deniz Dogan <deniz@dogan.se>
7723
7724 * net/rcirc.el (rcirc-mode): Use hard newlines.
7725
7726 2011-10-28 Alan Mackenzie <acm@muc.de>
7727
7728 Amend to indent and fontify macros "which include their own semicolon"
7729 correctly, using the "virtual semicolon" mechanism.
7730
7731 * progmodes/cc-defs.el: Update "virtual semicolon" comments.
7732
7733 * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
7734 Recode to scan one line at a time rather than having \n and \r
7735 explicitly in c-stmt-delim-chars (for some modes, e.g. AWK).
7736 (c-forward-label): Amend for virtual semicolons.
7737 (c-at-macro-vsemi-p, c-macro-vsemi-status-unknown-p): New functions.
7738
7739 * progmodes/cc-fonts.el (c-font-lock-declarations): Take account
7740 of the new C macros.
7741
7742 * progmodes/cc-langs.el (c-at-vsemi-p-fn):
7743 (c-vsemi-status-unknown-p-fn): Move to earlier in the file.
7744 (c-opt-cpp-symbol, c-line-comment-start-regexp): New language vars.
7745 (c-opt-cpp-macro-define): Make into a full language variable.
7746 (c-stmt-delim-chars, c-stmt-delim-chars-with-comma): Special value for
7747 AWK Mode (including \n, \r) removed, no longer needed.
7748
7749 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode):
7750 Invoke c-make-macro-with-semi-re.
7751
7752 * progmodes/cc-vars.el (c-macro-with-semi-re):
7753 (c-macro-names-with-semicolon): New variables.
7754 (c-make-macro-with-semi-re): New function.
7755
7756 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7757
7758 * vc/log-edit.el: Fill empty field rather than adding new one.
7759 (log-edit-add-field): New function.
7760 (log-edit-insert-changelog): Use it.
7761
7762 2011-10-28 Mark Lillibridge <mark.lillibridge@hp.com> (tiny change)
7763
7764 * mail/rmail.el (rmail-mode-map): Add M-C-f as in rmailsum (bug#9802).
7765
7766 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
7767
7768 * progmodes/gdb-mi.el: Warn the user when -i=mi is missing.
7769 (gdb--check-interpreter): New function.
7770 (gdb): Use it.
7771
7772 2011-10-27 Glenn Morris <rgm@gnu.org>
7773
7774 * emacs-lisp/cl-extra.el (most-positive-float, most-negative-float)
7775 (least-positive-float, least-negative-float)
7776 (least-positive-normalized-float, least-negative-normalized-float)
7777 (float-epsilon, float-negative-epsilon):
7778 Remove unnecessary declarations.
7779
7780 * emacs-lisp/cl-extra.el (cl-float-limits): Add doc string.
7781 * emacs-lisp/cl.el (most-positive-float, most-negative-float)
7782 (least-positive-float, least-negative-float)
7783 (least-positive-normalized-float, least-negative-normalized-float)
7784 (float-epsilon, float-negative-epsilon): Add doc-strings,
7785 based on those in cl.texi.
7786
7787 * files.el (set-visited-file-name): If the major-mode changed,
7788 reload the local variables. (Bug#9796)
7789
7790 2011-10-27 Chong Yidong <cyd@gnu.org>
7791
7792 * subr.el (change-major-mode-after-body-hook): New hook.
7793 (run-mode-hooks): Run it.
7794
7795 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
7796 Use change-major-mode-before-body-hook.
7797
7798 * simple.el (fundamental-mode):
7799 * emacs-lisp/derived.el (define-derived-mode): Revert 2010-04-28
7800 change introducing fundamental-mode-hook.
7801
7802 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
7803
7804 * term/w32-win.el (w32-default-color-map): Declare obsolete (Bug#9785).
7805
7806 2011-10-26 Michael Albinus <michael.albinus@gmx.de>
7807
7808 * ido.el (ido-file-name-all-completions-1): Do not require
7809 tramp.el explicitly. (Bug#7583)
7810
7811 2011-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
7812
7813 * progmodes/octave-mod.el:
7814 * progmodes/octave-inf.el: Update maintainer.
7815
7816 2011-10-26 Chong Yidong <cyd@gnu.org>
7817
7818 * subr.el (with-wrapper-hook): Rewrite doc.
7819
7820 2011-10-25 Michael Albinus <michael.albinus@gmx.de>
7821
7822 * net/tramp-sh.el (tramp-sh-handle-file-directory-p): Return t for
7823 filenames "/method:foo:". (Bug#9793)
7824
7825 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
7826
7827 * comint.el (comint-get-old-input-default): Fix use-prompt-regexp case
7828 (bug#9865).
7829
7830 2011-10-24 Glenn Morris <rgm@gnu.org>
7831
7832 * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. (Bug#9819)
7833
7834 2011-10-24 Michael Albinus <michael.albinus@gmx.de>
7835
7836 * notifications.el: Add the requirement of a running D-Bus session
7837 bus to the Commentary.
7838
7839 2011-10-24 Juri Linkov <juri@jurta.org>
7840
7841 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
7842 `search-whitespace-regexp' only when `isearch-regexp' is non-nil.
7843 (Bug#9364)
7844
7845 2011-10-24 Juri Linkov <juri@jurta.org>
7846
7847 * info.el (Info-following-node-name-re): Add newline to the list
7848 of allowed characters for leading space. (Bug#9824)
7849
7850 2011-10-24 Stefan Monnier <monnier@iro.umontreal.ca>
7851
7852 * progmodes/octave-inf.el (inferior-octave-mode-map):
7853 Fix C-c C-h binding.
7854 * progmodes/octave-mod.el (octave-help): Remove.
7855
7856 2011-10-23 Michael Albinus <michael.albinus@gmx.de>
7857
7858 Sync with Tramp 2.2.3.
7859
7860 * net/tramp-cache.el (top): Pacify byte-compiler using
7861 `init-file-user' and `site-run-file'.
7862
7863 * net/trampver.el: Update release number.
7864
7865 2011-10-23 Chong Yidong <cyd@gnu.org>
7866
7867 * files.el (toggle-read-only): Remove obsolete comment about
7868 version control.
7869
7870 * vc/vc-hooks.el (vc-toggle-read-only): Make it an obsolete alias
7871 for toggle-read-only. Note that this hasn't called vc-next-action
7872 since 2008-05-02, though it wasn't documented at the time.
7873
7874 * vc/ediff-init.el (ediff-toggle-read-only-function):
7875 Use toggle-read-only.
7876
7877 2011-10-22 Alan Mackenzie <bug-cc-mode@gnu.org>
7878
7879 Fix bug #9560, sporadic wrong indentation; improve instrumentation
7880 of c-parse-state.
7881
7882 * progmodes/cc-engine.el (c-append-lower-brace-pair-to-state-cache):
7883 correct faulty logical expression.
7884 (c-parse-state-state, c-record-parse-state-state):
7885 (c-replay-parse-state-state): New defvar/defuns.
7886 (c-debug-parse-state): Use new functions.
7887
7888 2011-10-22 Martin Rudalics <rudalics@gmx.at>
7889
7890 * mouse.el (mouse-drag-line): Fix minibuffer resizing broken by
7891 last fix. Use window-in-direction correctly.
7892
7893 2011-10-21 Chong Yidong <cyd@gnu.org>
7894
7895 * progmodes/idlwave.el (idlwave-mode):
7896 * progmodes/vera-mode.el (vera-mode): No need to set
7897 require-final-newline; that's done in prog-mode.
7898 Suggested by Stefan Monnier.
7899
7900 2011-10-21 Martin Rudalics <rudalics@gmx.at>
7901
7902 * mouse.el (mouse-drag-window-above)
7903 (mouse-drag-move-window-bottom, mouse-drag-move-window-top)
7904 (mouse-drag-mode-line-1, mouse-drag-header-line)
7905 (mouse-drag-vertical-line-rightward-window): Remove.
7906 (mouse-drag-line): New function.
7907 (mouse-drag-mode-line, mouse-drag-header-line)
7908 (mouse-drag-vertical-line): Call mouse-drag-line.
7909 * window.el (window-at-side-p, windows-at-side): New functions.
7910
7911 2011-10-21 Ulrich Mueller <ulm@gentoo.org>
7912
7913 * tar-mode.el (tar-grind-file-mode):
7914 Fix handling of setuid/setgid, handle sticky bit. (Bug#9817)
7915
7916 2011-10-21 Chong Yidong <cyd@gnu.org>
7917
7918 * progmodes/idlwave.el (idlwave-mode):
7919 * progmodes/vera-mode.el (vera-mode):
7920 Use mode-require-final-newline.
7921
7922 2011-10-20 Glenn Morris <rgm@gnu.org>
7923
7924 * vc/vc.el (vc-next-action): Handle removed directories. (Bug#9781)
7925
7926 2011-10-20 Christoph Scholtes <cschol2112@googlemail.com>
7927
7928 * emulation/cua-base.el (cua-set-mark): Fix case of string.
7929
7930 2011-10-20 Chong Yidong <cyd@gnu.org>
7931
7932 * emulation/cua-base.el (cua-mode):
7933 * mail/footnote.el (footnote-mode):
7934 * mail/mailabbrev.el (mail-abbrevs-mode):
7935 * net/xesam.el (xesam-minor-mode):
7936 * progmodes/bug-reference.el (bug-reference-mode):
7937 * progmodes/cap-words.el (capitalized-words-mode):
7938 * progmodes/compile.el (compilation-minor-mode)
7939 (compilation-shell-minor-mode):
7940 * progmodes/gud.el (gud-tooltip-mode):
7941 * progmodes/hideif.el (hide-ifdef-mode):
7942 * progmodes/idlw-shell.el (idlwave-shell-electric-debug-mode):
7943 * progmodes/subword.el (subword-mode):
7944 * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
7945 * progmodes/which-func.el (which-function-mode):
7946 * term/tvi970.el (tvi970-set-keypad-mode):
7947 * term/vt100.el (vt100-wide-mode):
7948 * textmodes/flyspell.el (flyspell-mode):
7949 * textmodes/ispell.el (ispell-minor-mode):
7950 * textmodes/nroff-mode.el (nroff-electric-mode):
7951 * textmodes/paragraphs.el (use-hard-newlines):
7952 * textmodes/refill.el (refill-mode):
7953 * textmodes/reftex.el (reftex-mode):
7954 * textmodes/rst.el (rst-minor-mode):
7955 * textmodes/sgml-mode.el (html-autoview-mode)
7956 (sgml-electric-tag-pair-mode):
7957 * textmodes/tex-mode.el (latex-electric-env-pair-mode):
7958 * vc/diff-mode.el (diff-auto-refine-mode, diff-minor-mode):
7959 * emulation/crisp.el (crisp-mode):
7960 * emacs-lisp/eldoc.el (eldoc-mode):
7961 * emacs-lisp/checkdoc.el (checkdoc-minor-mode): Doc fixes for new
7962 minor mode behavior.
7963
7964 2011-10-19 Juri Linkov <juri@jurta.org>
7965
7966 * descr-text.el (describe-char): Add #x2010 and #x2011 to
7967 the list of hard-coded chars with escape-glyph face.
7968
7969 2011-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
7970
7971 * vc/log-edit.el (log-edit-empty-buffer-p): Ignore empty headers.
7972
7973 2011-10-19 Michael Albinus <michael.albinus@gmx.de>
7974
7975 * net/tramp.el (tramp-connectable-p): Make a stronger check on a
7976 running process.
7977
7978 2011-10-19 Glenn Morris <rgm@gnu.org>
7979
7980 * vc/vc-bzr.el (vc-bzr-after-dir-status):
7981 Ignore ignored files. (Bug#9726)
7982
7983 2011-10-19 Chong Yidong <cyd@gnu.org>
7984
7985 Doc fix for minor modes, stating that an omitted argument enables
7986 the mode unconditionally when called from Lisp.
7987
7988 * abbrev.el (abbrev-mode):
7989 * allout.el (allout-mode):
7990 * autoinsert.el (auto-insert-mode):
7991 * autoarg.el (autoarg-mode, autoarg-kp-mode):
7992 * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
7993 (global-auto-revert-mode):
7994 * battery.el (display-battery-mode):
7995 * composite.el (global-auto-composition-mode)
7996 (auto-composition-mode):
7997 * delsel.el (delete-selection-mode):
7998 * desktop.el (desktop-save-mode):
7999 * dired-x.el (dired-omit-mode):
8000 * dirtrack.el (dirtrack-mode):
8001 * doc-view.el (doc-view-minor-mode):
8002 * double.el (double-mode):
8003 * electric.el (electric-indent-mode, electric-pair-mode):
8004 * emacs-lock.el (emacs-lock-mode):
8005 * epa-hook.el (auto-encryption-mode):
8006 * follow.el (follow-mode):
8007 * font-core.el (font-lock-mode):
8008 * frame.el (auto-raise-mode, auto-lower-mode, blink-cursor-mode):
8009 * help.el (temp-buffer-resize-mode):
8010 * hilit-chg.el (highlight-changes-mode)
8011 (highlight-changes-visible-mode):
8012 * hi-lock.el (hi-lock-mode):
8013 * hl-line.el (hl-line-mode, global-hl-line-mode):
8014 * icomplete.el (icomplete-mode):
8015 * ido.el (ido-everywhere):
8016 * image-file.el (auto-image-file-mode):
8017 * image-mode.el (image-minor-mode):
8018 * iswitchb.el (iswitchb-mode):
8019 * jka-cmpr-hook.el (auto-compression-mode):
8020 * linum.el (linum-mode):
8021 * longlines.el (longlines-mode):
8022 * master.el (master-mode):
8023 * mb-depth.el (minibuffer-depth-indicate-mode):
8024 * menu-bar.el (menu-bar-mode):
8025 * minibuf-eldef.el (minibuffer-electric-default-mode):
8026 * mouse-sel.el (mouse-sel-mode):
8027 * msb.el (msb-mode):
8028 * mwheel.el (mouse-wheel-mode):
8029 * outline.el (outline-minor-mode):
8030 * paren.el (show-paren-mode):
8031 * recentf.el (recentf-mode):
8032 * reveal.el (reveal-mode, global-reveal-mode):
8033 * rfn-eshadow.el (file-name-shadow-mode):
8034 * ruler-mode.el (ruler-mode):
8035 * savehist.el (savehist-mode):
8036 * scroll-all.el (scroll-all-mode):
8037 * scroll-bar.el (scroll-bar-mode):
8038 * server.el (server-mode):
8039 * shell.el (shell-dirtrack-mode):
8040 * simple.el (auto-fill-mode, transient-mark-mode)
8041 (visual-line-mode, overwrite-mode, binary-overwrite-mode)
8042 (line-number-mode, column-number-mode, size-indication-mode)
8043 (auto-save-mode, normal-erase-is-backspace-mode, visible-mode):
8044 * strokes.el (strokes-mode):
8045 * time.el (display-time-mode):
8046 * t-mouse.el (gpm-mouse-mode):
8047 * tool-bar.el (tool-bar-mode):
8048 * tooltip.el (tooltip-mode):
8049 * type-break.el (type-break-mode-line-message-mode)
8050 (type-break-query-mode):
8051 * view.el (view-mode):
8052 * whitespace.el (whitespace-mode, whitespace-newline-mode)
8053 (global-whitespace-mode, global-whitespace-newline-mode):
8054 * xt-mouse.el (xterm-mouse-mode): Doc fix.
8055
8056 * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
8057 Fix autogenerated docstring.
8058
8059 2011-10-19 Juri Linkov <juri@jurta.org>
8060
8061 * net/browse-url.el (browse-url-can-use-xdg-open): Support LXDE
8062 by checking environment variables "DESKTOP_SESSION" and
8063 "XDG_CURRENT_DESKTOP". (Bug#9779)
8064
8065 2011-10-19 Juri Linkov <juri@jurta.org>
8066
8067 * net/browse-url.el (browse-url-browser-function): Add "Chromium".
8068 (browse-url-chromium-program, browse-url-chromium-arguments):
8069 New defcustoms.
8070 (browse-url-default-browser): Check for `browse-url-chromium' and
8071 call `browse-url-chromium-program'.
8072 (browse-url-chromium): New command. (Bug#9779)
8073
8074 2011-10-18 Juanma Barranquero <lekktu@gmail.com>
8075
8076 * facemenu.el (list-colors-duplicates): On Windows, detect more
8077 duplicates by assuming that only colors matching "^System" are
8078 special "system colors". (Bug#9722)
8079
8080 2011-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8081
8082 * vc/log-edit.el (log-edit): Add "Author:" header to encourage people
8083 to distinguish the author from the committer.
8084
8085 2011-10-18 Michael Albinus <michael.albinus@gmx.de>
8086
8087 * net/tramp.el (tramp-file-name-handler): Load Tramp packages silently.
8088
8089 2011-10-18 Jirka Kosek <jirka@kosek.cz> (tiny change)
8090
8091 * international/mule.el (sgml-html-meta-auto-coding-function):
8092 Add support for detecting encoding in HTML5 specified only as
8093 <meta charset="UTF-8">. Implementation just makes http-equiv and
8094 content-type parts from HTML4 encoding string optional. (Bug#9716)
8095
8096 2011-10-18 Glenn Morris <rgm@gnu.org>
8097
8098 * vc/vc.el (vc-initial-comment): Mark as obsolete. (Bug#9745)
8099
8100 2011-10-18 Chong Yidong <cyd@gnu.org>
8101
8102 * faces.el (cursor): Doc fix.
8103
8104 2011-10-17 Chong Yidong <cyd@gnu.org>
8105
8106 * font-lock.el (font-lock-maximum-size): Mark as obsolete.
8107
8108 2011-10-17 Ryan Barrett <emacs@ryanb.org> (tiny change)
8109
8110 * dirtrack.el (dirtrack): Support shell buffers with path
8111 prefixes, e.g. tramp-based remote shells. (Bug#9647)
8112
8113 2011-10-17 Teodor Zlatanov <tzz@lifelogs.com>
8114
8115 * json.el: Bump version to 1.3 and note change in History.
8116 (json-alist-p, json-plist-p): Rewrite to avoid recursion.
8117
8118 2011-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8119
8120 * comint.el (comint-insert-input, comint-send-input)
8121 (comint-get-old-input-default, comint-backward-matching-input)
8122 (comint-next-prompt): Use nil instead of `input' for field property of
8123 past user input (bug#114).
8124
8125 * minibuffer.el (completion--replace): Inherit surrounding properties
8126 (bug#114).
8127 (minibuffer-complete-and-exit): Use it.
8128
8129 * comint.el (comint--table-subvert): Quote the all-completions output
8130 (bug#9160).
8131
8132 2011-10-17 Martin Rudalics <rudalics@gmx.at>
8133
8134 * ido.el (ido-default-buffer-method): Remove redundant :type entry.
8135
8136 * menu-bar.el (menu-bar-file-menu): Add entry for making new
8137 window on right of selected. (Bug#9350) Reword other window
8138 entries and separate them from frame entries.
8139
8140 2011-10-15 Glenn Morris <rgm@gnu.org>
8141
8142 * emacs-lisp/ert.el (ert--explain-equal-rec, ert-select-tests):
8143 Doc fixes.
8144
8145 2011-10-15 Chong Yidong <cyd@stupidchicken.com>
8146
8147 * net/network-stream.el (network-stream-open-starttls):
8148 Improve detection of failure due to lack of TLS support.
8149
8150 * mail/sendmail.el (sendmail-query-once): Tweak prompt message,
8151 putting the input text in front and in bold.
8152
8153 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8154
8155 * pcmpl-unix.el (pcomplete/ssh): SSH does allow ganging.
8156
8157 * mpc.el (mpc-songs-jump-to): Don't burp if the user clicks in an
8158 empty buffer.
8159
8160 * mouse.el (mouse-drag-mode-line-1): Modify the end-event we pushed on
8161 unread-command-events rather than pushing yet-another event.
8162
8163 2011-10-14 Eli Zaretskii <eliz@gnu.org>
8164
8165 * mail/sendmail.el (sendmail-query-once): Improve the wording of
8166 the explanation of the possible choices. Make the options passed
8167 to completing-read shorter.
8168
8169 2011-10-13 Agustín Martín Domingo <agustin.martin@hispalinux.es>
8170
8171 * textmodes/flyspell.el (flyspell-large-region): Make sure
8172 extended character mode is used if defined (Bug#1339).
8173
8174 2011-10-13 Eli Zaretskii <eliz@gnu.org>
8175
8176 * simple.el (what-cursor-position): Fix the display of the
8177 character info for LRE, LRO, RLE, and RLO characters by appending
8178 an invisible PDF.
8179
8180 2011-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
8181
8182 * emacs-lisp/timer.el (with-timeout): Make sure we cancel the timer
8183 even in case of error; add debug spec; simplify data flow.
8184 (with-timeout-handler): Remove.
8185
8186 2011-10-12 Michael Albinus <michael.albinus@gmx.de>
8187
8188 Fix Bug#6019, Bug#9315.
8189
8190 * files.el (set-auto-mode): Call `file-name-sans-versions' for the
8191 complete `buffer-file-name', the local file name part could look
8192 remotely (for example on VMS).
8193
8194 * net/ange-ftp.el (ange-ftp-run-real-handler): Make it an alias of
8195 `tramp-run-real-handler'.
8196 (ange-ftp-fix-name-for-vms): Handle the case, where `name' is
8197 already quoted by '"'.
8198
8199 * net/tramp.el (tramp-rfn-eshadow-update-overlay): Ignore errors.
8200 Let `file-name-handler-alist' be nil, the local file name part
8201 could look remotely (for example on VMS).
8202
8203 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8204
8205 * textmodes/flyspell.el (flyspell-word): Move with-local-quit
8206 from here...
8207 (flyspell-post-command-hook): ...to here.
8208
8209 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8210
8211 * mail/sendmail.el (send-mail-function): Don't use sendmail-query-once
8212 if not needed.
8213 (sendmail-query-once): Remove OS dependencies. Make it a 3-way choice
8214 using completion. Protect against "slow" callers.
8215 Remove the "message hack".
8216
8217 2011-10-11 Juri Linkov <juri@jurta.org>
8218
8219 * isearch.el (isearch-lazy-highlight-word): New variable.
8220 (isearch-lazy-highlight-new-loop, isearch-lazy-highlight-search):
8221 Use it. (Bug#9727)
8222
8223 2011-10-11 Glenn Morris <rgm@gnu.org>
8224
8225 * progmodes/f90.el (f90-next-statement): Ignore preprocessor lines,
8226 like f90-previous-statement does.
8227
8228 2011-10-11 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8229
8230 * eshell/eshell.el (eshell-command): History should be saved
8231 only in interactive use, to avoid error.
8232
8233 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8234
8235 * minibuffer.el (completion-file-name-table): Fix last change,
8236 i.e. ignore normal errors but not the other ones.
8237
8238 2011-10-10 Martin Rudalics <rudalics@gmx.at>
8239
8240 * window.el (special-display-buffer-names)
8241 (special-display-regexps): Remove some remnants of earlier
8242 changes from doc-strings.
8243 (quit-windows-on): New function.
8244
8245 * vc/vc.el (vc-revert, vc-rollback):
8246 * vc/vc-dispatcher.el (vc-finish-logentry): Call quit-windows-on
8247 instead of deleting windows. (Bug#4557) (Bug#5310) (Bug#5556)
8248 (Bug#6183) (Bug#7074) (Bug#7447)
8249
8250 2011-10-09 Martin Rudalics <rudalics@gmx.at>
8251
8252 * window.el (frame-auto-hide-function): Add version tag.
8253 (Bug#9699)
8254
8255 2011-10-09 Michael Albinus <michael.albinus@gmx.de>
8256
8257 * net/tramp.el (tramp-file-name-handler): Add 'debug to the error
8258 condition.
8259
8260 2011-10-09 Leo Liu <sdl.web@gmail.com>
8261
8262 * mail/smtpmail.el (smtpmail-send-data): Add a missing space.
8263 (Bug#9701)
8264
8265 2011-10-08 Glenn Morris <rgm@gnu.org>
8266
8267 * progmodes/f90.el (f90-calculate-indent): Give preprocessor lines
8268 before the first code statement zero indent. (Bug#9690)
8269
8270 2011-10-08 Chong Yidong <cyd@stupidchicken.com>
8271
8272 * simple.el (count-words-region): Always count in the region.
8273 Report the number of lines and characters too.
8274 (count-words): New command, which counts in the buffer if the
8275 region is inactive, as count-words-region used to.
8276 (count-words--message): New function. Handle plurals.
8277 (count-lines-region): Make it an alias for count-words-region.
8278
8279 * bindings.el (esc-map): Replace count-lines-region with
8280 count-words-region.
8281
8282 2011-10-08 Martin Rudalics <rudalics@gmx.at>
8283
8284 * window.el (window--delete): Delete dedicated frame
8285 unconditionally when argument KILL is non-nil. (Bug#9699)
8286 (switch-to-buffer): Fix doc-string typo.
8287
8288 2011-10-08 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8289
8290 * eshell/eshell.el (eshell-command): Avoid using hooks.
8291
8292 2011-10-07 Chong Yidong <cyd@stupidchicken.com>
8293
8294 * bindings.el ([M-left],[M-right]): Bind to left-word and
8295 right-word respectively.
8296
8297 2011-10-07 Glenn Morris <rgm@gnu.org>
8298
8299 * cus-start.el (debug-on-quit): Fix custom type.
8300
8301 2011-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
8302
8303 * subr.el (define-key-after): Clarify that the function is not
8304 useful for non-menu keymaps.
8305
8306 * progmodes/gdb-mi.el (gdb): Fix typo in doc string.
8307
8308 2011-10-06 Thierry Volpiatto <thierry.volpiatto@gmail.com>
8309
8310 * eshell/eshell.el (eshell-command): Enable `eshell-mode' only
8311 in current minibuffer (Fix bug with recursive minibuffers).
8312
8313 2011-10-06 Chong Yidong <cyd@stupidchicken.com>
8314
8315 * progmodes/gdb-mi.el (gdb): Doc fix.
8316
8317 2011-10-05 Martin Rudalics <rudalics@gmx.at>
8318
8319 * window.el (frame-auto-hide-function): New option replacing
8320 frame-auto-delete. Suggested by Stefan Monnier.
8321 (window--delete): Call frame-auto-hide-function instead of
8322 investigating frame-auto-delete.
8323 (window-point-1, set-window-point-1): New functions.
8324 (window-in-direction, record-window-buffer, window-state-get-1)
8325 (display-buffer-record-window): Use window-point-1 instead of
8326 window-point.
8327 (set-window-buffer-start-and-point): Use set-window-point-1.
8328
8329 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8330
8331 * emacs-lisp/edebug.el: Heed checkdoc recommendations.
8332
8333 2011-10-05 Glenn Morris <rgm@gnu.org>
8334
8335 * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.
8336 (perl-calculate-indent): Suppress scan errors. (Bug#2205)
8337
8338 2011-10-05 Leo Liu <sdl.web@gmail.com>
8339
8340 * subr.el (read-char-choice): Fix argument to buffer-live-p which
8341 works with buffer object.
8342
8343 2011-10-05 Stefan Monnier <monnier@iro.umontreal.ca>
8344
8345 * mpc.el (mpc-tool-bar-map): Add labels.
8346
8347 2011-10-04 Glenn Morris <rgm@gnu.org>
8348
8349 * calendar/holidays.el (calendar-check-holidays): Doc fix.
8350
8351 2011-10-04 Martin Rudalics <rudalics@gmx.at>
8352
8353 * window.el (window--delete): New function.
8354 (frame-auto-delete): Resuscitate option.
8355 (bury-buffer, replace-buffer-in-windows)
8356 (quit-window): Rewrite using window--delete.
8357 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
8358 Pass display-buffer-mark-dedicated to window--display-buffer-2
8359 (Bug#9639).
8360
8361 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8362
8363 * pcmpl-unix.el (pcomplete/scp): Don't assume pcomplete-all-entries
8364 returns a list (bug#9554). Add remote file name completion.
8365 * comint.el (comint--table-subvert): Curry and get quote&unquote
8366 functions as arguments.
8367 (comint--complete-file-name-data): Adjust call accordingly.
8368 * pcomplete.el (pcomplete--table-subvert): Remove.
8369 (pcomplete-completions-at-point): Use comint--table-subvert instead.
8370
8371 * minibuffer.el (completion-table-case-fold): Use currying.
8372 (completion--styles-type, completion--cycling-threshold-type):
8373 New constants.
8374 (completion-styles, completion-category-overrides)
8375 (completion-cycle-threshold): Use them.
8376 * pcomplete.el (pcomplete-completions-at-point): Adjust call to
8377 completion-table-case-fold.
8378
8379 2011-10-03 Stephen Berman <stephen.berman@gmx.net>
8380
8381 * minibuffer.el (completion-category-overrides): Fix type of styles
8382 and add more user friendly tags (bug#9660).
8383
8384 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8385
8386 * international/mule-cmds.el: Fix abuses of apply-partially (bug#9661).
8387 (mule-input-method-string): New widget.
8388 (default-input-method, language-info-custom-alist): Use it.
8389
8390 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8391
8392 * pcomplete.el: Require comint.
8393 (pcomplete--common-suffix): Remove.
8394 (pcomplete--common-quoted-suffix): Use comint--common-suffix instead.
8395 (pcomplete--table-subvert): Sync with comint--table-subvert.
8396 (pcomplete--entries): Use comint-completion-file-name-table.
8397 * comint.el (comint-unquote-filename): Simplify.
8398 (comint-completion-file-name-table): New function (bug#9616).
8399 (comint--complete-file-name-data): Use it.
8400
8401 * pcmpl-gnu.el (pcmpl-gnu-with-file-buffer): New macro (bug#9643).
8402 (pcmpl-gnu-tar-buffer): Remove.
8403 (pcmpl-gnu-with-file-buffer): Use it to avoid leaving the tar's buffer
8404 around. Make sure pcomplete-suffix-list is only changed temporarily.
8405 Don't look inside the tar's file if it's too large.
8406
8407 2011-10-01 Chong Yidong <cyd@stupidchicken.com>
8408
8409 * cus-edit.el (custom-mode-map):
8410 * epa.el (epa-key-list-mode-map):
8411 * man.el (Man-mode-map):
8412 * startup.el (splash-screen-keymap):
8413 * simple.el (special-mode-map): Use scroll-up-command and
8414 scroll-down-command.
8415
8416 * progmodes/idlw-help.el (idlwave-help-mode-map):
8417 * progmodes/ebrowse.el (ebrowse-electric-position-mode-map):
8418 * net/newst-plainview.el (newsticker-mode-map):
8419 * emulation/ws-mode.el (wordstar-mode-map):
8420 * emulation/vi.el (vi-com-map):
8421 * calc/calc-graph.el (calc-graph-show-dumb):
8422 * term/sun.el (terminal-init-sun):
8423 * term/ns-win.el (global-map):
8424 * progmodes/grep.el (grep-mode-map):
8425 * progmodes/ebrowse.el (ebrowse-electric-list-mode-map):
8426 * mail/rmail.el (rmail-mode-map):
8427 * progmodes/cpp.el (cpp-edit-mode-map): Likewise.
8428
8429 * custom.el (custom-safe-themes, load-theme): Treat value of t for
8430 custom-safe-themes as special.
8431
8432 2011-10-01 Julien Danjou <julien@danjou.info>
8433
8434 * notifications.el (notifications-notify): Fix docstring.
8435
8436 2011-10-01 Per Starbäck <per@starback.se>
8437
8438 * pcmpl-gnu.el (pcomplete/tar): Fix tar-header-name call. (Bug#9643)
8439
8440 2011-09-30 Martin Rudalics <rudalics@gmx.at>
8441
8442 * startup.el (command-line-1): Fix last fix by inserting
8443 initial-scratch-message into *scratch* before displaying it.
8444 (Bug#9605) and (Bug#9636)
8445
8446 2011-09-29 Eli Zaretskii <eliz@gnu.org>
8447
8448 * simple.el (line-move): If auto-hscroll-mode is disabled and the
8449 window is hscrolled, move by logical lines. (Bug#9607)
8450 (line-move-visual): Update the doc string to the above effect.
8451
8452 2011-09-29 Martin Rudalics <rudalics@gmx.at>
8453
8454 * window.el (display-buffer-record-window): When WINDOW is the
8455 selected window use `point' instead of `window-point'. (Bug#9626)
8456
8457 * startup.el (command-line-1): Use insert-before-markers when
8458 inserting initial-scratch-message. (Bug#9605)
8459
8460 * help.el (help-window): Remove variable.
8461
8462 2011-09-29 Glenn Morris <rgm@gnu.org>
8463
8464 * pcmpl-cvs.el (pcomplete/cvs): Add "status" handler.
8465
8466 2011-09-29 Juanma Barranquero <lekktu@gmail.com>
8467
8468 * descr-text.el (describe-char-categories): Accept category
8469 descriptions more than one line long.
8470
8471 2011-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
8472
8473 * simple.el (delete-trailing-whitespace): Fix last change.
8474
8475 * progmodes/perl-mode.el (perl-syntax-propertize-function):
8476 Don't confuse "y => 3" as the beginning of a `y' operation.
8477
8478 * emacs-lisp/debug.el (debug-convert-byte-code): Don't assume the
8479 object has more than 4 slots (bug#9613).
8480
8481 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
8482
8483 * subr.el (with-output-to-temp-buffer):
8484 * net/quickurl.el (quickurl, quickurl-browse-url):
8485 Fix typos in docstrings.
8486
8487 2011-09-27 Eli Zaretskii <eliz@gnu.org>
8488
8489 * minibuffer.el (completion-styles)
8490 (completion-category-overrides): Cross reference each other in doc
8491 strings.
8492
8493 2011-09-27 Glenn Morris <rgm@gnu.org>
8494
8495 * pcmpl-cvs.el (pcmpl-cvs-entries): Update for Emacs 22.1 changes
8496 to split-string. (Bug#9606)
8497
8498 2011-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
8499
8500 * mail/smtpmail.el (smtpmail-via-smtp): Fix STARTTLS detection
8501 (bug#9615).
8502
8503 2011-09-27 Chong Yidong <cyd@stupidchicken.com>
8504
8505 * emacs-lisp/package.el (list-packages): Fix echo area message.
8506
8507 2011-09-27 Leo Liu <sdl.web@gmail.com>
8508
8509 * ido.el (ido-read-internal): Accept cons cell HIST arg.
8510
8511 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
8512
8513 * net/dbus.el (dbus-unregister-object): Don't release services for
8514 registered signals. (Bug#9581)
8515
8516 2011-09-25 Teodor Zlatanov <tzz@lifelogs.com>
8517
8518 * progmodes/cfengine.el (cfengine-auto-mode): Add convenience
8519 function that picks between cfengine 2 and 3 support
8520 automatically. Update docs accordingly.
8521
8522 2011-09-22 Kenichi Handa <handa@m17n.org>
8523
8524 * language/ind-util.el (indian-tml-base-table): Add TAMIL DIGIT
8525 ZERO.
8526 (indian-itrans-v5-table-for-tamil): New variable.
8527 (indian-tml-itrans-v5-hash): Use the above variable (Bug#9336).
8528
8529 2011-09-22 Ken Manheimer <ken.manheimer@gmail.com>
8530
8531 * allout.el (allout-this-command-hid-stuff): Buffer-local variable
8532 that's true if the current command involved collapsing of text.
8533 It's reset to false at the beginning of the next command.
8534 (allout-post-command-business): Move the cursor to the beginning
8535 of entry if the cursor is hidden and collapsing activity just
8536 happened.
8537
8538 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
8539
8540 * mouse.el (mouse-drag-track): Set scroll-margin to 0 while
8541 tracking (Bug#9541).
8542
8543 2011-09-24 Ulf Jasper <ulf.jasper@web.de>
8544
8545 * net/newst-reader.el (newsticker-html-renderer)
8546 (newsticker-show-news): Automatically load html rendering package
8547 if newsticker-html-renderer is set. Fixes "Warning: defvar ignored
8548 because w3m-fill-column is let-bound" and the error "Symbol's value
8549 as variable is void: w3m-fill-column".
8550
8551 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
8552
8553 * net/dbus.el (dbus-unregister-object): Remove match rule of signals.
8554 Release services only if they are defined. (Bug#9581)
8555
8556 2011-09-23 Richard Stallman <rms@gnu.org>
8557
8558 * textmodes/paragraphs.el (forward-sentence): For backwards case,
8559 distinguish start of paragraph from start of its text.
8560
8561 * mail/emacsbug.el (report-emacs-bug-query-existing-bugs): Autoload.
8562
8563 * mail/rmail.el (rmail-view-buffer-kill-buffer-hook): New function.
8564 (rmail-generate-viewer-buffer): Put that hook on view buffer.
8565 (rmail-mode-kill-buffer-hook): Override that hook, to kill view buffer.
8566
8567 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8568
8569 * international/mule-diag.el (mule-diag): Insert a newline after
8570 each fontset description.
8571
8572 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8573
8574 * simple.el (delete-trailing-whitespace):
8575 Document last change; simplify.
8576
8577 2011-09-23 Peter J. Weisberg <pj@irregularexpressions.net>
8578
8579 * simple.el (delete-trailing-whitespace): Also delete
8580 extra newlines at the end of the buffer.
8581
8582 * textmodes/picture.el: Make motion commands obey shift-select-mode.
8583 (picture-newline): Use forward-line so as to ignore fields.
8584
8585 2011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
8586
8587 * subr.el (with-wrapper-hook): Fix edebug spec.
8588
8589 2011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
8590
8591 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
8592 (bug#4538).
8593
8594 2011-09-23 Michael Albinus <michael.albinus@gmx.de>
8595
8596 * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
8597 Fix nasty bug using wrong cached values.
8598
8599 2011-09-23 Alan Mackenzie <acm@muc.de>
8600
8601 * progmodes/cc-defs.el (c-version): Increase to 5.31.9.
8602
8603 2011-09-23 Chong Yidong <cyd@stupidchicken.com>
8604
8605 * window.el (pop-to-buffer): Ensure right window is selected if we
8606 chose another frame.
8607
8608 2011-09-22 Eli Zaretskii <eliz@gnu.org>
8609
8610 * simple.el (what-cursor-position): Use get-char-property-change
8611 and next-single-char-property-change, to be able to show display
8612 properties that come from overlays as well as text properties.
8613
8614 2011-09-22 Chong Yidong <cyd@stupidchicken.com>
8615
8616 * window.el (pop-to-buffer-same-window): New (reinstated) fun.
8617
8618 * cmuscheme.el (run-scheme, switch-to-scheme):
8619 * cus-edit.el (customize-group, custom-buffer-create)
8620 (customize-browse):
8621 * info.el (info):
8622 * shell.el (shell):
8623 * mail/sendmail.el (mail):
8624 * progmodes/inf-lisp.el (inferior-lisp): Use it (Bug#9532).
8625
8626 2011-09-22 Richard Stallman <rms@gnu.org>
8627
8628 * textmodes/paragraphs.el (forward-sentence): When setting PAR-BEG,
8629 move back only to line beg, don't move back over blank lines.
8630
8631 2011-09-22 Michael Albinus <michael.albinus@gmx.de>
8632
8633 * files.el (copy-directory): Set directory attributes only in case
8634 they could be retrieved from the source directory. (Bug#9565)
8635
8636 2011-09-22 Dima Kogan <dkogan@secretsauce.net> (tiny change)
8637
8638 * progmodes/hideshow.el (hs-looking-at-block-start-p)
8639 (hs-find-block-beginning, hs-hide-level-recursive):
8640 Ignore strings as well as comments. (Bug#9502)
8641
8642 2011-09-22 Andrew Schein <andrew@andrewschein.com> (tiny change)
8643
8644 * progmodes/sql.el (sql-comint-postgres):
8645 Convert port number to a string. (Bug#9566)
8646
8647 2011-09-22 Martin Rudalics <rudalics@gmx.at>
8648
8649 * window.el (quit-window): Undedicate window when switching to
8650 previous buffer. Reported by Thierry Volpiatto
8651 <thierry.volpiatto@gmail.com>.
8652 (special-display-popup-frame): When popping up a new frame reset
8653 its previous buffers to nil. Simplify code.
8654
8655 2011-09-21 Michael Albinus <michael.albinus@gmx.de>
8656
8657 * net/tramp.el (tramp-handle-shell-command): Set process sentinel
8658 and process filter, as done also in `shell-command'.
8659
8660 2011-09-21 Martin Rudalics <rudalics@gmx.at>
8661
8662 * window.el (set-window-buffer-start-and-point):
8663 Call set-window-start with NOFORCE argument t.
8664 Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
8665 (quit-window): Reword doc-string. Handle new format of
8666 quit-restore parameter. Don't delete window if it has a
8667 previous buffer we can show instead of the present one.
8668 (display-buffer-record-window): Rewrite using a new format for
8669 the quit-restore window parameter
8670 (special-display-popup-frame, display-buffer-same-window)
8671 (display-buffer-reuse-window, display-buffer-pop-up-frame)
8672 (display-buffer-pop-up-window, display-buffer-use-some-window):
8673 Adapt symbol passed to display-buffer-record-window.
8674 * help.el (help-window-setup): Handle new format of quit-restore
8675 parameter.
8676
8677 2011-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
8678
8679 * faces.el (face-list): Fix docstring (bug#9564).
8680
8681 * window.el (display-buffer--action-function-custom-type):
8682 Don't include internal functions in the Custom interface.
8683
8684 2011-09-20 Juri Linkov <juri@jurta.org>
8685
8686 * info.el (Info-history-skip-intermediate-nodes): New defcustom.
8687 (Info-forward-node, Info-backward-node, Info-next-preorder)
8688 (Info-last-preorder): Use it. (Bug#9528)
8689
8690 2011-09-20 Juri Linkov <juri@jurta.org>
8691
8692 * info.el (Info-last-preorder): Visit last menu item only when
8693 `Info-scroll-prefer-subnodes' is non-nil (third test-case of bug#9528).
8694
8695 2011-09-20 Julien Danjou <julien@danjou.info>
8696
8697 * password-cache.el (password-cache-remove): Remove entries even if the
8698 value is nil, so that password with a nil value (negative caching) is
8699 possible to invalidate.
8700
8701 2011-09-20 Lawrence Mitchell <wence@gmx.li>
8702
8703 * progmodes/f90.el (f90-break-line): If breaking inside comment delete
8704 all whitespace around breakpoint. (Bug#9553)
8705 (f90-find-breakpoint): Only break at whitespace inside a comment.
8706
8707 2011-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
8708
8709 * minibuffer.el (completion-file-name-table): Keep track of errors.
8710 (completion-table-with-predicate): Handle the case where pred1 is nil.
8711 * pcomplete.el (pcomplete-completions-at-point): Simplify.
8712
8713 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8714
8715 * emacs-lisp/debug.el (debugger-args): Give it a docstring.
8716 (debugger-return-value): Signal an error if the debugging context does
8717 not await any return value.
8718
8719 * ps-mule.el (ps-mule-plot-string): Don't inf-loop (bug#5108).
8720 * image-mode.el (image-toggle-display-text)
8721 (image-toggle-display-image): Stay away from evil `intangible'.
8722
8723 2011-09-19 Leo Liu <sdl.web@gmail.com>
8724
8725 * replace.el (occur-revert-arguments): Make it permanent-local.
8726 (occur-mode): Don't call font-lock-defontify.
8727
8728 2011-09-19 Chong Yidong <cyd@stupidchicken.com>
8729
8730 * net/ldap.el (ldap-search-internal): Don't push empty search
8731 result (Bug#9508).
8732
8733 2011-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
8734
8735 * whitespace.el (whitespace-newline-mode): Disable it right (bug#9550).
8736
8737 2011-09-19 Michael Albinus <michael.albinus@gmx.de>
8738
8739 * net/tramp-sh.el (tramp-inline-compress-commands): Add "xz".
8740 Suggested by Liam Stitt <stittl@cuug.ab.ca>.
8741
8742 2011-09-18 Juri Linkov <juri@jurta.org>
8743
8744 * buff-menu.el (Buffer-menu-mode-map):
8745 * dired.el (dired-mode-map):
8746 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map)
8747 (lisp-interaction-mode-map):
8748 * emacs-lisp/package.el (package-menu-mode-map):
8749 * epa.el (epa-key-list-mode-map):
8750 * menu-bar.el (menu-bar-showhide-tool-bar-menu)
8751 (menu-bar-options-menu):
8752 * outline.el (outline-mode-menu-bar-map):
8753 * vc/vc-bzr.el (vc-bzr-shelve-menu-map, vc-bzr-extra-menu-map):
8754 * vc/vc-dir.el (vc-dir-menu-map):
8755 * vc/vc-git.el (vc-git-stash-menu-map, vc-git-extra-menu-map):
8756 Capitalize non-function content words in menu item strings.
8757
8758 * dired.el (dired-mode-map): Add menu item for
8759 `image-dired-dired-toggle-marked-thumbs'.
8760
8761 2011-09-18 Juri Linkov <juri@jurta.org>
8762
8763 * isearch.el (isearch-edit-string): Bind `isearch-new-case-fold'
8764 to `isearch-case-fold-search' and restore its original value
8765 after the `isearch-mode' call.
8766
8767 2011-09-18 Juri Linkov <juri@jurta.org>
8768
8769 * progmodes/grep.el (grep-process-setup): Don't check code for 1
8770 because `zgrep' returns 1 for successful matches (bug#9226).
8771
8772 2011-09-18 Juri Linkov <juri@jurta.org>
8773
8774 * info.el (Info-extract-menu-node-name): Check the second match
8775 for empty string (second test-case of bug#9528).
8776 (Info-last-preorder): Let-bind `Info-history' to nil to not add
8777 intermediate nodes to the history (first test-case of bug#9528).
8778
8779 2011-09-18 Juri Linkov <juri@jurta.org>
8780
8781 * info.el (Info-mode-syntax-table): New variable.
8782 (Info-mode): Set `:syntax-table' to `Info-mode-syntax-table' (bug#3312).
8783
8784 2011-09-18 Juri Linkov <juri@jurta.org>
8785
8786 * info.el (Info-file-supports-index-cookies):
8787 Increment line-beginning-position's arg from 3 to 4 because makeinfo
8788 outputs one more line for long file names (bug#4142).
8789
8790 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
8791
8792 * newcomment.el (comment-normalize-vars): If prompting for
8793 comment-start, set comment-start-skip too (Bug#8424).
8794
8795 2011-09-18 Johan Bockgård <bojohan@gnu.org>
8796
8797 * icomplete.el: Fix previous fix of Bug#5849.
8798 (icomplete-mode): Don't set completion-show-inline-help.
8799 (icomplete-minibuffer-setup): Set completion-show-inline-help
8800 locally during icompletion.
8801
8802 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
8803
8804 * woman.el (woman2-process-escapes): Don't delete unrecognized
8805 escapes (Bug#7843).
8806
8807 * files.el (inhibit-first-line-modes-regexps): Add image files.
8808 (hack-local-variables-prop-line): Return nil for malformed
8809 prop-lines (Bug#9044).
8810
8811 2011-09-18 Michael Albinus <michael.albinus@gmx.de>
8812
8813 * net/tramp.el (top): Don't require 'shell.
8814 (tramp-methods): Fix docstring.
8815 (tramp-get-remote-tmpdir): New defun, moved from tramp-sh.el.
8816 Return complete remote file name. Handle "smb" case.
8817 Use `tramp-tmpdir', if defined for the respective method.
8818 (tramp-make-tramp-temp-file): Adapt call of `tramp-get-remote-tmpdir'.
8819
8820 * net/tramp-compat.el (top): Require 'shell.
8821
8822 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
8823 (tramp-maybe-open-connection): Use `tramp-file-name-real-host' for
8824 `tramp-current-host'.
8825 (tramp-get-remote-tmpdir): Remove.
8826
8827 * net/tramp-smb.el (tramp-methods): Add `tramp-remote-shell' and
8828 `tramp-tmpdir' entries.
8829 (tramp-smb-errors): Add "NT_STATUS_IMAGE_ALREADY_LOADED".
8830 (tramp-smb-handle-file-attributes): Ignore errors.
8831 (tramp-smb-wait-for-output): Check also for process end.
8832
8833 2011-09-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
8834
8835 * mail/smtpmail.el (smtpmail-via-smtp): Ignore errors that arise
8836 when sending QUIT (bug#9312).
8837
8838 2011-09-17 Chong Yidong <cyd@stupidchicken.com>
8839
8840 * replace.el (occur-mode-map): Rebind occur-edit-mode to "e" (Bug#8463).
8841 (occur-edit-mode-map): Bind C-c C-c to occur-cease-edit and C-o to
8842 occur-mode-display-occurrence.
8843 (occur-edit-mode): Add usage message.
8844 (occur-cease-edit): New command.
8845 (occur-after-change-function): Use text properties to find the
8846 position of the prefix text.
8847 (occur-engine): Set stickiness of prefix text properties.
8848
8849 2011-09-17 Glenn Morris <rgm@gnu.org>
8850
8851 * progmodes/etags.el (complete-tag):
8852 Fix call to completion-in-region. (Bug#9526)
8853
8854 2011-09-17 Juri Linkov <juri@jurta.org>
8855
8856 * textmodes/ispell.el (ispell-word): Add to the error message
8857 the word, ispell program name and current dictionary (bug#9121).
8858 (ispell-tex-arg-end): Capitalize "error" in the error message.
8859
8860 2011-09-17 Andreas Schwab <schwab@linux-m68k.org>
8861
8862 * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix overflow
8863 check. (Bug#4251)
8864
8865 2011-09-17 Juri Linkov <juri@jurta.org>
8866
8867 * window.el (window-safe-min-height, window-safe-min-width):
8868 Fix typos (followup to bug#9522).
8869
8870 2011-09-17 Sven Joachim <svenjoac@gmx.de>
8871
8872 * window.el (window-min-width, window-state-put): Fix typos (bug#9522).
8873
8874 2011-09-16 Eli Zaretskii <eliz@gnu.org>
8875
8876 * simple.el (line-move): If goal-column is set, move by logical
8877 lines, not by display lines. (Bug#971)
8878 (next-line, previous-line, goal-column, line-move-visual): Doc fix
8879 to reflect the above change.
8880
8881 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
8882
8883 * image.el (imagemagick-register-types): Use regexp-opt.
8884
8885 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
8886
8887 * window.el (display-buffer-base-action): Rename from
8888 display-buffer-default-action. Make default value empty.
8889 (display-buffer-overriding-action): Convert to defvar.
8890 (display-buffer-fallback-action): New var.
8891
8892 2011-09-15 Chong Yidong <cyd@stupidchicken.com>
8893
8894 * emacs-lisp/package.el (package-alist): Fix risky-local-variable
8895 declaration.
8896 (package--add-to-archive-contents): If there is a duplicate entry
8897 with an older version, remove it.
8898 (package-menu-mark-delete, package-menu-mark-install)
8899 (package-menu-mark-unmark): Make unused args optional.
8900 (package-menu-mark-obsolete-for-deletion):
8901 Use package-menu-get-status instead of a regexp search.
8902 (package-menu-get-status): Use tabulated-list-entry.
8903 (package-menu-mark-upgrades): New command.
8904 (package-menu-mode-map): Bind it to U. Add it to menu bar.
8905 (package-menu-execute): Do installation before deletion.
8906 (package-menu-refresh, package-menu-execute): Use derived-mode-p
8907 instead of checking major-mode.
8908 (package-menu--find-upgrades): New function.
8909
8910 2011-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
8911
8912 * mail/smtpmail.el (smtpmail-send-command): Don't include AUTH
8913 passwords in the log buffer.
8914 (smtpmail-process-filter): Update the process marker so that the
8915 "broken by peer" status message is inserted in the right place.
8916
8917 2011-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
8918
8919 * textmodes/bibtex.el (bibtex-complete-string-cleanup)
8920 (bibtex-complete-crossref-cleanup): Adjust to accommodate needs of
8921 bibtex-completion-at-point-function.
8922 (bibtex-completion-at-point-function): Use them.
8923
8924 * newcomment.el (comment-add, comment-valid-prefix-p): Docfix.
8925
8926 * mpc.el (mpc-constraints-tag-lookup): New function.
8927 (mpc-constraints-restore): Use it to make jumping to "album=Foo" apply
8928 also to browser "album|playlist".
8929
8930 2011-09-14 Juri Linkov <juri@jurta.org>
8931
8932 * isearch.el (isearch-fail-pos): Add new arg `msg'. Doc fix.
8933 (isearch-edit-string): Use length of `isearch-string' when
8934 `isearch-fail-pos' returns nil.
8935 (isearch-message): Remove duplicate code and call
8936 `isearch-fail-pos' with arg `t'.
8937
8938 2011-09-14 Chong Yidong <cyd@stupidchicken.com>
8939
8940 * replace.el (occur-mode-goto-occurrence): Don't force using other
8941 window (Bug#9499).
8942
8943 * dired-aux.el (dired-do-chmod): Don't provide initial input.
8944
8945 2011-09-14 Martin Rudalics <rudalics@gmx.at>
8946
8947 * window.el (display-buffer-window): Remove.
8948 (display-buffer-record-window): Use help-setup window parameter
8949 instead of variable display-buffer-window.
8950 (display-buffer-function, special-display-buffer-names)
8951 (special-display-function): Mention help-setup parameter instead
8952 of display-buffer-window in doc-string.
8953 * help.el (help-window-setup): New argument help-window.
8954 Use help-window-setup parameter instead of display-buffer-window.
8955 Reword some messages.
8956 (with-help-window): Pass window used for displaying the buffer
8957 to help-window-setup. Don't set display-buffer-window.
8958
8959 2011-09-13 Glenn Morris <rgm@gnu.org>
8960
8961 * emacs-lisp/debug.el (debugger-make-xrefs):
8962 Preserve point. (Bug#9462)
8963
8964 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
8965
8966 * window.el (window-deletable-p): Use next-frame.
8967
8968 2011-09-13 Martin Rudalics <rudalics@gmx.at>
8969
8970 * window.el (window-auto-delete): Remove.
8971 (window-deletable-p): Remove argument FORCE. Don't deal with
8972 dedication and previous buffers.
8973 (switch-to-prev-buffer): Don't delete window.
8974 (delete-windows-on): Delete a window's frame if and only if the
8975 window is dedicated.
8976 (replace-buffer-in-windows): Delete buffer's window or frame if
8977 and only if window is dedicated.
8978 (quit-window): Handle quit-restore as before last change.
8979 (bury-buffer): Delete window only if window-deletable-p returns t.
8980
8981 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
8982
8983 * window.el (window-deletable-p): Never delete the last frame on a
8984 given terminal.
8985
8986 2011-09-13 Glenn Morris <rgm@gnu.org>
8987
8988 * help.el (describe-key-briefly): Copy previous standard-output change.
8989
8990 2011-09-13 PJ Weisberg <pj@irregularexpressions.net>
8991
8992 * help.el (where-is): Respect non-standard standard-output. (Bug#9030)
8993
8994 2011-09-13 Glenn Morris <rgm@gnu.org>
8995
8996 * emacs-lisp/lisp-mode.el (lisp-indent-function):
8997 * progmodes/scheme.el (scheme-indent-function): Doc fixes.
8998
8999 2011-09-12 Chong Yidong <cyd@stupidchicken.com>
9000
9001 * dired-aux.el (dired-mark-read-string): Don't return default
9002 value on empty input (Bug#9361).
9003 (dired-do-chxxx): Treat empty input for "touch" as no -t option.
9004 Omit initial minibuffer contents.
9005 (dired-do-chmod): Signal an error on empty input.
9006 (dired-mark-read-string): Don't return default on empty input.
9007
9008 * files.el (file-modes-symbolic-to-number): Doc fix.
9009
9010 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 * international/mule-cmds.el (ucs-completions): Remove.
9013 (read-char-by-name): Use complete-with-action instead; add metadata.
9014
9015 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9016
9017 * window.el (display-buffer--action-function-custom-type)
9018 (display-buffer--action-custom-type): New vars.
9019 (display-buffer-alist, display-buffer-default-action)
9020 (display-buffer-overriding-action): Add defcustom types.
9021
9022 * frame.el (delete-other-frames): Doc fix (Bug#276).
9023
9024 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9025
9026 * play/doctor.el (make-doctor-variables): Define `doctor-sent'.
9027
9028 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
9029
9030 Change modes that used same-window-* vars to use switch-to-buffer.
9031
9032 * progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
9033 Use switch-to-buffer.
9034
9035 * cus-edit.el (customize-group, custom-buffer-create)
9036 (customize-browse, custom-buffer-create-other-window):
9037 Use switch-to-buffer or switch-to-buffer-other-window.
9038
9039 * info.el (info, Info-find-node, Info-revert-find-node, Info-next)
9040 (Info-prev, Info-up, Info-speedbar-goto-node)
9041 (info-display-manual): Use switch-to-buffer.
9042 (Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
9043
9044 * mail/sendmail.el (mail): Use switch-to-buffer.
9045 (mail-recover): Use switch-to-buffer-other-window.
9046
9047 * cmuscheme.el (run-scheme, switch-to-scheme):
9048 * ielm.el (ielm):
9049 * shell.el (shell):
9050 * net/rlogin.el (rlogin):
9051 * net/telnet.el (telnet, rsh):
9052 * progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
9053
9054 2011-09-11 Andreas Schwab <schwab@linux-m68k.org>
9055
9056 * dired.el (dired-sort-toggle-or-edit): Revert last changes.
9057
9058 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9059
9060 * dired.el (dired-sort-toggle-or-edit): -o doesn't exist on *BSD,
9061 so don't mention it (bug#9301).
9062 (dired-sort-toggle-or-edit): Clarify string further.
9063
9064 * faces.el (face-spec-set-match-display): Make `(type graphic)'
9065 match `x', `w32' and `ns', like the manual says (bug#9029).
9066
9067 * subr.el (eval-after-load): Doc string clarification (bug#9125).
9068 (process-kill-buffer-query-function): Mention the buffer name in
9069 the query.
9070
9071 * image-mode.el (image-next-line): The line parameter is mandatory
9072 (bug#9258).
9073
9074 * dired.el (dired-sort-toggle-or-edit): Mention -o and -g, too,
9075 which can be useful (bug#9301).
9076
9077 * textmodes/flyspell.el: Remove obsolete comment (bug#9368).
9078
9079 * subr.el (match-string): Mention that the current buffer should
9080 be the same as the search was done in (bug#9282).
9081
9082 * facemenu.el: Disable the remove-* commands if the mark isn't
9083 active (bug#9162).
9084
9085 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9086
9087 * buff-menu.el (Buffer-menu-switch-other-window): Use second arg
9088 of display-buffer.
9089 (Buffer-menu-2-window): Use switch-to-buffer-other-window.
9090
9091 * replace.el (occur-mode-goto-occurrence)
9092 (occur-mode-display-occurrence) Use second arg of pop-to-buffer
9093 and display-buffer.
9094
9095 * mail/reporter.el (reporter-submit-bug-report): Use second arg of
9096 display-buffer.
9097
9098 * mail/sendmail.el (sendmail-user-agent-compose): Don't bind the
9099 special-display and same-window variables.
9100 (mail-other-window): Use switch-to-buffer-other-window.
9101 (mail-other-frame): USe switch-to-buffer-other-frame.
9102
9103 * progmodes/gdb-mi.el (gdb-frame-gdb-buffer):
9104 Use display-buffer-other-frame.
9105 (gdb-display-gdb-buffer): Use pop-to-buffer.
9106
9107 * progmodes/gud.el (gud-goto-info): Use info-other-window.
9108
9109 * progmodes/python.el: Don't set same-window-buffer-names.
9110
9111 * textmodes/bibtex.el (bibtex-search-entry): Use switch-to-buffer.
9112
9113 * window.el (display-buffer-alist): Add *Python*.
9114
9115 2011-09-10 Chong Yidong <cyd@stupidchicken.com>
9116
9117 * window.el (display-buffer-alist): Add entry for buffers
9118 previously handled same-window-*.
9119 (display-buffer-alist, display-buffer-default-action)
9120 (display-buffer-overriding-action): Mark as risky.
9121 (display-buffer-alist): Document action function changes.
9122 (display-buffer--same-window-action)
9123 (display-buffer--other-frame-action): New variables.
9124 (switch-to-buffer, display-buffer-other-frame): Use them.
9125 (display-buffer): Rename reuse-frame entry to reusable-frames.
9126 (display-buffer-reuse-selected-window): Function deleted.
9127 (display-buffer-reuse-window): Handle reusable-frames alist entry.
9128 If it's omitted, check pop-up-frames/display-buffer-reuse-frames.
9129 (display-buffer-special): New function.
9130 (display-buffer--maybe-pop-up-frame-or-window): Rename from
9131 display-buffer-reuse-or-pop-window. Split off special-display
9132 part into display-buffer-special.
9133 (display-buffer-use-some-window): Don't perform any special
9134 pop-up-frames handling.
9135 (pop-to-buffer): Use window-normalize-buffer-to-switch-to.
9136 (display-buffer--maybe-same-window): Rename from
9137 display-buffer-maybe-same-window.
9138
9139 * info.el: Don't set same-window-regexps.
9140 (info-setup): New function.
9141 (info-other-window, info): Call it.
9142
9143 * cus-edit.el: Don't set same-window-regexps.
9144 (customize-group): New argument.
9145 (customize-group-other-window): Use it.
9146 (customize-face, customize-face-other-window): Likewise.
9147 (custom-buffer-create-other-window): Use pop-to-buffer directly.
9148
9149 * net/rlogin.el:
9150 * net/telnet.el:
9151 * progmodes/gud.el: Don't set same-window-regexps.
9152
9153 * cmuscheme.el:
9154 * ielm.el:
9155 * shell.el:
9156 * mail/sendmail.el:
9157 * progmodes/inf-lisp.el: Don't set same-window-buffer-names.
9158
9159 2011-09-10 Juri Linkov <juri@jurta.org>
9160
9161 * isearch.el (isearch-edit-string): Remove obsolete mention of
9162 `C-w' (`isearch-yank-word-or-char') from docstring.
9163 (isearch-query-replace): Fix typo in docstring (bug#9466).
9164
9165 2011-09-10 Juri Linkov <juri@jurta.org>
9166
9167 * paren.el (show-paren-function): Don't show escaped parens.
9168 Let-bind `unescaped' to `t' when paren is not escaped. (Bug#9461)
9169
9170 2011-09-10 Eli Zaretskii <eliz@gnu.org>
9171
9172 * mail/sendmail.el (mml-to-mime, mml-attach-file)
9173 (mm-default-file-encoding): Remove autoload forms, they are
9174 replaced with autoload cookies in mml.el and mm-encode.el.
9175 (mail-add-attachment): New command.
9176 (mail-mode-map): Add a menu-bar item for mail-add-attachment.
9177 (mail-mode): Mention mail-insert-file and mail-add-attachment in
9178 the doc string.
9179 (mml-to-mime, mml-attach-file, mm-default-file-encoding): Declare.
9180
9181 2011-09-10 Reuben Thomas <rrt@sc3d.org>
9182
9183 * simple.el (count-words-region): Use buffer if there's no region
9184 (bug#9429).
9185
9186 2011-09-09 Juri Linkov <juri@jurta.org>
9187
9188 * wdired.el (wdired-change-to-wdired-mode): Set buffer-local
9189 `isearch-filter-predicate' to `wdired-isearch-filter-read-only'.
9190 (wdired-isearch-filter-read-only): New function. (Bug#6362)
9191
9192 2011-09-09 Alan Mackenzie <acm@muc.de>
9193
9194 * progmodes/cc-mode.el (awk-mode): Prevent `define-derived-mode'
9195 spuriously generating `awk-mode-syntax-table'. (Bug #9448).
9196
9197 2011-09-09 Eli Zaretskii <eliz@gnu.org>
9198
9199 Fix for Savannah bug#9392.
9200 * simple.el (mail-encode-mml): New defvar.
9201
9202 * mail/rmail.el (mail-encode-mml): Add a defvar.
9203 (rmail-enable-mime-composing): Default to t.
9204 (rmail-forward): Use MIME method of forwarding only if both
9205 rmail-enable-mime-composing and rmail-enable-mime are non-nil.
9206 Set mail-encode-mml non-nil if the MIME method was used.
9207
9208 * mail/sendmail.el (mml-to-mime): Add autoload form.
9209 (mail-encode-mml): Add a defvar.
9210 (mail-mode): Make mail-encode-mml buffer-local and initialize it
9211 to nil.
9212 (mail-send): If mail-encode-mml is non-nil, run the outgoing
9213 message through mml-to-mime, and reset mail-encode-mml to nil.
9214
9215 2011-09-09 Glenn Morris <rgm@gnu.org>
9216
9217 * woman.el (woman-if-body): When processing an .el block,
9218 do not delete the next .el block as well. (Bug#9447)
9219 (woman-special-characters): Add oq, cq, and hy characters.
9220
9221 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9222
9223 * window.el (window-deletable-p): Make sure window is live before
9224 invoking window-prev-buffers.
9225
9226 2011-09-08 Leo Liu <sdl.web@gmail.com>
9227
9228 * net/rcirc.el (rcirc-cmd-invite): New rcirc command. (Bug#9453)
9229
9230 2011-09-08 Juri Linkov <juri@jurta.org>
9231
9232 * progmodes/compile.el (compilation-environment): Make it
9233 a defcustom (bug#8340).
9234
9235 2011-09-08 Martin Rudalics <rudalics@gmx.at>
9236
9237 * window.el (frame-auto-delete): Rename to window-auto-delete.
9238 Make it control auto-deletion of windows and/or frames.
9239 (window-deletable-p): New argument FORCE. Rewrite conditions
9240 for deleting window/frame. (Bug#9419)
9241 (switch-to-prev-buffer, replace-buffer-in-windows, quit-window):
9242 Rewrite handling of case when window/frame can be deleted.
9243 (delete-windows-on): Call window-deletable-p with new FORCE
9244 argument t. (Bug#9456)
9245
9246 2011-09-07 Chong Yidong <cyd@stupidchicken.com>
9247
9248 * help-mode.el (help-mode): Restore autoload.
9249
9250 2011-09-07 Juri Linkov <juri@jurta.org>
9251
9252 * progmodes/compile.el (compilation-start): Let-bind `thisenv' to
9253 `compilation-environment'. Set buffer-local
9254 `compilation-environment' to `thisenv' later after (funcall mode).
9255 (Bug#8340)
9256
9257 * vc/vc-git.el (vc-git-grep): Remove --no-color. (Bug#9408)
9258 (vc-git-grep): Prepend "PAGER=" to `compilation-environment'
9259 instead of replacing its value. (Bug#8340)
9260
9261 2011-09-07 Juri Linkov <juri@jurta.org>
9262
9263 * progmodes/grep.el (grep-regexp-alist): Calculate column positions
9264 based on text properties put by `grep-filter' instead of matching
9265 escape sequences.
9266 (grep-mode): Set buffer-local `compilation-error-screen-columns'
9267 to the value of `grep-error-screen-columns' (bug#9438).
9268
9269 2011-09-07 Juri Linkov <juri@jurta.org>
9270
9271 * simple.el (next-error-highlight, next-error-highlight-no-select):
9272 Doc fix (bug#9432).
9273
9274 2011-09-07 OKAZAKI Tetsurou <okazaki.tetsurou@gmail.com> (tiny change)
9275
9276 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
9277 Check for null c-opt-block-decls-with-vars-key. (Bug#9443)
9278
9279 2011-09-07 Leo Liu <sdl.web@gmail.com>
9280
9281 * net/rcirc.el (rcirc-mode): Conditionally initialize
9282 rcirc-input-ring.
9283
9284 2011-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9285
9286 * emacs-lisp/find-func.el (find-function-C-source): Only set
9287 find-function-C-source-directory after checking that we found a source
9288 file there (bug#9440).
9289
9290 2011-09-06 Alan Mackenzie <acm@muc.de>
9291
9292 * isearch.el (isearch-other-meta-char): Wherever a key list is
9293 unread, "unread" the prefix arg, too. This fixes bug #8901.
9294
9295 2011-09-05 Oleksandr Gavenko <gavenkoa@gmail.com> (tiny change)
9296
9297 * progmodes/grep.el (rgrep): Add "-type d" (bug#9414).
9298
9299 2011-09-05 Juri Linkov <juri@jurta.org>
9300
9301 * progmodes/grep.el (grep-process-setup): Fix comments (bug#8084).
9302
9303 2011-09-05 Juri Linkov <juri@jurta.org>
9304
9305 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
9306 keeping point where processing of grep matches begins, and
9307 continue to delete remaining escape sequences from the same point.
9308 (grep-filter): Make leading zero optional in "0?1;31m" because
9309 git-grep emits "\033[1;31m" escape sequences unlike expected
9310 "\033[01;31m" as GNU Grep does (bug#9408).
9311 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
9312
9313 2011-09-05 Juri Linkov <juri@jurta.org>
9314
9315 * subr.el (y-or-n-p): Capitalize "yes".
9316
9317 2011-09-04 Michael Albinus <michael.albinus@gmx.de>
9318
9319 * net/tramp.el (top): Require 'shell. Use `tramp-unload-hook' but
9320 `tramp-cache-unload-hook' where appropriate.
9321 (tramp-methods): Rename `tramp-remote-sh' to
9322 `tramp-remote-shell'. Add `tramp-remote-shell-args'.
9323 (tramp-handle-shell-command): New defun, moved from tramp-sh.el.
9324
9325 * net/tramp-sh.el (top): Don't require 'shell.
9326 (tramp-methods): Add `tramp-remote-shell' and
9327 `tramp-remote-shell-args' entries.
9328 (tramp-sh-file-name-handler-alist): Use `tramp-handle-shell-command'.
9329 (tramp-sh-handle-shell-command): Remove.
9330 (tramp-find-shell, tramp-open-connection-setup-interactive-shell):
9331 Use `tramp-remote-shell'.
9332
9333 2011-09-03 Chong Yidong <cyd@stupidchicken.com>
9334
9335 * mail/sendmail.el (sendmail-query-once-function): Delete.
9336 (sendmail-query-once): Save directly to send-mail-function.
9337 Update message-send-mail-function too.
9338
9339 * mail/smtpmail.el (smtpmail-try-auth-methods): Clarify prompt.
9340
9341 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9342
9343 * progmodes/python.el (python-mode-map): Use correct function to
9344 start python interpreter from menu-bar (as reported by Geert
9345 Kloosterman).
9346 (inferior-python-mode-map): Fix typo.
9347 (python-shell-map): Remove.
9348
9349 2011-09-03 Deniz Dogan <deniz@dogan.se>
9350
9351 * net/rcirc.el (rcirc-print): Simplify code for
9352 rcirc-scroll-show-maximum-output. There is no need to walk
9353 through all windows to find the right one.
9354
9355 2011-09-03 Christoph Scholtes <cschol2112@googlemail.com>
9356
9357 * help.el (help-return-method): Doc fix.
9358
9359 2011-09-03 Martin Rudalics <rudalics@gmx.at>
9360
9361 * window.el (window-deletable-p): Don't return a non-nil value
9362 when there's a buffer that was shown in the window before.
9363 (Bug#9419)
9364 (display-buffer-pop-up-frame, display-buffer-pop-up-window):
9365 Set window's previous buffers to nil.
9366
9367 2011-09-03 Eli Zaretskii <eliz@gnu.org>
9368
9369 * mail/rmailmm.el (rmail-mime-insert-tagline): Insert an extra
9370 newline before and after the tag line, so it doesn't interfere
9371 with determining the paragraph direction of bidirectional text.
9372
9373 2011-09-03 Leo Liu <sdl.web@gmail.com>
9374
9375 * files.el (find-file-not-true-dirname-list): Remove. (Bug#9422)
9376
9377 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
9378
9379 * window.el (pop-to-buffer-1, pop-to-buffer-same-window): Delete.
9380 (pop-to-buffer): Change interactive spec. Pass second argument
9381 directly to display-buffer.
9382 (display-buffer): Fix interactive spec. Use functionp to
9383 distinguish between a function and a list of functions.
9384
9385 * abbrev.el (edit-abbrevs):
9386 * arc-mode.el (archive-extract):
9387 * autoinsert.el (auto-insert):
9388 * bookmark.el (bookmark-bmenu-list):
9389 * files.el (find-file):
9390 * view.el (view-buffer):
9391 * progmodes/compile.el (compilation-goto-locus):
9392 * textmodes/bibtex.el (bibtex-initialize): Use switch-to-buffer.
9393
9394 2011-09-02 Chong Yidong <cyd@stupidchicken.com>
9395
9396 * window.el (display-buffer-alist): Doc fix.
9397 (display-buffer): Add docstring. Don't treat
9398 display-buffer-default specially.
9399 (display-buffer-reuse-selected-window)
9400 (display-buffer-same-window, display-buffer-maybe-same-window)
9401 (display-buffer-reuse-window, display-buffer-pop-up-frame)
9402 (display-buffer-pop-up-window)
9403 (display-buffer-reuse-or-pop-window)
9404 (display-buffer-use-some-window): New functions.
9405 (display-buffer-default-action): Use them.
9406 (display-buffer-default): Delete.
9407 (pop-to-buffer-1): Fix choice of actions.
9408
9409 2011-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9410
9411 * minibuffer.el (completion--insert-strings): Don't get confused by
9412 completion entries that end with an LF char.
9413
9414 2011-09-01 Eli Zaretskii <eliz@gnu.org>
9415
9416 * window.el (frame-auto-delete, window-deletable-p): Doc fix.
9417
9418 2011-09-01 Chong Yidong <cyd@stupidchicken.com>
9419
9420 * window.el (display-buffer): Restore interactive spec.
9421 (display-buffer-same-window, display-buffer-other-window):
9422 New functions.
9423 (pop-to-buffer-1): New function. Use the above.
9424 (pop-to-buffer, pop-to-buffer-same-window): Use it.
9425 (pop-to-buffer-other-window, pop-to-buffer-other-frame): Delete.
9426
9427 * view.el (view-buffer-other-window, view-buffer-other-frame):
9428 Just use pop-to-buffer.
9429
9430 2011-09-01 Thierry Volpiatto <thierry.volpiatto@gmail.com>
9431
9432 * vc/vc-rcs.el (vc-rcs-responsible-p): Handle directories. (Bug#9391)
9433
9434 2011-09-01 Wilfred Hughes <wilfred@potatolondon.com> (tiny change)
9435
9436 * vc/vc-git.el (vc-git-grep): Use --no-color. (Bug#9408)
9437
9438 2011-08-31 Richard Stallman <rms@gnu.org>
9439
9440 * mail/rmail.el (rmail-epa-decrypt): Rewrite to take account
9441 of the separation of rmail-view-buffer from rmail-buffer.
9442 If you say no to "replace original", the decrypt is in the
9443 view buffer. If you say yes, the decrypt goes into the
9444 rmail buffer also.
9445
9446 2011-08-31 Martin Rudalics <rudalics@gmx.at>
9447
9448 * window.el (display-buffer-window): Rewrite doc-string.
9449 (display-buffer-record-window): New function.
9450 (display-buffer-macro-specifiers)
9451 (display-buffer-even-window-sizes, display-buffer-set-height)
9452 (display-buffer-set-width, display-buffer-in-window)
9453 (display-buffer-reuse-window, display-buffer-split-specifiers)
9454 (display-buffer-side-specifiers, display-buffer-split-window-1)
9455 (display-buffer-split-window, display-buffer-split-atom-window)
9456 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
9457 (display-buffer-pop-up-side-window, display-buffer-in-side-window)
9458 (display-buffer-other-window-means-other-frame)
9459 (display-buffer-normalize-special)
9460 (display-buffer-normalize-default)
9461 (display-buffer-normalize-argument)
9462 (display-buffer-normalize-alist-1, display-buffer-normalize-alist)
9463 (display-buffer-normalize-specifiers, display-buffer-frame)
9464 (display-buffer-same-window, display-buffer-same-frame)
9465 (display-buffer-other-window)
9466 (display-buffer-same-frame-other-window)
9467 (display-buffer-other-frame, pop-to-buffer-same-window)
9468 (pop-to-buffer-same-frame, pop-to-buffer-other-window)
9469 (pop-to-buffer-same-frame-other-window, pop-to-buffer-other-frame)
9470 (switch-to-buffer-same-frame)
9471 (switch-to-buffer-other-window-same-frame)
9472 (display-buffer-alist-of-strings-p, display-buffer-alist-add)
9473 (display-buffer-alist-set-1, display-buffer-alist-set-2)
9474 (display-buffer-alist-set): Remove.
9475 (display-buffer-function, special-display-buffer-names)
9476 (special-display-regexps, special-display-function):
9477 In doc-string refer to display-buffer-window and quit-restore
9478 parameter.
9479 (pop-up-frame-alist, pop-up-frame-function, special-display-p)
9480 (special-display-frame-alist, special-display-popup-frame)
9481 (same-window-buffer-names, same-window-regexps, same-window-p)
9482 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
9483 (split-window-preferred-function, split-height-threshold)
9484 (split-width-threshold, window-splittable-p)
9485 (split-window-sensibly, window--try-to-split-window)
9486 (window--frame-usable-p, even-window-heights)
9487 (window--even-window-heights, window--display-buffer-1)
9488 (window--display-buffer-2, display-buffer-other-frame):
9489 Restore old Emacs 23 code, order and doc-strings where applicable.
9490 (display-buffer-default, display-buffer-assq-regexp): New functions.
9491 (display-buffer-alist): Rewrite doc-string.
9492 (display-buffer-default-action)
9493 (display-buffer-overriding-action): New variables.
9494 (display-buffer, switch-to-buffer): Rewrite.
9495 (pop-to-buffer): Restore Emacs 23 behavior but use
9496 window-normalize-buffer-to-display.
9497 (switch-to-buffer-other-window, switch-to-buffer-other-frame):
9498 Restore Emacs 23 behavior but use
9499 window-normalize-buffer-to-switch-to.
9500 (pop-to-buffer-same-window): Rewrite.
9501 (pop-to-buffer-other-window, pop-to-buffer-other-frame):
9502 Rewrite using Emacs 23 options.
9503
9504 2011-08-31 Michael Albinus <michael.albinus@gmx.de>
9505
9506 * net/tramp.el (tramp-root-regexp): Remove.
9507 (tramp-completion-file-name-regexp-unified)
9508 (tramp-completion-file-name-regexp-separate)
9509 (tramp-completion-file-name-regexp-url): Don't use leading volume
9510 letter on win32 systems. (Bug#5303, Bug#9311)
9511 (tramp-drop-volume-letter): Simplify definition.
9512 Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
9513
9514 2011-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
9515
9516 * subr.el (event-modifiers): Fix "missing modifier" part of docstring
9517 (bug#9356).
9518
9519 2011-08-30 Reuben Thomas <rrt@sc3d.org> (tiny change)
9520
9521 * vc/pcvs-defs.el (cvs-find-file-and-jump): Docstring typo (bug#9369).
9522
9523 2011-08-29 Juri Linkov <juri@jurta.org>
9524
9525 * isearch.el (isearch-done): Don't display message "Mark saved"
9526 when arg `edit' is non-nil to prevent its flicker in the echo area.
9527
9528 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
9529
9530 * emacs-lisp/package.el (package-menu-mark-delete): Allow marking
9531 obsolete packages for deletion.
9532
9533 2011-08-28 Christoph Scholtes <cschol2112@googlemail.com>
9534
9535 * help-mode.el (help-mode-map): Add special-mode-map to parent.
9536 (help-mode): Derive help-mode from special-mode. Don't invoke
9537 view-mode from help-mode.
9538 (help-xref-override-view-map): Remove.
9539 (help-make-xrefs): Remove minor-mode-overriding-map-alist since
9540 view-mode is not used anymore.
9541
9542 2011-08-28 Chong Yidong <cyd@stupidchicken.com>
9543
9544 * server.el (server-port): Doc fix.
9545
9546 * cus-theme.el (custom-theme-choose-mode): Inherit from
9547 special-mode (Bug#9124).
9548 (custom-theme-choose-mode-map): Add special-mode to parent.
9549
9550 2011-08-28 Alan Mackenzie <acm@muc.de>
9551
9552 * progmodes/cc-fonts.el
9553 (c-make-font-lock-BO-decl-search-function): New function.
9554 (c-basic-matchers-after - "Fontify the clauses after various
9555 keywords"): Extract the three keyword lists for the 3 erroneous
9556 constructs from the list of four, and use the new function above
9557 in place of an old one.
9558
9559 2011-08-28 Deniz Dogan <deniz@dogan.se>
9560
9561 * net/rcirc.el (rcirc-insert-prev-input)
9562 (rcirc-insert-next-input): Remove unused argument.
9563
9564 2011-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
9565
9566 * shell.el (shell-parse-pcomplete-arguments): Unquote args (bug#9160).
9567
9568 2011-08-27 Alan Mackenzie <acm@muc.de>
9569
9570 * progmodes/cc-menus.el (cc-imenu-c++-generic-expression): Make it
9571 handle function pointer parameters properly.
9572
9573 2011-08-27 Martin Rudalics <rudalics@gmx.at>
9574
9575 * window.el (display-buffer-reuse-window): Fix case where
9576 selected window was reused with non-nil OTHER-WINDOW argument.
9577 (Bug#9381)
9578
9579 2011-08-27 Deniz Dogan <deniz@dogan.se>
9580
9581 * net/rcirc.el (rcirc-check-auth-status): Adding support for
9582 oftc's NickServ messages.
9583
9584 2011-08-27 Glenn Morris <rgm@gnu.org>
9585
9586 * saveplace.el (save-place-limit): Make it finite. (Bug#9352)
9587
9588 2011-08-26 Chong Yidong <cyd@stupidchicken.com>
9589
9590 * emacs-lisp/package.el (package-install): Call package-initialize
9591 if called interactively.
9592
9593 2011-08-26 Leo Liu <sdl.web@gmail.com>
9594
9595 * emacs-lisp/cl-macs.el (defstruct): Fix format. (Bug#9357)
9596
9597 2011-08-25 Juri Linkov <juri@jurta.org>
9598
9599 * isearch.el (isearch-occur): Let-bind `search-spaces-regexp' to
9600 `search-whitespace-regexp' (bug#9364).
9601
9602 2011-08-25 Juri Linkov <juri@jurta.org>
9603
9604 * isearch.el (isearch-edit-string): Let-bind `search-ring' and
9605 `regexp-search-ring' to their global values to protect from
9606 updating by `read-from-minibuffer' (bug#9185).
9607
9608 2011-08-25 Juri Linkov <juri@jurta.org>
9609
9610 * textmodes/ispell.el (ispell-command-loop): Add newline
9611 at the end of the "Use option `i'..." line.
9612
9613 2011-08-25 Juri Linkov <juri@jurta.org>
9614
9615 * battery.el (display-battery-mode): If `battery-status-function'
9616 or `battery-mode-line-format' is nil, display the message and set
9617 `display-battery-mode' to nil (bug#9363).
9618
9619 2011-08-25 Eli Zaretskii <eliz@gnu.org>
9620
9621 * buff-menu.el (Buffer-menu-buffer+size): Remove calls to
9622 bidi-string-mark-left-to-right; they are unnecessary now.
9623
9624 2011-08-25 Deniz Dogan <deniz@dogan.se>
9625
9626 * net/quickurl.el: Documentation typo fixes.
9627
9628 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
9629
9630 * window.el (bury-buffer, quit-window): Use bury-buffer-internal.
9631
9632 2011-08-25 Glenn Morris <rgm@gnu.org>
9633
9634 * emacs-lisp/derived.el (define-derived-mode): Doc fix.
9635
9636 * mail/smtpmail.el (smtpmail-smtp-user): Add version: tag.
9637 (smtpmail-via-smtp): Handle nil response from smtp.
9638
9639 2011-08-24 Juri Linkov <juri@jurta.org>
9640
9641 * proced.el (proced-marked): Inherit from `error' instead of
9642 `font-lock-warning-face'.
9643
9644 * ibuffer.el (ibuffer-marked-face): Change default face from
9645 `font-lock-warning-face' to `warning'.
9646 (ibuffer-deletion-face): Change default face from
9647 `font-lock-type-face' to `error'.
9648
9649 * battery.el (battery-update): Use the face `error' instead of
9650 `font-lock-warning-face' (bug#6117).
9651
9652 2011-08-24 Juri Linkov <juri@jurta.org>
9653
9654 * faces.el (success): Change face color from "Green3" to
9655 "ForestGreen" on light background (bug#9353).
9656
9657 2011-08-24 Chong Yidong <cyd@stupidchicken.com>
9658
9659 * window.el (quit-window): Rename from quit-restore-window.
9660 Use same arglist as old quit-window.
9661 (frame-auto-delete): Doc fix.
9662
9663 * view.el (view-mode-exit): Use quit-window.
9664
9665 2011-08-24 Juri Linkov <juri@jurta.org>
9666
9667 * isearch.el (isearch-ring-adjust1): Start visiting previous
9668 search strings from the index 0 (-1 + 1) instead of 1 (0 + 1).
9669 (isearch-repeat, isearch-edit-string): Call `isearch-ring-adjust1'
9670 for empty search string (when the last search string is reused
9671 automatically) to adjust the isearch ring to the last element and
9672 prepare the correct index for further M-p commands (bug#9185).
9673
9674 2011-08-24 Kenichi Handa <handa@m17n.org>
9675
9676 * international/ucs-normalize.el: If decomposition property of
9677 CHAR is the default one (i.e. a list of CHAR itself), treat it as
9678 nil.
9679 (nfd, nfkd): Likewise.
9680
9681 2011-08-24 Stefan Monnier <monnier@iro.umontreal.ca>
9682
9683 * mpc.el (mpc--proc-filter): Don't signal mpc-proc-error since signals
9684 from process filters aren't reliably transmitted to the surrounding
9685 accept-process-output.
9686 (mpc-proc-check): New function.
9687 (mpc-proc-sync): Use it (bug#8293)
9688
9689 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9690
9691 * emacs-lisp/eieio.el (eieio-defmethod, eieio-defgeneric):
9692 Add compatibility functions (bug#9313).
9693
9694 2011-08-23 Eli Zaretskii <eliz@gnu.org>
9695
9696 * cus-start.el (all): Add entry for bidi-paragraph-direction.
9697
9698 * international/uni-bidi.el: Regenerate.
9699
9700 2011-08-23 Kenichi Handa <handa@m17n.org>
9701
9702 * international/charprop.el:
9703 * international/uni-bidi.el:
9704 * international/uni-category.el:
9705 * international/uni-combining.el:
9706 * international/uni-comment.el:
9707 * international/uni-decimal.el:
9708 * international/uni-decomposition.el:
9709 * international/uni-digit.el:
9710 * international/uni-lowercase.el:
9711 * international/uni-mirrored.el:
9712 * international/uni-name.el:
9713 * international/uni-numeric.el:
9714 * international/uni-old-name.el:
9715 * international/uni-titlecase.el:
9716 * international/uni-uppercase.el: Regenerate.
9717
9718 2011-08-23 Martin Rudalics <rudalics@gmx.at>
9719
9720 * help.el (help-window-setup): Fix message displayed when other
9721 window is reused. (Bug#9341)
9722
9723 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9724
9725 * shell.el (shell-completion-vars): Set pcomplete-arg-quote-list.
9726 * pcomplete.el (pcomplete-quote-argument): Fix thinko (bug#9161).
9727
9728 * pcomplete.el (pcomplete-parse-comint-arguments): Fix inf-loop.
9729 Mark obsolete.
9730 * shell.el (shell-parse-pcomplete-arguments): New function.
9731 (shell-completion-vars): Use it instead (bug#9160).
9732
9733 2011-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
9734
9735 * progmodes/sh-script.el (sh-maybe-here-document): Disable magic in
9736 strings and comments (bug#9333).
9737
9738 * emacs-lisp/debug.el (debug-arglist): New function.
9739 (debug-convert-byte-code): Use it. Handle lexical byte-codes.
9740 (debug-on-entry-1): Handle interpreted closures (bug#9120).
9741
9742 2011-08-22 Juri Linkov <juri@jurta.org>
9743
9744 * progmodes/compile.el (compilation-mode-font-lock-keywords):
9745 Revert regexp that highlights output switches to its old
9746 pre-2010-10-28 value and remove one `?' from it (bug#9319).
9747
9748 * progmodes/grep.el (grep-process-setup): Use `buffer-modified-p'
9749 to check for empty output (bug#9226).
9750
9751 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
9752
9753 * progmodes/scheme.el (scheme-mode-syntax-table): Don't use
9754 symbol-constituent as the default, as that stops font-lock from
9755 working properly (Bug#8843).
9756
9757 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9758
9759 * mail/smtpmail.el (smtpmail-via-smtp): Only bind
9760 `coding-system-for-*' around the process open call to avoid
9761 auth-source side effects.
9762 (smtpmail-try-auth-methods): Expand the secret password.
9763 (smtpmail-query-smtp-server): Allow `quit'-ing out in case the
9764 probe hangs.
9765
9766 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
9767
9768 * term.el (term-mouse-paste): Yank primary selection (Bug#6845).
9769
9770 * emacs-lisp/find-func.el (find-function-noselect): New arg
9771 lisp-only.
9772
9773 * emacs-lisp/edebug.el (edebug-instrument-function): Use it to
9774 signal an error for built-in functions (Bug#6664).
9775
9776 2011-08-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9777
9778 * mail/smtpmail.el (smtpmail-smtp-user): New variable.
9779 (smtpmail-try-auth-methods): Use it.
9780
9781 2011-08-21 Chong Yidong <cyd@stupidchicken.com>
9782
9783 * font-lock.el (font-lock-fontify-region)
9784 (font-lock-unfontify-region, font-lock-default-fontify-buffer)
9785 (font-lock-default-unfontify-buffer)
9786 (font-lock-default-fontify-region)
9787 (font-lock-default-unfontify-region): Add docstrings (Bug#8624).
9788
9789 * progmodes/compile.el (compilation-error-properties):
9790 Fix confusion between file struct and message struct (Bug#9319).
9791 (compilation-error-regexp-alist-alist): Fix 2011-05-09 change to
9792 `ant' regexp.
9793
9794 * net/browse-url.el (browse-url-firefox): Don't call
9795 browse-url-firefox-sentinel unless using -remote (Bug#9328).
9796
9797 2011-08-20 Glenn Morris <rgm@gnu.org>
9798
9799 * tutorial.el (help-with-tutorial): Avoid an error on short screens.
9800
9801 * tutorial.el (tutorial--default-keys): Update some default bindings.
9802
9803 * files.el (hack-local-variables): Fully ignore case for "mode:".
9804
9805 2011-08-20 Alan Mackenzie <acm@muc.de>
9806
9807 Resolve invalid use of a regexp in regexp-opt.
9808
9809 * progmodes/cc-fonts.el (c-complex-decl-matchers): Add in special
9810 detection for a java annotation.
9811
9812 * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Add in special
9813 detection for a java annotation.
9814
9815 * progmodes/cc-langs.el (c-prefix-spec-kwds-re): Remove the special
9816 handling for java.
9817 (c-modifier-kwds): Remove the regexp "@[A-za-z0-9]+".
9818
9819 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
9820
9821 * startup.el (normal-top-level-add-subdirs-to-load-path): Doc fix
9822 (Bug#9274).
9823
9824 2011-08-20 Alan Mackenzie <acm@muc.de>
9825
9826 Fontify CPP expressions correctly when starting in the middle of
9827 such a construct. Mainly for when jit-lock etc. starts a chunk
9828 here.
9829
9830 * progmodes/cc-fonts.el (c-font-lock-context): New buffer local
9831 variable.
9832 (c-make-font-lock-search-form): New function, extracted from
9833 c-make-font-lock-search-function.
9834 (c-make-font-lock-search-function): Use the above function.
9835 (c-make-font-lock-context-search-function): New function.
9836 (c-cpp-matchers): Enhance the preprocessor expression case with
9837 the above function
9838 (c-font-lock-complex-decl-prepare): Test for being in a CPP form
9839 which takes an expression.
9840
9841 * progmodes/cc-langs.el (c-cpp-expr-intro-re): New lang-variable.
9842
9843 2011-08-20 Martin Rudalics <rudalics@gmx.at>
9844
9845 * window.el (display-buffer-reuse-window)
9846 (display-buffer-pop-up-window): Don't reuse or split a side
9847 window.
9848
9849 2011-08-19 Glenn Morris <rgm@gnu.org>
9850
9851 * files.el (hack-local-variables-prop-line, hack-local-variables):
9852 Downcase "Mode:". (Bug#9331)
9853
9854 2011-08-18 Chong Yidong <cyd@stupidchicken.com>
9855
9856 * international/characters.el: Add L and R categories.
9857
9858 * subr.el (bidi-string-mark-left-to-right): Rename from
9859 string-mark-left-to-right. Use category search.
9860
9861 * buff-menu.el (Buffer-menu-buffer+size): Callers changed.
9862
9863 2011-08-18 Juri Linkov <juri@jurta.org>
9864
9865 * faces.el (error, warning, success): New faces with definitions
9866 copied from old default values of `font-lock-warning-face',
9867 `compilation-warning', `compilation-info' (bug#6117).
9868
9869 * font-lock.el (font-lock-warning-face): Inherit from `error'.
9870
9871 * progmodes/compile.el (compilation-error): Inherit from `error'.
9872 (compilation-warning): Inherit from `warning'.
9873 (compilation-info): Inherit from `success'.
9874
9875 * dired.el (dired-marked): Inherit from `warning'.
9876 (dired-flagged): Inherit from `error'.
9877
9878 2011-08-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
9879
9880 * mail/smtpmail.el (auth-source): Require to avoid problems with
9881 binding variables (bug#9298). Also clean up some unused
9882 autoloads.
9883
9884 * net/network-stream.el (network-stream-open-starttls):
9885 Support using starttls.el without using gnutls-cli.
9886
9887 2011-08-17 Juri Linkov <juri@jurta.org>
9888
9889 * progmodes/grep.el (rgrep): Handle the case when
9890 `grep-find-command' is a cons cell (bug#9278).
9891
9892 2011-08-17 Martin Rudalics <rudalics@gmx.at>
9893
9894 * window.el (display-buffer-pop-up-frame): Run frame creation
9895 function with BUFFER current (as special-display-popup-frame
9896 does). Reported by Drew Adams.
9897
9898 2011-08-17 Daiki Ueno <ueno@unixuser.org>
9899
9900 * epa-mail.el: Simplify GnuPG group expansion using
9901 epg-expand-group.
9902 (epa-mail-group-alist, epa-mail-group-modtime)
9903 (epa-mail-gnupg-conf-file, epa-mail-parse-groups)
9904 (epa-mail-sync-groups, epa-mail-expand-recipient-1)
9905 (epa-mail-expand-recipients-2, epa-mail-expand-recipients):
9906 Remove.
9907
9908 2011-08-16 Feng Li <fengli@gmail.com> (tiny change)
9909
9910 * calc/calc-ext.el (math-defintegral-2): Remove nested backquote.
9911
9912 2011-08-16 Alan Mackenzie <acm@muc.de>
9913
9914 * progmodes/cc-engine.el (c-state-cache-non-literal-place):
9915 Correct, to avoid the inside of macros.
9916
9917 2011-08-16 Richard Stallman <rms@gnu.org>
9918
9919 * epa-mail.el: Handle GnuPG group definitions.
9920 (epa-mail-group-alist, epa-mail-group-modtime)
9921 (epa-mail-gnupg-conf-file): New variables.
9922 (epa-mail-parse-groups, epa-mail-sync-groups)
9923 (epa-mail-expand-recipient-1, epa-mail-expand-recipients-2)
9924 (epa-mail-expand-recipients): New functions.
9925 (epa-mail-encrypt): Call epa-mail-expand-recipients.
9926
9927 * mail/rmail.el (rmail-epa-decrypt): New command.
9928
9929 * epa.el (epa-decrypt-region): New arg MAKE-BUFFER-FUNCTION.
9930 Don't bind buffer-read-only, just inhibit-read-only.
9931 (epa--find-coding-system-for-mime-charset): Fix the non-xemacs case.
9932 (epa-decrypt-armor-in-region): Make error message clearer.
9933
9934 2011-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
9935
9936 * minibuffer.el (completion-pcm--merge-completions): Don't merge "a1b"
9937 and "a2b" to "ab" for `prefix'.
9938
9939 2011-08-14 Chong Yidong <cyd@stupidchicken.com>
9940
9941 * ibuf-ext.el (ibuffer-filter-disable): New arg for deleting
9942 filter groups.
9943 (ibuffer-included-in-filter-p-1): Use it. Suggested by Rafaël
9944 Fourquet (Bug#8804).
9945
9946 2011-08-12 Juanma Barranquero <lekktu@gmail.com>
9947
9948 * startup.el (argi): Declare as global variable (bug#9275).
9949
9950 2011-08-12 Chong Yidong <cyd@stupidchicken.com>
9951
9952 * subr.el (string-mark-left-to-right): Search the entire string
9953 for RTL script, not just the terminating character. Doc fix.
9954
9955 2011-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
9956
9957 * progmodes/js.el (js-syntax-propertize, js-syntax-propertize-regexp):
9958 New function.
9959 (js--regexp-literal, js-syntax-propertize-function): Remove.
9960 (js-mode): Use js-syntax-propertize to handle multilines (bug#9183).
9961 (js-mode-map): Don't rebind electric keys.
9962 (js-insert-and-indent): Remove.
9963 (js-mode): Setup electric-layout and electric-indent instead.
9964
9965 * epa-file.el (epa-file-select-keys): Revert to nil default (bug#9280).
9966
9967 2011-08-12 Daiki Ueno <ueno@unixuser.org>
9968
9969 * epa.el (epa-progress-callback-function): Fix the logic of
9970 displaying progress.
9971 * epa-file.el (epa-file-insert-file-contents): Make progress
9972 display more user-friendly.
9973 (epa-file-write-region): Ditto.
9974
9975 2011-08-10 Chong Yidong <cyd@stupidchicken.com>
9976
9977 * subr.el (string-mark-left-to-right): New function.
9978
9979 * buff-menu.el (Buffer-menu-buffer+size): Remove LRM argument.
9980 Use string-mark-left-to-right.
9981 (list-buffers-noselect): Caller changed.
9982
9983 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
9984 Use string-mark-left-to-right.
9985 (tabulated-list-print): Recenter after moving point.
9986
9987 2011-08-10 Juri Linkov <juri@jurta.org>
9988
9989 * progmodes/grep.el (rgrep): Don't bind `process-connection-type'.
9990 This finishes incomplete reversion of 2011-06-30T01:09:13Z!larsi@gnus.org
9991 intended by 2011-07-06T15:49:19Z!larsi@gnus.org.
9992
9993 2011-08-09 Chong Yidong <cyd@stupidchicken.com>
9994
9995 * hi-lock.el (hi-lock-unface-buffer): Fix interactive spec
9996 (Bug#7554).
9997
9998 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
9999
10000 * xt-mouse.el (xterm-mouse-event-read): Try to recover the raw
10001 character. (Bug#6594)
10002
10003 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
10004
10005 * image-dired.el: Don't use find-file for temporary work (Bug#7895).
10006 (image-dired--with-db-file): New macro.
10007 (image-dired-write-tags, image-dired-remove-tag)
10008 (image-dired-create-gallery-lists, image-dired-write-comments)
10009 (image-dired-get-comment, image-dired-mark-tagged-files)
10010 (image-dired-list-tags, image-dired-gallery-generate): Use it.
10011 (image-dired-gallery-generate): Use insert-file-contents.
10012
10013 * time.el (display-time-world-list, display-time-world-display):
10014 * time-stamp.el (time-stamp-string):
10015 * vc/add-log.el (add-change-log-entry): Use setenv instead of
10016 set-time-zone-rule (Bug#7337).
10017
10018 2011-08-08 Daiki Ueno <ueno@unixuser.org>
10019
10020 * epg.el (epg--status-KEYEXPIRED, epg--status-KEYREVOKED): Fix typo.
10021 (epg-error-to-string, epg-errors-to-string): New function.
10022 (epg-wait-for-completion): Reverse errors list.
10023 (epg--check-error-for-decrypt, epg-sign-file, epg-sign-string)
10024 (epg-encrypt-file, epg-encrypt-string, epg-export-keys-to-file)
10025 (epg--import-keys-1, epg-receive-keys, epg-delete-keys)
10026 (epg-sign-keys, epg-generate-key-from-file)
10027 (epg-generate-key-from-string): Format errors by using
10028 epg-errors-to-string (bug#9255).
10029 (epg--status-INV_SGNR, epg--status-NO_SGNR): New status handler.
10030
10031 2011-08-07 Juri Linkov <juri@jurta.org>
10032
10033 * faces.el (list-faces-display): Remove extra angle bracket
10034 from `help-mode-map'.
10035
10036 * info.el (Info-history-toc-nodes): Doc fix.
10037
10038 * longlines.el (longlines-mode): Doc fix.
10039
10040 2011-08-05 Stefan Monnier <monnier@iro.umontreal.ca>
10041
10042 * progmodes/js.el (js--regexp-literal): Accept regexps at the beginning
10043 of statements and in a few more cases (bug#9183).
10044
10045 * emacs-lisp/cl-macs.el (cl--make-usage-var, cl--make-usage-args):
10046 New functions.
10047 (cl-transform-lambda): Use them (bug#9239).
10048
10049 2011-08-05 Martin Rudalics <rudalics@gmx.at>
10050
10051 * window.el (display-buffer-same-window)
10052 (display-buffer-same-frame, display-buffer-other-window)
10053 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
10054 (pop-to-buffer-other-window)
10055 (pop-to-buffer-same-frame-other-window)
10056 (pop-to-buffer-other-frame): Make them defuns.
10057 (switch-to-buffer): Don't set LABEL argument of pop-to-buffer.
10058
10059 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10060
10061 * subr.el (make-composed-keymap): Move from C. Change calling
10062 convention, and improve docstring to bring attention to a subtle point.
10063 * minibuffer.el (completing-read-default): Adjust accordingly.
10064
10065 2011-08-03 Michael Albinus <michael.albinus@gmx.de>
10066
10067 * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
10068 (tramp-open-shell): Use `tramp-shell-quote-argument'.
10069
10070 * net/trampver.el: Update release number.
10071
10072 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10073
10074 * progmodes/sh-script.el (sh-font-lock-paren): Don't mistake "main" for
10075 "in" (bug#9190).
10076
10077 2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
10078
10079 * mail/sendmail.el (sendmail-query-once): Restore the current
10080 buffer after querying (bug#9074).
10081
10082 * dired.el (dired-flagged): Use different faces for marked and
10083 flagged files (bug#6117).
10084
10085 * emacs-lisp/cl-macs.el (dolist): Mention that there's a nil block
10086 (bug#4433).
10087
10088 * ido.el (ido-mode): Switch off the message if called
10089 non-interactively.
10090
10091 * mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
10092 before 587, since it appears that that's more likely to work for
10093 more people.
10094
10095 * cus-edit.el (custom-file): When running under emacs -q, always
10096 refuse to save the customizations, even if the .emacs file doesn't
10097 exist.
10098
10099 * info.el: Remove the `Info-beginning-of-buffer' function
10100 (bug#8325).
10101
10102 * net/network-stream.el (network-stream-open-starttls):
10103 Use `starttls-available-p' to see whether starttls.el can be used.
10104
10105 2011-08-01 Martin Rudalics <rudalics@gmx.at>
10106
10107 * window.el (display-buffer-in-window): Don't set dedicated status
10108 of window here (Bug#9215).
10109 (display-buffer-pop-up-window, display-buffer-pop-up-frame)
10110 (display-buffer-pop-up-side-window)
10111 (display-buffer-in-side-window): Set dedicated status of window here.
10112
10113 2011-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
10114
10115 * emacs-lisp/package.el (package-generate-autoloads): Load autoloads
10116 before binding generated-autoload-file.
10117
10118 2011-08-01 Deniz Dogan <deniz@dogan.se>
10119
10120 * net/rcirc.el (rcirc-handler-333): Clarify docstring.
10121
10122 2011-07-30 Michael Albinus <michael.albinus@gmx.de>
10123
10124 Sync with Tramp 2.2.2.
10125
10126 * net/trampver.el: Update release number.
10127
10128 2011-07-30 Juri Linkov <juri@jurta.org>
10129
10130 * dired-aux.el (dired-touch-initial): Remove function.
10131 (dired-do-chxxx): For op-symbol `touch', set `initial' to the
10132 current time, and `default' to the last modification time of the
10133 current marked file (bug#6887).
10134
10135 2011-07-28 Jose E. Marchesi <jemarch@gnu.org>
10136
10137 * simple.el (goto-line): Use string-to-number to provide a
10138 numeric argument to read-number (bug#9163).
10139
10140 2011-07-27 Michael Albinus <michael.albinus@gmx.de>
10141
10142 * net/tramp-sh.el (tramp-maybe-send-script): Don't let-bind the
10143 connection process, it could be nil.
10144
10145 2011-07-27 Leo Liu <sdl.web@gmail.com>
10146
10147 Simplify url handling in rcirc-mode.
10148
10149 * net/rcirc.el (rcirc-browse-url-map, rcirc-browse-url-at-point)
10150 (rcirc-browse-url-at-mouse): Remove.
10151 * net/rcirc.el (rcirc-markup-urls): Use `make-button'.
10152
10153 2011-07-26 Alan Mackenzie <acm@muc.de>
10154
10155 Fontify bitfield declarations properly.
10156
10157 * progmodes/cc-langs.el (c-has-bitfields): New lang variable.
10158 (c-symbol-chars): Now exported as a lang variable.
10159 (c-not-primitive-type-keywords): New lang variable.
10160
10161 * progmodes/cc-fonts.el (c-font-lock-declarations): Jump over the
10162 QT keyword "more" to prevent "more slots: ...." being spuriously
10163 parsed as a bitfield declaration.
10164
10165 * progmodes/cc-engine.el (c-beginning-of-statement-1):
10166 Refactor and enhance to handle bitfield declarations.
10167 (c-punctuation-in): New function.
10168 (c-forward-decl-or-cast-1): Enhance CASE 3 to handle bitfield
10169 declarations properly.
10170
10171 2011-07-26 Ulf Jasper <ulf.jasper@web.de>
10172
10173 * calendar/icalendar.el (icalendar--all-events): Take care of
10174 multiple vcalendars in a single file.
10175 (icalendar--convert-float-to-ical): Checkdoc fixes.
10176
10177 2011-07-25 Deniz Dogan <deniz@dogan.se>
10178
10179 * image.el (insert-image): Clarifying docstring.
10180
10181 2011-07-24 Michael Albinus <michael.albinus@gmx.de>
10182
10183 * net/tramp-sh.el (tramp-barf-unless-okay): Return the value of
10184 `tramp-send-command-and-check' if there is no error.
10185 (tramp-send-command-and-read): Suppress *all* errors if NOERROR.
10186
10187 2011-07-22 Alan Mackenzie <acm@muc.de>
10188
10189 Prevent cc-langs.elc being loaded at run time.
10190
10191 * progmodes/cc-mode.el: Remove two autoload forms which loaded
10192 cc-langs.
10193
10194 * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Don't emit
10195 "(require 'cc-langs)". Quote a form so it will evaluate at
10196 (cc-mode's) compilation time.
10197
10198 2011-07-22 Michael Albinus <michael.albinus@gmx.de>
10199
10200 * net/tramp.el (tramp-file-name-handler): Avoid recursive
10201 loading. (Bug#9114)
10202
10203 2011-07-21 Martin Rudalics <rudalics@gmx.at>
10204
10205 * window.el (display-buffer-pop-up-window)
10206 (display-buffer-pop-up-side-window)
10207 (display-buffer-in-side-window): Call display-buffer-set-height
10208 and display-buffer-set-width after setting the new window's
10209 buffer so `fit-window-to-buffer' and friends work on the right buffer.
10210
10211 2011-07-20 Sam Steingold <sds@gnu.org>
10212
10213 * progmodes/etags.el (etags-file-of-tag, etags-tags-table-files)
10214 (etags-tags-included-tables): Call `convert-standard-filename' on
10215 the file names contained in TAGS so that windows Emacs can handle
10216 TAGS files created by cygwin ctags.
10217
10218 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10219
10220 * proced.el (proced-update): Revert yesterday's bug#1779 patch,
10221 which apparently didn't work.
10222
10223 2011-07-19 Roland Winkler <winkler@gnu.org>
10224
10225 * proced.el (proced-send-signal): For *Marked Processes* buffer
10226 put point at beginning of buffer.
10227
10228 2011-07-19 Stephen Berman <stephen.berman@gmx.net>
10229
10230 * proced.el (proced-format): Make header lines align with the text
10231 (bug#1779).
10232
10233 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10234
10235 * view.el (view-buffer): Allow running in `special' modes if we're
10236 visiting a file (bug#8615).
10237
10238 2011-07-19 Martin Rudalics <rudalics@gmx.at>
10239
10240 * window.el (display-buffer-alist-of-strings-p)
10241 (display-buffer-alist-set-1, display-buffer-alist-set-2):
10242 New functions.
10243 (display-buffer-alist-set): Rewrite to handle Emacs 23 options
10244 more accurately.
10245
10246 2011-07-18 Alan Mackenzie <acm@muc.de>
10247
10248 Fontify declarators properly when, e.g., a jit-lock chunk begins
10249 inside a declaration.
10250
10251 * progmodes/cc-langs.el (c-symbol-chars): Correct a typo.
10252
10253 * progmodes/cc-fonts.el (c-font-lock-enclosing-decls):
10254 New function.
10255 (c-complex-decl-matchers): Insert reference to
10256 c-font-lock-enclosing-decls.
10257
10258 * progmodes/cc-engine.el (c-backward-single-comment):
10259 (c-backward-comments): Bind open-paren-in-column-0-is-defun-start
10260 to nil around calls to (forward-comment -1).
10261
10262 2011-07-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
10263
10264 * image.el (put-image): Doc typo fix.
10265
10266 * progmodes/etags.el (tags-search): Doc typo fix.
10267
10268 * mail/smtpmail.el (smtpmail-via-smtp): Query the user for
10269 password if we get errors 550 to 554.
10270
10271 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10272
10273 * net/gnutls.el (gnutls-log-level): Remove.
10274
10275 * textmodes/fill.el (adaptive-fill-regexp): Include EN DASH as an
10276 indentation character (bug#6380).
10277
10278 * files.el (buffer-offer-save): Made permanently local (bug#6241).
10279
10280 * doc-view.el (doc-view-make-safe-dir): Rewrite the error message
10281 to clarify what the problem is (bug#4291).
10282
10283 * simple.el (current-kill): Clarify what
10284 `interprogram-paste-function' does (bug#7500).
10285 (auto-fill-mode): Document `auto-fill-function' in relation to
10286 `auto-fill-mode' (bug#2470).
10287
10288 2011-07-16 Lawrence Mitchell <wence@gmx.li>
10289
10290 * emacs-lisp/cl-macs.el (defstruct): Ignore argument to setf
10291 method if slot is read-only (bug#9035).
10292
10293 2011-07-16 Martin Rudalics <rudalics@gmx.at>
10294
10295 * frame.el (select-frame-set-input-focus): New argument NORECORD.
10296 * window.el (pop-to-buffer): Select window used even if it was
10297 selected before, see discussion of (Bug#8615), (Bug#6954).
10298 Pass argument NORECORD on to select-frame-set-input-focus.
10299
10300 2011-07-15 Glenn Morris <rgm@gnu.org>
10301
10302 * subr.el (read-char-choice): Allow quitting. (Bug#9001)
10303 Respect help-form.
10304
10305 2011-07-09 Lawrence Mitchell <wence@gmx.li>
10306
10307 * net/gnutls.el (gnutls-min-prime-bits): New variable.
10308 (gnutls-negotiate): Use it.
10309
10310 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10311
10312 * net/gnutls.el (gnutls-negotiate):
10313 Upcase `gnutls-algorithm-priority'.
10314
10315 2011-07-15 Glenn Morris <rgm@gnu.org>
10316
10317 * jka-compr.el (jka-compr-verbose): Move from here...
10318 * jka-cmpr-hook.el (jka-compr-verbose): ... to here. (Bug#9090)
10319 Add missing :version tag.
10320 * info.el: No need to require jka-compr when compiling.
10321
10322 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10323
10324 * net/gnutls.el (gnutls-algorithm-priority): New variable.
10325 (gnutls-negotiate): Use it.
10326
10327 * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node.
10328
10329 * info.el (Info-beginning-of-buffer): New command.
10330 (Info-mode-map): Use it instead of `beginning-of-buffer' to allow
10331 announcing `b' as the key (bug#8325).
10332 (Info-mode-menu): Use `Info-beginning-of-buffer' for consistency.
10333
10334 * emacs-lisp/cl-macs.el (declare): Doc string fix-up.
10335
10336 * international/mule-cmds.el
10337 (describe-specified-language-support): Make the error message
10338 clearer (bug#8905).
10339
10340 * emacs-lisp/cl-macs.el (declare): Add a doc string (bug#8690).
10341
10342 * isearch.el (isearch-barrier): Add a doc string, since it's
10343 mentioned in a function doc string (bug#8678).
10344
10345 2011-07-15 Martin Rudalics <rudalics@gmx.at>
10346
10347 * window.el (switch-to-buffer): Call pop-to-buffer with normalized
10348 buffer argument (Bug#9083) and self-identifying label argument.
10349
10350 2011-07-15 Glenn Morris <rgm@gnu.org>
10351
10352 * emacs-lisp/debug.el (debug): Doc fix. (Bug#8273)
10353
10354 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10355
10356 * man.el (Man-fontify-manpage): Fix message when formatting the
10357 man page (bug#7929).
10358
10359 2011-07-14 Eli Zaretskii <eliz@gnu.org>
10360
10361 * buff-menu.el (Buffer-menu-buffer+size): Accept an additional
10362 argument LRM; if non-nil, append an invisible LRM character to the
10363 buffer name.
10364 (list-buffers-noselect): Call Buffer-menu-buffer+size with the
10365 last argument non-nil, when formatting buffer names.
10366 (Buffer-menu-mode, list-buffers-noselect): Force left-to-right
10367 paragraph direction.
10368
10369 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10370
10371 * man.el (Man-bgproc-sentinel): Skip any arguments and only output
10372 the man page name (bug#7929).
10373
10374 * image.el (put-image): Mention the `put-image' overlay property
10375 (bug#7834).
10376
10377 * scroll-bar.el (set-scroll-bar-mode): Mention that
10378 `scroll-bar-mode' lists the values (bug#7772).
10379
10380 * image-mode.el (image-mode-fit-frame): Mention that it's a toggle
10381 command (bug#7729).
10382
10383 * rect.el (apply-on-rectangle): Return the point after the last
10384 operation.
10385 (string-rectangle): Go to the point after the last operation
10386 (bug#7522).
10387
10388 * printing.el (pr-toggle-region): Clarify the documentation
10389 slightly (bug#7493).
10390
10391 * time.el (display-time-update):
10392 Allow `display-time-mail-function' to return nil (bug#7158).
10393 Fix suggested by Detlev Zundel.
10394
10395 * vc/diff.el (diff): Clarify the order the file names are read
10396 (bug#7111).
10397
10398 * mouse.el (mouse-set-region): Link to `mouse-drag-copy-region' in
10399 the doc string (bug#7015).
10400
10401 * font-lock.el (font-lock-maximum-decoration): Mention what
10402 numeric levels mean (bug#6935).
10403
10404 * startup.el (initial-buffer-choice): Don't mention the `none'
10405 selection, which is against policy.
10406
10407 2011-07-14 Martin Rudalics <rudalics@gmx.at>
10408
10409 * window.el (display-buffer-normalize-special):
10410 Replace `dedicated' by `dedicate' to dedicate window (Bug#9072).
10411
10412 2011-07-14 Eli Zaretskii <eliz@gnu.org>
10413
10414 * subr.el (version<, version<=, version=): Mention "-CVS" and
10415 "-12345" alpha version numbers.
10416
10417 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
10418
10419 * bindings.el: Add advertised binding for set-mark-command
10420 (Bug#5772).
10421
10422 2011-07-14 Chong Yidong <cyd@stupidchicken.com>
10423
10424 * bindings.el (mode-line-other-buffer):
10425 * bookmark.el (bookmark-bmenu-2-window):
10426 * bs.el (bs-cycle-next, bs-cycle-previous):
10427 * net/tramp-cmds.el (tramp-append-tramp-buffers): Revert to using
10428 switch-to-buffer.
10429
10430 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10431 Delete.
10432
10433 2011-07-14 Juanma Barranquero <lekktu@gmail.com>
10434
10435 * follow.el (follow-debug-message, follow-redisplay):
10436 * jka-cmpr-hook.el (with-auto-compression-mode):
10437 Fix typos in docstrings.
10438
10439 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10440
10441 * subr.el (with-silent-modifications): Clarify somewhat what the
10442 macro inhibits (bug#6525).
10443
10444 * simple.el (eval-expression): Note what it does if called
10445 interactively (bug#6495).
10446
10447 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
10448
10449 * window.el (switch-to-buffer): New arg FORCE-SAME-WINDOW.
10450 Use pop-to-buffer buffer-or-name if it is nil.
10451
10452 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
10453 Remove switch-to-buffer.
10454
10455 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10456
10457 * files.el (make-directory): Clarify that an error will be raised
10458 if there's an error (bug#6397).
10459
10460 * startup.el (initial-buffer-choice): Add `none' as a choice
10461 (bug#6234).
10462
10463 * subr.el (add-hook): Clarify section about buffer-local hooks
10464 (bug#6218).
10465
10466 * dired.el (dired-flagged): Clarify doc string (bug#6117).
10467
10468 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
10469
10470 * tabify.el (untabify): Preserve the current column so that point
10471 doesn't move (bug#6032).
10472
10473 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10474
10475 * progmodes/cperl-mode.el (cperl-syntaxify-by-font-lock):
10476 Rewrite to avoid awkward possessive "s" (bug#5986).
10477
10478 2011-07-13 Glenn Morris <rgm@gnu.org>
10479
10480 * dired.el (dired-use-ls-dired): Doc fix. (Bug#9039).
10481 (dired-insert-directory): Give a message the first time
10482 if ls is found not to support --dired.
10483
10484 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10485
10486 * simple.el (toggle-truncate-lines): Clarify what is toggled
10487 (bug#5580). Text by Drew Adams.
10488
10489 2011-07-13 Chong Yidong <cyd@stupidchicken.com>
10490
10491 * simple.el (blink-matching-open): Make the error message from the
10492 last change less verbose.
10493
10494 2011-07-13 Dan Nicolaescu <dann@ics.uci.edu>
10495
10496 * font-lock.el (font-lock-comment-face): Use the high contrast
10497 "yellow" color for font-lock-comment-face on low color terminals
10498 using a dark background color (bug#4221).
10499
10500 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10501
10502 * dired.el (dired-insert-set-properties): Make the doc string
10503 reflect what it does now (bug#5325).
10504
10505 * simple.el (blink-matching-open): Say that we were unable to find
10506 the match within the limit, if we're limited (bug#5122).
10507
10508 * international/mule-cmds.el (prefer-coding-system): Add an
10509 example (bug#4869).
10510
10511 * progmodes/etags.el (tags-search): Document `file-list-form'
10512 (bug#4731).
10513
10514 2011-07-13 Lawrence Mitchell <wence@gmx.li>
10515
10516 * net/browse-url.el (browse-url-default-browser)
10517 (browse-url-browser-function): Make the default browser choice a
10518 bit more logical (bug#4300). Also clean up the doc string.
10519
10520 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
10521
10522 * bindings.el (completion-ignored-extensions): Add OpenMCL/Clozure
10523 binary endings (bug#4440).
10524
10525 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10526
10527 * info.el (info-insert-file-contents): Inhibit jka-compr messages,
10528 which can be pretty annoying (bug#8971).
10529
10530 * jka-compr.el (jka-compr-verbose): New variable, and use
10531 throughout (bug#8971).
10532
10533 * info.el (Info-find-file): Fall back on the installation
10534 directory if we can't find the info node anywhere else.
10535
10536 2011-07-13 Sergei Organov <osv@javad.com> (tiny change)
10537
10538 * vc/vc.el (vc-revert-file):
10539 Don't set file time-stamp in the past. (Bug#5181)
10540
10541 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10542
10543 * files.el (after-find-file): Give a better error message when
10544 trying to find a symlink that points to a file that doesn't exist
10545 (bug#4398).
10546
10547 * progmodes/cc-vars.el: Remove (probably) misleading comment
10548 (bug#4396).
10549
10550 2011-07-12 Johan Bockgård <bojohan@gnu.org>
10551
10552 * mouse-sel.el (mouse-sel-primary-overlay): Use the `region' face.
10553
10554 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
10555
10556 * mouse-sel.el: Hack restoring functionality, while keeping
10557 compatibility with 2010-07-03 changes to mouse selection.
10558 (mouse-sel-primary-overlay): New var.
10559 (mouse-sel-selection-alist): Use it.
10560 (mouse-sel-mode): Doc fix; remove points that are default features
10561 of mouse.el.
10562
10563 2011-07-12 Johan Bockgård <bojohan@gnu.org>
10564
10565 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10566 Fix previous fix (bug#2490).
10567
10568 2011-07-12 Roland Winkler <winkler@gnu.org>
10569
10570 * textmodes/bibtex.el (bibtex-initialize):
10571 Use pop-to-buffer-same-window.
10572 (bibtex-search-entries): Fix interactive call.
10573
10574 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
10575
10576 * progmodes/compile.el (compilation-error-regexp-alist-alist):
10577 Fontise bytecomp Error lines more correctly (bug#2490).
10578 Fix suggested by Johan Bockgård.
10579
10580 * subr.el (remove-duplicates): Remove; `delete-dups' is sufficient.
10581
10582 * dired-x.el (dired-guess-default): Use `delete-dups'.
10583
10584 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
10585
10586 * dired.el (dired-mark-prompt):
10587 * dired-aux.el (dired-read-shell-command): Doc fix.
10588
10589 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10590
10591 * mail/sendmail.el (sendmail-query-once):
10592 Use `customize-save-variable' unconditionally, now that it works under
10593 emacs -Q.
10594
10595 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10596
10597 * cus-edit.el (custom-file): Take an optional no-error variable.
10598 (customize-save-variable): Set the variable, and give a warning if
10599 running under "emacs -q".
10600
10601 2011-07-11 Juanma Barranquero <lekktu@gmail.com>
10602
10603 * loadhist.el (unload-feature-special-hooks):
10604 Add `auto-coding-functions', `fill-nobreak-predicate' and
10605 `find-directory-functions' (bug#5327).
10606
10607 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10608
10609 * vc/ediff.el (ediff-patch-file): Clarify doc string (bug#3138).
10610
10611 * cus-edit.el (custom-guess-name-alist): -alist variables should
10612 use the `alist' type (bug#3120). Suggested by Drew Adams.
10613
10614 * printing.el: Add documentation to all the `pr-toggle-' commands.
10615
10616 2011-07-11 Leo Liu <sdl.web@gmail.com>
10617
10618 * files.el (toggle-read-only): Only do the `C-x C-q' warning on VC
10619 backends where it makes sense (bug#2623).
10620
10621 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10622
10623 * dired-x.el (dired-guess-default): Remove duplicate shell command
10624 entries (bug#2028).
10625 (dired-guess-default): Fix grammar in doc string (bug#2028).
10626 (dired-guess-shell-alist-user): Clarify the example a bit (bug#2030).
10627
10628 * subr.el (remove-duplicates): New conveniency function.
10629
10630 2011-07-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10631
10632 * tool-bar.el (tool-bar-mode): Clarify positive/negative arguments
10633 (bug#1526).
10634
10635 2011-07-10 Martin Rudalics <rudalics@gmx.at>
10636
10637 * window.el (display-buffer-normalize-default): Don't invert
10638 meaning of even-window-heights. Reported by Eli Zaretskii
10639 <eliz@gnu.org>.
10640
10641 2011-07-10 Bob Rogers <rogers@rgrjr.dyndns.org>
10642
10643 * vc/vc.el (vc-diff-internal): Fix race condition (Bug#1256).
10644
10645 2011-07-10 Chong Yidong <cyd@stupidchicken.com>
10646
10647 * window.el (display-buffer): Fix arguments to
10648 display-buffer-reuse-window in last change.
10649
10650 * faces.el (link): Use a less saturated blue on light backgrounds.
10651
10652 * startup.el (fancy-startup-text, fancy-about-text)
10653 (fancy-startup-tail): Use font-lock faces, for background safety.
10654
10655 2011-07-09 Bob Nnamtrop <bobnnamtrop@gmail.com> (tiny change)
10656
10657 * emulation/viper-cmd.el (viper-change-state-to-vi):
10658 Limit triggering of abbrev expansion (Bug#9038).
10659
10660 2011-07-09 Martin Rudalics <rudalics@gmx.at>
10661
10662 * window.el (display-buffer-default-specifiers): Remove.
10663 (display-buffer-macro-specifiers): Remove default specifiers.
10664 (display-buffer-alist): Default to nil.
10665 (display-buffer-reuse-window): New optional argument other-window.
10666 (display-buffer-pop-up-window): Allow splitting internal
10667 windows. Check whether a live window was created.
10668 (display-buffer-other-window-means-other-frame)
10669 (display-buffer-normalize-arguments): Rename to
10670 display-buffer-normalize-argument and rewrite. Set the
10671 other-window specifier.
10672 (display-buffer-normalize-special): New function.
10673 (display-buffer-normalize-options): Rename to
10674 display-buffer-normalize-default and rewrite.
10675 (display-buffer-normalize-options-inhibit): Remove.
10676 (display-buffer-normalize-specifiers): Rewrite.
10677 (display-buffer): Process other-window specifier and call
10678 display-buffer-reuse-window with it. Emulate Emacs 23 behavior
10679 more faithfully.
10680 (pop-up-windows, even-window-heights): Restore Emacs 23 default values.
10681 (display-buffer-alist-set): Don't handle 'unset default values.
10682 (display-buffer-in-window, display-buffer-alist-set):
10683 Replace symbol "dedicated" by "dedicate". Reported by Tassilo Horn
10684 <tassilo@member.fsf.org>.
10685
10686 2011-07-09 Leo Liu <sdl.web@gmail.com>
10687
10688 * register.el (insert-register): Restore accidental change on
10689 2011-06-26. (Bug#9028)
10690
10691 2011-07-09 Glenn Morris <rgm@gnu.org>
10692
10693 * subr.el (remq): Handle the empty list. (Bug#9024)
10694
10695 2011-07-08 Andreas Schwab <schwab@linux-m68k.org>
10696
10697 * mail/sendmail.el (send-mail-function): No longer delay custom
10698 initialization.
10699 * custom.el (custom-initialize-delay): Doc fix.
10700
10701 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10702
10703 * abbrev.el (expand-abbrev): Try to preserve point (bug#5805).
10704
10705 2011-07-08 Michael Albinus <michael.albinus@gmx.de>
10706
10707 * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use a
10708 human-friendly prompt.
10709
10710 2011-07-08 Stefan Monnier <monnier@iro.umontreal.ca>
10711
10712 * vc/vc-bzr.el (vc-bzr-revision-keywords): Remove svn, it's only
10713 provided by a particular plugin.
10714
10715 2011-07-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
10716
10717 * mail/sendmail.el (sendmail-query-once): If we aren't allowed to
10718 save customizations (with "emacs -Q"), just set the variable
10719 instead of erroring out.
10720
10721 * mail/smtpmail.el (smtpmail-query-smtp-server): Ditto.
10722
10723 2011-07-08 Juri Linkov <juri@jurta.org>
10724
10725 * arc-mode.el (archive-zip-expunge, archive-zip-update)
10726 (archive-zip-update-case): Use 7z if found by `executable-find'.
10727 The order of searching the available programs is the same as in
10728 `archive-zip-extract' (bug#8968).
10729
10730 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10731
10732 * menu-bar.el (menu-bar-line-wrapping-menu): Revert last change.
10733 (menu-bar-options-menu): Tweak descriptions.
10734
10735 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10736
10737 * menu-bar.el (menu-bar-line-wrapping-menu): Make all the Options
10738 menu items into verb phrases (bug#1421). Also refill to fit under
10739 80 columns.
10740
10741 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10742
10743 * info.el (info, Info-read-node-name-2, Info-read-node-name-1)
10744 (Info-read-node-name): Doc fix (Bug#1084).
10745
10746 * thingatpt.el (forward-thing, bounds-of-thing-at-point)
10747 (thing-at-point, beginning-of-thing, end-of-thing, in-string-p)
10748 (end-of-sexp, beginning-of-sexp)
10749 (thing-at-point-bounds-of-list-at-point, forward-whitespace)
10750 (forward-symbol, forward-same-syntax, word-at-point)
10751 (sentence-at-point): Doc fix (Bug#1144).
10752
10753 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
10754
10755 * info.el (Info-mode-map): Remove S-TAB binding, since [backtab]
10756 should cover it (bug#1281).
10757
10758 * cus-edit.el (custom-show): Mark as obsolete.
10759
10760 * net/network-stream.el (network-stream-open-starttls): If GnuTLS
10761 negotiation fails, then possibly try again with a non-encrypted
10762 connection (bug#9017).
10763
10764 * mail/smtpmail.el (smtpmail-stream-type): Note that `plain' can
10765 be used.
10766
10767 2011-07-07 Richard Stallman <rms@gnu.org>
10768
10769 * mail/rmail.el (rmail-next-error-move): Use `compilation-message'
10770 property, and handle its changed format.
10771 Look for the correct line number.
10772 Use file's line contents (but not past first =) to find
10773 correct line in message.
10774
10775 2011-07-07 Kenichi Handa <handa@m17n.org>
10776
10777 * international/characters.el (build-unicode-category-table):
10778 Delete it.
10779 (unicode-category-table): Set it by unicode-property-table-internal.
10780
10781 * international/mule-cmds.el (char-code-property-alist): Move to
10782 to src/chartab.c.
10783 (get-char-code-property): Call unicode-property-table-internal to
10784 load a file. Call get-unicode-property-internal where necessary.
10785 (put-char-code-property): Call unicode-property-table-internal to
10786 load a file. Call put-unicode-property-internal where necessary.
10787 put-unicode-property-internal where necessary.
10788 (char-code-property-description):
10789 Call unicode-property-table-internal to load a file.
10790
10791 * international/charprop.el:
10792 * international/uni-bidi.el:
10793 * international/uni-category.el:
10794 * international/uni-combining.el:
10795 * international/uni-comment.el:
10796 * international/uni-decimal.el:
10797 * international/uni-decomposition.el:
10798 * international/uni-digit.el:
10799 * international/uni-lowercase.el:
10800 * international/uni-mirrored.el:
10801 * international/uni-name.el:
10802 * international/uni-numeric.el:
10803 * international/uni-old-name.el:
10804 * international/uni-titlecase.el:
10805 * international/uni-uppercase.el: Regenerate.
10806
10807 * loadup.el: Load international/charprop.el before
10808 international/characters.
10809
10810 2011-07-07 Chong Yidong <cyd@stupidchicken.com>
10811
10812 * window.el (next-buffer, previous-buffer): Signal an error if
10813 called from a minibuffer window.
10814
10815 * bindings.el: Revert 2011-07-04 change.
10816
10817 2011-07-06 Richard Stallman <rms@gnu.org>
10818
10819 * mail/rmailmm.el (rmail-mime-process): Use markers for buf positions.
10820 (rmail-mime-insert-bulk, rmail-mime-insert-text):
10821 Treat markers like ints.
10822 (rmail-mime-entity): Doc fix.
10823
10824 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10825
10826 * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
10827 defcustom again for backwards compatibility.
10828
10829 * simple.el (shell-command-on-region): Fill.
10830
10831 * dired-aux.el (dired-kill-line): Add a doc string.
10832
10833 * dabbrev.el (dabbrev-abbrev-char-regexp): Note that nil defaults
10834 to "\\sw\\|\\s_" (bug#358).
10835
10836 * dired.el (dired-mode): Clarify "unmark or unflag" (bug#8770).
10837 (dired-unmark-backward): Ditto.
10838 (dired-flag-backup-files): Ditto.
10839
10840 * dired-x.el (dired-mark-sexp): Ditto.
10841
10842 2011-07-06 Richard Stallman <rms@gnu.org>
10843
10844 * mail/rmailmm.el: Give entity a new slot, TRUNCATED.
10845 (rmail-mime-entity): New arg TRUNCATED.
10846 (rmail-mime-entity-truncated, rmail-mime-entity-set-truncated):
10847 New functions.
10848 (rmail-mime-save): Warn if entity is truncated.
10849 (rmail-mime-toggle-hidden): Likewise, for showing.
10850 (rmail-mime-process-multipart): Record when an entity is truncated.
10851
10852 * mail/rmailmm.el (rmail-search-mime-message): Don't get confused
10853 if ENTITY is a string.
10854
10855 2011-07-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
10856
10857 * emacs-lisp/lisp-mode.el (eval-defun-1): Update the documentation
10858 of faces when `M-C-x'-ing their definitions (bug#8378).
10859 Also clean up the code slightly.
10860
10861 * progmodes/grep.el (rgrep): Don't bind `process-connection-type',
10862 because that makes the colors go away.
10863
10864 * mail/sendmail.el (send-mail-function): Change the default to
10865 `sendmail-query-once'.
10866 (sendmail-query-once): Add an autoload cookie.
10867
10868 * net/network-stream.el (network-stream-open-starttls): Try using
10869 a plain connection even if the server offered STARTTLS, and we
10870 kinda wanted to use it, if Emacs doesn't have any STARTTLS
10871 capability. This should make smtpmail.el work in slightly more
10872 configurations.
10873
10874 2011-07-06 Michael Albinus <michael.albinus@gmx.de>
10875
10876 * net/tramp-compat.el (tramp-compat-pop-to-buffer-same-window):
10877 New defun.
10878 * net/tramp-cmds.el (tramp-append-tramp-buffers): Use it.
10879
10880 2011-07-06 Michael R. Mauger <mmaug@yahoo.com>
10881
10882 * progmodes/sql.el: Version 3.0
10883 (sql-product-alist): Add product :completion-object,
10884 :completion-column, and :statement attributes.
10885 (sql-mode-menu, sql-interactive-mode-map): Fix List entries.
10886 (sql-mode-syntax-table): Mark all punctuation.
10887 (sql-font-lock-keywords-builder): Temporarily remove fallback on
10888 ansi keywords.
10889 (sql-regexp-abbrev, sql-regexp-abbrev-list): New functions.
10890 (sql-mode-oracle-font-lock-keywords): Improve.
10891 (sql-oracle-show-reserved-words): New function for development.
10892 (sql-product-font-lock): Simplify for source code buffers.
10893 (sql-product-syntax-table, sql-product-font-lock-syntax-alist):
10894 New functions.
10895 (sql-highlight-product): Set product specific syntax table.
10896 (sql-mode-map): Add statement movement functions.
10897 (sql-ansi-statement-starters, sql-oracle-statement-starters):
10898 New variable.
10899 (sql-statement-regexp, sql-beginning-of-statement)
10900 (sql-end-of-statement, sql-signum): New functions.
10901 (sql-buffer-live-p, sql=find-sqli-buffer): Add CONNECTION parameter.
10902 (sql-show-sqli-buffer): Bug fix.
10903 (sql-interactive-mode): Store connection data as buffer local.
10904 (sql-connect): Add NEW-NAME parameter. Redesign interaction
10905 with sql-interactive-mode.
10906 (sql-save-connection): Save buffer local settings.
10907 (sql-connection-menu-filter): Change menu entry name.
10908 (sql-product-interactive): Bug fix.
10909 (sql-preoutput-hold): New variable.
10910 (sql-interactive-remove-continuation-prompt): Bug fixes.
10911 (sql-debug-redirect): New variable.
10912 (sql-str-literal): New function.
10913 (sql-redirect, sql-redirect-one, sql-redirect-value, sql-execute):
10914 Redesign.
10915 (sql-oracle-save-settings, sql-oracle-restore-settings)
10916 (sql-oracle-list-all, sql-oracle-list-table): New functions.
10917 (sql-completion-object, sql-completion-column)
10918 (sql-completion-sqlbuf): New variables.
10919 (sql-build-completions-1, sql-build-completions)
10920 (sql-try-completion): New functions.
10921 (sql-read-table-name): Use them.
10922 (sql-contains-names): New buffer local variable.
10923 (sql-list-all, sql-list-table): Use it.
10924 (sql-oracle-completion-types): New variable.
10925 (sql-oracle-completion-object, sql-sqlite-completion-object)
10926 (sql-postgres-completion-object): New functions.
10927
10928 2011-07-06 Glenn Morris <rgm@gnu.org>
10929
10930 * window.el (pop-to-buffer): Doc fix.
10931
10932 2011-07-06 Markus Heiser <markus.heiser@darmarit.de> (tiny change)
10933
10934 * progmodes/gud.el (gud-pdb-marker-regexp): Accept \r char (Bug#5653).
10935
10936 2011-07-06 Chong Yidong <cyd@stupidchicken.com>
10937
10938 * window.el (special-display-popup-frame): Doc fix (Bug#8853).
10939
10940 * info.el (Info-directory-toc-nodes): Minor doc fix (Bug#8833).
10941
10942 2011-07-05 Chong Yidong <cyd@stupidchicken.com>
10943
10944 * button.el (button): Inherit from link face. Suggested by Dan
10945 Nicolaescu.
10946
10947 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10948
10949 * progmodes/gdb-mi.el: Fit in 80 columns.
10950 (gdb-setup-windows, gdb-restore-windows): Avoid other-window and
10951 switch-to-buffer.
10952
10953 * progmodes/which-func.el (which-func-ff-hook): Don't output a message
10954 if imenu is simply not configured (bug#8941).
10955
10956 2011-07-05 Ken Manheimer <ken.manheimer@gmail.com>
10957
10958 * allout.el (allout-post-undo-hook): New allout outline-change
10959 event hook to signal undo activity.
10960 (allout-post-command-business): Run allout-post-undo-hook if an
10961 undo just occurred.
10962 (allout-after-copy-or-kill-hook, allout-mode): Minor docstring changes.
10963 * allout-widgets.el (allout-widgets-after-undo-function):
10964 Ensure the integrity of the current item's decoration after it has been
10965 in the vicinity of an undo.
10966 (allout-widgets-mode): Include allout-widgets-after-undo-function
10967 on the new allout-post-undo-hook.
10968
10969 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
10970
10971 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-abbrev-table):
10972 Let define-derived-mode define it.
10973 * emacs-lisp/derived.el (define-derived-mode): Try to avoid creating
10974 cycles of abbrev-table inheritance (bug#8998).
10975
10976 2011-07-05 Roland Winkler <winkler@gnu.org>
10977
10978 * textmodes/bibtex.el: Add support for biblatex.
10979 (bibtex-BibTeX-entry-alist, bibtex-biblatex-entry-alist)
10980 (bibtex-BibTeX-field-alist, bibtex-biblatex-field-alist)
10981 (bibtex-dialect-list, bibtex-dialect, bibtex-no-opt-remove-re)
10982 (bibtex-entry-alist, bibtex-field-alist): New variables.
10983 (bibtex-entry-field-alist): Obsolete alias for
10984 bibtex-BibTeX-entry-alist.
10985 (bibtex-entry-alist, bibtex-field-alist): New widgets.
10986 (bibtex-set-dialect): New command.
10987 (bibtex-entry-type, bibtex-entry-head)
10988 (bibtex-entry-maybe-empty-head, bibtex-any-valid-entry-type):
10989 Bind via bibtex-set-dialect.
10990 (bibtex-Article, bibtex-Book, bibtex-Booklet, bibtex-InBook)
10991 (bibtex-InCollection, bibtex-InProceedings, bibtex-Manual)
10992 (bibtex-MastersThesis, bibtex-Misc, bibtex-PhdThesis)
10993 (bibtex-Proceedings, bibtex-TechReport, bibtex-Unpublished):
10994 Define via bibtex-set-dialect.
10995 (bibtex-name-in-field, bibtex-remove-OPT-or-ALT):
10996 Obey bibtex-no-opt-remove-re.
10997 (bibtex-vec-push, bibtex-vec-incr): New functions.
10998 (bibtex-format-entry, bibtex-field-list)
10999 (bibtex-print-help-message, bibtex-validate)
11000 (bibtex-search-entries): Use new format of bibtex-entry-alist.
11001
11002 2011-07-05 Stefan Monnier <monnier@iro.umontreal.ca>
11003
11004 * progmodes/compile.el (compilation-goto-locus):
11005 * net/tramp-cmds.el (tramp-append-tramp-buffers):
11006 * bs.el (bs-cycle-next, bs-cycle-previous):
11007 * bookmark.el (bookmark-bmenu-list, bookmark-bmenu-2-window):
11008 * bindings.el (mode-line-other-buffer):
11009 * autoinsert.el (auto-insert):
11010 * arc-mode.el (archive-extract):
11011 * abbrev.el (edit-abbrevs): Fix some uses of switch-to-buffer.
11012
11013 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11014
11015 * emacs-lock.el (emacs-lock-mode): Fix typo in variable name.
11016 Fix check of `emacs-lock-unlockable-modes'.
11017 Coerce true values of `emacs-lock--try-unlocking' to t.
11018
11019 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11020
11021 * obsolete/old-emacs-lock.el: Rename from emacs-lock.el.
11022 * emacs-lock.el: New file.
11023
11024 2011-07-05 Julien Danjou <julien@danjou.info>
11025
11026 * textmodes/rst.el (rst-define-level-faces): Use `facep' rather
11027 than `boundp' to check if face is set.
11028
11029 2011-07-05 Juanma Barranquero <lekktu@gmail.com>
11030
11031 * register.el (registerv-make):
11032 * window.el (window-min-height): Fix typos in docstrings.
11033
11034 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11035
11036 * dynamic-setting.el (dynamic-setting-handle-config-changed-event):
11037 Update doc string.
11038
11039 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11040
11041 * server.el (server-execute): Catch quit and call
11042 `server-return-error' to pass the error back to emacsclient and
11043 close the connection (bug#8942).
11044
11045 2011-07-04 Ken Manheimer <ken.manheimer@gmail.com>
11046
11047 * allout.el (allout-encrypt-unencrypted-on-saves): Do not provide
11048 insecure exception for current topic. Also note that auto-saves
11049 are handled differently.
11050
11051 (allout-auto-save-temporarily-disabled, allout-just-did-undo):
11052 State variables for tracking auto-save inhibition situation.
11053
11054 (allout-write-contents-hook-handler): Rename from
11055 'allout-write-file-hook-handler', and describe how it depends on
11056 write-contents-functions sensitivity to non-nil value to prevent
11057 file write.
11058
11059 (allout-auto-save-hook-handler): Remove. auto-save does not check
11060 this in individual buffers, only in the starting buffer, so this
11061 is not the right way for us to inhibit auto-save in a buffer
11062 according to its condition.
11063
11064 (allout-mode): Use new allout-write-contents-hook-handler, and
11065 only with write-contents-functions. Remove auto-save provisions -
11066 they're implemented elsewhere.
11067
11068 (allout-before-change-handler): If undo is in progress, note that
11069 for attention of allout-post-command-business.
11070
11071 (allout-post-command-business): If the command we're following was
11072 an undo, check for change in the status of encrypted items and
11073 adjust auto-save inhibitions accordingly.
11074
11075 (allout-toggle-subtree-encryption): Adjust auto-save inhibition
11076 according to whether there are or aren't any plain-text topics
11077 pending encryption.
11078
11079 (allout-inhibit-auto-save-info-for-decryption):
11080 Adjust buffer-saved-size and some allout state to inhibit auto-saves
11081 if there are plain-text topics pending encryption.
11082
11083 (allout-maybe-resume-auto-save-info-after-encryption): Adjust
11084 buffer-saved-size and some allout state to not inhibit auto-saves
11085 if there are no longer any plain-text topics pending encryption.
11086
11087 (allout-next-topic-pending-encryption, allout-encrypt-decrypted):
11088 No longer provide for exemption of the current topic.
11089
11090 2011-07-04 Juri Linkov <juri@jurta.org>
11091
11092 Add 7z operations to delete and save changed members (bug#8968).
11093 * arc-mode.el (archive-7z-expunge, archive-7z-update):
11094 New defcustoms.
11095 (archive-7z-write-file-member): New function.
11096 (archive-7z-summarize): Fix the number of dashes in the
11097 listing output.
11098
11099 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11100
11101 * pcmpl-linux.el (pcomplete-pare-list): Re-add, from pcomplete.el
11102 (bug#8958).
11103
11104 2011-07-04 Chong Yidong <cyd@stupidchicken.com>
11105
11106 * bindings.el: Ignore next-buffer and previous-buffer in
11107 minibuffer-local-map.
11108
11109 * font-lock.el (font-lock-builtin-face): Change light background
11110 color to dark slate blue (Bug#6693).
11111
11112 2011-07-04 Wang Diancheng <dcwang@kingbase.com.cn> (tiny change)
11113
11114 * progmodes/gdb-mi.el (gdb): Use completion-at-point.
11115
11116 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11117
11118 * files.el (find-file): Use pop-to-buffer-same-window (bug#8911).
11119 * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11120 Add switch-to-buffer.
11121
11122 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11123
11124 * isearch.el (isearch-search-fun-function): Clarify further the
11125 meaning of the function returned.
11126
11127 2011-07-04 Michael Albinus <michael.albinus@gmx.de>
11128
11129 * net/tramp-cmds.el (tramp-cleanup-this-connection): New command.
11130
11131 * net/tramp-sh.el (tramp-color-escape-sequence-regexp): New defconst.
11132 (tramp-sh-handle-insert-directory, tramp-convert-file-attributes):
11133 Use it.
11134 (tramp-remote-path): Add "/bin" and "/usr/bin". On busyboxes,
11135 `tramp-default-remote-path' does not exist.
11136 (tramp-send-command-and-read): New optional argument NOERROR.
11137 (tramp-open-connection-setup-interactive-shell)
11138 (tramp-get-remote-path, tramp-get-remote-stat): Use it.
11139 (tramp-get-remote-readlink): Do not mask with `ignore-errors'.
11140 (tramp-process-sentinel): Flush also process' connection property.
11141 (tramp-sh-handle-start-file-process): Do not set process
11142 sentinel. It is done now ...
11143 (tramp-maybe-open-connection): ... here. (Bug#8929)
11144
11145 2011-07-04 MON KEY <monkey@sandpframing.com>
11146
11147 * play/animate.el (animate-string): Doc fixes and allow changing
11148 the buffer name (bug#5417).
11149
11150 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11151
11152 * play/animate.el (animation-buffer-name): Rename from *animate*.
11153
11154 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11155
11156 * emacs-lisp/timer.el: Use time-date fns rather than rolling our own.
11157 This is simpler and helps future-proof the code.
11158 (timer-until): Use time-subtract and float-time.
11159 (timer--time-less-p): Use time-less-p.
11160
11161 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
11162
11163 * type-break.el (timep): Use the value of `float-time' to avoid a
11164 byte-compiler warning.
11165
11166 * server.el (server-eval-and-print): Return any result, even nil.
11167
11168 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11169
11170 * type-break.el: Accept time formats that the builtins accept.
11171 (timep, type-break-time-difference): Accept any format that
11172 float-time accepts, rather than insisting on (HIGH LOW USECS) format.
11173 This is simpler and helps future-proof the code.
11174 (type-break-time-difference): Round rather than ignoring
11175 subseconds components.
11176
11177 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11178
11179 * info.el (Info-apropos-matches): Make non-interactive, since it
11180 doesn't seem to do anything useful as a command (bug#8829).
11181
11182 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
11183
11184 * frame.el (frame-background-mode, frame-set-background-mode):
11185 Move from faces.el.
11186 (frame-default-terminal-background): New function.
11187
11188 * custom.el (custom-push-theme): Don't record faces in `changed'
11189 theme; this doesn't work correctly for per-frame face settings.
11190 (disable-theme): Use face-set-after-frame-default to reset faces.
11191 (custom--frame-color-default): New function.
11192
11193 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11194
11195 * dired.el (dired-flagging-regexp): Remove unused variable
11196 (bug#8769).
11197
11198 2011-03-29 Kevin Ryde <user42@zip.com.au>
11199
11200 * progmodes/compile.el (compilation-error-regexp-alist-alist):
11201 `perl-Test2' extend to match possible "fail #N" rep count
11202 (bug#8377).
11203
11204 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11205
11206 * mail/feedmail.el (feedmail-buffer-to-smtpmail):
11207 `smtpmail-via-smtp' now returns the error instead of nil.
11208
11209 * isearch.el (isearch-search-fun-function): Clarify the doc string
11210 (bug#8101).
11211
11212 2011-07-03 Richard Kim <emacs18@gmail.com> (tiny change)
11213
11214 * textmodes/texnfo-upd.el (texinfo-insert-menu): Don't insert
11215 unnecessary spaces (bug#8987).
11216
11217 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11218
11219 * net/network-stream.el (open-network-stream): Use the
11220 :end-of-capability command thoughout.
11221
11222 2011-07-03 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
11223
11224 * net/network-stream.el (open-network-stream): Add the
11225 :end-of-capability command parameter, used by pop3.el.
11226
11227 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11228
11229 * dired.el (dired-map-over-marks): Refill the doc string (bug#6814).
11230
11231 * fringe.el (fringe-query-style): Remove redundant text " (type ?
11232 for list)" (bug#6475).
11233
11234 * files.el (file-expand-wildcards): Ignore non-readable
11235 sub-directories while trying to find matches instead of signaling
11236 an error (bug#6297).
11237
11238 * man.el (Man-reference-regexp): Allow matching possible
11239 word-wrapped references (bug#6289).
11240
11241 * vc/vc.el (vc-modify-change-comment): Change *VC-log* to *vc-log*
11242 for consistency with the other vc buffers (bug#6197).
11243 (vc-checkin): Ditto.
11244
11245 * vc/vc-arch.el: Fix comments to match the *VC-log* name change.
11246
11247 * longlines.el (longlines-mode): Document what ARG does (bug#6150).
11248
11249 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11250
11251 * custom.el (defcustom): Clarify that :set is only used in the
11252 Customize user interface (bug#6089).
11253
11254 * progmodes/flymake.el (flymake-mode): If the buffer isn't
11255 associated with a file, refuse to run instead of erroring out
11256 (bug#6084).
11257
11258 * textmodes/fill.el (fill-region): Remove the "Ordinarily" from
11259 the doc string, since it appears that using `fill-column' always
11260 controls the width (bug#7845).
11261
11262 * simple.el (shell-command-on-region): Say where the error output
11263 went if `shell-command-default-error-buffer' is set (bug#6857).
11264
11265 2011-07-02 Ken Manheimer <ken.manheimer@gmail.com>
11266
11267 * allout.el (allout-yank-processing): Adjust cursor position for
11268 backwards-deleted space.
11269
11270 (allout-rebullet-heading): Register changes with
11271 allout-exposure-changed-hook, so the modified topic is properly
11272 decorated.
11273
11274 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11275
11276 * minibuffer.el (completion-in-region): Document PREDICATE
11277 (bug#7136).
11278
11279 * info-look.el (info-lookup-add-help): Clarify that ARGS is a list
11280 of keyword/argument pairs (bug#6904).
11281
11282 * replace.el (multi-occur):
11283 Mention `multi-occur-in-matching-buffers' in the doc string (bug#7566).
11284
11285 2011-07-02 Drew Adams <drew.adams@oracle.com>
11286
11287 * dired.el (dired-mark-if): Make the message about whether it's
11288 marking or unmarking clearer (bug#8523).
11289
11290 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11291
11292 * disp-table.el (display-table-print-array): New function.
11293 (describe-display-table): Use it to print the vectors more pretty
11294 (Bug#8859).
11295
11296 2011-07-02 Martin Rudalics <rudalics@gmx.at>
11297
11298 * window.el (window-state-get-1): Don't assign clone numbers.
11299 Add clone-of item to list of window parameters.
11300 (window-state-put-2): Don't process clone numbers.
11301 (display-buffer-alist): Fix doc-string.
11302
11303 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11304
11305 * subr.el (remq): Don't allocate if it's not needed.
11306 (keymap--menu-item-binding, keymap--menu-item-with-binding)
11307 (keymap--merge-bindings): New functions.
11308 (keymap-canonicalize): Use them to refine the canonicalization.
11309 * minibuffer.el (minibuffer-local-completion-map)
11310 (minibuffer-local-must-match-map): Move initialization from C.
11311 (minibuffer-local-filename-completion-map): Move initialization from C;
11312 don't inherit from anything here.
11313 (minibuffer-local-filename-must-match-map): Make obsolete.
11314 (completing-read-default): Use make-composed-keymap to combine
11315 minibuffer-local-filename-completion-map with either
11316 minibuffer-local-must-match-map or
11317 minibuffer-local-filename-completion-map.
11318
11319 2011-07-01 Glenn Morris <rgm@gnu.org>
11320
11321 * type-break.el (type-break-time-sum): Use dolist.
11322
11323 * textmodes/flyspell.el (flyspell-word-search-backward):
11324 Replace CL function.
11325
11326 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11327
11328 * mouse.el (mouse--strip-first-event): New function.
11329 (function-key-map): Use it to map fringe clicks to normal clicks
11330 by default.
11331
11332 * vc/vc-bzr.el (vc-bzr-revision-keywords): Update.
11333 (vc-bzr-revision-completion-table): Add support for annotate and date.
11334
11335 * emacs-lisp/derived.el (define-derived-mode): Make abbrev-table
11336 inherit from parent.
11337
11338 2011-07-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
11339
11340 * dired-aux.el (dired-diff): Doc fixup (bug#8816).
11341 (dired-show-file-type): Doc fixup (bug#8818).
11342
11343 * dired.el (dired-mode): Fix up the doc string as suggested by
11344 Drew Adams (bug#8817).
11345
11346 * progmodes/flymake.el (flymake-find-file-hook): Add an `autoload'
11347 cookie, since the manual says that it should be possible to add
11348 this function to `find-file-hook' (bug#8709).
11349
11350 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11351
11352 * progmodes/cfengine.el: Moved all cfengine3.el functionality
11353 here. Noted Ted Zlatanov as the maintainer.
11354 (cfengine-common-settings, cfengine-common-syntax): New functions
11355 to set up common things between `cfengine-mode' and
11356 `cfengine3-mode'.
11357 (cfengine3-mode): New mode.
11358 (cfengine3-defuns cfengine3-defuns-regex
11359 (cfengine3-class-selector-regex cfengine3-category-regex)
11360 (cfengine3-vartypes cfengine3-font-lock-keywords)
11361 (cfengine3-beginning-of-defun, cfengine3-end-of-defun)
11362 (cfengine3-indent-line): Add from cfengine3.el.
11363
11364 2011-07-01 Michael Albinus <michael.albinus@gmx.de>
11365
11366 * net/tramp.el (tramp-encoding-command-interactive): New defcustom.
11367
11368 * net/tramp-sh.el (tramp-maybe-open-connection): Use it.
11369
11370 2011-07-01 Martin Rudalics <rudalics@gmx.at>
11371
11372 * window.el (same-window-buffer-names, same-window-regexps)
11373 (same-window-p, special-display-frame-alist)
11374 (special-display-popup-frame, special-display-function)
11375 (special-display-buffer-names, special-display-regexps)
11376 (special-display-p, pop-up-frame-alist, pop-up-frame-function)
11377 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
11378 (split-window-preferred-function, split-height-threshold)
11379 (split-width-threshold, even-window-heights)
11380 (display-buffer-mark-dedicated, window-splittable-p)
11381 (split-window-sensibly, window-safely-shrinkable-p):
11382 Un-obsolete.
11383 (display-buffer): Don't spread args with function specifier
11384 because special-display-popup-frame won't like it.
11385
11386 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11387
11388 Time-stamp simplifications and fixes.
11389 These improve accuracy slightly, and future-proof the code
11390 against some potential changes to current-time format.
11391
11392 * woman.el (woman-decode-buffer, WoMan-log-end): Log fractional secs
11393 by using time-since and float-time.
11394
11395 * vc/ediff-util.el (ediff-calc-command-time): Use time-since
11396 and float-time. Say "NNN.NNN seconds" rather than "NNN seconds
11397 + NNN microseconds".
11398
11399 * type-break.el (type-break-time-sum): Rewrite using time-add.
11400
11401 * play/hanoi.el (hanoi-current-time-float): Remove.
11402 All uses replaced by float-time.
11403
11404 * nxml/rng-maint.el (rng-time-function): Rewrite using time-subtract.
11405 This yields a more-accurate answer.
11406 (rng-time-to-float): Remove; no longer needed.
11407
11408 * emacs-lisp/timer.el (timer-relative-time): Use time-add.
11409
11410 * calendar/timeclock.el (timeclock-seconds-to-time):
11411 Defalias to seconds-to-time, since they're the same thing.
11412
11413 * emacs-lisp/elp.el (elp-elapsed-time):
11414 * emacs-lisp/benchmark.el (benchmark-elapse):
11415 * allout-widgets.el (allout-elapsed-time-seconds): Use float-time.
11416
11417 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11418
11419 * window.el (bury-buffer): Don't iconify the only frame.
11420 (switch-to-buffer): Revert to Emacs<23 behavior, i.e. do not fallback
11421 to pop-to-buffer. Use pop-to-buffer-same-frame if you don't like that.
11422
11423 2011-07-01 Chong Yidong <cyd@stupidchicken.com>
11424
11425 * eshell/em-smart.el (eshell-smart-display-navigate-list):
11426 Add mouse-yank-primary.
11427
11428 2011-07-01 Teodor Zlatanov <tzz@lifelogs.com>
11429
11430 * progmodes/cfengine3.el: New file to support CFEngine 3.x.
11431
11432 2011-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11433
11434 * emacs-lisp/find-func.el (find-library--load-name): New fun.
11435 (find-library-name): Use it to find relative load names when provided
11436 absolute file name (bug#8803).
11437
11438 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11439
11440 * textmodes/flyspell.el (flyspell-word): Consider words that
11441 differ only in case as potential doublons (bug#5687).
11442
11443 * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
11444 Remove two rather uninteresting debugging-like messages to make
11445 debbugs.el more silent.
11446
11447 * comint.el (comint-password-prompt-regexp): Accept "Response" as
11448 a password-like phrase.
11449
11450 2011-06-30 Masatake YAMATO <yamato@redhat.com>
11451
11452 * progmodes/cc-guess.el: New file.
11453
11454 * progmodes/cc-langs.el (c-mode-menu): Add "Style..." submenu.
11455
11456 * progmodes/cc-styles.el (cc-choose-style-for-mode): New function
11457 derived from `c-basic-common-init'.
11458
11459 * progmodes/cc-mode.el (top-level): Require cc-guess.
11460 (c-basic-common-init): Use `cc-choose-style-for-mode'.
11461
11462 2011-06-30 Lawrence Mitchell <wence@gmx.li>
11463
11464 * progmodes/js.el (js-mode): Don't stomp on global settings (bug#8933).
11465
11466 2011-06-30 Alan Mackenzie <acm@muc.de>
11467
11468 * progmodes/cc-engine.el (c-guess-continued-construct):
11469 Correct the handling of template-args-cont, particularly for when font
11470 lock is disabled. Name this case as "CASE G".
11471
11472 2011-06-30 Ken Manheimer <ken.manheimer@gmail.com>
11473
11474 * allout.el (allout-yank-processing): Fix injection of extra space
11475 between bullet and non-whitespace character in first topic when
11476 pasting, ensuring that the actual spacing in the pasted topic
11477 following the bullet char is preserved. This extra space was
11478 causing pasted encrypted topics to get a decrypted status even
11479 when the content was actually still encrypted. Now the decryption
11480 status from before the paste is preserved.
11481
11482 (allout-flag-region): Set all allout overlays so they evaporate
11483 when reduced to zero length (evanescent), to prevent overlay
11484 leakage.
11485
11486 2011-06-30 Glenn Morris <rgm@gnu.org>
11487
11488 * w32-fns.el (w32-charset-info-alist): Declare.
11489
11490 * find-dired.el (find-grep-options): Simplify.
11491
11492 * term/ns-win.el (ns-set-resource): Declare.
11493
11494 * ses.el (row, col): Declare dynamic variables honestly.
11495
11496 * textmodes/reftex-parse.el (index-tags): Declare.
11497
11498 2011-06-30 Chong Yidong <cyd@stupidchicken.com>
11499
11500 * cus-edit.el (customize-push-and-save): New function.
11501
11502 * files.el (hack-local-variables-confirm): Use it.
11503
11504 * custom.el (load-theme): New arg NO-CONFIRM.
11505 Use customize-push-and-save (Bug#8720).
11506 (custom-enabled-themes): Doc fix.
11507
11508 * cus-theme.el (customize-create-theme)
11509 (custom-theme-merge-theme): Callers to load-theme changed.
11510
11511 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
11512
11513 * thingatpt.el (thing-at-point-short-url-regexp): Require that
11514 short URLs have at least one dot in them (bug #7614).
11515
11516 * progmodes/grep.el (rgrep): Bind `process-connection-type' to
11517 nil, because using a pty is apparently too slow (bug #895).
11518
11519 2011-06-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
11520
11521 * mail/sendmail.el (sendmail-query-once): New function.
11522 (sendmail-query-once-function): New variable.
11523
11524 2011-06-29 Glenn Morris <rgm@gnu.org>
11525
11526 * files.el (auto-mode-alist): Add .f03, .f08 for f90-mode.
11527
11528 * ses.el (top-level): Require cl when compiling.
11529 (ses-set-localvars): Fix error statement.
11530 Call it at compile time to silence a storm of warnings.
11531
11532 2011-06-29 Martin Rudalics <rudalics@gmx.at>
11533
11534 * window.el (normalize-live-buffer): Rename to
11535 window-normalize-buffer.
11536 (normalize-live-frame): Rename to window-normalize-frame.
11537 (normalize-any-window): Rename to window-normalize-any-window.
11538 (normalize-live-window): Rename to window-normalize-live-window.
11539 (make-window-atom): Rename to window-make-atom.
11540 (window-resize-reset): Rename to window--resize-reset.
11541 (window-resize-reset-1): Rename to window--resize-reset-1.
11542 (resize-mini-window): Rename to window--resize-mini-window.
11543 (resize-subwindows-skip-p): Rename to
11544 window--resize-subwindows-skip-p.
11545 (resize-subwindows-normal): Rename to
11546 window--resize-subwindows-normal.
11547 (resize-subwindows): Rename to window--resize-subwindows.
11548 (resize-other-windows): Rename to window--resize-siblings.
11549 (resize-this-window): Rename to window--resize-this-window.
11550 (resize-root-window): Rename to window--resize-root-window.
11551 (resize-root-window-vertically): Rename to
11552 window--resize-root-window-vertically.
11553 (normalize-buffer-to-display): Rename to
11554 window-normalize-buffer-to-display.
11555 (normalize-buffer-to-switch-to): Rename to
11556 window-normalize-buffer-to-switch-to.
11557 Correspondingly update all callers of the functions listed
11558 above.
11559 (display-buffer-alist, display-buffer-normalize-arguments)
11560 (display-buffer-normalize-options, display-buffer)
11561 (display-buffer-alist-set): Use "function" instead of
11562 "fun-with-args".
11563
11564 2011-06-28 Chong Yidong <cyd@stupidchicken.com>
11565
11566 * mail/emacsbug.el (report-emacs-bug): Handle non-gnu bug
11567 addresses more clearly. Add hyperlinks for bug-gnu-emacs and
11568 debbugs.gnu.org. Mention acknowledgment email.
11569
11570 2011-06-28 Lars Magne Ingebrigtsen <larsi@gnus.org>
11571
11572 * mail/smtpmail.el (smtpmail-send-it): Leave off changing the
11573 buffer multibyteness, since it shouldn't matter.
11574
11575 2011-06-28 Martin Rudalics <rudalics@gmx.at>
11576
11577 * window.el (display-buffer-in-side-window): Handle dedicated
11578 windows as in display-buffer-reuse-window.
11579 (display-buffer-normalize-alist): Use value of override
11580 specifier.
11581 (display-buffer-normalize-specifiers): Use value of
11582 other-window-means-other-frame specifier.
11583 (display-buffer-alist): Rewrite some texts in widgets.
11584 (display-buffer): Spread arguments when calling function
11585 specified by fun-with-args.
11586
11587 2011-06-28 Deniz Dogan <deniz@dogan.se>
11588
11589 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
11590 Unnest `let'.
11591
11592 * textmodes/css-mode.el (css-font-lock-keywords): Fix grouped
11593 selectors (Bug#5732).
11594 (css-proprietary-nmstart-re): Use `regexp-opt'.
11595
11596 2011-06-27 Jari Aalto <jari.aalto@cante.net>
11597
11598 * eshell/em-ls.el: Display `ls -l' dates in ISO format (Bug#8440).
11599 (eshell-ls-date-format): New defcustom.
11600 (eshell-ls-file): Use it.
11601
11602 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11603
11604 * help-fns.el (describe-variable): Fix message for terminal-local vars.
11605
11606 2011-06-27 Katsumi Yamaoka <yamaoka@jpl.org>
11607
11608 * net/ange-ftp.el: Allow loading .gz files (Bug#6923).
11609 (ange-ftp-make-tmp-name): New arg.
11610 (ange-ftp-file-local-copy): Use it.
11611
11612 2011-06-27 Jambunathan K <kjambunathan@gmail.com>
11613
11614 * tar-mode.el (tar-untar-buffer): Set coding-system-for-write to
11615 no-conversion (Bug#8870).
11616
11617 2011-06-27 Martin Rudalics <rudalics@gmx.at>
11618
11619 * window.el (window-right, window-left, window-child)
11620 (window-child-count, window-last-child)
11621 (window-iso-combination-p, walk-window-tree-1)
11622 (window-atom-check-1, window-tree-1, delete-window)
11623 (window-state-get-1, display-buffer-even-window-sizes): Adapt to
11624 new naming conventions - window-vchild, window-hchild,
11625 window-next and window-prev are now called window-top-child,
11626 window-left-child, window-next-sibling and window-prev-sibling
11627 respectively.
11628 (resize-window-reset): Rename to window-resize-reset.
11629 (resize-window-reset-1): Rename to window-resize-reset-1.
11630 (resize-window): Rename to window-resize.
11631 (window-min-height, window-min-width)
11632 (resize-mini-window, resize-this-window, resize-root-window)
11633 (resize-root-window-vertically, adjust-window-trailing-edge)
11634 (enlarge-window, shrink-window, maximize-window)
11635 (minimize-window, delete-window, quit-restore-window)
11636 (split-window, balance-windows, balance-windows-area-adjust)
11637 (balance-windows-area, window-state-put-2)
11638 (display-buffer-even-window-sizes, display-buffer-set-height)
11639 (display-buffer-set-width, set-window-text-height)
11640 (fit-window-to-buffer): Rename all "resize-window" prefixed
11641 calls to use the "window-resize" prefix convention.
11642 (display-buffer-alist): Fix symbol for label specifier.
11643 (display-buffer-reuse-window): Set reuse-dedicated to cdr of
11644 corresponding specifier.
11645 Reported by Juanma Barranquero <lekktu@gmail.com>.
11646
11647 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11648
11649 * ses.el (ses-destroy-cell-variable-range): Fix heading comment
11650 convention.
11651 (ses-call-printer): Does not pass an empty string to formatter when the
11652 cell is empty to keep from barking printer Calc math-format-value.
11653
11654 2011-06-27 Richard Stallman <rms@gnu.org>
11655
11656 * battery.el (battery-mode-line-limit): New variable.
11657 (battery-update): Handle it.
11658
11659 * mail/rmailmm.el (rmail-mime-process-multipart):
11660 Handle truncated messages.
11661
11662 2011-06-27 Glenn Morris <rgm@gnu.org>
11663
11664 * progmodes/flymake.el (flymake-err-line-patterns):
11665 Allow for column numbers in the ant/javac pattern. (Bug#8866)
11666
11667 2011-06-27 Vincent Belaïche <vincentb1@users.sourceforge.net>
11668
11669 * ses.el (ses-relocate-range): Keep rest of arguments for ses-range.
11670 (ses--clean-!, ses--clean-_): New functions.
11671 (ses-range): Add configurability of readout order, and conversion
11672 to Calc vector.
11673
11674 * ses.el (ses-repair-cell-reference-all): New function.
11675 (ses-cell-symbol): Set macro as safe, so that it can be used in
11676 formulas.
11677
11678 * ses.el: Update cycle detection algorithm.
11679 (ses-localvars): Add ses--Dijkstra-attempt-nb and
11680 ses--Dijkstra-weight-bound, and initial values thereof when applicable.
11681 (ses-set-localvars): New function.
11682 (ses-make-cell): Add property-list as a cell element.
11683 (ses-cell-property-get-fun, ses-cell-property-get)
11684 (ses-cell-property-delq-fun, ses-cell-property-set-fun)
11685 (ses-cell-property-pop-fun, ses-cell-property-get-handle-fun):
11686 New functions.
11687 (ses-cell-property-set, ses-cell-property-pop)
11688 (ses-cell-property-get-handle): New macro.
11689 (ses-cell-property-handle-car, ses-cell-property-handle-setcar):
11690 New aliases, used for code readability.
11691 (ses-calculate-cell, ses-update-cells): Use Dijkstra algorithm for
11692 cycle detection.
11693 (ses-self-reference-early-detection): New defcustom.
11694 (ses-formula-references): Robustify against self-referring cells.
11695 (ses-mode): Use ses-set-localvars.
11696 (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
11697 before lauching the update processing.
11698 (ses-initialize-Dijkstra-attempt): New function.
11699 (ses-recalculate-cell): Update for cycle detection based on
11700 Dijkstra algorithm.
11701
11702 * ses.el: Fix commenting and indenting convention.
11703
11704 2011-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11705
11706 * bs.el (bs-cycle-next): Complete last change.
11707
11708 2011-06-27 Drew Adams <drew.adams@oracle.com>
11709
11710 * faces.el (list-faces-display): Add help-mode-map to output (bug#8939).
11711
11712 2011-06-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11713
11714 * net/network-stream.el (network-stream-open-starttls):
11715 Don't re-get capabilities unless we've reestablished connection.
11716 (network-stream-open-starttls): Fix stupid typo with gnutls-clii.
11717
11718 * mail/smtpmail.el (smtpmail-via-smtp): Bind coding-system-for-*
11719 to binary to possibly avoid line encoding issues on Windows (among
11720 other things).
11721
11722 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11723
11724 * net/network-stream.el (open-network-stream): Return an :error
11725 saying what the problem was, if possible.
11726
11727 * mail/smtpmail.el (smtpmail-via-smtp): Report the error from the
11728 server.
11729
11730 * net/network-stream.el (network-stream-open-starttls): If we
11731 wanted to use STARTTLS, and the server offered it, but we weren't
11732 able to because we had no STARTTLS support, then close the connection.
11733 (open-network-stream): Return an :error element, if present.
11734
11735 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
11736
11737 * hl-line.el (hl-line-sticky-flag): Doc fix.
11738 (global-hl-line-sticky-flag): New option (Bug#8323).
11739 (global-hl-line-highlight): Obey it.
11740
11741 * vc/vc.el (vc-revert-show-diff): Default to t.
11742
11743 2011-06-26 Ken Manheimer <ken.manheimer@gmail.com>
11744
11745 * allout-widgets.el (allout-widgets-post-command-business):
11746 Stop decorating intermediate isearch matches. They're not being
11747 undecorated when an isearch is continued past, and isearch
11748 automatically collapses them. This leads to "widget leaks", where
11749 decorated items accumulate in collapsed areas. Lines with lots of
11750 hidden widgets can slow down cursor travel, substantially.
11751 Too much complicated machinery would be needed to ensure undecoration,
11752 so we're doing without this nicety.
11753
11754 (allout-widgets-tally-string): Don't try to do a hash-table-count
11755 of allout-widgets-tally when it's nil. This eliminates spurious "Error
11756 during redisplay: (wrong-type-argument hash-table-p nil)" warnings in
11757 *Messages* when allout-widgets-maintain-tally is t.
11758
11759 2011-06-26 Martin Rudalics <rudalics@gmx.at>
11760
11761 * window.el (display-buffer-normalize-argument): Rename to
11762 display-buffer-normalize-arguments. Handle special meaning of
11763 LABEL argument. Respect special-display-function when popping up
11764 a new frame. Fix code searching for a window showing the buffer
11765 on another frame.
11766 (display-buffer-normalize-specifiers):
11767 Call display-buffer-normalize-arguments.
11768 (display-buffer-in-window): Don't undedicate the window if its
11769 buffer remains the same.
11770 Reported by Drew Adams <drew.adams@oracle.com>.
11771 (display-buffer-alist): Add choice for same-window macro
11772 specfier.
11773 (display-buffer): Mention special meaning of LABEL argument in
11774 doc-string. Fix quoting. Don't pop up a new frame even as
11775 fallback.
11776
11777 2011-06-26 Juanma Barranquero <lekktu@gmail.com>
11778
11779 * bs.el (bs-cycle-next): Pass current buffer to `bury-buffer' to
11780 avoid deleting the current window in some cases (bug#8911).
11781
11782 2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
11783
11784 * emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
11785 (Bug#8934)
11786
11787 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
11788
11789 * net/network-stream.el (network-stream-open-starttls):
11790 Use built-in TLS support if `gnutls-available-p' is true.
11791 (network-stream-open-tls): Ditto.
11792
11793 2011-06-26 Leo Liu <sdl.web@gmail.com>
11794
11795 * register.el (registerv): New struct.
11796 (registerv-make): New function.
11797 (jump-to-register, describe-register-1, insert-register):
11798 Support the jump-func, print-func and insert-func slot of a registerv
11799 struct. (Bug#8415)
11800
11801 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
11802
11803 * vc/vc.el (vc-revert-show-diff): New defcustom.
11804 (vc-diff-internal): New arg specifying diff buffer.
11805 (vc-revert): Obey vc-revert-show-diff. If we show a diff, don't
11806 reuse an existing *vc-diff* buffer (Bug#8927).
11807
11808 * progmodes/cperl-mode.el (cperl-mode): Derive from prog-mode.
11809
11810 2011-06-26 Glenn Morris <rgm@gnu.org>
11811
11812 * progmodes/f90.el (f90-critical-indent): New option.
11813 (f90-font-lock-keywords-2, f90-blocks-re, f90-end-block-re)
11814 (f90-start-block-re, f90-mode-abbrev-table): Add block, critical.
11815 (f90-mode): Doc fix.
11816 (f90-looking-at-critical, f90-looking-at-end-critical): New funcs.
11817 (f90-no-block-limit, f90-calculate-indent, f90-end-of-block)
11818 (f90-beginning-of-block, f90-next-block, f90-indent-region)
11819 (f90-match-end): Handle block, critical.
11820
11821 2011-06-25 Glenn Morris <rgm@gnu.org>
11822
11823 * calendar/diary-lib.el (diary-included-files): Doc fix.
11824 (diary-include-files): New function, extracted from
11825 diary-include-other-diary-files and diary-mark-included-diary-files.
11826 (diary-include-other-diary-files, diary-mark-included-diary-files):
11827 Just call diary-include-files.
11828 (diary-mark-entries): Reset diary-included-files on first call.
11829
11830 * calendar/diary-lib.el (diary-mark-entries)
11831 (diary-mark-included-diary-files):
11832 Visit included diary-files in temp buffers.
11833
11834 * progmodes/f90.el (f90-keywords-re, f90-font-lock-keywords-1)
11835 (f90-blocks-re, f90-program-block-re, f90-end-block-re)
11836 (f90-start-block-re, f90-imenu-generic-expression)
11837 (f90-looking-at-program-block-start, f90-no-block-limit):
11838 Add support for submodules.
11839
11840 * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
11841 (f90-procedures-re, f90-constants-re): Add some F2008 stuff.
11842
11843 2011-06-25 Eli Zaretskii <eliz@gnu.org>
11844
11845 * net/ange-ftp.el (ange-ftp-insert-file-contents): Let-bind
11846 buffer-file-type before setting its value, to avoid disastrous
11847 global effects on decoding files for DOS/Windows systems. (Bug#8780)
11848
11849 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
11850
11851 * allout.el (allout-unload-function): Pass -1 to `allout-mode'.
11852
11853 * ses.el (ses-unload-function):
11854 * emacs-lisp/re-builder.el (re-builder-unload-function): Simplify.
11855
11856 * proced.el (proced-unload-function):
11857 * progmodes/cperl-mode.el (cperl-mode-unload-function): Remove.
11858
11859 2011-06-25 Andreas Rottmann <a.rottmann@gmx.at>
11860
11861 * server.el (server-create-window-system-frame): Add parameters arg.
11862 (server-process-filter): Doc fix. Handle frame-parameters.
11863
11864 2011-06-25 Juanma Barranquero <lekktu@gmail.com>
11865
11866 Fix bug#8730, bug#8781.
11867
11868 * loadhist.el (unload--set-major-mode): New function.
11869 (unload-feature): Use it.
11870
11871 * progmodes/python.el (python-after-info-look): Add autoload cookie.
11872 (python-unload-function): New function.
11873
11874 2011-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
11875
11876 * mail/rmail.el (rmail-show-message-1): Use restore-buffer-modified-p.
11877
11878 2011-06-25 Giuseppe Scrivano <gscrivano@gnu.org>
11879
11880 * net/browse-url.el (browse-url-firefox-program): Add icecat to
11881 the candidates list.
11882
11883 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
11884
11885 * progmodes/verilog-mode.el (verilog-mode): Fix test for bound variable.
11886
11887 2011-06-23 Richard Stallman <rms@gnu.org>
11888
11889 * mail/rmail.el: Going to grep hit in Rmail buffer finds the message.
11890 (rmail-variables): Set next-error-move-function.
11891 (rmail-what-message): Take argument POS.
11892 (rmail-next-error-move): New function.
11893
11894 2011-06-23 Stefan Monnier <monnier@iro.umontreal.ca>
11895
11896 * emacs-lisp/smie.el (smie-bnf->prec2): Give more understandable error
11897 messages for adjacent non-terminals.
11898
11899 2011-06-23 Richard Stallman <rms@gnu.org>
11900
11901 * mail/rmail.el (rmail-retry-ignored-headers): Add message-id.
11902 (rmail-show-message-1): Preserve buffer modified flag.
11903 (rmail-start-mail): Don't specify use of rmail-mail-return;
11904 that's done by mail-bury now.
11905 (rmail-mail-return): Handle arg NEWBUF.
11906
11907 2011-06-23 Michael Albinus <michael.albinus@gmx.de>
11908
11909 * net/tramp-sh.el (tramp-method-out-of-band-p): Check, whether
11910 SIZE is a number.
11911
11912 2011-06-23 Martin Rudalics <rudalics@gmx.at>
11913
11914 * window.el (get-lru-window, get-mru-window)
11915 (get-largest-window): Never return a minibuffer window.
11916 (display-buffer-pop-up-window): Fix a bug that could lead to
11917 reusing the minibuffer window.
11918 (display-buffer): Pass original specifier argument to
11919 display-buffer-function instead of the normalized one.
11920 Reported by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11921
11922 2011-06-22 Leo Liu <sdl.web@gmail.com>
11923
11924 * minibuffer.el (completing-read-function)
11925 (completing-read-default): Move from minibuf.c
11926
11927 2011-06-22 Richard Stallman <rms@gnu.org>
11928
11929 * mail/sendmail.el (mail-bury): If Rmail is in use, return nicely
11930 to Rmail even if not started by a special Rmail command.
11931
11932 * mail/rmailmm.el (rmail-insert-mime-forwarded-message):
11933 Copy the buffer currently showing just one message.
11934
11935 2011-06-22 Roland Winkler <winkler@gnu.org>
11936
11937 * textmodes/bibtex.el (bibtex-entry-update): Use mapc.
11938 (bibtex-clean-entry): First delete the old key so that a
11939 customized algorithm for generating the new key does not get
11940 confused by the old key.
11941 (bibtex-url): Obey regexp of first step.
11942 (bibtex-search-entries): Do not use add-to-list with local
11943 list-var.
11944
11945 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11946
11947 * mail/smtpmail.el (smtpmail-try-auth-methods): If the user has
11948 stored a user name, then query for the password first, instead of
11949 waiting for SMTP to give an error message and the trying again.
11950
11951 2011-06-22 Lawrence Mitchell <wence@gmx.li>
11952
11953 * net/browse-url.el (browse-url-xdg-open): Use 0, rather than nil
11954 BUFFER in call-process.
11955
11956 2011-06-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
11957
11958 * mail/smtpmail.el (smtpmail-via-smtp): Make sure we don't send
11959 QUIT twice.
11960 (smtpmail-try-auth-methods): Require user name and password from
11961 auth-source.
11962
11963 2011-06-22 Martin Rudalics <rudalics@gmx.at>
11964
11965 * window.el (display-buffer-default-specifiers)
11966 (display-buffer-alist): Remove entries for pop-up-frame-alist.
11967 Suggested by Katsumi Yamaoka <yamaoka@jpl.org>.
11968 (split-window): Normalize SIDE argument (Bug#8916).
11969
11970 * frame.el (pop-up-frame-alist, pop-up-frame-function)
11971 (special-display-frame-alist, special-display-popup-frame):
11972 Remove duplicate declarations. These are now in window.el.
11973
11974 2011-06-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
11975
11976 * mail/smtpmail.el (smtpmail-via-smtp):
11977 Set :use-starttls-if-possible so that we always use STARTTLS if the
11978 server supports it. SMTP servers that support STARTTLS commonly
11979 require it.
11980
11981 * net/network-stream.el (network-stream-open-starttls): Support
11982 upgrading to STARTTLS always, even if we don't have built-in support.
11983 (open-network-stream): Add the :always-query-capabilities keyword.
11984
11985 * mail/smtpmail.el: Rewritten to do opportunistic STARTTLS
11986 upgrades with `open-network-stream', and rely solely on
11987 auth-source for all credentials. Big changes throughout the file,
11988 but in particular:
11989 (smtpmail-auth-credentials): Remove.
11990 (smtpmail-starttls-credentials): Remove.
11991 (smtpmail-via-smtp): Check for servers saying they want AUTH after
11992 MAIL FROM, too.
11993
11994 * net/network-stream.el (network-stream-open-starttls):
11995 Provide support for client certificates both for external and built-in
11996 STARTTLS.
11997 (auth-source): Require.
11998 (open-network-stream): Document the :client-certificate keyword.
11999 (network-stream-certificate): Change cert-cert to cert and
12000 cert-key to key.
12001
12002 2011-06-21 Michael Albinus <michael.albinus@gmx.de>
12003
12004 * net/tramp-cache.el (top): Don't load the persistency file when
12005 "emacs -Q" has been called.
12006
12007 2011-06-21 Tim Harper <timcharper@gmail.com>
12008
12009 * term/ns-win.el (ns-initialize-window-system):
12010 Set application-specific `ApplePressAndHoldEnabled' system
12011 resource to NO as it is not yet supported by the NS port.
12012
12013 2011-06-21 Juanma Barranquero <lekktu@gmail.com>
12014
12015 * misc.el (list-dynamic-libraries--refresh): Compute header here...
12016 (list-dynamic-libraries): ...not here.
12017
12018 2011-06-21 Leo Liu <sdl.web@gmail.com>
12019
12020 * subr.el (sha1): Implement sha1 using secure-hash.
12021
12022 2011-06-21 Martin Rudalics <rudalics@gmx.at>
12023
12024 * window.el (display-buffer-alist): In default value do not
12025 enforce searching a window on any but the selected frame.
12026 Reported by Katsumi Yamaoka <yamaoka@jpl.org>.
12027 (display-buffer-select-window): Remove function.
12028 (display-buffer-in-window): When a window on another frame gets
12029 reused, do not select it any more but just raise its frame if
12030 necessary (Bug#8851) and (Bug#8856).
12031 (display-buffer-normalize-options): Handle pop-up-frames related
12032 options more faithfully.
12033 (pop-to-buffer): Don't rely on `display-buffer' selecting the
12034 window if it is on another frame.
12035 (display-buffer-alist, display-buffer-default-specifiers):
12036 Don't make new frame unsplittable by default.
12037 (display-buffer-normalize-argument): Fix doc-string typo and use
12038 'same-frame-other-window instead of 'other-window when associating
12039 with display-buffer-macro-specifiers.
12040
12041 2011-06-21 Vincent Belaïche <vincent.b.1@hotmail.fr>
12042
12043 * play/5x5.el (5x5-solve-rotate-left, 5x5-solve-rotate-right):
12044 New functions.
12045 (5x5-mode-map, 5x5-mode-menu): Bind them.
12046 (5x5-draw-grid): Tweak the solver's rendering.
12047
12048 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12049
12050 * progmodes/compile.el (compilation-error-regexp-alist-alist): Rename
12051 `caml' to `python-tracebacks-and-caml'; allow leading tabs (bug#8585).
12052
12053 2011-06-21 Drew Adams <drew.adams@oracle.com>
12054
12055 * menu-bar.el: Use function variable instead of switch-to-buffer.
12056 (menu-bar-select-buffer-function): New variable.
12057 (menu-bar-update-buffers): Use it (bug#8876).
12058
12059 2011-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
12060
12061 * emacs-lisp/bytecomp.el (add-to-list): Add handler to check the
12062 variable's status.
12063
12064 2011-06-20 Jan Djärv <jan.h.d@swipnet.se>
12065
12066 * x-dnd.el (x-dnd-version-from-flags)
12067 (x-dnd-more-than-3-from-flags): New functions that handle long-as-cons
12068 and long as number (Bug#8899).
12069 (x-dnd-handle-xdnd): Call functions above (Bug#8899).
12070
12071 2011-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
12072
12073 * minibuffer.el (completion-metadata): Add `metadata' to the alist.
12074 (completion-try-completion, completion-all-completions): Compute the
12075 metadata argument if it's missing; make it optional (bug#8795).
12076
12077 * wid-edit.el: Use lex-bind and move towards completion-at-point.
12078 (widget-complete): Use new :completion-function property.
12079 (widget-completions-at-point): New function.
12080 (default): Use :completion-function instead of :complete.
12081 (widget-default-completions): Rename from widget-default-complete;
12082 Rewrite.
12083 (widget-string-complete, widget-file-complete, widget-color-complete):
12084 Remove functions.
12085 (file, symbol, function, variable, coding-system, color):
12086 * international/mule-cmds.el (default-input-method, charset)
12087 (language-info-custom-alist):
12088 * cus-edit.el (face): Use new property :completions.
12089
12090 * progmodes/pascal.el (pascal-completions-at-point): New function.
12091 (pascal-mode): Use it.
12092 (pascal-mode-map): Use completion-at-point.
12093 (pascal-toggle-completions): Make obsolete.
12094 (pascal-complete-word, pascal-show-completions):
12095 * progmodes/octave-mod.el (octave-complete-symbol):
12096 Redefine as obsolete alias.
12097 * progmodes/octave-inf.el (inferior-octave-completion-at-point):
12098 Signal absence of completion info for old Octave,
12099 (inferior-octave-complete): Redefine as obsolete alias.
12100 * progmodes/meta-mode.el: Use lexical-binding and completion-at-point.
12101 (meta-completions-at-point): Rename from meta-complete-symbol and
12102 adapt it for use on completion-at-point-functions.
12103 (meta-common-mode): Use it.
12104 (meta-looking-at-backward, meta-match-buffer): Remove.
12105 (meta-complete-symbol): Redefine as obsolete alias.
12106 (meta-common-mode-map): Use completion-at-point.
12107 * progmodes/make-mode.el: Use lexical-binding and completion-at-point.
12108 (makefile-mode-map): Use completion-at-point.
12109 (makefile-completions-at-point): Rename from makefile-complete and
12110 adapt it for use on completion-at-point-functions.
12111 (makefile-mode): Use it.
12112 (makefile-complete): Redefine as obsolete alias.
12113
12114 2011-06-20 Deniz Dogan <deniz@dogan.se>
12115
12116 * net/rcirc.el: Delete trailing whitespaces once and for all.
12117
12118 2011-06-20 Daniel Colascione <dan.colascione@gmail.com>
12119
12120 * emacs-lisp/syntax.el (syntax-ppss): Further improve docstring.
12121
12122 2011-06-19 Chong Yidong <cyd@stupidchicken.com>
12123
12124 * files.el (auto-mode-alist): Entry for m2-mode (Bug#8852).
12125
12126 * info.el (Info-apropos-toc-nodes): Minor doc fix (Bug#8833).
12127
12128 2011-06-19 Martin Rudalics <rudalics@gmx.at>
12129
12130 * window.el (display-buffer-other-window-means-other-frame):
12131 Call display-buffer-normalize-alist.
12132 (display-buffer-normalize-specifiers-1): Rename to
12133 display-buffer-normalize-argument. New argument other-frame.
12134 Rewrite.
12135 (display-buffer-normalize-specifiers-2): Rename to
12136 display-buffer-normalize-options.
12137 (display-buffer-normalize-alist-1): New function.
12138 (display-buffer-normalize-specifiers-3): Rename to
12139 display-buffer-normalize-alist.
12140 Call display-buffer-normalize-alist-1.
12141 (display-buffer-normalize-options-inhibit): New variable.
12142 (display-buffer-normalize-specifiers): Rewrite calling
12143 display-buffer-normalize-alist,
12144 display-buffer-normalize-argument, and
12145 display-buffer-normalize-options. Don't call the latter if
12146 display-buffer-normalize-options-inhibit is non-nil.
12147 (frame-auto-delete): New option.
12148 (window-deletable-p): Use frame-auto-delete.
12149 (window-list-no-nils, window-state-ignored-parameters)
12150 (window-state-get-1, window-state-get, window-state-put-list)
12151 (window-state-put-1, window-state-put-2, window-state-put):
12152 New functions.
12153 (display-buffer-normalize-options): Move special-display-p group
12154 after pop-up-frame group (Bug#8851) and (Bug#8856).
12155
12156 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
12157
12158 * emacs-lisp/rx.el (rx-constituents): Add support for numbered
12159 groups (Bug#8776).
12160 (rx-submatch-n): New function.
12161 (rx): Document it.
12162
12163 * dired-x.el (dired-mark-unmarked-files): Fix interactive spec
12164 (Bug#8768).
12165
12166 * replace.el (occur-mode-map): Set occur-edit-mode binding to "e".
12167
12168 * textmodes/fill.el (default-justification): Add :safe (Bug#8879).
12169
12170 * cus-face.el (custom-declare-face): Call custom-theme-recalc face
12171 anytime existing face settings are present (Bug#8889).
12172
12173 * progmodes/delphi.el (delphi-mode-syntax-table): Use defvar.
12174 (delphi-mode): Use define-derived-mode to inherit from prog-mode.
12175 Remove unused argument.
12176
12177 2011-06-18 Martin Rudalics <rudalics@gmx.at>
12178
12179 * window.el (display-buffer-default-specifiers):
12180 Remove pop-up-frame. Add pop-up-window-min-height,
12181 pop-up-window-min-width, and another reuse-window specifier
12182 (Bug#8882). Reported by Dan Nicolaescu <dann@gnu.org>.
12183 (display-buffer-normalize-specifiers-2):
12184 Handle split-height-threshold and split-width-threshold also when
12185 pop-up-windows is unset. Add a reuse-window specifier for the
12186 case popping up a new window fails.
12187 (special-display-popup-frame): Remove double quoting.
12188 (display-buffer-normalize-specifiers-1): Fix thinko.
12189
12190 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
12191
12192 * shell.el (shell-completion-vars): Set pcomplete-termination-string
12193 according to comint-completion-addsuffix.
12194
12195 * pcomplete.el: Convert to lexical binding and fix bug#8819.
12196 (pcomplete-suffix-list): Mark as obsolete.
12197 (pcomplete-completions-at-point): Capture pcomplete-norm-func and
12198 pcomplete-seen in the closure.
12199 (pcomplete-comint-setup): Setup completion-at-point as well.
12200 (pcomplete--entries): New function.
12201 (pcomplete--env-regexp): New var.
12202 (pcomplete-entries): Rewrite to work with partial-completion and
12203 without relying on pcomplete-suffix-list.
12204 (pcomplete-pare-list): Remove, unused.
12205
12206 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12207
12208 * window.el (display-buffer-alist): Set pop-up-window-min-height
12209 and pop-up-window-min-width in default value. Reported by
12210 Thierry Volpiatto <thierry.volpiatto@gmail.com>. New specifier
12211 other-window-means-other-frame.
12212 (display-buffer-macro-specifiers): Comment out entry for
12213 other-window specifier.
12214 (display-buffer-other-window-means-other-frame): New function.
12215 (display-buffer-normalize-specifiers-1): New arguments
12216 buffer-name and label. Treat other-window case specially.
12217 (display-buffer-normalize-specifiers-2): Treat other-window case
12218 specially.
12219 (display-buffer-normalize-specifiers-3): New function.
12220 (display-buffer-normalize-specifiers):
12221 Call display-buffer-normalize-specifiers-3.
12222
12223 2011-06-17 Martin Rudalics <rudalics@gmx.at>
12224
12225 * window.el (same-window-p): Fix two typos introduced when
12226 adding with-no-warnings.
12227 (display-buffer-normalize-specifiers-1): Don't check
12228 pop-up-frames for 'unset initialization.
12229 (display-buffer-normalize-specifiers-2): Major rewrite using
12230 special-display-p and same-window-p (Bug#8851) and (Bug#8856).
12231 (pop-up-frames, display-buffer-reuse-frames)
12232 (display-buffer-mark-dedicated): Don't initialize to 'unset.
12233 Suggested by David Engster <deng@randomsample.de>.
12234 (even-window-heights): Initialize to 'unset.
12235 (display-buffer-alist-set): Handle new 'unset initializations.
12236 (display-buffer-macro-specifiers): Don't pop up a new frame in the
12237 other window case.
12238
12239 2011-06-16 Martin Rudalics <rudalics@gmx.at>
12240
12241 * window.el (display-buffer-normalize-specifiers-1):
12242 Respect current value of pop-up-frames for most reasonable values of
12243 second argument of display-buffer (Bug#8865).
12244 (switch-to-buffer-same-frame, switch-to-buffer-other-window)
12245 (switch-to-buffer-other-window-same-frame)
12246 (switch-to-buffer-other-frame): Fix doc-strings. Reported by Drew
12247 Adams (Bug#8875).
12248 (display-buffer): Don't check noninteractive when calling
12249 display-buffer-pop-up-frame.
12250 (display-buffer-pop-up-frame): Never pop up a frame in
12251 noninteractive mode (Bug#8857).
12252 (enlarge-window, shrink-window): Don't report an error when the
12253 window can't be resized as requested (Bug#8862).
12254
12255 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12256
12257 * pcmpl-rpm.el (pcomplete/rpm): Minor simplification.
12258
12259 * emacs-lisp/debug.el (debug): Don't leave the buffer in Debugger.
12260
12261 * abbrev.el (define-abbrev-table): Don't add a table multiple times.
12262
12263 2011-06-15 Alan Mackenzie <acm@muc.de>
12264
12265 * progmodes/cc-fonts.el (c-font-lock-declarations): 1: Whilst checking
12266 for declarators, disable knr checking to speed up for normal files.
12267 2: Refactor, replacing a sequence of nested if forms by a cond form.
12268
12269 2011-06-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12270
12271 * net/network-stream.el (open-network-stream): Add the keyword
12272 :always-query-capabilities for the case where you want to force a
12273 `plain' network connection, but the protocol still requires the
12274 capabilitiy command (i.e., SMTP and EHLO).
12275
12276 * subr.el (process-live-p): Rename from `process-alive-p' for
12277 consistency with other `-live-p' functions.
12278
12279 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12280
12281 * window.el (same-window-buffer-names, same-window-regexps)
12282 (special-display-frame-alist, special-display-popup-frame)
12283 (special-display-function, special-display-buffer-names)
12284 (special-display-regexps, pop-up-frame-alist)
12285 (pop-up-frame-function, pop-up-frames, display-buffer-reuse-frames)
12286 (pop-up-windows, split-window-preferred-function)
12287 (split-height-threshold, split-width-threshold, even-window-heights)
12288 (display-buffer-mark-dedicated): Don't encourage the use of
12289 display-buffer-alist from Elisp code.
12290
12291 2011-06-15 Dan Nicolaescu <dann@ics.uci.edu>
12292
12293 * progmodes/python.el (python-mode): Derive from prog-mode.
12294 * progmodes/ps-mode.el (ps-mode):
12295 * progmodes/mixal-mode.el (mixal-mode):
12296 * progmodes/cfengine.el (cfengine-mode):
12297 * progmodes/ld-script.el (ld-script-mode): Likewise.
12298
12299 2011-06-15 Martin Rudalics <rudalics@gmx.at>
12300
12301 * window.el (display-buffer-alist): Trim default value to avoid
12302 popping up a new frame (Bug#8857) or reusing an arbitrary window
12303 on another frame.
12304 (display-buffer): Do not fall back on popping up a new frame in
12305 batch mode (Bug#8857).
12306
12307 2011-06-14 Chong Yidong <cyd@stupidchicken.com>
12308
12309 * cus-theme.el (describe-theme-1): Use custom-theme-p.
12310 (custom-theme-summary): New function.
12311 (customize-themes): Use it.
12312
12313 2011-06-13 Glenn Morris <rgm@gnu.org>
12314
12315 * cus-dep.el (custom-make-dependencies): Use up command-line-args-left.
12316
12317 2011-06-13 Martin Rudalics <rudalics@gmx.at>
12318
12319 * help.el (help-window): Remove variable.
12320 (help-window-point-marker, temp-buffer-max-height)
12321 (temp-buffer-resize-mode, help-window-select): Rewrite doc-strings.
12322 (help-print-return-message): Don't set help-window.
12323 (resize-temp-buffer-window): Rewrite cod eand doc-string.
12324 (help-window-setup-finish): Remove.
12325 (help-window-display-message, help-window-setup)
12326 (with-help-window): Major rewrite based on new
12327 display-buffer-window variable.
12328
12329 * help-mode.el (help-mode-finish): Remove help-window related
12330 code.
12331
12332 * view.el (view-exits-all-viewing-windows): Remove reference to
12333 view-return-to-alist in doc-string.
12334 (view-return-to-alist): Make obsolete.
12335 (view-buffer): Call pop-to-buffer-same-window and remove
12336 undo-window code.
12337 (view-buffer-other-window): Call pop-to-buffer-other-window and
12338 simplify code. Ignore second argument.
12339 (view-buffer-other-frame): Call pop-to-buffer-other-frame and
12340 simplify code. Ignore second argument.
12341 (view-return-to-alist-update): Make obsolete.
12342 (view-mode-enter): Rename second argument to QUIT-RESTORE.
12343 Rewrite using quit-restore window parameters.
12344 (view-mode-exit): Rename second argument to EXIT-ONLY.
12345 Rewrite using quit-restore-window.
12346 (View-exit, View-exit-and-edit, View-leave, View-quit)
12347 (View-quit-all, View-kill-and-leave): Call view-mode-exit with
12348 appropriate arguments.
12349 (view-end-message): Use quit-restore window parameter.
12350
12351 * window.el (display-buffer-function): Rewrite doc-string.
12352 (display-buffer-window, display-buffer-alist): New variables.
12353 (display-buffer-split-specifiers)
12354 (display-buffer-side-specifiers)
12355 (display-buffer-macro-specifiers): New constants.
12356 (display-buffer-even-window-sizes, display-buffer-set-height)
12357 (display-buffer-set-width, display-buffer-select-window)
12358 (display-buffer-in-window, display-buffer-reuse-window)
12359 (display-buffer-split-window-1, display-buffer-split-window)
12360 (display-buffer-split-atom-window, display-buffer-pop-up-window)
12361 (display-buffer-pop-up-frame, display-buffer-pop-up-side-window)
12362 (display-buffer-in-side-window, normalize-buffer-to-display)
12363 (display-buffer-normalize-specifiers-1)
12364 (display-buffer-normalize-specifiers-2)
12365 (display-buffer-normalize-specifiers, display-buffer-frame):
12366 New functions.
12367 (display-buffer): Major rewrite.
12368 (display-buffer-other-window, display-buffer-other-frame)
12369 (pop-to-buffer, switch-to-buffer-other-window)
12370 (switch-to-buffer-other-frame): Rewrite.
12371 (display-buffer-same-window, display-buffer-same-frame)
12372 (display-buffer-same-frame-other-window)
12373 (pop-to-buffer-same-window, pop-to-buffer-same-frame)
12374 (pop-to-buffer-other-window)
12375 (pop-to-buffer-same-frame-other-window)
12376 (pop-to-buffer-other-frame, switch-to-buffer-same-frame)
12377 (switch-to-buffer-other-window-same-frame): New functions.
12378 (same-window-p, special-display-p): Rewrite disabling warnings.
12379 Make obsolete.
12380 (pop-up-frames, display-buffer-reuse-frames, pop-up-windows)
12381 (display-buffer-mark-dedicated): Initialize to symbol 'unset.
12382 Make obsolete
12383 (same-window-buffer-names, same-window-regexps)
12384 (special-display-frame-alist, special-display-popup-frame)
12385 (special-display-function, special-display-buffer-names)
12386 (special-display-regexps, pop-up-frame-alist)
12387 (pop-up-frame-function, split-window-preferred-function)
12388 (split-height-threshold, split-width-threshold)
12389 (even-window-heights): Make obsolete.
12390
12391 2011-06-12 Glenn Morris <rgm@gnu.org>
12392
12393 * term/xterm.el (terminal-init-xterm): `version' may be nil. (Bug#8838)
12394 Misc simplifications.
12395
12396 2011-06-12 Martin Rudalics <rudalics@gmx.at>
12397
12398 * window.el (window-safely-shrinkable-p): Restore function which
12399 was inadvertently removed in change from 2011-06-11. Declare as
12400 obsolete.
12401
12402 * calendar/calendar.el (calendar-generate-window):
12403 Use window-iso-combined-p instead of combination of one-window-p and
12404 window-safely-shrinkable-p.
12405
12406 2011-06-12 Glenn Morris <rgm@gnu.org>
12407
12408 * progmodes/fortran.el (fortran-mode-syntax-table):
12409 * progmodes/f90.el (f90-mode-syntax-table):
12410 Set % to punctuation. (Bug#8820)
12411 (f90-find-tag-default): Remove, no longer needed.
12412
12413 2011-06-12 Daniel Colascione <dan.colascione@gmail.com>
12414
12415 * emacs-lisp/syntax.el (syntax-ppss): Clarify which items are invalid.
12416
12417 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
12418
12419 * image.el (image-animated-p): Return animation delay in seconds.
12420 Avoid bit manipulation in Lisp; use `delay' entry in the metadata.
12421 (image-animate-timeout): Remove DELAY argument. Don't assume
12422 every subimage has the same delay; get it from image-animated-p.
12423 (image-animate): Caller changed.
12424
12425 2011-06-11 Michael Albinus <michael.albinus@gmx.de>
12426
12427 * net/tramp.el (tramp-debug-message): Add `tramp-with-progress-reporter'
12428 to ignored backtrace functions.
12429
12430 2011-06-11 Glenn Morris <rgm@gnu.org>
12431
12432 * calendar/appt.el (appt-disp-window-function): Doc fix.
12433 (appt-check): Handle overlapping appointments. (Bug#8337)
12434
12435 2011-06-11 Martin Rudalics <rudalics@gmx.at>
12436
12437 * window.el (window-tree-1, window-tree): New functions, moving
12438 the latter to window.el.
12439 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
12440 (bw-find-tree-sub-1, bw-l, bw-t, bw-r, bw-b, bw-dir, bw-eqdir)
12441 (bw-refresh-edges): Remove.
12442 (balance-windows-1, balance-windows-2): New functions.
12443 (balance-windows): Rewrite in terms of window tree functions,
12444 balance-windows-1 and balance-windows-2.
12445 (bw-adjust-window): Remove.
12446 (balance-windows-area-adjust): New function with functionality of
12447 bw-adjust-window but using resize-window.
12448 (set-window-text-height): Rewrite doc-string.
12449 Use normalize-live-window and resize-window.
12450 (enlarge-window-horizontally, shrink-window-horizontally):
12451 Rename argument to DELTA.
12452 (window-buffer-height): New function.
12453 (fit-window-to-buffer, shrink-window-if-larger-than-buffer):
12454 Rewrite using new window resize routines.
12455 (kill-buffer-and-window, mouse-autoselect-window-select):
12456 Use ignore-errors instead of condition-case.
12457 (quit-window): Call delete-frame instead of delete-windows-on
12458 for the only buffer on frame.
12459
12460 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12461
12462 * loadup.el (top-level): Load window before files for the sake
12463 of replace-buffer-in-windows.
12464
12465 * files.el (read-buffer-to-switch)
12466 (switch-to-buffer-other-window)
12467 (switch-to-buffer-other-frame, display-buffer-other-frame):
12468 Move to window.el.
12469
12470 * simple.el (get-next-valid-buffer, last-buffer, next-buffer)
12471 (previous-buffer): Move to window.el.
12472
12473 * bindings.el (unbury-buffer): Move to window.el.
12474
12475 * window.el (delete-other-windows-vertically): Move after
12476 definition of delete-other-windows.
12477 (other-window, delete-windows-on, replace-buffer-in-windows):
12478 Move here from window.c.
12479 (record-window-buffer, unrecord-window-buffer)
12480 (set-window-buffer-start-and-point, switch-to-prev-buffer)
12481 (switch-to-next-buffer): New functions.
12482 (get-next-valid-buffer, last-buffer, next-buffer): Move here
12483 from simple.el. Call switch-to-next-buffer.
12484 (previous-buffer): Move here from simple.el.
12485 Call switch-to-prev-buffer.
12486 (bury-buffer): Move here from buffer.c. Switch to previous
12487 buffer when window cannot be deleted.
12488 (unbury-buffer): Move here from bindings.el.
12489 (ctl-x-map): Move binding for other-window from window.c to
12490 here.
12491 (read-buffer-to-switch, switch-to-buffer-other-window)
12492 (switch-to-buffer-other-frame): Move here from files.el.
12493 (normalize-buffer-to-switch-to): New functions.
12494 (switch-to-buffer): Move here from buffer.c.
12495 Use read-buffer-to-switch and normalize-buffer-to-switch-to.
12496
12497 2011-06-10 Martin Rudalics <rudalics@gmx.at>
12498
12499 * window.el (window-min-height, window-min-width): Move here
12500 from window.c. Add defcustoms and rewrite doc-strings.
12501 (resize-mini-window, resize-window): New functions.
12502 (adjust-window-trailing-edge, enlarge-window, shrink-window):
12503 Move here from window.c.
12504 (maximize-window, minimize-window): New functions.
12505 (delete-window, delete-other-windows, split-window): Move here
12506 from window.c.
12507 (window-split-min-size): New function.
12508 (split-window-keep-point): Mention split-window-above-each-other
12509 instead of split-window-vertically.
12510 (split-window-above-each-other, split-window-vertically):
12511 Rename split-window-vertically to split-window-above-each-other
12512 and provide defalias for old definition.
12513 (split-window-side-by-side, split-window-horizontally):
12514 Rename split-window-horizontally to split-window-side-by-side
12515 and provide defalias for the old definition.
12516 (ctl-x-map): Move bindings for delete-window,
12517 delete-other-windows and enlarge-window here from window.c.
12518 Replace bindings for split-window-vertically and
12519 split-window-horizontally by bindings for
12520 split-window-above-each-other and split-window-side-by-side.
12521
12522 * cus-start.el (all): Remove entries for window-min-height and
12523 window-min-width. Add entries for window-splits and
12524 window-nest.
12525
12526 2011-06-09 Glenn Morris <rgm@gnu.org>
12527
12528 * calendar/appt.el (appt-mode-line): New function.
12529 (appt-check, appt-disp-window): Use it.
12530
12531 * files.el (hack-one-local-variable-eval-safep):
12532 Allow minor-modes with explicit +/-1 arguments.
12533
12534 2011-06-09 Teodor Zlatanov <tzz@lifelogs.com>
12535
12536 * term/xterm.el (xterm): Add defgroup.
12537 (xterm-extra-capabilities): Add defcustom to supply known xterm
12538 capabilities, skip querying them, or query them (default).
12539 (terminal-init-xterm): Use it.
12540 (terminal-init-xterm-modify-other-keys): New function to set up
12541 modifyOtherKeys support to simplify `terminal-init-xterm'.
12542
12543 2011-06-09 Martin Rudalics <rudalics@gmx.at>
12544
12545 * window.el (resize-window-reset, resize-window-reset-1)
12546 (resize-subwindows-skip-p, resize-subwindows-normal)
12547 (resize-subwindows, resize-other-windows, resize-this-window)
12548 (resize-root-window, resize-root-window-vertically)
12549 (window-deletable-p, window-or-subwindow-p)
12550 (frame-root-window-p): New functions.
12551
12552 2011-06-09 Glenn Morris <rgm@gnu.org>
12553
12554 * net/ange-ftp.el (ange-ftp-switches-ok): New function.
12555 (ange-ftp-get-files): Use it.
12556
12557 2011-06-09 Alexander Klimov <alserkli@inbox.ru> (tiny change)
12558
12559 * mail/sendmail.el (mail-recover-1, mail-recover):
12560 * files.el (recover-file, recover-session):
12561 Handle dired-listing-switches not being just a single short option.
12562
12563 2011-06-09 Glenn Morris <rgm@gnu.org>
12564
12565 * calendar/appt.el (appt-display-message, appt-disp-window):
12566 Handle lists of appointments.
12567
12568 2011-06-08 Martin Rudalics <rudalics@gmx.at>
12569
12570 * window.el (one-window-p): Move down in code.
12571 Rewrite doc-string.
12572 (window-current-scroll-bars): Rewrite doc-string.
12573 Normalize live window argument.
12574 (walk-windows, get-window-with-predicate, count-windows):
12575 Rewrite doc-string. Use window-list-1.
12576 (window-in-direction-2, window-in-direction, get-mru-window):
12577 New functions.
12578
12579 2011-06-08 Reuben Thomas <rrt@sc3d.org>
12580
12581 * progmodes/flymake.el (flymake-compilation-prevents-syntax-check):
12582 Doc fix (Bug#8713).
12583
12584 2011-06-08 Chong Yidong <cyd@stupidchicken.com>
12585
12586 * repeat.el (repeat-on-final-keystroke): Fix type (Bug#8696).
12587
12588 2011-06-08 Juanma Barranquero <lekktu@gmail.com>
12589
12590 * loadhist.el (unload-feature-special-hooks):
12591 Add `comint-output-filter-functions'.
12592
12593 2011-06-08 Ivan Kanis <gnu@kanis.fr>
12594
12595 * calendar/appt.el (appt-check): Move some initializations into the let.
12596
12597 2011-06-08 Martin Rudalics <rudalics@gmx.at>
12598
12599 * window.el (window-height): Defalias to window-total-height.
12600 (window-width): Defalias to window-body-width.
12601
12602 2011-06-07 Chong Yidong <cyd@stupidchicken.com>
12603
12604 * image-mode.el (image-toggle-animation): New command.
12605 (image-mode-map): Bind it to RET.
12606 (image-mode): Update message.
12607 (image-toggle-display-image): Avoid a spurious cache flush.
12608 (image-transform-rotation): Doc fix.
12609 (image-transform-properties): Return quickly in the normal case.
12610 (image-animate-loop): Rename from image-animate-max-time.
12611
12612 * image.el (image-animate-max-time): Move to image-mode.el.
12613 (create-animated-image): Remove unnecessary function.
12614 (image-animate): Rename from image-animate-start. New arg.
12615 (image-animate-stop): Remove; just use image-animate-timer.
12616 (image-animate-timer): Use car-safe.
12617 (image-animate-timeout): Rename argument.
12618
12619 2011-06-07 Martin Rudalics <rudalics@gmx.at>
12620
12621 * window.el (get-lru-window, get-largest-window): Move here from
12622 window.c. Rename first argument to ALL-FRAMES.
12623 Rephrase doc-strings.
12624 (get-buffer-window-list): Rewrite using window-list-1.
12625 Rephrase doc-string.
12626 (window-safe-min-height, window-safe-min-width): New constants.
12627 (window-size-ignore, window-min-size, window-min-size-1)
12628 (window-sizable, window-sizable-p, window-size-fixed-1)
12629 (window-size-fixed-p, window-min-delta-1, window-min-delta)
12630 (window-max-delta-1, window-max-delta, window-resizable)
12631 (window-resizable-p, window-total-height, window-total-width)
12632 (window-body-width): New functions.
12633 (window-full-height-p, window-full-width-p): Rewrite using
12634 window-total-size.
12635 (window-body-height): Rewrite using window-body-size.
12636
12637 2011-06-06 Martin Rudalics <rudalics@gmx.at>
12638
12639 * window.el (window-right, window-left, window-child)
12640 (window-child-count, window-last-child, window-any-p)
12641 (normalize-live-buffer, normalize-live-frame)
12642 (normalize-any-window, normalize-live-window)
12643 (window-iso-combination-p, window-iso-combined-p)
12644 (window-iso-combinations)
12645 (walk-window-tree-1, walk-window-tree, walk-window-subtree)
12646 (windows-with-parameter, window-with-parameter)
12647 (window-atom-root, make-window-atom, window-atom-check-1)
12648 (window-atom-check, window-side-check, window-check):
12649 New functions.
12650 (ignore-window-parameters, window-sides, window-sides-vertical)
12651 (window-sides-slots): New variables.
12652 (window-size-fixed): Move down in code. Minor doc-string fix.
12653
12654 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12655
12656 * comint.el (comint-dynamic-complete-as-filename)
12657 (comint-dynamic-complete-filename): Correctly call
12658 completion-in-region.
12659
12660 2011-06-05 Deniz Dogan <deniz@dogan.se>
12661
12662 * net/rcirc.el (rcirc-prompt-for-encryption): Fix bug introduced
12663 in last change.
12664
12665 2011-06-05 Deniz Dogan <deniz@dogan.se>
12666
12667 * net/rcirc.el (rcirc-prompt-for-encryption): New function.
12668 (rcirc): Use it to prompt for encryption.
12669
12670 2011-06-05 Roland Winkler <winkler@gnu.org>
12671
12672 * textmodes/bibtex.el (bibtex-search-buffer): New variable.
12673 (bibtex-search-entries): New command bound to C-c C-a.
12674 (bibtex-display-entries): New function.
12675
12676 2011-06-05 Roland Winkler <winkler@gnu.org>
12677
12678 * textmodes/bibtex.el (bibtex-generate-url-list): Fix docstring.
12679 (bibtex-insert-kill): After yanking insert newline if necessary.
12680 (bibtex-initialize): Call bibtex-string-files-init only once.
12681 (bibtex-mode): Do not call easy-menu-add.
12682 (bibtex-validate-globally): Use save-excursion in bibtex buffers.
12683 (bibtex-yank): Set arg properly if nil.
12684
12685 2011-06-05 Roland Winkler <winkler@gnu.org>
12686
12687 * textmodes/bibtex.el (bibtex-search-entry-globally):
12688 New variable.
12689 (bibtex-search-entry): Use it.
12690
12691 2011-06-05 Roland Winkler <winkler@gnu.org>
12692
12693 * textmodes/bibtex.el (bibtex-entry-format): New option
12694 sort-fields.
12695 (bibtex-format-entry, bibtex-reformat): Honor this option.
12696 (bibtex-parse-entry): Return fields in proper order.
12697
12698 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
12699
12700 * doc-view.el (doc-view-remove-if): Move computation of result out
12701 of `dolist' to silence misleading lexical-binding warning.
12702
12703 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
12704
12705 * emacs-lisp/timer.el (timer-activate): Remove unused arg.
12706 (timer-activate, timer-activate-when-idle): Doc fix (Bug#8793).
12707
12708 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
12709
12710 * net/tramp-sh.el (tramp-find-shell): Apply workaround also for
12711 "SunOS 5.10".
12712
12713 2011-06-04 Michael Albinus <michael.albinus@gmx.de>
12714
12715 * net/tramp.el (tramp-set-completion-function, tramp-parse-rhosts)
12716 (tramp-parse-shosts, tramp-parse-sconfig, tramp-parse-shostkeys)
12717 (tramp-parse-hosts, tramp-parse-passwd, tramp-parse-netrc)
12718 (tramp-parse-putty):
12719 * net/tramp-sh.el (tramp-completion-function-alist-rsh)
12720 (tramp-completion-function-alist-ssh)
12721 (tramp-completion-function-alist-telnet)
12722 (tramp-completion-function-alist-su)
12723 (tramp-completion-function-alist-putty): Set `tramp-autoload'
12724 cookie.
12725
12726 * net/tramp-ftp.el:
12727 * net/tramp-sh.el:
12728 * net/tramp-smb.el: Set `tramp-autoload' cookie, and eval after
12729 load "tramp.el" `tramp-set-completion-function'.
12730
12731 2011-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
12732
12733 * shell.el: Require and use pcomplete.
12734 (shell-dynamic-complete-functions): Add pcomplete-completions-at-point.
12735 (shell-completion-vars): Set pcomplete-default-completion-function.
12736
12737 2011-06-04 Deniz Dogan <deniz@dogan.se>
12738
12739 * iswitchb.el (iswitchb-window-buffer-p): Use `member' instead of
12740 `memq' (Bug#8799).
12741
12742 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12743
12744 * subr.el (make-progress-reporter): Add "..." by default (bug#8785).
12745
12746 2011-06-02 Juanma Barranquero <lekktu@gmail.com>
12747
12748 * bs.el (bs--mark-unmark, bs--nth-wrapper):
12749 * mpc.el (mpc-select-extend, mpc-songpointer-context):
12750 * vc/log-view.el (log-view-beginning-of-defun):
12751 * vc/smerge-mode.el (smerge-apply-resolution-patch)
12752 (smerge-refine-forward, smerge-refine-chopup-region):
12753 Silence warning for unused `dotimes' counter variables.
12754
12755 2011-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12756
12757 * net/tramp.el (tramp-with-progress-reporter): Rename from
12758 with-progress-reporter. Use `declare'.
12759 * net/tramp-smb.el:
12760 * net/tramp-sh.el:
12761 * net/tramp-gvfs.el: Update all uses.
12762
12763 2011-06-02 Jay Belanger <jay.p.belanger@gmail.com>
12764
12765 * calc/calc.el (calc-kill-stack-buffer): Make sure that the trail
12766 buffer isn't killed before making it current.
12767
12768 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12769
12770 Silence various byte-compiler warnings.
12771 * emacs-lisp/byte-run.el (make-obsolete-variable): New argument
12772 `access-type' and new obsolescence format.
12773 * emacs-lisp/bytecomp.el (byte-compile-warn-obsolete): Adjust to
12774 new format.
12775 (byte-compile-check-variable): New `access-type' argument.
12776 Only warn if the access-type is obsolete.
12777 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
12778 (byte-compile-variable-set): Adjust callers.
12779 * help-fns.el (describe-variable): Adjust to new obsolescence format.
12780 * mail/sendmail.el (mail-mailer-swallows-blank-line): Only mark
12781 setting it as obsolete.
12782 * simple.el (minibuffer-completing-symbol):
12783 * font-lock.el (font-lock-beginning-of-syntax-function): Only mark read
12784 access as obsolete.
12785 * minibuffer.el (minibuffer-completing-file-name): Don't make it
12786 obsolete yet.
12787 * international/quail.el (quail-mouse-choose-completion): Remove unused
12788 code referring to obsolete var.
12789 (quail-choose-completion-string): Remove.
12790 * server.el (server-clients-with, server-kill-buffer-query-function)
12791 (server-kill-emacs-query-function): Silence "unused `proc'" warnings.
12792 * proced.el (proced-send-signal):
12793 * emacs-lisp/lisp.el (lisp-complete-symbol):
12794 Replace completion-annotate-function with completion-extra-properties.
12795
12796 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12797
12798 * simple.el (goto-line): Use read-number.
12799 (overriding-map-is-bound): Remove.
12800 (saved-overriding-map): Change default.
12801 (save&set-overriding-map): Rename from ensure-overriding-map-is-bound;
12802 Take the map as argument.
12803 (universal-argument, negative-argument, digit-argument): Use it.
12804 (restore-overriding-map): Adjust.
12805 (do-auto-fill): Use fill-forward-paragraph.
12806 (keyboard-quit): Don't signal an error when debug-on-quit is non-nil.
12807
12808 * minibuffer.el (minibuffer-inactive-mode-map): New var.
12809 (minibuffer-inactive-mode): New major mode.
12810 * mouse.el (mouse-drag-region): Remove the "mouse-1 pops up
12811 the *Messages* buffer" hack.
12812 (mouse-popup-menubar): Don't burp if the event is a normal key.
12813
12814 Miscellaneous tweaks.
12815 * emacs-lisp/cl-macs.el (dolist, dotimes): Use the same strategy for
12816 lexical scoping as in subr.el's dolist and dotimes.
12817 * emacs-lisp/bytecomp.el (byte-compile-unfold-bcf):
12818 Silence compiler warning.
12819 * thingatpt.el (forward-whitespace): Trivial coding style fix.
12820 * subr.el (with-output-to-temp-buffer): Provide an edebug spec.
12821 * international/ccl.el (ccl-compile): Trivial simplification.
12822 * help-fns.el (help-do-arg-highlight): Silence compiler warning.
12823 * emacs-lisp/testcover.el (testcover-end): Remove spurious
12824 `printflag' argument.
12825 * emacs-lisp/byte-run.el (make-obsolete, make-obsolete-variable):
12826 Purecopy the whole obsolescence data.
12827
12828 2011-06-01 Leo Liu <sdl.web@gmail.com>
12829
12830 * net/rcirc.el (rcirc-decode-coding-system): Revert last change;
12831 improve doc-string as suggested by Marco Pessotto
12832 <melmothx@gmail.com>.
12833 (rcirc-print): Fix last change.
12834
12835 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12836
12837 * minibuffer.el (complete-with-action): Return nil for the metadata and
12838 boundaries of non-functional tables.
12839 (completion-table-dynamic): Return nil for the metadata.
12840 (completion-table-with-terminator): Add default case, using
12841 complete-with-action.
12842 (completion--metadata): New function.
12843 (completion-all-sorted-completions, minibuffer-completion-help): Use it
12844 to try and avoid pathological performance problems.
12845 (completion--embedded-envvar-table): Return `category' metadata.
12846
12847 2011-05-31 Lars Magne Ingebrigtsen <larsi@gnus.org>
12848
12849 * subr.el (process-alive-p): New tiny convenience function.
12850
12851 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12852
12853 * emacs-lisp/debug.el (debug): Save&restore not just the buffer's
12854 content but also its previous major mode.
12855
12856 2011-05-31 Helmut Eller <eller.helmut@gmail.com>
12857
12858 * emacs-lisp/debug.el (debug): Restore the previous content of the
12859 *Backtrace* buffer when we exit with C-M-c.
12860
12861 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12862
12863 * minibuffer.el: Add metadata method to completion tables.
12864 (completion-category-overrides): New defcustom.
12865 (completion-metadata, completion--field-metadata)
12866 (completion-metadata-get, completion--styles)
12867 (completion--cycle-threshold): New functions.
12868 (completion-try-completion, completion-all-completions):
12869 Add `metadata' argument to choose completion-styles.
12870 (completion--do-completion): Use metadata to choose cycling.
12871 (completion-all-sorted-completions): Use metadata for sorting.
12872 Remove :completion-cycle-penalty which is not needed any more.
12873 (completion--try-word-completion): Add `metadata' argument.
12874 (minibuffer-completion-help): Check metadata for annotation function
12875 and sorting.
12876 (completion-file-name-table): Return `category' metadata.
12877 (minibuffer-completing-file-name): Make obsolete.
12878 * simple.el (minibuffer-completing-symbol): Make obsolete.
12879 * icomplete.el (icomplete-completions): Pass new `metadata' param to
12880 completion-try-completion.
12881
12882 2011-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12883
12884 * mail/smtpmail.el (smtpmail-send-data): Add progress reporter.
12885
12886 2011-05-30 Leo Liu <sdl.web@gmail.com>
12887
12888 * net/rcirc.el (rcirc-debug-buffer): Use visible buffer name.
12889 (rcirc-print): Decode all incoming messages (bug#8744).
12890 (rcirc-decode-coding-system): Allow value nil for automatic coding
12891 system detection.
12892
12893 2011-06-01 Glenn Morris <rgm@gnu.org>
12894
12895 * mail/emacsbug.el (report-emacs-bug-hook): Mailclient ignores From.
12896
12897 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
12898
12899 * image.el (image-animate-max-time): Allow nil and t values.
12900 Default to nil.
12901 (create-animated-image): Doc fix.
12902 (image-animate-start): Remove second arg; just use
12903 image-animate-max-time.
12904 (image-animate-timeout): Doc fix. Args changed.
12905
12906 * image-mode.el (image-toggle-display-image): Ensure that the
12907 image spec passed to the animate timer is the same object as in
12908 the buffer's display property (Bug#6981).
12909 (image-transform-properties): Doc fix.
12910
12911 * image.el (image-animate-max-time): Default to nil.
12912
12913 2011-05-29 Martin Rudalics <rudalics@gmx.at>
12914
12915 * menu-bar.el (kill-this-buffer-enabled-p): Avoid looping over
12916 entire buffer list (Bug#8184).
12917
12918 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
12919
12920 * image.el (imagemagick-types-inhibit)
12921 (imagemagick-register-types): Doc fix.
12922
12923 2011-05-29 Deniz Dogan <deniz@dogan.se>
12924
12925 * net/rcirc.el (rcirc): Use the user's stored encryption method by
12926 default.
12927
12928 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
12929
12930 * select.el: Don't perform clipboard-manager saving in hooks;
12931 leave the hooks empty.
12932
12933 2011-05-28 Leo Liu <sdl.web@gmail.com>
12934
12935 * replace.el (occur-menu-map, occur-edit-mode-map): New vars.
12936 (occur-mode-map): Bind occur-edit-mode. Use occur-menu-map.
12937 (occur-edit-mode): New major mode (Bug#8463).
12938 (occur-after-change-function): New function.
12939 (occur-engine): Give Occur tags a read-only property.
12940
12941 2011-05-28 Kevin Ryde <user42@zip.com.au>
12942
12943 * subr.el (def-edebug-spec): Doc fix (Bug#8430).
12944
12945 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
12946
12947 * bindings.el (help-echo): Make the initial non-indicator dash
12948 empty on graphical terminals (Bug#7295).
12949
12950 * files.el (auto-mode-alist): Move config rule after the
12951 in-stripping one (Bug#8547).
12952
12953 * newcomment.el (comment-end-skip): Doc fix (Bug#8659).
12954
12955 * startup.el (normal-splash-screen): Remove gratuitous mode-line
12956 setting (Bug#8740).
12957
12958 2011-05-28 Alp Aker <aker@pitt.edu> (tiny change)
12959
12960 * buff-menu.el (Buffer-menu-revert-function, Buffer-menu-sort)
12961 (Buffer-menu-buffer+size): Use Buffer-menu-buffer-column
12962 (Bug#8539).
12963
12964 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
12965
12966 * emacs-lisp/re-builder.el (re-builder): Improve doc (Bug#8286).
12967
12968 2011-05-28 Dima Kogan <dkogan@cds.caltech.edu> (tiny change)
12969
12970 * progmodes/hideshow.el (hs-looking-at-block-start-p): New fun.
12971 (hs-hide-block-at-point, hs-find-block-beginning)
12972 (hs-already-hidden-p, hs-hide-block, hs-show-block): Use it
12973 (Bug#8279).
12974
12975 2011-05-28 Glenn Morris <rgm@gnu.org>
12976
12977 * startup.el (fancy-about-screen): Use standard mode line. (Bug#8740)
12978
12979 2011-05-28 Chong Yidong <cyd@stupidchicken.com>
12980
12981 * help-fns.el (describe-function-1): If the function is a derived
12982 major mode, print the parent mode.
12983
12984 * progmodes/cc-mode.el (c-mode, c++-mode, objc-mode, java-mode)
12985 (idl-mode, pike-mode, awk-mode): Inherit from prog-mode.
12986
12987 2011-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
12988
12989 * minibuffer.el (completion--capf-wrapper): Check applicability before
12990 returning non-nil for non-exclusive completion data.
12991 * progmodes/etags.el (tags-completion-at-point-function):
12992 * info-look.el (info-lookup-completions-at-point): Mark as
12993 non-exclusive.
12994 (info-complete): Adjust accordingly.
12995
12996 * info-look.el: Convert to lexical-binding and completion-at-point.
12997 (info-lookup-completions-at-point): New function.
12998 (info-complete): Use it and completion-in-region.
12999
13000 2011-05-28 Drew Adams <drew.adams@oracle.com>
13001
13002 * isearch.el: Let M-e start with point at the first mismatched char.
13003 (isearch-fail-pos): New function.
13004 (isearch-edit-string): Use it.
13005
13006 2011-05-28 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13007
13008 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13009
13010 2011-05-27 Toby Cubitt <toby-predictive@dr-qubit.org>
13011
13012 * emacs-lisp/avl-tree.el: New avl-tree-stack datatype. Add new
13013 traversal functions for avl-trees.
13014 (avl-tree--stack): New struct.
13015 (avl-tree-stack-p, avl-tree--stack-repopulate): New funs.
13016 (avl-tree-enter): Add optional `updatefun' arg.
13017 (avl-tree--do-enter): Add optional `updatefun' arg.
13018 Change return value.
13019 (avl-tree-delete): Add optional `test' and `nilflag' args.
13020 (avl-tree--do-delete): Add `test' and `nilflag' args.
13021 Change return value.
13022 (avl-tree-member): Add optional `nilflag'
13023 (avl-tree-member-p): New function.
13024 (avl-tree-mapc, avl-tree-mapf, avl-tree-mapcar): New functions.
13025 (avl-tree-stack, avl-tree-stack-pop, avl-tree-stack-first)
13026 (avl-tree-stack-empty-p): New functions.
13027
13028 * emacs-lisp/avl-tree.el (avl-tree--del-balance): Rename from
13029 avl-tree--del-balance1 and make it work both ways.
13030 (avl-tree--del-balance2): Remove.
13031 (avl-tree--enter-balance): Rename from avl-tree--enter-balance1 and
13032 make it work both ways.
13033 (avl-tree--enter-balance2): Remove.
13034 (avl-tree--switch-dir, avl-tree--dir-to-sign, avl-tree--sign-to-dir):
13035 New macros.
13036 (avl-tree--mapc, avl-tree-map): Add direction argument.
13037
13038 2011-05-27 David Michael <fedora.dm0@gmail.com> (tiny change)
13039
13040 * files.el (interpreter-mode-alist): Add rbash (bug#8745).
13041
13042 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
13043
13044 * select.el: Support clipboard managers with built-in function
13045 x-clipboard-manager-save, via delete-frame-functions and
13046 kill-emacs-hook.
13047 (xselect-convert-to-targets): Add MULTIPLE target to list.
13048 (xselect-convert-to-save-targets): New function.
13049
13050 2011-05-27 Kenichi Handa <handa@m17n.org>
13051
13052 * mail/sendmail.el (mail-encode-header): Avoid double encoding by
13053 let-binding rfc2047-encode-encoded-words to nil.
13054
13055 2011-05-27 Glenn Morris <rgm@gnu.org>
13056
13057 * mail/emacsbug.el: Don't require url-util.
13058
13059 * shell.el (shell-directory-tracker): Case matters. (Bug#8735)
13060
13061 * files.el (set-auto-mode):
13062 Also respect mode: entries at the end of the file. (Bug#8586)
13063
13064 2011-05-26 Glenn Morris <rgm@gnu.org>
13065
13066 * files.el (hack-local-variables-prop-line, hack-local-variables):
13067 Downcase mode names, as seems to be traditional.
13068 (hack-local-variables, hack-local-variables-apply): Doc fixes.
13069
13070 * mail/emacsbug.el (report-emacs-bug): Mention checking From address.
13071 (report-emacs-bug-hook): Try to validate the From address. (Bug#8038)
13072
13073 2011-05-25 Julien Danjou <julien@danjou.info>
13074
13075 * textmodes/rst.el (rst-define-level-faces): Do not define face
13076 symbol if it is already defined.
13077
13078 2011-05-24 Vincent Belaïche <vincentb1@users.sourceforge.net>
13079
13080 * play/5x5.el (5x5-new-game, 5x5-randomize):
13081 Reset 5x5-solver-output to nil when a new grid is cast.
13082 (5x5-log-init, 5x5-log): Use defsubst instead of defmacro to shunt
13083 these debugging traces, as defmacro breaks the compiled code.
13084
13085 2011-05-24 Dmitry Kurochkin <dmitry.kurochkin@gmail.com> (tiny change)
13086
13087 * isearch.el (isearch-range-invisible): Use invisible-p (bug#8721).
13088
13089 2011-05-24 Leo Liu <sdl.web@gmail.com>
13090
13091 * vc/vc-bzr.el (vc-bzr-sha1-program): Rename from sha1-program.
13092 (vc-bzr-sha1): Adapt.
13093
13094 * sha1.el: Remove. Function `sha1' is now builtin.
13095
13096 * bindings.el: Provide sha1 feature.
13097
13098 2011-05-24 Kenichi Handa <handa@m17n.org>
13099
13100 * mail/sendmail.el: Require `rfc2047'.
13101 (mail-insert-from-field): Do not perform RFC2047 encoding.
13102 (mail-encode-header): New function.
13103 (sendmail-send-it): Set buffer-file-coding-system of the work
13104 buffer to the return value of select-message-coding-system.
13105 Call mail-encode-header.
13106
13107 * mail/smtpmail.el (smtpmail-send-it): Call mail-encode-header.
13108
13109 2011-05-24 Sean Neakums <sneakums@zork.net> (tiny change)
13110
13111 * mail/supercite.el (sc-default-cite-frame):
13112 Handle sc-nested-citation-p when sc-cite-blank-lines-p is non-nil.
13113
13114 2011-05-24 Glenn Morris <rgm@gnu.org>
13115
13116 * progmodes/python.el (brm-menu): Declare.
13117
13118 * emulation/viper.el (viper-set-hooks): Declare.
13119
13120 * play/5x5.el (5x5-log-init, 5x5-log): Evaluate when compiling.
13121 (5x5-log-init, 5x5-log, 5x5-solver): Doc fixes.
13122 (math-map-vec, math-sub, math-mul, math-make-intv, math-reduce-vec)
13123 (math-format-number, math-pow, calcFunc-arrange, calcFunc-cvec)
13124 (calcFunc-diag, calcFunc-trn, calcFunc-inv, calcFunc-mrow)
13125 (calcFunc-mcol, calcFunc-vconcat, calcFunc-index): Declare.
13126
13127 2011-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
13128
13129 Add an :exit-function for completion-at-point.
13130
13131 * minibuffer.el (completion--done): New fun.
13132 (completion--do-completion): Use it. New arg `expect-exact'.
13133 (minibuffer-complete, minibuffer-complete-word): Don't output message,
13134 since completion--do-completion does it for us now.
13135 (minibuffer-force-complete): Use completion--done and
13136 completion--replace. Handle sole-completion case with more care.
13137 (minibuffer-complete-and-exit): Use new `expect-exact' arg.
13138 (completion-extra-properties): New var.
13139 (completion-annotate-function): Make obsolete.
13140 (minibuffer-completion-help): Adjust accordingly.
13141 Use completion-list-insert-choice-function.
13142 (completion-at-point, completion-help-at-point):
13143 Bind completion-extra-properties.
13144 (completion-pcm-word-delimiters): Add | (for uniquify, for example).
13145 * simple.el (completion-list-insert-choice-function): New var.
13146 (completion-setup-function): Preserve it.
13147 (choose-completion): Pay attention to it, shuffle the code a bit.
13148 (choose-completion-string): New arg `insert-function'.
13149
13150 * textmodes/bibtex.el: Convert to lexical binding.
13151 (bibtex-mode-map): Use completion-at-point.
13152 (bibtex-mode): Use define-derived-mode&completion-at-point-functions.
13153 (bibtex-completion-at-point-function): New fun, from bibtex-complete.
13154 (bibtex-complete): Define as obsolete alias.
13155 (bibtex-complete-internal): Remove.
13156 (bibtex-format-entry): Remove unused sub-group in regexp.
13157 * shell.el (shell--command-completion-data)
13158 (shell-environment-variable-completion):
13159 * pcomplete.el (pcomplete-completions-at-point):
13160 * comint.el (comint--complete-file-name-data): Use :exit-function
13161 instead of completion-table-with-terminator so it also works for
13162 choose-completion.
13163
13164 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13165
13166 * <lots-of-files>.el: Don't quote lambda expressions with `quote'.
13167
13168 * vc/smerge-mode.el (smerge-refine-subst): Don't deactivate the mark
13169 (bug#8710).
13170
13171 * emacs-lisp/lisp.el (up-list): Fix forward movement (bug#8708).
13172
13173 2011-05-23 Ken Manheimer <ken.manheimer@gmail.com>
13174
13175 * allout.el (allout-inhibit-auto-fill-on-headline): Create new
13176 customization variable and implement: If non-nil, auto-fill will
13177 be inhibited while on topic's header line.
13178
13179 2011-05-23 Vincent Belaïche <vincentb1@users.sourceforge.net>
13180
13181 * play/5x5.el: I/ Add an arithmetic solver to suggest positions to
13182 click on. II/ Make 5x5 multisession. III/ Ensure that random grids
13183 always have a solution in grid size = 5 cases.
13184 (5x5-mode-map): Add keybinding to function `5x5-solve-suggest'.
13185 (5x5-solver-output, 5x5-log-buffer): New vars.
13186 (5x5-grid, 5x5-x-pos, 5x5-y-pos, 5x5-moves, 5x5-cracking):
13187 Make these variables buffer local to achieve 5x5 multi-session-ness.
13188 (5x5): Set 5x5-grid-size only if SIZE is non-negative.
13189 (5x5-grid-to-vec, 5x5-vec-to-grid, 5x5-log-init, 5x5-log, 5x5-solver)
13190 (5x5-solve-suggest): New funs.
13191 (5x5-randomize): Use 5x5-make-move instead of 5x5-flip-cell to
13192 randomize a grid so that we ensure that there is always a solution.
13193 (5x5-make-random-grid): Allow other movement than flipping.
13194
13195 2011-05-23 Kevin Ryde <user42@zip.com.au>
13196
13197 * emacs-lisp/advice.el (ad-read-advised-function):
13198 Use `function-called-at-point' as the default, if it has
13199 advice and passes PREDICATE.
13200
13201 2011-05-23 Stefan Monnier <monnier@iro.umontreal.ca>
13202
13203 * emacs-lisp/bytecomp.el (byte-compile-function-form): Only call
13204 byte-compile-lambda if it's actually a lambda.
13205
13206 * emacs-lisp/eieio.el (eieio-defgeneric-form-primary-only-one):
13207 Fix function quoting. Use backquote better.
13208
13209 2011-05-22 Yuanle Song <sylecn@gmail.com>
13210
13211 * nxml/rng-xsd.el (rng-xsd-check-pattern): Use case-sensitive
13212 matching (Bug#8516).
13213
13214 2011-01-22 Jari Aalto <jari.aalto@cante.net>
13215
13216 * vc/vc-dir.el (vc-default-dir-printer): Give edited tag a
13217 different face (Bug#8178).
13218
13219 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
13220
13221 * vc/diff-mode.el (diff-changed): Don't use terminal specs for
13222 defface (Bug#8144).
13223
13224 2011-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
13225
13226 * emacs-lisp/macroexp.el (macroexpand-all-1): Convert ' to #' for
13227 funcall as well (bug#8712). Warn when performing those conversions.
13228 * emacs-lisp/bytecomp.el (byte-compile-form): Fix error report.
13229
13230 * progmodes/grep.el (grep-mode): Fix it for good (bug#8684)!
13231
13232 2011-05-22 Glenn Morris <rgm@gnu.org>
13233
13234 * files.el (hack-local-variables-prop-line): Small simplifications.
13235 (hack-local-variables, hack-local-variables-prop-line):
13236 If MODE-ONLY, return the mode, rather than just `t'.
13237
13238 2011-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13239
13240 * progmodes/grep.el (grep-mode): Fix last change (bug#8684).
13241
13242 2011-05-21 Glenn Morris <rgm@gnu.org>
13243
13244 * files.el (hack-local-variables-prop-line, hack-local-variables):
13245 If only interested in the mode, don't bother doing the other stuff.
13246
13247 * image-mode.el (image-after-revert-hook):
13248 Redraw all frames on which the image is visible. (Bug#8567)
13249
13250 * dired-aux.el (dired-touch-initial): Just use current-time. (Bug#6887)
13251
13252 * wid-edit.el (widget-checklist-match-inline):
13253 Fix 2011-04-19 change. (Bug#8649)
13254
13255 2011-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
13256
13257 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13258 Also allow singlespace after single-letter capitals followed by a dot.
13259
13260 * nxml/nxml-mode.el (nxml-electric-slash): Reindent when completion is
13261 enabled. Suggested by James Ahlborn <jahlborn@gmail.com> (bug#8704).
13262
13263 2011-05-20 Nix <nix@esperi.org.uk>
13264
13265 * files.el (basic-save-buffer-2):
13266 Fix handling of break-hardlink-on-save with non-existent files.
13267
13268 2011-05-19 Deniz Dogan <deniz@dogan.se>
13269
13270 * net/rcirc.el (rcirc-mode): Initialize rcirc-urls to nil.
13271 (rcirc-markup-urls): Check if rcirc-url-regexp is nil.
13272
13273 2011-05-19 Glenn Morris <rgm@gnu.org>
13274
13275 * progmodes/f90.el (f90-type-def-re):
13276 Handle "type, bind(c)". (Bug#8691)
13277
13278 * emacs-lisp/autoload.el (batch-update-autoloads):
13279 Set autoload-excludes by parsing loadup.el rather than Makefiles.
13280
13281 2011-05-18 Michael Albinus <michael.albinus@gmx.de>
13282
13283 * net/tramp.el (tramp-process-actions): Set "first-password-request"
13284 property for the correct connection in case of multihops.
13285
13286 2011-05-18 Glenn Morris <rgm@gnu.org>
13287
13288 * emacs-lisp/authors.el (authors-fixed-entries): Remove fakemail.c.
13289 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
13290
13291 Rationalize calendar handling of day and month abbrev-arrays.
13292 * calendar/calendar.el (calendar-customized-p): New function.
13293 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
13294 (calendar-day-name-array, calendar-month-name-array): Doc fix.
13295 Add :set function.
13296 (calendar-abbrev-length, calendar-day-abbrev-array)
13297 (calendar-month-abbrev-array): Make defcustoms, with appropriate :set.
13298 (calendar-day-abbrev-array, calendar-month-abbrev-array):
13299 Elements may no longer be nil.
13300 (calendar-day-name, calendar-month-name):
13301 Update for changed nature of abbrev arrays.
13302 * calendar/diary-lib.el (diary-name-pattern):
13303 Update for changed nature of abbrev arrays.
13304 (diary-mark-entries-1): Update calendar-make-alist calls.
13305 (diary-font-lock-date-forms): Doc fix for changed abbrev arrays.
13306 * calendar/cal-html.el (cal-html-day-abbrev-array):
13307 Simply inherit from calendar-day-abbrev-array.
13308
13309 2011-05-17 Stefan Monnier <monnier@iro.umontreal.ca>
13310
13311 * progmodes/grep.el (grep-mode): Disable default
13312 compilation-directory-matcher setting (bug#8684).
13313
13314 2011-05-17 Michael Albinus <michael.albinus@gmx.de>
13315
13316 * net/tramp.el (tramp-handle-insert-file-contents): Use "dd"
13317 instead of "head" and "tail". There were problems with SunOS 5.9,
13318 and it performs better.
13319
13320 2011-05-17 Glenn Morris <rgm@gnu.org>
13321
13322 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
13323
13324 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
13325 Replace obsolete function.
13326
13327 * shell.el (pcomplete-parse-arguments-function): Declare.
13328
13329 * calendar/appt.el (appt-message-warning-time, appt-display-mode-line)
13330 (appt-display-diary, appt-display-interval, appt-prev-comp-time)
13331 (appt-check): Doc fixes.
13332 (appt-disp-window-function, appt-delete-window-function):
13333 Remove needless special case in custom :type.
13334 (appt-display-count): Default to 0, not nil.
13335 (appt-check): Reset appt-display-count to 0, not nil.
13336
13337 2011-05-17 Juanma Barranquero <lekktu@gmail.com>
13338
13339 * progmodes/python.el (python-font-lock-keywords):
13340 Add the Python 3.X keyword "nonlocal" (bug#8639).
13341
13342 2011-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
13343
13344 * emacs-lisp/eieio.el (defmethod): Fix quoting of code (bug#8677).
13345
13346 2011-05-16 Kevin Ryde <user42@zip.com.au>
13347
13348 * info-look.el (makefile-automake-mode): New setups, looking in
13349 automake manual, then makefile-mode.
13350 (makefile-mode): Remove automake manual, have it just in
13351 makefile-automake-mode since there's various things different or
13352 not relevant to plain make.
13353 (makefile-mode): Remove "other-modes" non-existent automake-mode,
13354 believe a hypothetical automake-mode would go to makefile-mode,
13355 not the other way around.
13356
13357 2011-05-15 Chong Yidong <cyd@stupidchicken.com>
13358
13359 * vc/diff-mode.el (diff-fixup-modifs): Locate correct position for
13360 hunk-end tags (Bug#8672).
13361
13362 * vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
13363 vc-annotate-show-diff-revision-at-line (Bug#8671).
13364
13365 2011-05-14 Glenn Morris <rgm@gnu.org>
13366
13367 * vc/add-log.el (add-change-log-entry): Don't start adding a new entry
13368 in the middle of an existing one with multiple authors. (Bug#8645)
13369 (change-log-font-lock-keywords): Also handle multiple author lines
13370 with leading tabs. (Bug#8644)
13371
13372 * calendar/appt.el (appt-check): Rename some local variables.
13373 Some simplification/reordering.
13374
13375 * mail/feedmail.el (feedmail-confirm-outgoing-timeout)
13376 (feedmail-sendmail-f-doesnt-sell-me-out)
13377 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13378 (feedmail-debug-sit-for, feedmail-queue-express-hook)
13379 (feedmail-queue-runner-message-sender): Set :version.
13380 (bbdb-search, bbdb-records, smtp-via-smtp, smtp-server)
13381 (bbdb-dwim-net-address, vm-mail): Declare.
13382 (feedmail-binmail-gnulinuxish-template):
13383 Rename from feedmail-binmail-linuxish-template.
13384 (feedmail-buffer-to-smtp, feedmail-vm-mail-mode):
13385 Use insert-buffer-substring.
13386
13387 2011-05-14 Bill Carpenter <bill@carpenter.org>
13388
13389 * mail/feedmail.el (feedmail-patch-level): Increase.
13390 (feedmail-debug): New custom group.
13391 (feedmail-confirm-outgoing-timeout)
13392 (feedmail-sendmail-f-doesnt-sell-me-out)
13393 (feedmail-queue-slug-suspect-regexp, feedmail-debug)
13394 (feedmail-debug-sit-for, feedmail-queue-express-hook): New options.
13395 (feedmail-sender-line, feedmail-from-line)
13396 (feedmail-fiddle-headers-upwardly, feedmail-enable-spray)
13397 (feedmail-spray-this-address)
13398 (feedmail-spray-address-fiddle-plex-list)
13399 (feedmail-queue-use-send-time-for-date)
13400 (feedmail-queue-use-send-time-for-message-id)
13401 (feedmail-last-chance-hook, feedmail-queue-runner-mode-setter)
13402 (feedmail-buffer-eating-function):
13403 Doc fixes.
13404 (feedmail-spray-via-bbdb, feedmail-buffer-to-smtp)
13405 (feedmail-vm-mail-mode, feedmail-message-action-scroll-up)
13406 (feedmail-message-action-scroll-down): New functions.
13407 (feedmail-queue-directory, feedmail-queue-draft-directory):
13408 Use expand-file-name.
13409 (feedmail-prompt-before-queue-standard-alist): Add scroll entries.
13410 Remove C-v help entry.
13411 (feedmail-queue-buffer-file-name): New variable.
13412 (feedmail-mail-send-hook-splitter, feedmail-buffer-to-binmail)
13413 (feedmail-buffer-to-smtpmail, feedmail-queue-express-to-draft)
13414 (feedmail-message-action-send-strong, feedmail-message-action-edit)
13415 (feedmail-message-action-draft, feedmail-message-action-draft-strong)
13416 (feedmail-message-action-queue, feedmail-message-action-queue-strong)
13417 (feedmail-message-action-toggle-spray)
13418 (feedmail-run-the-queue-no-prompts)
13419 (feedmail-run-the-queue-global-prompt, feedmail-queue-reminder)
13420 (feedmail-look-at-queue-directory, feedmail-queue-subject-slug-maker)
13421 (feedmail-create-queue-filename, feedmail-rfc822-time-zone):
13422 (feedmail-fiddle-header, feedmail-give-it-to-buffer-eater)
13423 (feedmail-envelope-deducer, feedmail-fiddle-from)
13424 (feedmail-fiddle-sender, feedmail-default-date-generator)
13425 (feedmail-fiddle-date, feedmail-fiddle-message-id)
13426 (feedmail-fiddle-spray-address)
13427 (feedmail-fiddle-list-of-spray-fiddle-plexes)
13428 (feedmail-fiddle-list-of-fiddle-plexes)
13429 (feedmail-fill-to-cc-function, feedmail-fill-this-one)
13430 (feedmail-one-last-look, feedmail-fqm-p): Add debug calls.
13431 (feedmail-queue-runner-message-sender, feedmail-binmail-template):
13432 Change default. Doc fix.
13433 (feedmail-queue-runner-cleaner-upper): Use feedmail-say-chatter.
13434 (feedmail-binmail-linuxish-template): New constant.
13435 (feedmail-buffer-to-sendmail): Doc fix. Add debug call.
13436 Respect feedmail-sendmail-f-doesnt-sell-me-out.
13437 (feedmail-send-it): Add debug call.
13438 Use feedmail-queue-buffer-file-name, and
13439 feedmail-send-it-immediately-wrapper.
13440 (feedmail-message-action-send): Add debug call.
13441 Use feedmail-send-it-immediately-wrapper.
13442 (feedmail-queue-express-to-queue): Add debug call.
13443 Run feedmail-queue-express-hook.
13444 (feedmail-message-action-help): Add debug call. Use feedmail-p-h-b-n.
13445 (feedmail-message-action-help-blat):
13446 Rename from feedmail-queue-send-edit-prompt-help-first.
13447 (feedmail-run-the-queue): Add debug call. Set buffer-file-type.
13448 Check line-endings. Handle errors better.
13449 (feedmail-queue-reminder-brief, feedmail-queue-reminder-medium):
13450 Doc fix. Add debug call.
13451 (feedmail-queue-send-edit-prompt): Doc fix. Add debug call.
13452 Use feedmail-queue-send-edit-prompt-inner.
13453 (feedmail-queue-runner-prompt, feedmail-scroll-buffer): New functions.
13454 (feedmail-queue-send-edit-prompt-inner): New function, extracted
13455 from feedmail-queue-send-edit-prompt.
13456 (feedmail-queue-send-edit-prompt-help)
13457 (feedmail-queue-send-edit-prompt-help-later): Remove functions.
13458 (feedmail-tidy-up-slug): Add debug call.
13459 Respect feedmail-queue-slug-suspect-regexp.
13460 (feedmail-queue-subject-slug-maker): Use buffer-substring-no-properties.
13461 (feedmail-dump-message-to-queue): Add debug call.
13462 Expand queue-directory.
13463 (feedmail-dump-message-to-queue): Change message slightly.
13464 Use feedmail-say-chatter.
13465 (feedmail-rfc822-date): Add debug call. Bind system-time-locale.
13466 (feedmail-send-it-immediately-wrapper): New function.
13467 (feedmail-send-it-immediately): Add debug calls. Use let not let*.
13468 Insert empty string rather than newline. Handle full-frame case.
13469 Use catch/throw. Use feedmail-say-chatter.
13470 (feedmail-fiddle-from): Try mail-host-address.
13471 (feedmail-default-message-id-generator): Doc fix.
13472 Bind system-time-locale. Handle missing end.
13473 (feedmail-fiddle-x-mailer): Add debug call.
13474 Handle feedmail-x-mailer-line being nil.
13475 (feedmail-accume-n-nuke-header, feedmail-deduce-address-list):
13476 Add debug call. Use buffer-substring-no-properties.
13477 (feedmail-say-debug, feedmail-say-chatter): New functions.
13478 (feedmail-find-eoh): Give an explicit error.
13479
13480 2011-05-13 Ulf Jasper <ulf.jasper@web.de>
13481
13482 * net/newst-treeview.el (newsticker-treeview-face): Change default
13483 family from helvetica to sans.
13484 (newsticker-treeview-tool-bar-map): Move tool-bar icons to
13485 etc/images/newsticker.
13486
13487 * net/newst-reader.el (newsticker-feed-face): Change default
13488 family from helvetica to sans.
13489
13490 * net/newst-plainview.el (newsticker-new-item-face)
13491 (newsticker-old-item-face, newsticker-immortal-item-face)
13492 (newsticker-obsolete-item-face, newsticker-date-face)
13493 (newsticker-statistics-face): Change default family from
13494 helvetica to sans.
13495 (newsticker--plainview-tool-bar-map): Move tool-bar icons to
13496 etc/images/newsticker.
13497
13498 * net/newst-backend.el (newsticker--do-run-auto-mark-filter)
13499 (newsticker--process-auto-mark-filter-match): Tell user about
13500 auto-marking.
13501
13502 2011-05-13 Didier Verna <didier@xemacs.org>
13503
13504 Common Lisp indentation improvements on defmethod and lambda-lists.
13505 * emacs-lisp/cl-indent.el: Advertise the changes and remove obsolete
13506 TODO entries.
13507 (lisp-lambda-list-keyword-parameter-indentation)
13508 (lisp-lambda-list-keyword-parameter-alignment)
13509 (lisp-lambda-list-keyword-alignment): New customizable user options.
13510 (lisp-indent-defun-method): Improve docstring.
13511 (extended-loop-p): Fix comment.
13512 (lisp-indent-lambda-list-keywords-regexp): New variable.
13513 (lisp-indent-lambda-list): New function.
13514 (lisp-indent-259): Use it.
13515 (lisp-indent-defmethod): Support for more than one
13516 method qualifier and properly indent methods lambda-lists.
13517 (defgeneric): Provide a missing common-lisp-indent-function property.
13518
13519 2011-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
13520
13521 * thingatpt.el (bounds-of-thing-at-point): Return nil rather than
13522 bounds for the empty string (bug#8667).
13523
13524 2011-05-13 Glenn Morris <rgm@gnu.org>
13525
13526 * mail/feedmail.el (feedmail-buffer-to-sendmail): Require sendmail.
13527
13528 * mail/sendmail.el (sendmail-program): Try executable-find first.
13529 (sendmail-send-it): `sendmail-program' cannot be unbound.
13530
13531 * calendar/appt.el (appt-make-list): Simplify.
13532 (appt-time-msg-list): Doc fix.
13533 (appt-check): Change mode-line message at the time of the appointment.
13534
13535 2011-05-12 Andreas Schwab <schwab@linux-m68k.org>
13536
13537 * progmodes/ld-script.el (ld-script-keywords)
13538 (ld-script-builtins): Update keywords list.
13539
13540 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13541
13542 * progmodes/grep.el (grep-filter): Don't trip on partial lines.
13543
13544 * shell.el (shell-completion-vars): New function.
13545 (shell-mode):
13546 * simple.el (read-shell-command): Use it.
13547 (blink-matching-open): No need for " [...]" in minibuffer-message.
13548
13549 2011-05-12 Glenn Morris <rgm@gnu.org>
13550
13551 * calendar/appt.el (appt-now-displayed): Remove pointless variable.
13552 (appt-check): Simplify.
13553
13554 2011-05-12 Eli Zaretskii <eliz@gnu.org>
13555
13556 * vc/smerge-mode.el (smerge-resolve): Use null-device rather than a
13557 literal "/dev/null".
13558
13559 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13560
13561 * emacs-lisp/lisp.el (lisp-complete-symbol, lisp-completion-at-point):
13562 Fix typo.
13563
13564 2011-05-12 Ralph Schleicher <rs@ralph-schleicher.de>
13565
13566 * progmodes/which-func.el (which-function):
13567 Use add-log-current-defun instead of add-log-current-defun-function,
13568 which might not be defined (Bug#8260).
13569
13570 2011-05-12 Glenn Morris <rgm@gnu.org>
13571
13572 * emacs-lisp/bytecomp.el (byte-compile-file-form-defmumble):
13573 Let byte-compile-initial-macro-environment always take precedence.
13574
13575 2011-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
13576
13577 * net/rcirc.el: Add support for SSL/TLS connections.
13578 (rcirc-server-alist): New field `encryption'.
13579 (rcirc): Check `encryption' settings.
13580 (rcirc-connect): New arg `encryption'. Use open-network-stream.
13581 Merge make-local-variable into `set'.
13582 (rcirc--connection-open-p): New function.
13583 (rcirc-send-string, rcirc-clean-up-buffer): Use it to handle case where
13584 the process is not a network process (e.g. running gnutls-cli).
13585 (set-rcirc-decode-coding-system, set-rcirc-encode-coding-system):
13586 Make rcirc-(en|de)code-coding-system local here.
13587 (rcirc-mode): Merge make-local-variable into `set'.
13588 (rcirc-parent-buffer): Make permanent buffer-local.
13589 (rcirc-multiline-minor-mode): Don't do it here.
13590 (rcirc-switch-to-server-buffer): Don't switch to a random buffer if
13591 there's no server buffer.
13592
13593 2011-05-11 Glenn Morris <rgm@gnu.org>
13594
13595 * newcomment.el (comment-kill): Prefix "unused" local.
13596
13597 * term/w32console.el (get-screen-color): Declare.
13598
13599 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
13600 Handle symbol elements of byte-compile-initial-macro-environment.
13601
13602 2011-05-10 Leo Liu <sdl.web@gmail.com>
13603
13604 * bookmark.el (bookmark-bmenu-mode-map):
13605 Bind bookmark-bmenu-search to `/'.
13606
13607 * mail/footnote.el: Convert to utf-8 encoding.
13608 (footnote-unicode-string, footnote-unicode-regexp): New variable.
13609 (Footnote-unicode): New function.
13610 (footnote-style-alist): Add unicode style to the list.
13611 (footnote-style): Doc fix.
13612
13613 2011-05-10 Jim Meyering <meyering@redhat.com>
13614
13615 Fix doubled-word typos.
13616 * international/quail.el (quail-insert-kbd-layout): and and -> and
13617 * kermit.el: and and -> and
13618 * net/ldap.el (ldap-search-internal): to to -> to
13619 * progmodes/vhdl-mode.el (vhdl-offsets-alist): Likewise.
13620 * progmodes/js.el (js-mode): and and -> and
13621 * textmodes/artist.el (artist-move-to-xy): at at -> at
13622 (artist-draw-region-trim-line-endings): if if -> if
13623 And Safetyc -> Safety.
13624 * textmodes/reftex-dcr.el (reftex-view-crossref): at at -> at a
13625
13626 2011-05-10 Glenn Morris <rgm@gnu.org>
13627 Stefan Monnier <monnier@iro.umontreal.ca>
13628
13629 * files.el (hack-one-local-variable-eval-safep):
13630 Consider "eval: (foo-mode)" to be safe. (Bug#8613)
13631
13632 2011-05-10 Glenn Morris <rgm@gnu.org>
13633
13634 * calendar/diary-lib.el (diary-list-entries-hook)
13635 (diary-mark-entries-hook, diary-nongregorian-listing-hook)
13636 (diary-nongregorian-marking-hook, diary-list-entries)
13637 (diary-include-other-diary-files, diary-mark-entries)
13638 (diary-mark-included-diary-files): Doc fixes.
13639
13640 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
13641
13642 * misc.el: Require tabulated-list.el during compilation.
13643
13644 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
13645
13646 * progmodes/compile.el (compilation-start):
13647 Run compilation-filter-hook for the async case too.
13648 (compilation-filter-hook): Doc fix.
13649
13650 2011-05-09 Deniz Dogan <deniz@dogan.se>
13651
13652 * wdired.el: Remove outdated installation comment. Fix usage
13653 comment.
13654
13655 2011-05-09 Juanma Barranquero <lekktu@gmail.com>
13656
13657 * misc.el: Implement new command `list-dynamic-libraries'.
13658 (list-dynamic-libraries--loaded-only-p): New variable.
13659 (list-dynamic-libraries--refresh): New function.
13660 (list-dynamic-libraries): New command.
13661
13662 2011-05-09 Chong Yidong <cyd@stupidchicken.com>
13663
13664 * progmodes/compile.el (compilation-error-regexp-alist-alist):
13665 Fix the ant regexp to handle end-line and end-column info from jikes.
13666 Re-introduce maven regexp. Give the ruby-Test::Unit regexp a
13667 higher priority to avoid clobbering by gnu.
13668
13669 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
13670
13671 * cus-face.el (custom-declare-face): Call custom-theme-recalc-face
13672 if the face has existing theme settings (Bug#8454).
13673
13674 2011-05-08 Ralph Schleicher <rs@ralph-schleicher.de>
13675
13676 * progmodes/perl-mode.el (perl-imenu-generic-expression):
13677 Only match variables declared via `my' or `our' (Bug#8261).
13678
13679 * net/browse-url.el (browse-url-of-dired-file): Allow browsing of
13680 special file names `.' and `..' (Bug#8259).
13681
13682 2011-05-08 Chong Yidong <cyd@stupidchicken.com>
13683
13684 * progmodes/grep.el (grep-mode-font-lock-keywords):
13685 Remove buffer-changing entries.
13686 (grep-filter): New function.
13687 (grep-mode): Add it to compilation-filter-hook.
13688
13689 * progmodes/compile.el (compilation-filter-hook)
13690 (compilation-filter-start): New defvars.
13691 (compilation-filter): Call compilation-filter-hook prior to
13692 updating the process mark.
13693
13694 2011-05-08 Stefan Monnier <monnier@iro.umontreal.ca>
13695
13696 * emacs-lisp/eieio.el (defmethod): Fix typo in last change.
13697
13698 2011-05-07 Eli Zaretskii <eliz@gnu.org>
13699
13700 * mail/sendmail.el (send-mail-function): On MS-Windows, default to
13701 mailclient-send-it even if window-system is nil. (Bug#8595)
13702
13703 * term/w32console.el (terminal-init-w32console):
13704 Call get-screen-color and use its output to set the frame
13705 background-mode. (Bug#8597)
13706
13707 2011-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
13708
13709 Make bytecomp.el understand that defmethod defines funs (bug#8631).
13710 * emacs-lisp/eieio.el (eieio--defalias, eieio--defgeneric-init-form):
13711 New functions.
13712 (defgeneric, eieio--defmethod): Use them.
13713 (eieio-defgeneric): Remove.
13714 (defmethod): Call defgeneric in a way visible to the byte-compiler.
13715
13716 2011-05-07 Glenn Morris <rgm@gnu.org>
13717
13718 * calendar/timeclock.el (timeclock-log-data): Remove unused local.
13719 Use let rather than let*.
13720 (timeclock-find-discrep): Remove unused local.
13721
13722 * calendar/diary-lib.el (diary-comment-start): Doc fix.
13723
13724 * calendar/appt.el (appt-time-msg-list): Doc fix.
13725
13726 2011-05-06 Noah Friedman <friedman@splode.com>
13727
13728 * apropos.el (apropos-print-doc): Only use
13729 emacs-lisp-docstring-fill-column when it is bound to an integer,
13730 per that variable's documentation.
13731
13732 2011-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13733
13734 * lpr.el (print-region-1): Echo lpr-program's output, so error messages
13735 and warnings are not silently discarded (e.g. use -d instead of -P).
13736
13737 2011-05-06 Glenn Morris <rgm@gnu.org>
13738
13739 * calendar/appt.el (appt-message-warning-time): Doc fix.
13740 (appt-warning-time-regexp): New option.
13741 (appt-make-list): Respect appt-message-warning-time.
13742
13743 * calendar/diary-lib.el (diary-comment-start, diary-comment-end):
13744 New options.
13745 (diary-add-to-list): Strip comments from the displayed string.
13746 (diary-mode): Set comment-start and comment-end.
13747
13748 * vc/diff-mode.el (smerge-refine-subst): Declare.
13749 (diff-refine-hunk): Don't require smerge-mode when compiling.
13750
13751 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
13752
13753 * simple.el (list-processes): Return nil as the docstring says.
13754
13755 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
13756
13757 * net/ange-ftp.el (ange-ftp-binary-file-name-regexp): Set default
13758 to "".
13759 (ange-ftp-write-region, ange-ftp-insert-file-contents)
13760 (ange-ftp-copy-file-internal): Use only `ange-ftp-binary-file' for
13761 determining of binary transfer. (Bug#7383)
13762
13763 2011-05-05 Michael Albinus <michael.albinus@gmx.de>
13764
13765 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13766 Fix port computation bug. (Bug#8618)
13767
13768 2011-05-05 Glenn Morris <rgm@gnu.org>
13769
13770 * allout-widgets.el (allout-widgets-mode-inhibit): Declare before use.
13771
13772 * simple.el (shell-dynamic-complete-functions)
13773 (comint-dynamic-complete-functions): Declare.
13774
13775 * net/network-stream.el (gnutls-negotiate):
13776 * simple.el (tabulated-list-print): Fix declarations.
13777
13778 * progmodes/gud.el (syntax-symbol, syntax-point):
13779 Remove unnecessary and incorrect declarations.
13780
13781 * emacs-lisp/check-declare.el (check-declare-scan):
13782 Handle byte-compile-initial-macro-environment in bytecomp.el
13783
13784 2011-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
13785
13786 Fix earlier half-done eieio-defmethod change (bug#8338).
13787 * emacs-lisp/eieio.el (eieio--defmethod): Rename from eieio-defmethod.
13788 Streamline and change calling convention.
13789 (defmethod): Adjust accordingly and simplify.
13790 (eieio-defclass): Fix broken calls to eieio-defmethod and redirect to
13791 new eieio--defmethod.
13792 (slot-boundp): Minor CSE simplification.
13793
13794 2011-05-05 Milan Zamazal <pdm@zamazal.org>
13795
13796 * progmodes/glasses.el (glasses-separate-capital-groups): New option.
13797 (glasses-make-readable): Use glasses-separate-capital-groups.
13798
13799 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
13800
13801 * emacs-lisp/warnings.el (warning-level-aliases): Reflow docstring.
13802 (warning-series): Doc fix.
13803 (display-warning): Don't try to create the buffer if we just found it.
13804
13805 2011-05-04 Chong Yidong <cyd@stupidchicken.com>
13806
13807 * emacs-lisp/autoload.el (generated-autoload-file): Set to nil.
13808 (autoload-find-generated-file): New function.
13809 (generate-file-autoloads): Bind generated-autoload-file to
13810 buffer-file-name.
13811 (update-file-autoloads, update-directory-autoloads):
13812 Use autoload-find-generated-file. If called interactively, prompt for
13813 output file (Bug#7989).
13814 (batch-update-autoloads): Doc fix.
13815
13816 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
13817
13818 * term/w32-win.el (dynamic-library-alist): Add `gnutls'.
13819
13820 2011-05-04 Glenn Morris <rgm@gnu.org>
13821
13822 * calendar/diary-lib.el (diary-fancy-date-pattern): Turn it into a
13823 function, so it follows changes in calendar-date-style.
13824 (diary-fancy-date-matcher): New function.
13825 (diary-fancy-font-lock-keywords): Use diary-fancy-date-matcher.
13826 (diary-fancy-font-lock-fontify-region-function):
13827 Use diary-fancy-date-pattern as a function.
13828
13829 * calendar/diary-lib.el (diary-fancy-date-pattern): Do not use
13830 non-numbers for `year' etc pseudo-variables. (Bug#8583)
13831
13832 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13833
13834 * net/gnutls.el (gnutls-negotiate): Use CL-style keyword arguments
13835 instead of positional arguments. Allow :keylist and :crlfiles
13836 arguments.
13837 (open-gnutls-stream): Call it.
13838
13839 * net/network-stream.el (network-stream-open-starttls): Adjust to
13840 call `gnutls-negotiate' with :process and :hostname arguments.
13841
13842 2011-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13843
13844 * minibuffer.el (completion--message): New function.
13845 (completion--do-completion, minibuffer-complete)
13846 (minibuffer-force-complete, minibuffer-complete-word): Use it.
13847 (completion--do-completion): Don't ignore completion-auto-help when in
13848 icomplete-mode.
13849
13850 * whitespace.el (whitespace-trailing-regexp): Don't rely on the
13851 internal encoding (e.g. tibetan zero is not whitespace).
13852 (global-whitespace-mode): Prefer save-current-buffer.
13853 (whitespace-trailing-regexp): Remove useless save-match-data.
13854 (whitespace-empty-at-bob-regexp): Minor simplification.
13855
13856 2011-05-03 Chong Yidong <cyd@stupidchicken.com>
13857
13858 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix (Bug#7989).
13859
13860 2011-05-03 Agustín Martín Domingo <agustin.martin@hispalinux.es>
13861
13862 * textmodes/ispell.el (ispell-add-per-file-word-list):
13863 Use `concat' to create string for insertion.
13864
13865 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13866
13867 * textmodes/bibtex.el (bibtex-fill-field-bounds, bibtex-fill-entry):
13868 Avoid open-line which runs post-self-insert-hook.
13869 (bibtex-fill-entry): Remove unused `end' var.
13870
13871 2011-05-03 Dirk Ullrich <dirk.ullrich@googlemail.com> (tiny change)
13872
13873 * textmodes/ispell.el (ispell-add-per-file-word-list):
13874 Protect against `nil' value of `comment-start' (Bug#8579).
13875
13876 2011-05-03 Leo Liu <sdl.web@gmail.com>
13877
13878 * isearch.el (isearch-yank-pop): New command.
13879 (isearch-mode-map): Bind it to `M-y'.
13880 (isearch-forward): Mention it.
13881
13882 2011-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
13883
13884 * simple.el (minibuffer-complete-shell-command): Remove.
13885 (minibuffer-local-shell-command-map): Use completion-at-point.
13886 (read-shell-command): Setup completion vars here instead.
13887 (read-expression-map): Bind TAB to symbol completion.
13888
13889 * textmodes/ispell.el (lookup-words): Use with-temp-buffer; signal
13890 error directly rather via storing it into `results'.
13891
13892 2011-05-02 Leo Liu <sdl.web@gmail.com>
13893
13894 * vc/diff.el: Fix description.
13895
13896 2011-05-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13897
13898 * server.el (server-eval-at): New function.
13899
13900 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13901
13902 * net/network-stream.el (open-network-stream): Take a :nowait
13903 parameter and pass it on to `make-network-process'.
13904 (network-stream-open-plain): Ditto.
13905
13906 2011-04-30 Andreas Schwab <schwab@linux-m68k.org>
13907
13908 * faces.el (face-spec-set-match-display): Don't match toolkit
13909 options on terminal frames.
13910
13911 2011-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
13912
13913 * progmodes/pascal.el: Use lexical binding.
13914 (pascal-mode-map): Remove author preferences.
13915
13916 * pcomplete.el (pcomplete-std-complete): Don't abuse
13917 completion-at-point.
13918
13919 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
13920
13921 * calc/calccomp.el (math-comp-to-string-flat-term): Simplify by
13922 removing code that has been dead since 1991 or so.
13923
13924 * startup.el (command-line): When warning about "_emacs", use a
13925 delayed warning to allow the user to filter it out.
13926
13927 2011-04-28 Deniz Dogan <deniz@dogan.se>
13928
13929 * net/rcirc.el (rcirc-handler-353): Fix bug for channels which the
13930 user has not joined.
13931
13932 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13933
13934 * pcomplete.el (pcomplete-completions-at-point): Return nil if there
13935 aren't any completions at point.
13936
13937 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
13938
13939 * subr.el (display-delayed-warnings): New function.
13940 (delayed-warnings-hook): New variable.
13941
13942 2011-04-28 Stefan Monnier <monnier@iro.umontreal.ca>
13943
13944 * minibuffer.el (completion-at-point, completion-help-at-point):
13945 Don't presume that a given completion-at-point-function will always
13946 use the same calling convention.
13947
13948 * pcomplete.el (pcomplete-completions-at-point):
13949 Obey pcomplete-ignore-case. Don't call pcomplete-norm-func unless
13950 pcomplete-seen is non-nil.
13951 (pcomplete-comint-setup): Also recognize the new comint/shell
13952 completion functions.
13953 (pcomplete-do-complete): Don't call pcomplete-norm-func unless
13954 pcomplete-seen is non-nil.
13955
13956 2011-04-27 Niels Giesen <niels.giesen@gmail.com>
13957
13958 * calendar/icalendar.el (diary-lib): Add require statement.
13959 (icalendar--create-uid): Read out a uid from a text-property on
13960 the first character in the entry. This allows for code to add its
13961 own uid to the entry.
13962 (icalendar--convert-float-to-ical): Add export of
13963 `diary-float'-entries save for those with the optional DAY
13964 argument.
13965
13966 2011-04-27 Daniel Colascione <dan.colascione@gmail.com>
13967
13968 * subr.el (shell-quote-argument): Use alternate escaping strategy
13969 when we spot a variable reference in a string.
13970
13971 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13972
13973 * cus-start.el (all): Define customization for debug-on-event.
13974
13975 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
13976
13977 * subr.el (shell-quote-argument): Escape correctly under Windows.
13978
13979 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13980
13981 * emulation/cua-base.el (cua-selection-mode): Make it toggle again.
13982
13983 2011-04-25 Michael Albinus <michael.albinus@gmx.de>
13984
13985 * net/tramp.el (tramp-process-actions): Add POS argument.
13986 Delete region between POS and (pos).
13987
13988 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
13989 Use `nil' position in `tramp-process-actions' call.
13990 (tramp-maybe-open-connection): Call `tramp-process-actions' with pos.
13991
13992 * net/tramp-smb.el (tramp-smb-maybe-open-connection): Use `nil'
13993 position in `tramp-process-actions' call.
13994
13995 * net/trampver.el: Update release number.
13996
13997 2011-04-25 Stefan Monnier <monnier@iro.umontreal.ca>
13998
13999 * custom.el (defcustom): Obey lexical-binding.
14000
14001 Fix octave-inf completion problems reported by Alexander Klimov.
14002 * progmodes/octave-inf.el (inferior-octave-mode-syntax-table):
14003 Inherit from octave-mode-syntax-table.
14004 (inferior-octave-mode): Set info-lookup-mode.
14005 (inferior-octave-completion-at-point): New function.
14006 (inferior-octave-complete): Use it and completion-in-region.
14007 (inferior-octave-dynamic-complete-functions): Use it as well, and use
14008 comint-filename-completion.
14009 * progmodes/octave-mod.el (octave-mode-syntax-table): Use _ syntax for
14010 symbol elements which shouldn't be word elements.
14011 (octave-font-lock-keywords, octave-beginning-of-defun)
14012 (octave-function-header-regexp): Adjust regexps accordingly.
14013 (octave-mode-map): Also use info-lookup-symbol for C-c C-h.
14014
14015 2011-04-25 Juanma Barranquero <lekktu@gmail.com>
14016
14017 * net/gnutls.el (gnutls-errorp): Declare before first use.
14018
14019 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14020
14021 * net/gnutls.el (gnutls-negotiate): Add hostname, verify-flags,
14022 verify-error, and verify-hostname-error parameters. Check whether
14023 default trustfile exists before going to use it. Add missing
14024 argument to gnutls-message-maybe call. Return value.
14025 Reported by Claudio Bley <claudio.bley@gmail.com>.
14026 (open-gnutls-stream): Add usage example.
14027
14028 * net/network-stream.el (network-stream-open-starttls): Give host
14029 parameter to `gnutls-negotiate'.
14030 (gnutls-negotiate): Adjust `gnutls-negotiate' declaration.
14031 * subr.el (shell-quote-argument): Escape correctly under Windows.
14032
14033 2011-04-24 Daniel Colascione <dan.colascione@gmail.com>
14034
14035 * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
14036 Use correct match group (bug#8438).
14037
14038 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14039
14040 * emacs-lisp/package.el (package-built-in-p): Fix typo.
14041 (package-menu--generate): New arg specifying packages to show.
14042 (package-menu-refresh, package-menu-execute, list-packages):
14043 Callers changed.
14044 (package-show-package-list): New function, replacing deleted
14045 package--list-packages (renamed because it is non-internal).
14046
14047 * finder.el (finder-list-matches): Use package-show-package-list
14048 instead of deleted package--list-packages.
14049
14050 * vc/vc-annotate.el (vc-annotate-goto-line): New command.
14051 Based on a previous implementation by Juanma Barranquero (Bug#8366).
14052 (vc-annotate-mode-map): Bind it to RET.
14053
14054 2011-04-24 Uday S Reddy <u.s.reddy@cs.bham.ac.uk> (tiny change)
14055
14056 * progmodes/etags.el (next-file): Don't use set-buffer to change
14057 buffers (Bug#8478).
14058
14059 2011-04-24 Chong Yidong <cyd@stupidchicken.com>
14060
14061 * files.el (auto-mode-alist): Use js-mode for .json (Bug#8529).
14062
14063 * apropos.el (apropos-label-face): Avoid variable-pitch face.
14064 (apropos-accumulator): Doc fix.
14065 (apropos-function, apropos-macro, apropos-command)
14066 (apropos-variable, apropos-face, apropos-group, apropos-widget)
14067 (apropos-plist): Add face property.
14068 (apropos-symbols-internal): Fix indentation.
14069 (apropos-print): Simplify help, and recognize apropos-multi-type.
14070 (apropos-print-doc): Use button-type-get to extract the button's
14071 face property. Fill docstring (Bug#8352).
14072
14073 2011-04-23 Juanma Barranquero <lekktu@gmail.com>
14074
14075 * buff-menu.el (Buffer-menu--buffers): Fix typo in docstring (bug#8535).
14076
14077 * play/mpuz.el (mpuz-silent): Doc fix.
14078 (mpuz-mode-map): Use mapc.
14079 (mpuz-put-number-on-board): Rename parameter L to COLUMNS.
14080 (mpuz-letter-to-digit, mpuz-check-all-solved, mpuz-create-buffer):
14081 Fix typos in docstrings.
14082
14083 * play/doctor.el (doc$, doctor-$, doctor-read-print, doctor-read-token)
14084 (doctor-nounp, doctor-pronounp): Fix typos in docstrings.
14085
14086 * mouse-drag.el (mouse-drag-throw): Fix typo in docstring.
14087
14088 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
14089
14090 * minibuffer.el (completion--do-completion): Avoid the "Next char
14091 not unique" prompt if icomplete-mode is enabled (Bug#5849).
14092
14093 * mouse.el (mouse-drag-mode-line-1): Make sure that if we push
14094 mouse-2 into unread-command-events, it is interpreted correctly.
14095
14096 * image-mode.el (image-type, image-mode-map, image-minor-mode-map)
14097 (image-toggle-display): Doc fix.
14098
14099 2011-04-23 Stephen Berman <stephen.berman@gmx.net>
14100
14101 * textmodes/page.el (what-page): Use line-number-at-pos to
14102 calculate line number (Bug#6825).
14103
14104 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14105
14106 * eshell/esh-mode.el (find-tag-interactive): Declare function.
14107 (eshell-find-tag): Remove `with-no-warnings', unneeded now.
14108 Pass argument NO-DEFAULT to `find-tag-interactive'.
14109
14110 2011-04-22 Juanma Barranquero <lekktu@gmail.com>
14111
14112 Lexical-binding cleanup.
14113
14114 * progmodes/ada-mode.el (ada-after-change-function, ada-loose-case-word)
14115 (ada-no-auto-case, ada-capitalize-word, ada-untab, ada-narrow-to-defun):
14116 * progmodes/ada-prj.el (ada-prj-initialize-values)
14117 (ada-prj-display-page, ada-prj-field-modified, ada-prj-display-help)
14118 (ada-prj-show-value):
14119 * progmodes/ada-xref.el (ada-find-any-references, ada-gdb-application):
14120 * progmodes/antlr-mode.el (antlr-with-displaying-help-buffer)
14121 (antlr-invalidate-context-cache, antlr-options-menu-filter)
14122 (antlr-language-option-extra, antlr-c++-mode-extra, antlr-run-tool):
14123 * progmodes/bug-reference.el (bug-reference-push-button):
14124 * progmodes/fortran.el (fortran-line-length):
14125 * progmodes/glasses.el (glasses-change):
14126 * progmodes/octave-mod.el (octave-fill-paragraph):
14127 * progmodes/python.el (python-mode, python-pdbtrack-track-stack-file)
14128 (python-pdbtrack-grub-for-buffer, python-sentinel):
14129 * progmodes/sql.el (sql-save-connection):
14130 * progmodes/tcl.el (tcl-indent-command, tcl-popup-menu):
14131 * progmodes/xscheme.el (xscheme-enter-debugger-mode):
14132 Mark unused parameters.
14133
14134 * progmodes/compile.el (compilation--flush-directory-cache)
14135 (compilation--flush-parse, compile-internal): Mark unused parameters.
14136 (compilation-buffer-name): Rename parameter MODE-NAME to NAME-OF-MODE.
14137 (compilation-next-error-function): Remove unused variable `timestamp'.
14138
14139 * progmodes/cpp.el (cpp-parse-close): Remove unused variable `begin'.
14140 (cpp-signal-read-only, cpp-grow-overlay): Mark unused parameters.
14141
14142 * progmodes/dcl-mode.el (dcl-end-of-command):
14143 Remove unused variable `start'.
14144 (dcl-calc-command-indent-multiple, dcl-calc-cont-indent-relative)
14145 (dcl-option-value-basic, dcl-option-value-offset)
14146 (dcl-option-value-margin-offset, dcl-option-value-comment-line):
14147 Mark unused parameters.
14148 (dcl-save-local-variable): Remove unused variable `val'.
14149 (mode): Declare.
14150
14151 * progmodes/delphi.el (delphi-save-state, delphi-after-change):
14152 Mark unused parameters.
14153 (delphi-ignore-changes): Move before first use.
14154 (delphi-charset-token-at): Remove unused variable `start'.
14155 (delphi-else-start): Remove unused variable `if-count'.
14156 (delphi-comment-block-start, delphi-comment-block-end):
14157 Remove unused variable `kind'.
14158 (delphi-indent-line): Remove unused variable `new-point'.
14159
14160 * progmodes/ebrowse.el (ebrowse-files-list)
14161 (ebrowse-list-of-matching-members, ebrowse-tags-list-members-in-file):
14162 Mark unused parameters. Don't quote `lambda'.
14163 (ebrowse-sort-tree-list, ebrowse-same-tree-member-buffer-list):
14164 Don't quote `lambda'.
14165 (ebrowse-revert-tree-buffer-from-file, ebrowse-tags-choose-class)
14166 (ebrowse-goto-visible-member/all-member-lists): Mark unused parameters.
14167 (ebrowse-create-tree-buffer): Rename parameter OBARRAY to CLASSES.
14168 (ebrowse-toggle-mark-at-point): Remove unused variable `pnt'.
14169 Use `ignore-errors'.
14170 (ebrowse-frozen-tree-buffer-name, ebrowse-find-source-file)
14171 (ebrowse-view/find-file-and-search-pattern)
14172 (ebrowse-view/find-member-declaration/definition):
14173 Rename parameter TAGS-FILE-NAME to TAGS-FILE.
14174 (ebrowse-find-class-declaration, ebrowse-view-class-declaration):
14175 Rename parameter PREFIX-ARG to PREFIX.
14176 (ebrowse-tags-read-name): Remove unused variables `start' and
14177 `member-info'.
14178 (ebrowse-display-member-buffer): Rename variable `tags-file-name'
14179 to `tags-file'.
14180
14181 * progmodes/etags.el (local-find-tag-hook): Declare.
14182 (tag-partial-file-name-match-p, tag-any-match-p, list-tags):
14183 Mark unused parameters.
14184
14185 * progmodes/executable.el (compilation-error-regexp-alist): Declare.
14186 (executable-interpret): Mark unused parameter.
14187
14188 * progmodes/flymake.el (flymake-process-sentinel)
14189 (flymake-after-change-function)
14190 (flymake-create-temp-with-folder-structure)
14191 (flymake-get-include-dirs-dot): Mark unused parameters.
14192 (flymake-safe-delete-directory): Remove unused variable `err'.
14193
14194 * progmodes/gdb-mi.el (speedbar-change-initial-expansion-list)
14195 (speedbar-timer-fn, speedbar-line-text)
14196 (speedbar-change-expand-button-char, speedbar-delete-subblock)
14197 (speedbar-center-buffer-smartly): Declare functions.
14198 (gdb-find-watch-expression): Remove unused variable `array'.
14199 (gdb-edit-value, gdb-gdb, gdb-ignored-notification, gdb-thread-created)
14200 (gdb-starting): Mark unused parameters.
14201 (gud-gdbmi-marker-filter): Remove unused variable `output-record'.
14202 (gdb-table-string): Remove unused variable `res'.
14203 (gdb-place-breakpoints): Remove unused variables `flag' and `bptno'.
14204 (gdb-disassembly-handler-custom): Remove unused variable `pos'.
14205 (gdb-display-buffer): Remove unused variable `cur-size'.
14206
14207 * progmodes/gud.el (gud-def): Use `defalias' instead of `defun' to
14208 allow lexical-binding compilation.
14209 (gud-expansion-speedbar-buttons, gud-gdb-goto-stackframe)
14210 (gud-dbx-massage-args, gud-xdb-massage-args, gud-perldb-massage-args)
14211 (gud-jdb-massage-args, gud-jdb-find-source, gud-find-class):
14212 Mark unused parameters.
14213 (gud-gdb-marker-filter): Remove unused variable `match'.
14214 (gud-find-class): Bind `syntax-symbol' and `syntax-point' to suitable
14215 lambda expressions and funcall them, instead of using `fset'.
14216
14217 * progmodes/hideif.el (hif-parse-if-exp): Rename parameter
14218 HIF-TOKEN-LIST to TOKEN-LIST and let-bind `hif-token-list'.
14219
14220 * progmodes/hideshow.el (hs-hide-block-at-point): Remove unused
14221 variable `header-beg'; use `let'.
14222
14223 * progmodes/icon.el (indent-icon-exp): Remove unused variables
14224 `restart', `last-sexp' and `at-do'.
14225
14226 * progmodes/js.el (js--debug): Mark unused parameter.
14227 (js--parse-state-at-point): Remove unused variable `bound'; use `let'.
14228 (js--splice-into-items): Remove unused variable `item'.
14229 (js--read-symbol, js--read-tab): Pass 1/-1 to `ido-mode', not t/nil.
14230
14231 * progmodes/make-mode.el (makefile-make-font-lock-keywords):
14232 Rename parameter FONT-LOCK-KEYWORDS to FL-KEYWORDS.
14233 (makefile-complete): Remove unused variable `try'.
14234 (makefile-fill-paragraph, makefile-match-function-end):
14235 Mark unused parameters.
14236
14237 * progmodes/octave-inf.el (inferior-octave-complete):
14238 Remove unused variable `proc'.
14239 (inferior-octave-output-digest): Mark unused parameter.
14240
14241 * progmodes/perl-mode.el (perl-calculate-indent):
14242 Remove unused variable `err'.
14243
14244 * progmodes/prolog.el (prolog-mode-keybindings-inferior)
14245 (prolog-indent-line): Mark unused parameters.
14246 (prolog-indent-line): Remove unused variable `beg'.
14247
14248 * progmodes/ps-mode.el (reporter-prompt-for-summary-p)
14249 (reporter-dont-compact-list): Declare.
14250
14251 * progmodes/sh-script.el (sh-font-lock-quoted-subshell):
14252 Remove unused variable `char'.
14253 (sh-debug): Mark unused parameter.
14254 (sh-get-indent-info): Remove unused variable `start'.
14255 (sh-calculate-indent): Remove unused variable `var'.
14256
14257 * progmodes/simula.el (simula-popup-menu): Mark unused parameter.
14258 (simula-electric-keyword): Remove unused variable `null'.
14259 (simula-search-backward, simula-search-forward): Remove unused
14260 variables `begin' and `end'.
14261
14262 * progmodes/vera-mode.el (vera-guess-basic-syntax):
14263 Remove unused variable `pos'.
14264 (vera-electric-tab, vera-comment-uncomment-region):
14265 Mark unused parameters.
14266 (vera-electric-tab): Rename parameter PREFIX-ARG to PREFIX.
14267
14268 2011-04-22 Chong Yidong <cyd@stupidchicken.com>
14269
14270 * emacs-lisp/package.el (package--builtins, package-alist)
14271 (package-load-descriptor, package-built-in-p, package-activate)
14272 (define-package, package-installed-p)
14273 (package-compute-transaction, package-buffer-info)
14274 (package--push): Doc fix. Distinguish more clearly between
14275 version strings and version lists.
14276
14277 2011-04-21 Juanma Barranquero <lekktu@gmail.com>
14278
14279 Lexical-binding cleanup.
14280
14281 * play/5x5.el (5x5-make-random-solution, 5x5-make-mutate-current)
14282 (5x5-make-mutate-best):
14283 * play/fortune.el (fortune-in-buffer):
14284 * play/gomoku.el (gomoku-init-display):
14285 * play/solitaire.el (solitaire, solitaire-do-check):
14286 * play/tetris.el (tetris-default-update-speed-function):
14287 Mark unused parameters.
14288
14289 * play/bubbles.el (bubbles-mode): Set `show-trailing-whitespace'.
14290 (bubbles--shift): Remove unused variable `char-org'.
14291 (bubbles--set-faces): Remove unused variable `fg-col'. Simplify.
14292 (bubbles--show-images): Remove unused variable `char'.
14293
14294 * play/decipher.el (decipher-keypress, decipher-alphabet-keypress)
14295 (decipher-get-undo, decipher-set-map, decipher-complete-alphabet)
14296 (decipher-resync, decipher-loop-with-breaks, decipher--analyze)
14297 (decipher-analyze-buffer): Use ?\s.
14298 (decipher-make-checkpoint): Remove unused variable `mapping'.
14299
14300 * play/doctor.el (doctor-doc): Rename parameter DOCTOR-SENT to SENT.
14301
14302 * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
14303 Remove unused variable `result'; use `let'.
14304
14305 * play/gametree.el (gametree-current-layout, gametree-apply-layout):
14306 Rename parameter TOP-LEVEL to FROM-TOP-LEVEL; use `ignore-errors'.
14307 (gametree-children-shown-p, gametree-compute-reduced-score):
14308 Use `ignore-errors'.
14309
14310 * play/handwrite.el (ps-lpr-switches): Declare.
14311 (handwrite): Remove unused variables `pmin' and `lastp'.
14312
14313 * play/hanoi.el (hanoi-move-ring): Remove unused variable `total-steps'.
14314
14315 * play/landmark.el (landmark-init-display)
14316 (landmark-update-naught-weights): Mark unused parameters.
14317 (landmark-y): Remove unused variable `noise'. Simplify.
14318 (landmark-human-plays): Remove unused variable `score'.
14319
14320 * play/mpuz.el (mpuz-try-letter): Remove unused variable `message'.
14321 (mpuz-try-proposal): Remove unused variable `game'.
14322
14323 * play/zone.el (life-patterns): Declare.
14324
14325 2011-04-20 Juanma Barranquero <lekktu@gmail.com>
14326
14327 * vc/vc.el (ediff-vc-internal): Declare function.
14328
14329 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14330
14331 * shell.el: Use lexical-binding and std completion UI.
14332 (shell-filter-ctrl-a-ctrl-b): Work as a preoutput filter.
14333 (shell-mode): Put shell-filter-ctrl-a-ctrl-b on
14334 comint-preoutput-filter-functions rather than on
14335 comint-output-filter-functions.
14336 (shell-command-completion, shell--command-completion-data)
14337 (shell-filename-completion, shell-environment-variable-completion)
14338 (shell-c-a-p-replace-by-expanded-directory): New functions.
14339 (shell-dynamic-complete-functions, shell-dynamic-complete-command)
14340 (shell-dynamic-complete-filename, shell-replace-by-expanded-directory)
14341 (shell-dynamic-complete-environment-variable): Use them.
14342 (shell-dynamic-complete-as-environment-variable)
14343 (shell-dynamic-complete-as-command): Remove.
14344 (shell-match-partial-variable): Match past point.
14345 * comint.el: Clean up use of completion-at-point-functions.
14346 (comint-completion-at-point): New function.
14347 (comint-mode): Use it completion-at-point-functions.
14348 (comint-dynamic-complete): Make it obsolete.
14349 (comint-replace-by-expanded-history-before-point): Add dry-run arg.
14350 (comint-c-a-p-replace-by-expanded-history): New function.
14351 (comint-dynamic-complete-functions)
14352 (comint-replace-by-expanded-history): Use it.
14353 * minibuffer.el (completion-table-with-terminator): Allow dynamic
14354 termination strings. Try harder to avoid second try-completion.
14355 (completion-in-region-mode-map): Disable bindings that don't work yet.
14356
14357 * comint.el: Use lexical-binding. Require CL.
14358 (comint-dynamic-complete-functions): Use comint-filename-completion.
14359 (comint-completion-addsuffix): Tweak custom type.
14360 (comint-filename-completion, comint--common-suffix)
14361 (comint--common-quoted-suffix, comint--table-subvert)
14362 (comint--complete-file-name-data): New functions.
14363 (comint-dynamic-complete-as-filename, comint-dynamic-complete-filename)
14364 (comint-dynamic-list-filename-completions): Use them.
14365 (comint-dynamic-simple-complete): Make obsolete.
14366
14367 * minibuffer.el (completion-in-region-mode):
14368 Keep completion-in-region-mode--predicate global.
14369 (completion-in-region--postch):
14370 Assume completion-in-region-mode--predicate is not null.
14371
14372 * progmodes/flymake.el (flymake-start-syntax-check-process):
14373 Obey `dir'. Simplify.
14374
14375 * vc/vc.el (vc-version-ediff): Call ediff-vc-internal directly, since
14376 we're in VC after all.
14377
14378 2011-04-20 Christoph Scholtes <cschol2112@googlemail.com>
14379
14380 * vc/vc.el (vc-diff-build-argument-list-internal)
14381 (vc-version-ediff, vc-ediff): New commands.
14382 (vc-version-diff): Use vc-diff-build-argument-list-internal.
14383
14384 2011-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
14385
14386 * emacs-lisp/byte-opt.el (byte-decompile-bytecode-1): Remove dead code,
14387 add sanity check.
14388
14389 * obsolete/erc-hecomplete.el: Make obsolete.
14390 * obsolete/: Standardize obsolescence info in the header.
14391
14392 2011-04-20 Glenn Morris <rgm@gnu.org>
14393
14394 * calendar/solar.el (solar-horizontal-coordinates):
14395 Use the longitude argument rather than `calendar-longitude'.
14396 (solar-date-next-longitude): Remove unused locals.
14397
14398 2011-04-20 Vinicius Jose Latorre <viniciusjl@ig.com.br>
14399
14400 * whitespace.el: New version 13.2.1.
14401
14402 2011-04-20 felix <EmacsWiki> (tiny change)
14403
14404 * whitespace.el (global-whitespace-mode): Keep highlight when
14405 switching between major modes on a file.
14406
14407 2011-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
14408
14409 * progmodes/octave-mod.el (octave-in-comment-p, octave-in-string-p)
14410 (octave-not-in-string-or-comment-p): Use syntax-ppss so it works with
14411 multi-line comments as well.
14412
14413 2011-04-19 Juanma Barranquero <lekktu@gmail.com>
14414
14415 Lexical-binding cleanup.
14416
14417 * arc-mode.el (archive-mode-revert):
14418 * cmuscheme.el (scheme-interactively-start-process):
14419 * custom.el (custom-initialize-delay):
14420 * dnd.el (dnd-open-local-file, dnd-open-remote-url):
14421 * dos-w32.el (direct-print-region-helper, direct-print-region-function):
14422 * emacs-lock.el (emacs-lock-clear-sentinel):
14423 * ezimage.el (defezimage):
14424 * follow.el (follow-avoid-tail-recenter):
14425 * fringe.el (set-fringe-mode-1):
14426 * generic-x.el (bat-generic-mode-compile):
14427 * help-mode.el (help-info-variable, help-do-xref)
14428 (help-mode-revert-buffer):
14429 * help.el (view-emacs-todo):
14430 * iswitchb.el (iswitchb-completion-help):
14431 * jka-compr.el (jka-compr-make-temp-name, jka-compr-load):
14432 * kmacro.el (kmacro-cycle-ring-next, kmacro-cycle-ring-previous)
14433 (kmacro-delete-ring-head, kmacro-bind-to-key, kmacro-view-macro):
14434 * locate.el (locate-update):
14435 * longlines.el (longlines-encode-region)
14436 (longlines-after-change-function):
14437 * outline.el (outline-isearch-open-invisible):
14438 * ps-def.el (declare-function, charset-dimension, char-width)
14439 (encode-char):
14440 * ps-mule.el (ps-mule-plot-string):
14441 * recentf.el (recentf-make-menu-items, recentf-cancel-dialog)
14442 (recentf-edit-list-select, recentf-edit-list-validate)
14443 (recentf-open-files-action):
14444 * rect.el (delete-whitespace-rectangle-line)
14445 (rectangle-number-line-callback):
14446 * register.el (window-configuration-to-register)
14447 (frame-configuration-to-register):
14448 * scroll-bar.el (scroll-bar-mode, toggle-horizontal-scroll-bar):
14449 * select.el (xselect-convert-to-string, xselect-convert-to-length)
14450 (xselect-convert-to-targets, xselect-convert-to-delete)
14451 (xselect-convert-to-filename, xselect-convert-to-charpos)
14452 (xselect-convert-to-lineno, xselect-convert-to-colno)
14453 (xselect-convert-to-os, xselect-convert-to-host)
14454 (xselect-convert-to-user, xselect-convert-to-class)
14455 (xselect-convert-to-name, xselect-convert-to-integer)
14456 (xselect-convert-to-atom, xselect-convert-to-identity):
14457 * subr.el (declare, ignore, process-kill-without-query)
14458 (text-clone-maintain):
14459 * terminal.el (te-get-char, te-tic-sentinel):
14460 * tool-bar.el (tool-bar-make-keymap):
14461 * tooltip.el (tooltip-timeout, tooltip-hide, tooltip-help-tips):
14462 * type-break.el (type-break-mode, type-break-noninteractive-query):
14463 * view.el (View-back-to-mark):
14464 * wid-browse.el (widget-browse-action, widget-browse-widget)
14465 (widget-browse-widgets, widget-browse-sexp):
14466 * widget.el (define-widget-keywords):
14467 * xt-mouse.el (xterm-mouse-translate, turn-off-xterm-mouse-tracking):
14468 Mark unused parameters.
14469
14470 * align.el (align-adjust-col-for-rule): Mark unused parameter.
14471 (align-areas): Remove unused variable `look'.
14472 (align-region): Remove unused variables `real-end' and `pos-list'.
14473
14474 * apropos.el (apropos-score-doc): Remove unused variable `i'.
14475
14476 * bindings.el (mode-line-modified, mode-line-remote):
14477 Mark unused parameters.
14478 (mode-line-mule-info): Mark unused parameter; don't quote `lambda'.
14479
14480 * buff-menu.el (Buffer-menu-revert-function): Mark unused parameters.
14481 (Buffer-menu-mode): Mark unused parameter; don't quote `lambda'.
14482
14483 * comint.el (comint-history-isearch-pop-state)
14484 (comint-postoutput-scroll-to-bottom, comint-truncate-buffer)
14485 (comint-strip-ctrl-m, comint-read-noecho): Mark unused parameters.
14486 (comint-substitute-in-file-name): Doc fix.
14487
14488 * completion.el (cmpl-statistics-block): Mark unused parameter.
14489 (add-completions-from-tags-table, add-completions-from-lisp-buffer)
14490 (save-completions-to-file, load-completions-from-file):
14491 Remove unused local variable `e'.
14492
14493 * composite.el (compose-chars): Remove unused variable `len'.
14494 (lgstring-insert-glyph): Remove unused variable `g'.
14495 (compose-glyph-string): Remove unused variables `ascent',
14496 `descent', `lbearing' and `rbearing'.
14497 (compose-glyph-string-relative): Remove unused variables
14498 `lbearing', `rbearing' and `wadjust'.
14499 (compose-gstring-for-graphic): Remove unused variables `header',
14500 `wadjust', `xoff' and `yoff'. Use `let', not `let*'.
14501 (compose-gstring-for-terminal): Remove unused variables `header'
14502 and `nchars'. Use `let', not `let*'.
14503
14504 * cus-edit.el (Custom-set, Custom-save, custom-reset)
14505 (Custom-reset-current, Custom-reset-saved, Custom-reset-standard)
14506 (Custom-buffer-done, custom-buffer-create-internal)
14507 (custom-browse-visibility-action, custom-browse-group-tag-action)
14508 (custom-browse-variable-tag-action, custom-browse-face-tag-action)
14509 (widget-magic-mouse-down-action, custom-toggle-parent)
14510 (custom-add-parent-links, custom-toggle-hide-variable)
14511 (custom-face-edit-value-visibility-action, custom-face-edit-fix-value)
14512 (custom-toggle-hide-face, face, hook, custom-group-link-action)
14513 (custom-face-menu-create, custom-variable-menu-create, get)
14514 (custom-group-menu-create, Custom-no-edit): Mark unused parameters.
14515 (custom-reset-standard-save-and-update): Remove unused variable `value'.
14516 (customize-apropos): Remove unused variable `tests'.
14517 (custom-group-value-create): Remove unused variable `hidden-p'.
14518 (sort-fold-case): Declare.
14519
14520 * cus-theme.el (custom-reset-standard-faces-list)
14521 (custom-reset-standard-variables-list): Declare.
14522 (customize-create-theme, custom-theme-revert, custom-theme-write)
14523 (custom-theme-choose-mode, customize-themes, custom-theme-save):
14524 Mark unused parameters.
14525
14526 * dabbrev.el (dabbrev-completion): Remove unused variable `init'.
14527
14528 * delim-col.el (delimit-columns-max): Move defvar before first use.
14529
14530 * descr-text.el (describe-char-categories): Don't quote `lambda'.
14531 (describe-char): Don't quote `lambda'. Mark unused parameter.
14532
14533 * desktop.el (desktop-save-buffer-p): Mark unused parameter.
14534 (auto-insert): Declare.
14535 (desktop-restore-file-buffer): Rename desktop-* parameters;
14536 mark unused ones.
14537 (desktop-create-buffer): Rename desktop-* parameters and bind them.
14538 (desktop-buffer): Rename desktop-* parameters.
14539
14540 * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14541 (dframe-reposition-frame-xemacs, dframe-help-echo)
14542 (dframe-hack-buffer-menu, dframe-set-timer, dframe-set-timer-internal):
14543 Mark unused parameters.
14544
14545 * dired-aux.el (backup-extract-version-start, overwrite-query)
14546 (overwrite-backup-query, rename-regexp-query)
14547 (rename-non-directory-query): Declare.
14548 (dired-shell-stuff-it, dired-do-create-files): Mark unused parameters.
14549 (dired-add-entry): Remove unused variable `orig-file-name'.
14550 (dired-copy-file-recursive): Remove unused variable `dirfailed'.
14551 Use parameter PRESERVE-TIME instead of accessing dynamic variable
14552 `dired-copy-preserve-time' directly.
14553 (dired-do-create-files-regexp): Remove unused variable `fn-count'.
14554 (dired-insert-subdir-newpos): Rename unused variable `pos'.
14555
14556 * dired-x.el (dired-omit-size-limit): Move defcustom before first use.
14557 (dired-virtual-revert, dired-make-relative-symlink):
14558 Mark unused parameters.
14559 (manual-program): Declare.
14560 (dired-x-hands-off-my-keys): Rename parameters of lambda expression.
14561 (inode, s, mode, nlink, uid, gid, size, time, name, sym): Declare them,
14562 wrapped in `with-no-warnings' to avoid replacing one warning by another.
14563
14564 * dirtrack.el (dirtrack): Remove unused variable `multi-line'.
14565
14566 * dos-fns.el (dos-8+3-filename): Remove unused variable `i'.
14567
14568 * echistory.el (electric-history-in-progress, Helper-return-blurb):
14569 Declare.
14570
14571 * edmacro.el (edmacro-finish-edit): Remove unused variable `kmacro'.
14572
14573 * electric.el (Electric-command-loop): Rename parameter
14574 INHIBIT-QUIT to INHIBIT-QUITTING and bind `inhibit-quit'.
14575
14576 * expand.el (expand-in-literal): Remove unused variable `here'.
14577
14578 * facemenu.el (facemenu-add-new-color):
14579 Remove unused variable `docstring'.
14580
14581 * faces.el (face-id, make-face-bold, make-face-unbold, make-face-italic)
14582 (make-face-unitalic, make-face-bold-italic): Mark unused parameters.
14583 (face-attr-construct): Mark unused parameter. Doc fix.
14584 (read-color): Remove unused variable `hex-string'.
14585
14586 * files.el (parse-colon-path): Rename argument CD-PATH to SEARCH-PATH.
14587 (locate-dominating-file): Remove unused vars `prev-file' and `user'.
14588 (remote-file-name-inhibit-cache, revert-buffer): Clean up docstrings.
14589 (display-buffer-other-frame): Remove unused variable `old-window'.
14590 (kill-buffer-hook): Declare.
14591 (insert-file-contents-literally, set-auto-mode, risky-local-variable-p):
14592 Mark unused parameters.
14593 (after-find-file): Pass 1 to `auto-save-mode', not t.
14594
14595 * files-x.el (auto-insert): Declare.
14596 (modify-file-local-variable-prop-line): Remove unused variable `val'.
14597
14598 * find-lisp.el (find-lisp-find-dired-internal): Remove unused
14599 variable `buf'. Mark unused parameter.
14600 (find-lisp-insert-directory): Mark unused parameter.
14601
14602 * format.el (format-decode-run-method): Mark unused parameter; doc fix.
14603 (format-encode-region): Remove unused variables `cur-buf' and `result'.
14604 (format-common-tail): Remove, unused.
14605 (format-deannotate-region): Remove unused variable `loc'.
14606 (format-annotate-region): Remove unused variable `p'.
14607 (format-annotate-single-property-change): Remove unused variables
14608 `default' and `tail'.
14609
14610 * forms.el (read-file-filter): Declare.
14611 (forms--iif-hook, forms--revert-buffer): Mark unused parameters.
14612
14613 * frame.el (frame-creation-function-alist): Mark unused parameter.
14614 (frame-geom-spec-cons): Pass FRAME to `frame-geom-value-cons'.
14615
14616 * hilit-chg.el (hilit-chg-cust-fix-changes-face-list, hilit-chg-clear):
14617 Remove unused parameters.
14618 (hilit-chg-set-face-on-change): Remove unused variable `beg-decr'.
14619 (highlight-compare-with-file): Remove unused variable `buf-b-read-only'.
14620
14621 * htmlfontify.el (hfy-default-footer, hfy-decor, hfy-invisible)
14622 (hfy-parse-tags-buffer, hfy-prepare-index-i, hfy-prepare-index)
14623 (hfy-prepare-tag-map): Mark unused parameters.
14624 (htmlfontify-buffer): Use `called-interactively-p'.
14625
14626 * ibuf-ext.el (ibuffer-do-kill-lines, ibuffer-jump-to-buffer)
14627 (ibuffer-copy-filename-as-kill, ibuffer-mark-on-buffer)
14628 (ibuffer-do-occur): Mark unused parameters.
14629 (ibuffer-forward-next-marked): Remove unused variable `curmark'.
14630 (ibuffer-diff-buffer-with-file-1): Remove unused variable `proc'.
14631
14632 * ibuffer.el: Don't quote `lambda'.
14633 (ibuffer-count-marked-lines, ibuffer-count-deletion-lines)
14634 (ibuffer-unmark-all, ibuffer-toggle-marks, ibuffer-redisplay-engine):
14635 Mark unused parameters.
14636
14637 * ido.el (ido-mode, ido-wide-find-dir-or-delete-dir)
14638 (ido-completing-read): Mark unused parameters.
14639 (ido-copy-current-word): Mark unused parameters;
14640 remove unused variable `name'.
14641 (ido-sort-merged-list): Remove unused parameter `dirs'.
14642
14643 * ielm.el (ielm-input-sender): Mark unused parameter.
14644 (ielm-string, ielm-form, ielm-pos, ielm-result, ielm-error-type)
14645 (ielm-output, ielm-wbuf, ielm-pmark): Declare.
14646 (ielm-eval-input): Rename argument IELM-STRING to INPUT-STRING to keep
14647 `ielm-string' as a dynamic variable accessible from the IELM prompt.
14648 Bind `ielm-string' to INPUT-STRING. Remove unused variable `err'.
14649
14650 * image-dired.el (image-dired-display-thumbs): Remove unused
14651 variables `curr-file' and `count'.
14652 (image-dired-remove-tag): Remove unused variable `start'.
14653 (image-dired-tag-files, image-dired-create-thumbs): Remove unused
14654 variable `curr-file'
14655 (image-dired-rotate-original): Remove unused variable `temp-file'.
14656 (image-dired-mouse-select-thumbnail, image-dired-mouse-toggle-mark):
14657 Remove unused variable `file'.
14658 (image-dired-gallery-generate): Remove unused variable `curr'.
14659 (image-dired-dired-edit-comment-and-tags): Mark unused parameters.
14660
14661 * indent.el (tab-to-tab-stop): Remove unused variable `opoint'.
14662
14663 * info-xref.el (info-xref-goto-node-p): Remove unused variable `err'.
14664
14665 * informat.el (texinfo-command-start, texinfo-command-end): Declare.
14666
14667 * isearch.el (minibuffer-history-symbol): Declare.
14668 (isearch-edit-string): Remove unused variable `err'.
14669 (isearch-message-prefix, isearch-message-suffix):
14670 Mark unused parameters.
14671
14672 * ls-lisp.el (ls-lisp-insert-directory): Remove unused variable `fil'.
14673
14674 * macros.el (insert-kbd-macro): Remove unused variable `mods'.
14675
14676 * makesum.el (double-column): Remove unused variable `cnt'.
14677
14678 * misearch.el (multi-isearch-pop-state): Mark unused parameter.
14679 (ido-ignore-item-temp-list): Declare.
14680
14681 * mouse-drag.el (mouse-drag-throw): Remove unused variables
14682 `mouse-delta', `window-last-row', `mouse-col-delta', `window-last-col',
14683 `adjusted-mouse-col-delta' and `adjusted-mouse-delta'.
14684 (mouse-drag-drag): Remove unused variables `mouse-delta' and
14685 `mouse-col-delta'.
14686
14687 * mouse-sel.el (mouse-extend-internal):
14688 Remove unused variable `orig-window-frame'.
14689
14690 * pcomplete.el (pcomplete-args, pcomplete-begins, pcomplete-last)
14691 (pcomplete-index, pcomplete-stub, pcomplete-seen, pcomplete-norm-func):
14692 Move declarations before first use.
14693 (pcomplete-opt): Mark unused parameters; doc fix.
14694
14695 * proced.el (proced-revert): Mark unused parameter.
14696 (proced-send-signal): Remove unused variable `err'.
14697
14698 * ps-print.el (ps-print-preprint-region, ps-print-preprint):
14699 Rename parameter PREFIX-ARG to ARG.
14700 (ps-basic-plot-string, ps-basic-plot-whitespace):
14701 Mark unused parameters.
14702
14703 * replace.el (replace-count): Define.
14704 (occur-revert-function): Mark unused parameters.
14705 (ido-ignore-item-temp-list, isearch-error, isearch-forward)
14706 (isearch-case-fold-search, isearch-string): Declare.
14707 (occur-engine): Rename parameter CASE-FOLD-SEARCH to CASE-FOLD and
14708 bind `case-fold-search'. Remove unused variables `beg' and `end',
14709 and simplify.
14710 (replace-eval-replacement): Rename parameter REPLACE-COUNT to
14711 COUNT and bind `replace-count'.
14712 (replace-loop-through-replacements): Rename parameter REPLACE-COUNT
14713 to COUNT.
14714
14715 * savehist.el (print-readably, print-string-length): Declare.
14716
14717 * shadowfile.el (shadow-expand-cluster-in-file-name):
14718 Remove unused variable `cluster'.
14719 (shadow-copy-file): Remove unused variable `i'.
14720 (shadow-noquery, shadow-clusters, shadow-site-cluster)
14721 (shadow-parse-fullname, shadow-parse-name, shadow-define-cluster)
14722 (shadow-define-literal-group, shadow-define-regexp-group)
14723 (shadow-make-group, shadow-shadows-of): Clean up docstrings.
14724
14725 * shell.el (shell-filter-ctrl-a-ctrl-b): Mark unused parameter.
14726 (shell): Use `called-interactively-p'.
14727 (shell-directory-tracker): Remove unused variable `chdir-failure'.
14728
14729 * simple.el (compilation-context-lines, comint-file-name-quote-list)
14730 (comint-file-name-chars, comint-delimiter-argument-list): Declare.
14731 (delete-backward-char): Remove unused variable `ocol'.
14732 (minibuffer-avoid-prompt, minibuffer-history-isearch-pop-state)
14733 (line-move-1, event-apply-alt-modifier, event-apply-super-modifier)
14734 (event-apply-hyper-modifier, event-apply-shift-modifier)
14735 (event-apply-control-modifier, event-apply-meta-modifier):
14736 Mark unused parameters.
14737 (undo-make-selective-list): Remove duplicate variable `undo-elt'.
14738 (normal-erase-is-backspace-mode): Remove unused variable `old-state'.
14739
14740 * speedbar.el (speedbar-ignored-directory-expressions)
14741 (speedbar-supported-extension-expressions, speedbar-directory-buttons)
14742 (speedbar-find-file, speedbar-dir-follow)
14743 (speedbar-directory-buttons-follow, speedbar-tag-find)
14744 (speedbar-buffer-buttons, speedbar-buffer-buttons-temp)
14745 (speedbar-buffers-line-directory, speedbar-buffer-click):
14746 Mark unused parameters.
14747 (speedbar-tag-file): Remove unused variable `mode'.
14748 (speedbar-buffers-tail-notes): Remove unused variable `mod'; simplify.
14749
14750 * strokes.el (strokes-decode-buffer): Remove unused variable `ext'.
14751
14752 * talk.el (talk): Remove unused variable `display'.
14753
14754 * tar-mode.el (tar-subfile-save-buffer): Remove unused variable `name'.
14755 (tar-write-region-annotate): Mark unused parameter.
14756
14757 * time.el (now, time, load, mail, 24-hours, hour, 12-hours, am-pm)
14758 (minutes, seconds, time-zone, day, year, monthname, month, dayname):
14759 Declare them, wrapped in `with-no-warnings' to avoid replacing one
14760 warning by another.
14761
14762 * time-stamp.el (time-stamp-string-preprocess):
14763 Remove unused variable `require-padding'.
14764
14765 * tree-widget.el (widget-glyph-enable): Declare.
14766 (tree-widget-action): Mark unused parameter.
14767
14768 * w32-fns.el (x-get-selection): Mark unused parameter.
14769 (autoload-make-program, generated-autoload-file): Declare.
14770
14771 * wdired.el (wdired-revert): Mark unused parameters.
14772 (wdired-xcase-word): Remove unused variable `err'.
14773
14774 * whitespace.el (whitespace-buffer-changed): Mark unused parameters.
14775 (whitespace-help-scroll): Remove unused variable `data-help'.
14776
14777 * wid-edit.el (widget-mouse-help, widget-overlay-inactive)
14778 (widget-image-insert, widget-after-change, default)
14779 (widget-default-format-handler, widget-default-notify)
14780 (widget-default-prompt-value, widget-info-link-action)
14781 (widget-url-link-action, widget-function-link-action)
14782 (widget-variable-link-action, widget-file-link-action)
14783 (widget-emacs-library-link-action, widget-emacs-commentary-link-action)
14784 (widget-field-prompt-internal, widget-field-action, widget-field-match)
14785 (widget-choice-mouse-down-action, toggle, widget-radio-button-notify)
14786 (widget-insert-button-action, widget-delete-button-action, visibility)
14787 (widget-documentation-link-action, widget-documentation-string-action)
14788 (widget-const-prompt-value, widget-regexp-match, symbol)
14789 (widget-coding-system-prompt-value)
14790 (widget-key-sequence-value-to-external, sexp)
14791 (widget-sexp-value-to-internal, character, vector, cons)
14792 (widget-choice-prompt-value, widget-boolean-prompt-value)
14793 (widget-color--choose-action): Mark unused parameters.
14794 (widget-item-match-inline, widget-choice-match-inline)
14795 (widget-checklist-match, widget-checklist-match-inline)
14796 (widget-group-match): Rename parameter VALUES to VALS.
14797 (widget-field-value-set): Remove unused variable `size'.
14798 (widget-color-action): Remove unused variables `value' and `start'.
14799
14800 * windmove.el (windmove-wrap-loc-for-movement): Remove unused
14801 variable `dir'. Doc fix.
14802 (windmove-find-other-window): Don't pass it.
14803
14804 * window.el (count-windows): Mark unused parameter.
14805 (bw-adjust-window): Remove unused variable `err'.
14806
14807 * woman.el (woman-file-name): Remove unused variable `default'.
14808 (woman-expand-directory-path): Rename parameters WOMAN-MANPATH and
14809 WOMAN-PATH to PATH-DIRS and PATH-REGEXPS, respectively.
14810 (global-font-lock-mode): Declare.
14811 (woman-decode-region): Mark unused parameter.
14812 (woman-get-tab-stop): Rename parameter TAB-STOP-LIST to TAB-STOPS.
14813
14814 * x-dnd.el (x-dnd-default-test-function, x-dnd-handle-old-kde)
14815 (x-dnd-handle-xdnd, x-dnd-handle-motif): Mark unused parameters.
14816 (x-dnd-handle-moz-url): Remove unused variable `title'.
14817 (x-dnd-handle-xdnd): Remove unused variables `x', `y' and `ret-action'.
14818
14819 * xml.el (xml-parse-tag, xml-parse-attlist):
14820 Remove unused variable `pos'.
14821
14822 2011-04-19 Glenn Morris <rgm@gnu.org>
14823
14824 * calendar/cal-tex.el (cal-tex-list-holidays, cal-tex-cursor-month)
14825 (cal-tex-cursor-week, cal-tex-cursor-week2, cal-tex-cursor-week-iso)
14826 (cal-tex-cursor-filofax-2week, cal-tex-cursor-filofax-week)
14827 (cal-tex-cursor-filofax-daily, cal-tex-mini-calendar)
14828 * calendar/cal-html.el (cal-html-insert-minical):
14829 * calendar/diary-lib.el (diary-list-entries-1, diary-list-entries)
14830 (calendar-mark-date-pattern):
14831 Prefix "unused" locals.
14832
14833 * calendar/cal-dst.el (dst-adjust-time): Remove never-implemented
14834 optional argument `style'.
14835
14836 * calendar/appt.el (appt-make-list):
14837 * calendar/cal-china.el (calendar-chinese-date-string):
14838 * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits)
14839 (diary-hebrew-yahrzeit):
14840 * calendar/cal-tex.el (cal-tex-last-blank-p, cal-tex-cursor-week2):
14841 * calendar/calendar.el (calendar-generate-window):
14842 * calendar/time-date.el (time-to-days):
14843 Remove unused local variables.
14844
14845 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
14846
14847 * emacs-lisp/tabulated-list.el (tabulated-list-mode): Use a custom
14848 glyphless-char-display table.
14849 (tabulated-list-glyphless-char-display): New var.
14850
14851 2011-04-18 Sam Steingold <sds@gnu.org>
14852
14853 * vc/add-log.el (change-log-font-lock-keywords): Add "Thanks to"
14854 to acknowledgments.
14855
14856 2011-04-17 Glenn Morris <rgm@gnu.org>
14857
14858 * calendar/diary-lib.el (diary-sexp-entry):
14859 * calendar/holidays.el (holiday-sexp):
14860 Set debug-on-error rather than the removed stack-trace-on-error.
14861
14862 2011-04-16 Glenn Morris <rgm@gnu.org>
14863
14864 * progmodes/f90.el: Use lexical-binding.
14865 (f90-get-correct-indent): Remove unnecessary local variable `cont'.
14866
14867 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14868
14869 * mail/sendmail.el (mail-mode-map): Use completion-at-point.
14870 (mail-mode): Setup mailalias completion here instead.
14871 * mail/mailalias.el: Use lexical-binding.
14872 (pattern, mailalias-done): Declare dynamic.
14873 (mail-completion-at-point-function): New function, from mail-complete.
14874 (mail-complete): Use it.
14875 (mail-completion-expand): New function.
14876 (mail-get-names): Use it.
14877 (mail-directory, mail-directory-process, mail-directory-stream):
14878 Don't use `pattern' for lexically bound arg.
14879
14880 * emacs-lisp/lisp-mode.el (eval-defun-2): Use eval-sexp-add-defvars.
14881
14882 * htmlfontify.el (hfy-etags-cmd): Remove inoperant eval-and-compile.
14883 (hfy-e2x-etags-cmd, hfy-etags-cmd-alist-default)
14884 (hfy-etags-cmd-alist): Don't eval-and-compile any more.
14885
14886 * emacs-lisp/bytecomp.el (byte-temp-output-buffer-show)
14887 (byte-save-window-excursion, byte-temp-output-buffer-setup)
14888 (byte-interactive-p): Define them again, for use when inlining
14889 old code.
14890
14891 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
14892
14893 * loadup.el: Use `string-to-number', not `string-to-int'.
14894
14895 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14896
14897 * progmodes/gud.el (gud-gdb): Use completion-at-point instead of
14898 gud-gdb-complete-command.
14899 (gud-gdb-completions): New function, from gud-gdb-complete-command.
14900 (gud-gdb-completion-at-point): New function.
14901 (gud-gdb-completions): Remove.
14902
14903 2011-04-14 Michael Albinus <michael.albinus@gmx.de>
14904
14905 * net/tramp-sh.el (tramp-sh-handle-file-attributes): Handle the case
14906 when the scripts fail. Use `tramp-do-file-attributes-with-ls' then.
14907 (tramp-do-copy-or-rename-file-out-of-band): Do not check any longer
14908 whether `executable-find' is bound.
14909
14910 * net/tramp-smb.el (tramp-smb-handle-copy-file): Fix docstring.
14911
14912 2011-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
14913
14914 * minibuffer.el (completion-in-region-mode-predicate)
14915 (completion-in-region-mode--predicate): New vars.
14916 (completion-in-region, completion-in-region--postch)
14917 (completion-in-region-mode): Use them.
14918 (completion--capf-wrapper): Also return the hook function.
14919 (completion-at-point, completion-help-at-point):
14920 Adjust and provide a predicate.
14921
14922 Preserve arg names for advice of subr and lexical functions (bug#8457).
14923 * help-fns.el (help-function-arglist): Consolidate the subr and
14924 new-byte-code cases. Add argument `preserve-names' to extract names
14925 from the docstring when needed.
14926 * emacs-lisp/advice.el (ad-define-subr-args, ad-undefine-subr-args)
14927 (ad-subr-args-defined-p, ad-get-subr-args, ad-subr-arglist): Remove.
14928 (ad-arglist): Use help-function-arglist's new arg.
14929 (ad-definition-type): Use cond.
14930
14931 2011-04-13 Juanma Barranquero <lekktu@gmail.com>
14932
14933 * autorevert.el (auto-revert-handler):
14934 Bind `remote-file-name-inhibit-cache', not `tramp-cache-inhibit-cache',
14935 which was removed in 2010-10-02T13:21:43Z!michael.albinus@gmx.de.
14936 Don't quote lambda.
14937
14938 * image-mode.el (image-transform-set-scale):
14939 Fix change in 2011-04-09T20:28:01Z!cyd@stupidchicken.com.
14940
14941 2011-04-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
14942
14943 * net/network-stream.el (network-stream-open-starttls): Only do
14944 opportunistic STARTTLS upgrades if we have built-in GnuTLS support.
14945 Upgrades via gnutls-cli are too slow to be done opportunistically.
14946
14947 2011-04-12 Juanma Barranquero <lekktu@gmail.com>
14948
14949 * dframe.el (dframe-current-frame): Remove spurious quote.
14950
14951 2011-04-12 Glenn Morris <rgm@gnu.org>
14952
14953 * calendar/cal-tex.el (cal-tex-end-document):
14954 Try to automatically use latin1 input if needed.
14955
14956 * calendar/cal-hebrew.el (diary-hebrew-rosh-hodesh):
14957 Don't try to cons a mark onto an empty element.
14958
14959 2011-04-11 Leo Liu <sdl.web@gmail.com>
14960
14961 * ido.el (ido-buffer-internal): Allow method 'kill for virtual
14962 buffers.
14963 (ido-kill-buffer-at-head): Support killing virtual buffers.
14964
14965 2011-04-10 Chong Yidong <cyd@stupidchicken.com>
14966
14967 * minibuffer.el (completion-show-inline-help): New var.
14968 (completion--do-completion, minibuffer-complete)
14969 (minibuffer-force-complete, minibuffer-complete-word):
14970 Inhibit minibuffer messages if completion-show-inline-help is nil.
14971
14972 * icomplete.el (icomplete-mode): Bind completion-show-inline-help
14973 to avoid interference from inline help (Bug#5849).
14974
14975 2011-04-10 Leo Liu <sdl.web@gmail.com>
14976
14977 * emacs-lisp/tabulated-list.el (tabulated-list-print-entry):
14978 Fix typo.
14979
14980 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
14981
14982 * image-mode.el (image-toggle-display-image): Signal an error if
14983 not in Image mode.
14984 (image-transform-mode, image-transform-resize)
14985 (image-transform-set-rotation): Doc fix.
14986 (image-transform-set-resize): Delete.
14987 (image-transform-set-scale, image-transform-fit-to-height)
14988 (image-transform-fit-to-width): Handle image-toggle-display-image
14989 and image-transform-resize directly.
14990
14991 2011-04-08 Sho Nakatani <lay.sakura@gmail.com>
14992
14993 * doc-view.el (doc-view-fit-width-to-window)
14994 (doc-view-fit-height-to-window, doc-view-fit-page-to-window):
14995 New functions for fitting the shown image to the Emacs window size.
14996 (doc-view-mode-map): Add bindings for the new functions.
14997
14998 2011-04-08 Juanma Barranquero <lekktu@gmail.com>
14999
15000 * vc/vc-annotate.el (vc-annotate-show-log-revision-at-line):
15001 Fix typo in docstring.
15002
15003 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15004
15005 * files.el (file-size-human-readable): Produce one digit after
15006 decimal, like "ls -lh" does.
15007
15008 * ls-lisp.el (ls-lisp-format-file-size): Allow for 7 characters in
15009 the file size representation.
15010
15011 * simple.el (list-processes): If async subprocesses are not
15012 available, error out with a clear error message.
15013
15014 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
15015
15016 * help.el (help-form-show): New function, to be called from C.
15017 Put help-form output in a buffer named differently than *Help*.
15018
15019 2011-04-08 Eli Zaretskii <eliz@gnu.org>
15020
15021 * files.el (file-size-human-readable): New function.
15022
15023 * ls-lisp.el (ls-lisp-format-file-size): Use it, instead of
15024 computing the representation inline. Don't require `cl'.
15025
15026 2011-04-08 Glenn Morris <rgm@gnu.org>
15027
15028 * man.el (Man-page-header-regexp): Solaris < 2.6 no longer supported.
15029
15030 * net/browse-url.el (browse-url-firefox):
15031 Test system-type, not system-configuration.
15032
15033 * vc/log-edit.el (log-edit-empty-buffer-p): New function.
15034 (log-edit-insert-cvs-template, log-edit-insert-cvs-rcstemplate):
15035 Use log-edit-empty-buffer-p. (Bug#7598)
15036
15037 * net/rlogin.el (rlogin-process-connection-type): Simplify.
15038 (rlogin-mode-map): Initialize in the defvar.
15039 (rlogin): Use ignore-errors.
15040
15041 * replace.el (occur-mode-map): Some fixes for menu items.
15042
15043 2011-04-07 Aaron S. Hawley <aaron.s.hawley@gmail.com>
15044
15045 * play/morse.el (denato-region): Handle varying case. (Bug#8386)
15046
15047 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15048
15049 * emacs-lisp/cconv.el (cconv--analyse-use): Ignore "ignored" when
15050 issuing unused warnings.
15051
15052 * emacs-lisp/tabulated-list.el (tabulated-list-print): Use lambda
15053 macro directly.
15054
15055 * simple.el: Lisp reimplement of list-processes. Based on an
15056 earlier reimplementation by Leo Liu, but using tabulated-list.el.
15057 (process-menu-mode): New major mode.
15058 (list-processes--refresh, list-processes):
15059 (process-menu-visit-buffer): New functions.
15060
15061 * files.el (save-buffers-kill-emacs): Don't assume any return
15062 value of list-processes, which is undocumented anyway.
15063
15064 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
15065
15066 * emacs-lisp/tabulated-list.el: New file.
15067
15068 * emacs-lisp/package.el: Use Tabulated List mode.
15069 (package-menu-mode-map): Inherit from tabulated-list-mode-map.
15070 (package-menu-mode): Derive from tabulated-list-mode. Set up the
15071 table format using Tabulated List mode variables.
15072 (package--push): New macro, replacing package-list-maybe-add.
15073 (package-menu--generate): Use package--push. Renamed from
15074 package--generate-package-list.
15075 (package-menu-refresh, list-packages): Use it.
15076 (package-menu--print-info): Rename from package-print-package.
15077 Return insertion data instead of inserting it directly.
15078 (package-menu-describe-package, package-menu-execute):
15079 Use tabulated-list-get-id.
15080 (package-menu-mark-delete, package-menu-mark-install)
15081 (package-menu-mark-unmark, package-menu-backup-unmark)
15082 (package-menu-mark-obsolete-for-deletion):
15083 Use tabulated-list-put-tag.
15084 (package--list-packages, package-menu-revert)
15085 (package-menu-get-package, package-menu-get-version)
15086 (package-menu-sort-by-column): Functions deleted.
15087 (package-menu-package-list, package-menu-sort-key): Vars deleted.
15088 (package-menu--status-predicate, package-menu--version-predicate)
15089 (package-menu--name-predicate)
15090 (package-menu--description-predicate): Handle arguments in the
15091 Tabulated List format.
15092 (package-list-packages-no-fetch): Call list-packages.
15093
15094 2011-04-06 Juanma Barranquero <lekktu@gmail.com>
15095
15096 * files.el (after-find-file-from-revert-buffer): Remove variable.
15097 (after-find-file): Don't bind it.
15098 (revert-buffer-in-progress-p): New variable.
15099 (revert-buffer): Bind it.
15100 Pass nil for `after-find-file-from-revert-buffer'.
15101
15102 * saveplace.el (save-place-find-file-hook): Use new variable
15103 `rever-buffer-in-progress-p', not `after-find-file-from-revert-buffer'.
15104
15105 2011-04-06 Glenn Morris <rgm@gnu.org>
15106
15107 * Makefile.in (AUTOGEN_VCS): New variable.
15108 (autoloads): Use $AUTOGEN_VCS.
15109
15110 * calendar/cal-move.el (calendar-scroll-toolkit-scroll): New function.
15111 * calendar/calendar.el (calendar-mode-map):
15112 Check for toolkit scroll bars. (Bug#8305)
15113
15114 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15115
15116 * minibuffer.el (completion-in-region--postch)
15117 (completion-in-region-mode): Remove unnecessary messages.
15118
15119 2011-04-05 Juanma Barranquero <lekktu@gmail.com>
15120
15121 * font-lock.el (font-lock-refresh-defaults):
15122 Don't bind `hi-lock--inhibit-font-lock-hook', removed in
15123 2010-10-09T04:09:19Z!cyd@stupidchicken.com and 2010-10-11T23:57:49Z!lekktu@gmail.com (2010-10-12).
15124
15125 * info.el (Info-directory-list, Info-read-node-name-2)
15126 (Info-split-parameter-string): Doc fixes.
15127 (Info-virtual-nodes): Reflow docstring.
15128 (Info-find-file, Info-directory-toc-nodes, Info-history-toc-nodes)
15129 (Info-apropos-toc-nodes, info-finder, Info-get-token)
15130 (Info-find-emacs-command-nodes, Info-speedbar-key-map):
15131 Fix typos in docstrings.
15132 (Info-revert-buffer-function, Info-search, Info-isearch-pop-state)
15133 (Info-speedbar-hierarchy-buttons, Info-speedbar-goto-node)
15134 (Info-speedbar-buttons, Info-desktop-buffer-misc-data)
15135 (Info-restore-desktop-buffer): Mark unused parameters.
15136 (Info-directory-find-file, Info-directory-find-node)
15137 (Info-history-find-file, Info-history-find-node, Info-toc-find-node)
15138 (Info-virtual-index-find-node, Info-apropos-find-file)
15139 (Info-apropos-find-node, Info-finder-find-file, Info-finder-find-node):
15140 Mark unused parameters; fix typos in docstrings.
15141 (Info-virtual-index): Remove unused local variable `nodename'.
15142
15143 2011-04-05 Deniz Dogan <deniz@dogan.se>
15144
15145 * net/rcirc.el: Update my e-mail address.
15146 (rcirc-mode-map): Remove M-o binding.
15147
15148 2011-04-05 Chong Yidong <cyd@stupidchicken.com>
15149
15150 * startup.el (command-line): Save the cursor's theme-face
15151 directly, instead of using face-override-spec.
15152
15153 * custom.el (load-theme): Minor optimization in assigning faces.
15154
15155 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15156
15157 * help-fns.el (describe-variable): Complete all variables having
15158 documentation, including keywords.
15159 http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
15160
15161 2011-04-04 Juanma Barranquero <lekktu@gmail.com>
15162
15163 Convert to lexical-binding.
15164
15165 * bs.el (bs-refresh, bs-sort-buffer-interns-are-last)
15166 (bs--get-marked-string, bs--get-modified-string)
15167 (bs--get-readonly-string, bs--get-size-string, bs--get-name)
15168 (bs--get-mode-name, bs--get-file-name): Mark unused arguments.
15169 (bs--configuration-name-for-prefix-arg): Rename argument PREFIX-ARG.
15170
15171 * ehelp.el (electric-help-execute-extended)
15172 (electric-help-ctrl-x-prefix):
15173 * hexl.el (hexl-revert-buffer-function):
15174 * linum.el (linum-after-change, linum-after-scroll):
15175 * emacs-lisp/re-builder.el (reb-auto-update): Mark unused arguments.
15176
15177 * help-fns.el (help-describe-category-set): Remove unused ERR variable.
15178
15179 2011-04-04 Daiki Ueno <ueno@unixuser.org>
15180
15181 * epa-dired.el:
15182 * epa-mail.el:
15183 * epa-hook.el:
15184 * epa-file.el:
15185 * epa.el:
15186 * epg.el: Use lexical binding.
15187
15188 2011-04-03 Chong Yidong <cyd@stupidchicken.com>
15189
15190 * dired-aux.el (dired-create-files): Add docstring (Bug#7970).
15191
15192 * textmodes/flyspell.el (flyspell-word): Recognize default
15193 dictionary case for flyspell-mark-duplications-exceptions.
15194 Use regexp matching for languages.
15195 (flyspell-mark-duplications-exceptions): Add "that" and "had" for
15196 default dictionary (Bug#7926).
15197
15198 2011-04-02 Chong Yidong <cyd@stupidchicken.com>
15199
15200 * emacs-lisp/package.el (package--with-work-buffer):
15201 Recognize https URLs.
15202
15203 * net/network-stream.el: Move from gnus/proto-stream.el.
15204 Change prefix to network-stream throughout.
15205 (open-protocol-stream): Merge into open-network-stream, leaving
15206 open-protocol-stream as an alias. Handle nil BUFFER args.
15207
15208 * subr.el (open-network-stream): Move to net/network-stream.el.
15209
15210 2011-04-02 Glenn Morris <rgm@gnu.org>
15211
15212 * find-dired.el (find-exec-terminator): New option.
15213 (find-ls-option): Test for -ls support.
15214 (find-ls-subdir-switches): Test for -b in find-ls-option.
15215 (find-dired, find-grep-dired): Doc fixes.
15216 (find-dired): Use find-exec-terminator.
15217
15218 * find-dired.el (find-ls-option, find-ls-subdir-switches)
15219 (find-grep-options): Do not autoload these defcustoms, remove purecopy.
15220 (find-name-arg): Remove purecopy.
15221
15222 * progmodes/grep.el (grep-find-use-xargs): Doc fix.
15223 (grep-compute-defaults): Check for `-exec COMMAND +' support.
15224 Set grep-find-use-xargs, grep-find-command, and grep-find-template
15225 accordingly. Don't add the null-device if not needed.
15226
15227 * files.el (save-some-buffers): Doc fix.
15228
15229 2011-04-02 Eli Zaretskii <eliz@gnu.org>
15230
15231 * makefile.w32-in (EMACS): Default to ../src/$(BLD)/emacs.exe.
15232
15233 2011-04-01 Juanma Barranquero <lekktu@gmail.com>
15234
15235 * progmodes/idlwave.el (idlwave-one-key-select, idlwave-list-abbrevs):
15236 Use `dolist' rather than `mapcar'.
15237
15238 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15239
15240 Add lexical binding.
15241
15242 * subr.el (apply-partially): Use new closures rather than CL.
15243 (--dolist-tail--, --dotimes-limit--): Don't declare dynamic.
15244 (dolist, dotimes): Use slightly different expansion for lexical code.
15245 (functionp): Move to C.
15246 (letrec): New macro.
15247 (with-wrapper-hook): Use it and apply-partially instead of CL.
15248 (eval-after-load): Preserve lexical-binding.
15249 (save-window-excursion, with-output-to-temp-buffer): Turn them
15250 into macros.
15251
15252 * simple.el (with-wrapper-hook, apply-partially): Move to subr.el.
15253
15254 * help-fns.el (help-split-fundoc): Return nil if there's nothing else
15255 than the arglist.
15256 (help-add-fundoc-usage): Don't add `Not documented'.
15257 (help-function-arglist): Handle closures, subroutines, and new
15258 byte-code-functions.
15259 (help-make-usage): Remove leading underscores.
15260 (describe-function-1): Handle closures.
15261 (describe-variable): Use special-variable-p for completion.
15262
15263 * files.el (lexical-binding): Declare safe.
15264
15265 * emacs-lisp/pcase.el: Don't use destructuring-bind.
15266 (pcase--memoize): Rename from pcase-memoize. Change weakness.
15267 (pcase): Add `let' pattern.
15268 Change memoization so it actually works.
15269 (pcase-mutually-exclusive-predicates): Add byte-code-function-p.
15270 (pcase--u1) <guard, pred>: Fix possible shadowing problem.
15271 <let>: New case.
15272
15273 * emacs-lisp/macroexp.el: Use lexical binding.
15274 (macroexpand-all-1): Check obsolete macros. Expand compiler-macros.
15275 Don't convert ' to #' without checking that it's indeed quoting
15276 a lambda.
15277
15278 * emacs-lisp/lisp-mode.el (eval-last-sexp-1):
15279 Use eval-sexp-add-defvars.
15280 (eval-sexp-add-defvars): New fun.
15281
15282 * emacs-lisp/float-sup.el (pi): Don't declare as dynamically bound.
15283
15284 * emacs-lisp/eieio.el (byte-compile-file-form-defmethod):
15285 Don't autoload.
15286 (eieio-defgeneric-form-primary-only-one): Use `byte-compile' rather
15287 than the internal `byte-compile-lambda'.
15288 (defmethod): Don't hide code under quotes.
15289 (eieio-defmethod): New `code' argument.
15290
15291 * emacs-lisp/eieio-comp.el: Remove.
15292
15293 * emacs-lisp/edebug.el (edebug-eval-defun)
15294 (edebug-eval-top-level-form): Use eval-sexp-add-defvars.
15295 (edebug-toggle): Avoid `eval'.
15296
15297 * emacs-lisp/disass.el (disassemble-internal): Handle new
15298 `closure' objects.
15299 (disassemble-1): Handle new byte codes.
15300
15301 * emacs-lisp/cl.el (pushnew): Silence warning.
15302
15303 * emacs-lisp/cl-macs.el (cl-byte-compile-block)
15304 (cl-byte-compile-throw): Remove.
15305 (cl-block-wrapper, cl-block-throw): Use compiler-macros instead.
15306
15307 * emacs-lisp/cl-extra.el (cl-macroexpand-all): Properly quote CL
15308 closures.
15309
15310 * emacs-lisp/cconv.el: New file.
15311
15312 * emacs-lisp/bytecomp.el: Use lexical binding instead of
15313 a "bytecomp-" prefix. Macroexpand everything as a separate phase.
15314 (byte-compile-initial-macro-environment):
15315 Handle declare-function here.
15316 (byte-compile--lexical-environment): New var.
15317 (byte-stack-ref, byte-stack-set, byte-discardN)
15318 (byte-discardN-preserve-tos): New lap codes.
15319 (byte-interactive-p): Don't use any more.
15320 (byte-compile-push-bytecodes, byte-compile-push-bytecode-const2):
15321 New macros.
15322 (byte-compile-lapcode): Use them and handle new lap codes.
15323 (byte-compile-obsolete): Remove.
15324 (byte-compile-arglist-signature): Handle new byte-code arg"lists".
15325 (byte-compile-arglist-warn): Check late def of inlinable funs.
15326 (byte-compile-cl-warn): Don't silence warnings for compiler-macros
15327 since they should have been expanded by now.
15328 (byte-compile--outbuffer): Rename from bytecomp-outbuffer.
15329 (byte-compile-from-buffer): Remove unused second arg.
15330 (byte-compile-preprocess): New function.
15331 (byte-compile-toplevel-file-form): New function to distinguish
15332 file-form calls from outside from file-form calls from hunk-handlers.
15333 (byte-compile-file-form): Simplify.
15334 (byte-compile-file-form-defsubst): Remove.
15335 (byte-compile-file-form-defmumble): Simplify now that
15336 byte-compile-lambda always returns a byte-code-function.
15337 (byte-compile): Preprocess.
15338 (byte-compile-byte-code-maker, byte-compile-byte-code-unmake):
15339 Remove, not used any more.
15340 (byte-compile-arglist-vars, byte-compile-make-lambda-lexenv)
15341 (byte-compile-make-args-desc): New funs.
15342 (byte-compile-lambda): Handle lexical functions. Always return
15343 a byte-code-function.
15344 (byte-compile-reserved-constants): New var, to make up room for
15345 closed-over variables.
15346 (byte-compile-constants-vector): Obey it.
15347 (byte-compile-top-level): New args `lexenv' and `reserved-csts'.
15348 (byte-compile-macroexpand-declare-function): New function.
15349 (byte-compile-form): Call byte-compile-unfold-bcf to inline immediate
15350 byte-code-functions.
15351 (byte-compile-form): Check obsolescence here.
15352 (byte-compile-inline-lapcode, byte-compile-unfold-bcf): New functions.
15353 (byte-compile-variable-ref): Remove.
15354 (byte-compile-dynamic-variable-op): New fun.
15355 (byte-compile-dynamic-variable-bind, byte-compile-variable-ref)
15356 (byte-compile-variable-set): New funs.
15357 (byte-compile-discard): Add 2 args.
15358 (byte-compile-stack-ref, byte-compile-stack-set)
15359 (byte-compile-make-closure, byte-compile-get-closed-var): New funs.
15360 (byte-compile-funarg, byte-compile-funarg-2): Remove, handled in
15361 macroexpand-all instead.
15362 (byte-compile-quote-form): Remove.
15363 (byte-compile-push-binding-init, byte-compile-not-lexical-var-p)
15364 (byte-compile-bind, byte-compile-unbind): New funs.
15365 (byte-compile-let): Handle let* and lexical binding.
15366 (byte-compile-let*): Remove.
15367 (byte-compile-catch, byte-compile-unwind-protect)
15368 (byte-compile-track-mouse, byte-compile-condition-case):
15369 Handle a new :fun-body form, used for lexical scoping.
15370 (byte-compile-save-window-excursion)
15371 (byte-compile-with-output-to-temp-buffer): Remove.
15372 (byte-compile-defun): Simplify.
15373 (byte-compile-stack-adjustment): New fun.
15374 (byte-compile-out): Use it.
15375 (byte-compile-refresh-preloaded): Don't reload byte-compiler files.
15376
15377 * emacs-lisp/byte-run.el (make-obsolete): Don't set the `byte-compile'
15378 handler any more.
15379
15380 * emacs-lisp/byte-opt.el: Use lexical binding.
15381 (byte-inline-lapcode): Remove (to bytecomp).
15382 (byte-compile-inline-expand): Pay attention to inlining to/from
15383 lexically bound code.
15384 (byte-compile-unfold-lambda): Don't handle byte-code-functions
15385 any more.
15386 (byte-optimize-form-code-walker): Don't handle save-window-excursion
15387 any more and don't call compiler-macros.
15388 (byte-compile-splice-in-already-compiled-code): Remove.
15389 (byte-code): Don't inline any more.
15390 (disassemble-offset): Receive `bytes' as argument rather than via
15391 dynamic scoping.
15392 (byte-compile-tag-number): Declare before first use.
15393 (byte-decompile-bytecode-1): Handle new byte-codes, don't change
15394 `return' even if make-spliceable.
15395 (byte-compile-side-effect-and-error-free-ops): Add stack-ref, remove
15396 obsolete interactive-p.
15397 (byte-optimize-lapcode): Optimize new lap-codes.
15398 Don't trip up on new form of `byte-constant' lap code.
15399
15400 * emacs-lisp/autoload.el (make-autoload): Don't burp on trivial macros.
15401
15402 * emacs-lisp/advice.el (ad-arglist): Use help-function-arglist.
15403
15404 * custom.el (custom-initialize-default, custom-declare-variable):
15405 Use `defvar'.
15406
15407 * Makefile.in (BIG_STACK_DEPTH, BIG_STACK_OPTS, BYTE_COMPILE_FLAGS):
15408 New variables.
15409 (compile-onefile, .el.elc, compile-calc, recompile): Use them.
15410 (COMPILE_FIRST): Add macroexp and cconv.
15411 * makefile.w32-in: Mirror changes in Makefile.in.
15412
15413 * vc/cvs-status.el:
15414 * vc/diff-mode.el:
15415 * vc/log-edit.el:
15416 * vc/log-view.el:
15417 * vc/smerge-mode.el:
15418 * textmodes/bibtex-style.el:
15419 * textmodes/css.el:
15420 * startup.el:
15421 * uniquify.el:
15422 * minibuffer.el:
15423 * newcomment.el:
15424 * reveal.el:
15425 * server.el:
15426 * mpc.el:
15427 * emacs-lisp/smie.el:
15428 * doc-view.el:
15429 * dired.el:
15430 * abbrev.el: Use lexical binding.
15431
15432 2011-04-01 Eli Zaretskii <eliz@gnu.org>
15433
15434 * info.el (info-display-manual): New function.
15435
15436 2011-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
15437
15438 * loadup.el: Load minibuffer after loaddefs, to use define-minor-mode.
15439
15440 2011-03-31 Tassilo Horn <tassilo@member.fsf.org>
15441
15442 * net/rcirc.el (rcirc-handler-001): Only authenticate, if there's
15443 an entry for that server in rcirc-authinfo. (Bug#8385)
15444
15445 2011-03-31 Glenn Morris <rgm@gnu.org>
15446
15447 * progmodes/f90.el (f90-find-tag-default): Handle multiple `%'.
15448
15449 * generic-x.el (etc-fstab-generic-mode): Add ext4, sysfs keywords.
15450
15451 2011-03-30 Christoph Scholtes <cschol2112@googlemail.com>
15452
15453 * progmodes/python.el (python-default-interpreter)
15454 (python-python-command-args, python-jython-command-args)
15455 (python-which-shell, python-which-args, python-which-bufname)
15456 (python-file-queue, python-comint-output-filter-function)
15457 (python-toggle-shells, python-shell): Remove obsolete defcustoms,
15458 variables and functions.
15459
15460 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15461
15462 * minibuffer.el (completion-table-dynamic): Optimize `boundaries'.
15463 (completion-in-region-mode): New minor mode.
15464 (completion-in-region): Use it.
15465 (completion-in-region--data, completion-in-region-mode-map): New vars.
15466 (completion-in-region--postch): New function.
15467 (completion--capf-misbehave-funs, completion--capf-safe-funs):
15468 New vars.
15469 (completion--capf-wrapper): New function.
15470 (completion-at-point): Use it to track well-behavedness of
15471 hook functions.
15472 (completion-help-at-point): New command.
15473
15474 2011-03-30 Jason Merrill <jason@redhat.com> (tiny change)
15475
15476 * vc/add-log.el (add-change-log-entry): Don't use whitespace
15477 syntax class to search for whitespace on a single line
15478 (Message-ID: <4D938140.4030905@redhat.com>).
15479
15480 2011-03-30 Leo Liu <sdl.web@gmail.com>
15481
15482 * abbrev.el (abbrev-edit-save-to-file, abbrev-edit-save-buffer):
15483 New commands.
15484 (edit-abbrevs-map): Bind them here.
15485 (write-abbrev-file): New optinal arg VERBOSE. (Bug#5937)
15486
15487 2011-03-29 Ken Manheimer <ken.manheimer@gmail.com>
15488
15489 * allout.el (allout-hide-by-annotation, allout-flag-region):
15490 Reduce possibility of overlay leakage by making them volatile.
15491
15492 * allout-widgets.el (allout-widgets-tally): Define as nil so the
15493 hash is not shared between buffers. Mode initialization is
15494 responsible for giving it a useful starting value.
15495 (allout-item-span): Reduce possibility of overlay leakage by
15496 making them volatile.
15497 (allout-widgets-count-buttons-in-region): Add diagnostic function
15498 for tracking down button overlay leaks.
15499
15500 2011-03-29 Leo Liu <sdl.web@gmail.com>
15501
15502 * ido.el (ido-read-internal): Use the default history var
15503 minibuffer-history if no HISTORY is specified.
15504
15505 2011-03-28 Brian T. Sniffen <bsniffen@akamai.com> (tiny change)
15506
15507 * net/imap.el (imap-shell-open, imap-process-connection-type):
15508 Use imap-process-connection-type for 'shell' streams as well as
15509 Kerberos, SSL, other subprocesses.
15510
15511 2011-03-28 Leo Liu <sdl.web@gmail.com>
15512
15513 * abbrev.el (abbrev-table-empty-p): New function.
15514 (prepare-abbrev-list-buffer): Place empty abbrev tables after
15515 nonempty ones. (Bug#5937)
15516
15517 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15518
15519 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
15520
15521 2011-03-27 Leo Liu <sdl.web@gmail.com>
15522
15523 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
15524 for foreground and background colors.
15525 (ansi-color-make-color-map): Adapt.
15526
15527 2011-03-25 Leo Liu <sdl.web@gmail.com>
15528
15529 * midnight.el (midnight-time-float): Remove. Note it calculates
15530 the microsecond component incorrectly and seconds-to-time does the
15531 same job.
15532 Remove redundant (require 'timer).
15533
15534 * ido.el (ido-read-internal): Simplify with read-from-minibuffer.
15535 (ido-completions): Remove unused arguments. (Bug#8329)
15536
15537 2011-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
15538
15539 * minibuffer.el (completion--flush-all-sorted-completions):
15540 Remove itself from hook.
15541 (completion-at-point): Let the functions perform the completion
15542 immediately and return nil or t.
15543 * comint.el (comint-dynamic-complete-functions): Now identical to
15544 completion-at-point-functions.
15545 (comint-dynamic-list-input-ring): Remove unused var `index'.
15546 (comint--match-partial-filename, comint--unquote&expand-filename):
15547 New funs, split from comint-match-partial-filename.
15548 (comint-dynamic-complete): Use completion-at-point.
15549 (comint-dynamic-complete-filename): Use comint--match-partial-filename.
15550
15551 2011-03-24 Drew Adams <drew.adams@oracle.com>
15552
15553 * thingatpt.el: Support `defun'.
15554
15555 2011-03-23 Leo Liu <sdl.web@gmail.com>
15556
15557 * abbrevlist.el: Move to obsolete/abbrevlist.el.
15558
15559 * help-mode.el (help-mode-finish): Tweak regexp.
15560
15561 2011-03-23 Glenn Morris <rgm@gnu.org>
15562
15563 * eshell/esh-opt.el (eshell-eval-using-options):
15564 Do not bind unused local variable `eshell-option-stub'.
15565
15566 * progmodes/gdb-mi.el (gdb): Fix typo in previous change.
15567
15568 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
15569
15570 * emacs-lisp/derived.el (define-derived-mode): Wrap declaration of
15571 keymap variable in `with-no-warnings' to avoid a warning when the
15572 keymap has been already `defconst'ed.
15573
15574 2011-03-22 Leo Liu <sdl.web@gmail.com>
15575
15576 * abbrev.el (write-abbrev-file): Use utf-8 for writing if it can
15577 encode all chars in abbrevs; otherwise use emacs-mule or
15578 utf-8-emacs. (Bug#8308)
15579
15580 2011-03-22 Juanma Barranquero <lekktu@gmail.com>
15581
15582 * simple.el (backward-delete-char-untabify):
15583 Avoid warning about using `delete-backward-char'.
15584
15585 * image.el (image-type-file-name-regexps): Make it variable.
15586 `imagemagick-register-types' modifies it, and the user may want
15587 to add new extensions for known image types.
15588 (imagemagick-register-types): Throw error if not using ImageMagick.
15589
15590 2011-03-22 Leo Liu <sdl.web@gmail.com>
15591
15592 * net/rcirc.el (rcirc-completion-at-point): Return nil if point is
15593 located before rcirc-prompt-end-marker.
15594 (rcirc-complete): Error if point is not after rcirc prompt.
15595 Handle the case when table is nil.
15596 (rcirc-user-authenticated): Define to fix compiler warning.
15597
15598 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
15599
15600 * custom.el (custom--inhibit-theme-enable): Make it affect only
15601 custom-theme-set-variables and custom-theme-set-faces.
15602 (provide-theme): Ignore custom--inhibit-theme-enable.
15603 (load-theme): Enable the theme explicitly if NO-ENABLE is non-nil.
15604 (custom-enabling-themes): Delete variable.
15605 (enable-theme): Accept only loaded themes as arguments.
15606 Ignore the special custom-enabled-themes variable.
15607 (custom-enabled-themes): Forbid themes from setting this.
15608 Eliminate use of custom-enabling-themes.
15609 (custom-push-theme): Quote "changed" custom var entry.
15610
15611 2011-03-21 Leo Liu <sdl.web@gmail.com>
15612
15613 * ido.el (ido-read-internal): Add ido-selected to history instead
15614 of user input.
15615
15616 2011-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
15617
15618 * subr.el (deferred-action-list, deferred-action-function):
15619 Mark obsolete.
15620
15621 2011-03-21 Leo Liu <sdl.web@gmail.com>
15622
15623 * vc/log-view.el: Remove (require 'wid-edit), not needed after the
15624 change on 2011-02-13 (bug#8309).
15625
15626 * minibuffer.el (read-file-name-function): Change default value.
15627 (read-file-name--defaults): Rename from read-file-name-defaults.
15628 (read-file-name-default): Rename from read-file-name.
15629 (read-file-name): Call read-file-name-function.
15630
15631 2011-03-21 Glenn Morris <rgm@gnu.org>
15632
15633 * eshell/esh-opt.el (eshell-eval-using-options, eshell-process-args):
15634 Doc fixes.
15635
15636 2011-03-21 Chong Yidong <cyd@stupidchicken.com>
15637
15638 * cus-theme.el: Add missing provide statement.
15639 (customize-create-theme): Extract theme value correctly.
15640 (custom-theme-visit-theme): Autoload.
15641 (customize-create-theme): Prompt before inserting default faces.
15642
15643 2011-03-20 Jay Belanger <jay.p.belanger@gmail.com>
15644
15645 * calc/calc-menu.el (calc-units-menu): Add entries for logarithmic
15646 units and musical notes.
15647
15648 2011-03-20 Leo Liu <sdl.web@gmail.com>
15649
15650 * ido.el (ido-read-internal): Use completing-read-default.
15651 (ido-completing-read): Fix compatibility with completing-read.
15652
15653 2011-03-20 Christian Ohler <ohler@gnu.org>
15654
15655 * emacs-lisp/ert.el (ert-run-tests-batch): Remove unused variable.
15656 (ert-delete-all-tests): Use `called-interactively-p' rather than
15657 `interactive-p'.
15658 (ert--make-xrefs-region): Respect END.
15659
15660 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
15661
15662 * dired-aux.el (dired-create-directory): Signal an error if the
15663 directory already exists (Bug#8246).
15664
15665 * facemenu.el (list-colors-display): Call list-faces-display
15666 inside with-help-window.
15667 (list-colors-print): Use display property to align the final
15668 column, instead of checking window-width.
15669
15670 2011-03-19 Eli Zaretskii <eliz@gnu.org>
15671
15672 * vc/emerge.el (emerge-metachars): Separate value for ms-dos and
15673 windows-nt systems.
15674 (emerge-protect-metachars): Quote correctly for ms-dos and
15675 windows-nt systems.
15676
15677 2011-03-19 Ralph Schleicher <rs@ralph-schleicher.de>
15678
15679 * info.el (info-initialize): Replace all uses of `:' with
15680 path-separator for compatibility with non-Unix systems.
15681 Cache quoting of path-separator. (Bug#8258)
15682
15683 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
15684
15685 * avoid.el (mouse-avoidance-mode, mouse-avoidance-nudge-dist)
15686 (mouse-avoidance-threshold, mouse-avoidance-banish-destination)
15687 (mouse-avoidance-mode): Fix typos in docstrings.
15688
15689 2011-03-19 Chong Yidong <cyd@stupidchicken.com>
15690
15691 * startup.el (package-subdirectory-regexp): Move from package.el.
15692 Omit \\` and \\', and let callers add them.
15693
15694 * emacs-lisp/package.el (package-strip-version)
15695 (package-load-all-descriptors): Add \\` and \\' to
15696 package-subdirectory-regexp before using it.
15697 (package-untar-buffer): New arg DIR; ensure that file untars only
15698 into this expected directory. Remove superfluous delete-region.
15699 (package-unpack): Caller changed.
15700 (package-tar-file-info): Use package-subdirectory-regexp.
15701
15702 2011-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
15703
15704 * vc/diff-mode.el (diff-mode-map): Shadow problematic bindings from
15705 diff-mode-shared-map (bug#8284).
15706 (diff-mode-shared-map): Re-introduce some bindings that were problematic.
15707
15708 2011-03-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
15709
15710 * calendar/time-date.el (format-seconds): Use assoc instead of
15711 assoc-string, since assoc-string doesn't exist in XEmacs.
15712
15713 2011-03-17 Juanma Barranquero <lekktu@gmail.com>
15714
15715 * custom.el (custom-known-themes): Reflow docstring.
15716 (custom-theme-load-path): Fix typo in docstring.
15717 (load-theme): Fix typo in error message.
15718 (custom-available-themes, custom-variable-theme-value):
15719 Use `let', not `let*'.
15720
15721 2011-03-17 Jay Belanger <jay.p.belanger@gmail.com>
15722
15723 * calc/README: Mention inclusion of musical notes.
15724
15725 * calc/calc-units.el (calc-lu-quant): Rename from
15726 `calc-logunits-quantity'.
15727 (calcFunc-lupquant): Rename from `calcFunc-powerquant'.
15728 (calcFunc-lufquant): Rename from `calcFunc-fieldquant'.
15729 (calc-db): Rename from `calc-dblevel'.
15730 (calcFunc-dbpower): Rename from `calcFunc-dbpowerlevel'.
15731 (calcFunc-dbfield): Rename from `calcFunc-dbfieldlevel'.
15732 (calc-np): Rename from `calc-nplevel'.
15733 (calcFunc-nppower): Rename from `calcFunc-nppowerlevel'.
15734 (calcFunc-npfield): Rename from `calcFunc-npfieldlevel'.
15735 (calc-lu-plus): Rename from `calc-logunits-add'.
15736 (calcFunc-lupadd): Rename from `calcFunc-lupoweradd'.
15737 (calcFunc-lufadd): Rename from `calcFunc-lufieldadd'.
15738 (calc-lu-minus): Rename from `calc-logunits-sub'.
15739 (calcFunc-lupsub): Rename from `calcFunc-lupowersub'.
15740 (calcFunc-lufsub): Rename from `calcFunc-lufieldsub'.
15741 (calc-lu-times): Rename from `calc-logunits-mul'.
15742 (calcFunc-lupmul): Rename from `calcFunc-lupowermul'.
15743 (calcFunc-lufmul): Rename from `calcFunc-lufieldmul'.
15744 (calc-lu-divide): Rename from `calc-logunits-div'.
15745 (calcFunc-lupdiv): Rename from `calcFunc-lupowerdiv'.
15746 (calcFunc-lufdiv): Rename from `calcFunc-lufielddiv'.
15747
15748 * calc/calc-ext.el (calc-init-extensions): Update the names of the
15749 functions being autoloaded.
15750
15751 * calc/calc.el (calc-lu-power-reference): Rename from
15752 `calc-logunits-power-reference'.
15753 (calc-lu-field-reference): Rename from
15754 `calc-logunits-field-reference'.
15755
15756 * calc/calc-help.el (calc-l-prefix-help):
15757 Mention musical note functions.
15758
15759 2011-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
15760
15761 * minibuffer.el (completion-all-sorted-completions):
15762 Use :completion-cycle-penalty text property if present.
15763
15764 2011-03-16 Ken Manheimer <ken.manheimer@gmail.com>
15765
15766 * allout.el (allout-yank-processing): Adjust for new rebulleting
15767 regime so bullet being yanked is used without prompting the user
15768 for a choice.
15769
15770 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
15771
15772 * startup.el (command-line): Warn the user that _emacs is deprecated.
15773
15774 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
15775
15776 * progmodes/delphi.el (delphi-search-path, delphi-indent-level)
15777 (delphi-verbose, delphi-comment-face, delphi-string-face)
15778 (delphi-keyword-face, delphi-ignore-changes, delphi-indent-line)
15779 (delphi-mode-abbrev-table, delphi-debug-buffer, delphi-tab)
15780 (delphi-find-unit, delphi-find-current-xdef, delphi-fill-comment)
15781 (delphi-new-comment-line, delphi-font-lock-defaults)
15782 (delphi-debug-mode-map, delphi-mode-syntax-table, delphi-mode):
15783 Fix typos in docstrings.
15784
15785 2011-03-15 Ken Manheimer <ken.manheimer@gmail.com>
15786
15787 * allout.el (allout-make-topic-prefix, allout-rebullet-heading):
15788 Invert the roles of character and string values for INSTEAD, so a
15789 string is used for the more common case of a defaulting prompt.
15790
15791 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15792
15793 * progmodes/ruby-mode.el (ruby-backward-sexp):
15794 * progmodes/ebrowse.el (ebrowse-draw-file-member-info):
15795 * play/gamegrid.el (gamegrid-make-face):
15796 * play/bubbles.el (bubbles--grid-width, bubbles--grid-height)
15797 (bubbles--colors, bubbles--shift-mode, bubbles--initialize-images):
15798 * notifications.el (notifications-notify):
15799 * net/xesam.el (xesam-search-engines):
15800 * net/quickurl.el (quickurl-list-insert):
15801 * vc/vc-hg.el (vc-hg-dir-printer): Fix use of case.
15802
15803 2011-03-15 Chong Yidong <cyd@stupidchicken.com>
15804
15805 * startup.el (command-line): Update package subdirectory regexp.
15806
15807 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15808
15809 * allout.el (allout-abbreviate-flattened-numbering)
15810 (allout-mode-deactivate-hook): Fix up obsolescence "date".
15811
15812 * subr.el (read-char-choice): Only show the cursor after the prompt,
15813 not after the answer.
15814
15815 2011-03-15 Kevin Ryde <user42@zip.com.au>
15816
15817 * help-fns.el (variable-at-point): Skip leading quotes, if any
15818 (bug#8253).
15819
15820 2011-03-15 Stefan Monnier <monnier@iro.umontreal.ca>
15821
15822 * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Change the
15823 warning message.
15824
15825 2011-03-14 Michael Albinus <michael.albinus@gmx.de>
15826
15827 * shell.el (shell): When called interactively, offer to change the
15828 shell file name on remote hosts.
15829
15830 2011-03-13 Teodor Zlatanov <tzz@lifelogs.com>
15831
15832 * net/ldap.el (ldap-search-internal): Add `auth-source-search'
15833 integration for LDAP parameters. The host, base, user or binddn,
15834 and secret tokens can be specified in a netrc file, for instance.
15835 This is optional because an `auth-source' parameter must be
15836 specified in the search attributes.
15837
15838 2011-03-13 Juanma Barranquero <lekktu@gmail.com>
15839
15840 * help.el (describe-mode): Link to the mode's definition (bug#8185).
15841
15842 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15843
15844 * ebuff-menu.el (electric-buffer-menu-mode-map): Move initialization
15845 into declaration. Remove redundant and harmful binding.
15846
15847 2011-03-12 Eli Zaretskii <eliz@gnu.org>
15848
15849 * files.el (file-ownership-preserved-p): Pass `integer' as an
15850 explicit 2nd argument to `file-attributes'. If the file's owner
15851 is the Administrators group on Windows, and the current user is
15852 Administrator, consider that a match.
15853
15854 * server.el (server-ensure-safe-dir): Consider server directory
15855 safe on MS-Windows if its owner is the Administrators group while
15856 the current Emacs user is Administrator. Use `=' to compare
15857 numerical UIDs, since they could be integers or floats.
15858
15859 2011-03-12 Juanma Barranquero <lekktu@gmail.com>
15860
15861 * vc/vc-bzr.el (vc-bzr-state): Handle bzr 2.3.0 (follow-up to bug#8170).
15862
15863 2011-03-12 Michael Albinus <michael.albinus@gmx.de>
15864
15865 Sync with Tramp 2.2.1.
15866
15867 * net/tramp-sh.el (tramp-methods): Exchange "%k" marker with options.
15868
15869 * net/trampver.el: Update release number.
15870
15871 2011-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
15872
15873 * progmodes/compile.el (compilation--previous-directory): Fix up
15874 various nil/dead-marker mismatches (bug#8014).
15875 (compilation-directory-properties, compilation-error-properties):
15876 Don't call it at a position past the one we're about to change.
15877
15878 * emacs-lisp/bytecomp.el (byte-compile-make-obsolete-variable):
15879 Disable obsolescence warnings in the file that declares it.
15880
15881 2011-03-11 Ken Manheimer <ken.manheimer@gmail.com>
15882
15883 * allout-widgets.el (allout-widgets-tally):
15884 Initialize allout-widgets-tally as a hash table rather than nil to
15885 prevent mode-line redisplay warnings. Also, clarify the module
15886 description and fix a comment typo.
15887
15888 2011-03-11 Juanma Barranquero <lekktu@gmail.com>
15889
15890 * help-fns.el (describe-variable): Don't complete keywords.
15891 Suggested by Teodor Zlatanov <tzz@lifelogs.com>.
15892
15893 2011-03-10 Chong Yidong <cyd@stupidchicken.com>
15894
15895 * emacs-lisp/package.el (package-version-join): Impose a standard
15896 string representation for pre/alpha/beta version lists.
15897 (package-unpack-single): Standardize the directory name by passing
15898 it through package-version-join.
15899 (package-strip-rcs-id): Accept any version string that does not
15900 signal an error in version-to-list.
15901
15902 2011-03-10 Michael Albinus <michael.albinus@gmx.de>
15903
15904 * simple.el (delete-trailing-whitespace): Return nil for the
15905 benefit of `write-file-functions'.
15906
15907 2011-03-10 Glenn Morris <rgm@gnu.org>
15908
15909 * vc/vc-hg.el (vc-hg-pull, vc-hg-merge-branch): Use vc-hg-program.
15910
15911 * vc/vc-git.el (vc-git-program): New option.
15912 (vc-git-branches, vc-git-pull, vc-git-merge-branch, vc-git-command)
15913 (vc-git--call): Use it.
15914
15915 * eshell/esh-util.el (eshell-condition-case): Doc fix.
15916
15917 * cus-edit.el (Custom-newline): If no button at point, look
15918 for a subgroup button at start-of-line. (Bug#2298)
15919
15920 * mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
15921
15922 2011-03-10 Julien Danjou <julien@danjou.info>
15923
15924 * avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if
15925 `cursor-type' is nil.
15926
15927 2011-03-09 Jay Belanger <jay.p.belanger@gmail.com>
15928
15929 * calc/calc.el (calc-mode-map): Don't bind "C-_" to `calc-missing-key'.
15930
15931 2011-03-09 Ken Manheimer <ken.manheimer@gmail.com>
15932
15933 * allout.el: Change so yank of distinctive-bullet items
15934 preserves the existing header prefix, rebulleting it if necessary,
15935 rather than replacing it. This is necessary for proper operation
15936 of cooperative addons like allout-widgets.
15937 (allout-make-topic-prefix, allout-rebullet-heading):
15938 Change SOLICIT arg to INSTEAD, and interpret additionally a string
15939 value as alternate bullet to be used, instead of prompting the user
15940 for a bullet character.
15941
15942 2011-03-09 Michael Albinus <michael.albinus@gmx.de>
15943
15944 * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
15945 Do not use `tramp-file-name-port', because this returns also
15946 `tramp-default-port'.
15947
15948 2011-03-09 Deniz Dogan <deniz.a.m.dogan@gmail.com>
15949
15950 * net/rcirc.el (rcirc-handler-001): Remove useless
15951 with-rcirc-process-buffer.
15952 (rcirc-check-auth-status): Swap arguments to string-match.
15953
15954 2011-03-09 Glenn Morris <rgm@gnu.org>
15955
15956 * shell.el (shell-mode):
15957 Set comint-input-ring-size from HISTSIZE. (Bug#7889)
15958
15959 * progmodes/gdb-mi.el (gdb): Improve 2010-12-08 change.
15960 Check for GDBHISTFILE, HISTSIZE, etc. (Bug#7889)
15961
15962 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
15963
15964 * emacs-lisp/package.el (package-refresh-contents)
15965 (package-menu-execute): Use condition-case-no-debug.
15966
15967 2011-03-08 Michael Albinus <michael.albinus@gmx.de>
15968
15969 * simple.el (shell-command-to-string): Use `process-file'.
15970
15971 * emacs-lisp/package.el (package-tar-file-info): Handle also
15972 remote files.
15973
15974 * emacs-lisp/package-x.el (package-upload-buffer-internal):
15975 Use `equal' for upload base check.
15976
15977 2011-03-08 Arni Magnusson <arnima@hafro.is> (tiny change)
15978
15979 * textmodes/texinfo.el (texinfo-environments):
15980 Add deftypecv, deftypeivar, deftypemethod, deftypeop, html. (Bug#2783)
15981
15982 2011-03-08 Glenn Morris <rgm@gnu.org>
15983
15984 * cus-start.el (cursor-in-non-selected-windows):
15985 Fix :set quoting oddness. (Bug#8192)
15986
15987 * font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
15988 in some setf expressions. (Bug#2159)
15989
15990 2011-03-08 Chong Yidong <cyd@stupidchicken.com>
15991
15992 * custom.el (custom-available-themes): Return themes in
15993 alphabetical order.
15994
15995 See ChangeLog.15 for earlier changes.
15996
15997 ;; Local Variables:
15998 ;; coding: utf-8
15999 ;; End:
16000
16001 Copyright (C) 2011-2012 Free Software Foundation, Inc.
16002
16003 This file is part of GNU Emacs.
16004
16005 GNU Emacs is free software: you can redistribute it and/or modify
16006 it under the terms of the GNU General Public License as published by
16007 the Free Software Foundation, either version 3 of the License, or
16008 (at your option) any later version.
16009
16010 GNU Emacs is distributed in the hope that it will be useful,
16011 but WITHOUT ANY WARRANTY; without even the implied warranty of
16012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16013 GNU General Public License for more details.
16014
16015 You should have received a copy of the GNU General Public License
16016 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.